Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MMK Memory [WIP] #114

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions ipsuite/configuration_comparison/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ class ConfigurationComparison(base.IPSNode):

reference: base.protocol.HasOrIsAtoms = zntrack.zn.deps()
analyte: base.protocol.HasOrIsAtoms = zntrack.zn.deps()
memory: int = zntrack.zn.params()
similarities = zntrack.zn.plots()
soap: typing.Union[dict, SOAPParameter] = zntrack.zn.params(SOAPParameter())
result: typing.List[float] = zntrack.zn.outs()
Expand All @@ -153,6 +154,7 @@ def __init__(
analyte=None,
soap: dict = None,
use_jit: bool = True,
memory: int = 100,
**kwargs
):
"""Initialize the ConfigurationComparison node.
Expand All @@ -172,6 +174,8 @@ def __init__(
Parameter to use for the SOAP descriptor.
use_jit: bool
use jit compilation.
memory: int
How far back to look in the MMK vector.
kwargs: dict
additional keyword arguments
"""
Expand All @@ -193,6 +197,7 @@ def __init__(
self.remove_database = True
self.disable_tqdm = False
self.use_jit = use_jit
self.memory = memory

def save_representation(self):
"""Save the SOAP descriptor representation as hdf5 file to save RAM.
Expand Down Expand Up @@ -291,7 +296,12 @@ def run(self):
for max_index, _atoms in enumerate(self.analyte):
if max_index == 0:
continue
reference_soap = representation_file["soap"][:max_index]
if max_index <= self.memory:
reference_soap = representation_file["soap"][:max_index]
else:
reference_soap = representation_file["soap"][
max_index - self.memory : max_index
]
analyte_soap = representation_file["soap"][max_index]
comparison = self.compare(reference_soap, analyte_soap)
self.result.append(float(comparison.numpy()))
Expand All @@ -306,7 +316,12 @@ def run(self):
disable=self.disable_tqdm,
) as pbar:
for max_index, _atoms in enumerate(self.analyte):
reference_soap = representation_file["soap_reference"]
if max_index <= self.memory:
reference_soap = representation_file["soap"][:max_index]
else:
reference_soap = representation_file["soap"][
max_index - self.memory : max_index
]
analyte_soap = representation_file["soap_analyte"][max_index]
comparison = self.compare(reference_soap, analyte_soap)
self.result.append(float(comparison.numpy()))
Expand Down