Single Point¶
janus-core
contains various machine learnt interatomic potentials (MLIPs), including MACE based models (MACE-MP, MACE-OFF), CHGNet, SevenNet and more, full list on https://github.com/stfc/janus-core.
Other will be added as their utility is proven beyond a specific material.
Set up environment (optional)¶
These steps are required for Google Colab, but may work on other systems too:
[ ]:
# import locale
# locale.getpreferredencoding = lambda: "UTF-8"
# ! pip uninstall torch torchaudio torchvision numpy -y
# ! uv pip install janus-core[all] data-tutorials torch==2.5.1 --system
# get_ipython().kernel.do_shutdown(restart=True)
Use data_tutorials
to get the data required for this tutorial:
[ ]:
from data_tutorials.data import get_data
get_data(
url="https://raw.githubusercontent.com/stfc/janus-core/main/docs/source/tutorials/data",
filename=["NaCl-set.xyz"],
folder="../data",
)
Command-line help and options¶
Once janus-core
is installed, the janus
CLI command should be available:
[1]:
! janus --help
Usage: janus [OPTIONS] COMMAND [ARGS]...
╭─ Options ────────────────────────────────────────────────────────────────────╮
│ --version Print janus version and exit. │
│ --install-completion Install completion for the current shell. │
│ --show-completion Show completion for the current shell, to copy │
│ it or customize the installation. │
│ --help Show this message and exit. │
╰──────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ───────────────────────────────────────────────────────────────────╮
│ singlepoint Perform single point calculations and save to file. │
│ geomopt Perform geometry optimization and save optimized structure to │
│ file. │
│ md Run molecular dynamics simulation, and save trajectory and │
│ statistics. │
│ phonons Calculate phonons and save results. │
│ eos Calculate equation of state. │
│ neb Run Nudged Elastic Band method. │
│ descriptors Calculate MLIP descriptors. │
│ train Running training for an MLIP. │
│ preprocess Running preprocessing for an MLIP. │
╰──────────────────────────────────────────────────────────────────────────────╯
Help for individual janus
commands also be requested, describing all available options:
[2]:
! janus singlepoint --help
Usage: janus singlepoint [OPTIONS]
Perform single point calculations and save to file.
╭─ Options ────────────────────────────────────────────────────────────────────╮
│ * --struct PATH Path of structure │
│ to simulate. │
│ [default: None] │
│ [required] │
│ --arch [mace|mace_mp|mace MLIP architecture │
│ _off|m3gnet|chgnet to use for │
│ |alignn|sevennet|n calculations. │
│ equip|dpa3|orb|mat [default: mace_mp] │
│ tersim] │
│ --device [cpu|cuda|mps|xpu] Device to run │
│ calculations on. │
│ [default: cpu] │
│ --model-path TEXT Path to MLIP model. │
│ [default: None] │
│ --properties [energy|stress|for Properties to │
│ ces|hessian] calculate. If not │
│ specified, │
│ 'energy', 'forces' │
│ and 'stress' will │
│ be returned. │
│ [default: None] │
│ --file-prefix PATH Prefix for output │
│ files, including │
│ directories. │
│ Default directory │
│ is ./janus_results, │
│ and default │
│ filename prefix is │
│ inferred from the │
│ input stucture │
│ filename. │
│ [default: None] │
│ --out PATH Path to save │
│ structure with │
│ calculated results. │
│ Default is inferred │
│ from `file_prefix`. │
│ [default: None] │
│ --read-kwargs DICT Keyword arguments │
│ to pass to │
│ ase.io.read. Must │
│ be passed as a │
│ dictionary wrapped │
│ in quotes, e.g. │
│ "{'key': value}". │
│ By default, │
│ read_kwargs['index… │
│ = ':', so all │
│ structures are │
│ read. │
│ [default: None] │
│ --calc-kwargs DICT Keyword arguments │
│ to pass to selected │
│ calculator. Must be │
│ passed as a │
│ dictionary wrapped │
│ in quotes, e.g. │
│ "{'key': value}". │
│ For the default │
│ architecture │
│ ('mace_mp'), │
│ "{'model': │
│ 'small'}" is set │
│ unless overwritten. │
│ [default: None] │
│ --write-kwargs DICT Keyword arguments │
│ to pass to │
│ ase.io.write when │
│ saving results. │
│ Must be passed as a │
│ dictionary wrapped │
│ in quotes, e.g. │
│ "{'key': value}". │
│ [default: None] │
│ --log PATH Path to save logs │
│ to. Default is │
│ inferred from │
│ `file_prefix` │
│ [default: None] │
│ --tracker --no-tracker Whether to save │
│ carbon emissions of │
│ calculation │
│ [default: tracker] │
│ --summary PATH Path to save │
│ summary of inputs, │
│ start/end time, and │
│ carbon emissions. │
│ Default is inferred │
│ from `file_prefix`. │
│ [default: None] │
│ --config TEXT Configuration file. │
│ --help Show this message │
│ and exit. │
╰──────────────────────────────────────────────────────────────────────────────╯
Running single point calculations¶
First, we need a file to perform calculations on. Here, we build a periodic salt structure, visualise it, and write out to a file.
Tip: We use the ASE and WEAS Widget libaries here to build the structure and visualise it. We discuss these tools in more detail in the Python tutorials.
[3]:
from ase.build import bulk
from ase.io import write
from weas_widget import WeasWidget
NaCl = bulk("NaCl", "rocksalt", a=5.63, cubic=True)
write("../data/NaCl.xyz", NaCl)
v=WeasWidget()
v.from_ase(NaCl)
v.avr.model_style = 1
v.avr.show_hydrogen_bonds = True
v
[3]:
Now we can use an MLIP to run single point calculations. By default, this uses the MACE-MP model:
[4]:
! janus singlepoint --struct ../data/NaCl.xyz --no-tracker
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/e3nn/o3/_wigner.py:10: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
_Jd, _W3j_flat, _W3j_indices = torch.load(os.path.join(os.path.dirname(__file__), 'constants.pt'))
cuequivariance or cuequivariance_torch is not available. Cuequivariance acceleration will be disabled.
Using Materials Project MACE for MACECalculator with /Users/elliottkasoar/.cache/mace/20231210mace128L0_energy_epoch249model
Using float64 for MACECalculator, which is slower but more accurate. Recommended for geometry optimization.
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/mace/calculators/mace.py:139: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
torch.load(f=model_path, map_location=device)
Results from CLI calculations are saved in a newly created directory, janus_results
:
[5]:
! ls janus_results/
NaCl-results.extxyz NaCl-singlepoint-summary.yml
NaCl-singlepoint-log.yml
We can now read the output file back into ASE, to see the saved energy, stresses, and forces:
[6]:
from ase.io import read
results = read("janus_results/NaCl-results.extxyz")
[7]:
print(f"Energy: {results.info['mace_mp_energy']}")
print()
print(f"Stress: {results.info['mace_mp_stress']}")
print()
print(f"Forces: {results.arrays['mace_mp_forces']}")
Energy: -27.0300815358917
Stress: [-5.81654699e-03 -5.81654699e-03 -5.81654699e-03 5.97331032e-20
2.42708931e-19 -2.73642450e-20]
Forces: [[ 0. 0. -0.]
[-0. 0. 0.]
[ 0. 0. 0.]
[-0. 0. 0.]
[-0. -0. -0.]
[-0. 0. -0.]
[ 0. 0. -0.]
[-0. 0. -0.]]
We can check the units corresponding to these quantities, which are also saved in the “info” dictionary:
[8]:
print(results.info["units"])
{'energy': 'eV', 'forces': 'ev/Ang', 'stress': 'ev/Ang^3'}
Using configuration files¶
All options to janus
commands can be specified through a YAML input file. These are text files of the form:
key: value
list_key:
- list_value_1
- list_value_2
nested_key_1:
nested_key_2: nested_value
which, in Python, would correspond to a dictionary of the form:
{
"key": value,
"list_key": [list_value_1, list_value_2],
"nested_key": {"nested_key_2": nested_value},
}
Although you can specify every option, let’s first write a minimal configuration file for janus singlepoint
:
[9]:
%%writefile singlepoint_config_1.yml
struct: ../data/NaCl.xyz
tracker: False
Writing singlepoint_config_1.yml
[10]:
! cat singlepoint_config_1.yml
struct: ../data/NaCl.xyz
tracker: False
We can then use this configuration file to re-run the calculation:
[11]:
! janus singlepoint --config singlepoint_config_1.yml
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/e3nn/o3/_wigner.py:10: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
_Jd, _W3j_flat, _W3j_indices = torch.load(os.path.join(os.path.dirname(__file__), 'constants.pt'))
cuequivariance or cuequivariance_torch is not available. Cuequivariance acceleration will be disabled.
Using Materials Project MACE for MACECalculator with /Users/elliottkasoar/.cache/mace/20231210mace128L0_energy_epoch249model
Using float64 for MACECalculator, which is slower but more accurate. Recommended for geometry optimization.
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/mace/calculators/mace.py:139: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
torch.load(f=model_path, map_location=device)
Options in the configuration files can be overwritten when running a command. For example, the following configuration file also defines the file_prefix
, which specifies any directories and the prefix of the file names to be output:
[12]:
%%writefile singlepoint_config_2.yml
struct: ../data/NaCl.xyz
file_prefix: examples/NaCl
tracker: False
Writing singlepoint_config_2.yml
We can now use this configuration file, but replace file_prefix
:
[13]:
! janus singlepoint --config singlepoint_config_2.yml --file-prefix outputs/salt
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/e3nn/o3/_wigner.py:10: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
_Jd, _W3j_flat, _W3j_indices = torch.load(os.path.join(os.path.dirname(__file__), 'constants.pt'))
cuequivariance or cuequivariance_torch is not available. Cuequivariance acceleration will be disabled.
Using Materials Project MACE for MACECalculator with /Users/elliottkasoar/.cache/mace/20231210mace128L0_energy_epoch249model
Using float64 for MACECalculator, which is slower but more accurate. Recommended for geometry optimization.
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/mace/calculators/mace.py:139: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
torch.load(f=model_path, map_location=device)
Note: In the CLI, multi-word arguments must be separated by “-”. In configuration files, they are preferably separated by “_”, although “-” should be converted automatically.
This creates a new output directory, outputs
, as well as starting all output files with “salt-”
[14]:
! ls outputs
salt-results.extxyz salt-singlepoint-summary.yml
salt-singlepoint-log.yml
Running multiple calculations¶
By default, results from janus singlepoint
are saved in two forms. For energies, this is an “info” dictionary, and a “results” dictionary.
One set of dictionary keys will be labelled with the MLIP model used (“mace_mp_energy”, “mace_mp_stress”, “mace_mp_forces”), which ensures these are not overwritten when running calculations with multiple models.
The unlabelled set of keys (“energy”, “forces”, “stress”) allow ASE to use the results for further calculations, but will be overwritten if a new calculation is run.
[15]:
print(results.info.keys())
print(results.arrays.keys())
print(results.calc.results.keys())
print()
print(results.calc.results["energy"])
print(results.get_potential_energy())
print(results.get_total_energy())
dict_keys(['units', 'model_path', 'arch', 'mace_mp_stress', 'mace_mp_energy', 'system_name'])
dict_keys(['numbers', 'positions', 'mace_mp_forces'])
dict_keys(['forces', 'energy', 'free_energy', 'stress'])
-27.0300815358917
-27.0300815358917
-27.0300815358917
For example, if we re-run the calculation using SevenNet, saving the results to a new output file, we see that “mace_mp_energy” is still saved, other unlabelled results are updated:
[16]:
! janus singlepoint --struct janus_results/NaCl-results.extxyz --arch sevennet --out janus_results/NaCl-updated-results.extxyz --no-tracker
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/e3nn/o3/_wigner.py:10: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
_Jd, _W3j_flat, _W3j_indices = torch.load(os.path.join(os.path.dirname(__file__), 'constants.pt'))
[17]:
updated_results = read("janus_results/NaCl-updated-results.extxyz")
[18]:
print(updated_results.info.keys())
print(updated_results.arrays.keys())
print(updated_results.calc.results.keys())
print()
print(updated_results.info["mace_mp_energy"])
print(updated_results.info["sevennet_energy"])
print(updated_results.calc.results["energy"])
print(updated_results.get_potential_energy())
print(updated_results.get_total_energy())
dict_keys(['units', 'model_path', 'arch', 'mace_mp_energy', 'mace_mp_stress', 'system_name', 'sevennet_stress', 'sevennet_energy'])
dict_keys(['numbers', 'positions', 'mace_mp_forces', 'sevennet_forces'])
dict_keys(['energies', 'forces', 'free_energy', 'energy', 'stress'])
-27.0300815358917
-27.057369232177734
-27.057369232177734
-27.057369232177734
-27.057369232177734
Output files¶
In addition to the resulting structure file, all calculations run through the CLI generate log (NaCl-singlepoint-log.yml
) and summary (NaCl-singlepoint-summary.yml
) files.
In this case, the log file captures timestamps for the start and end of the calculation, but it will also capture any Python warnings generated, and carbon tracking information:
[19]:
! cat janus_results/NaCl-singlepoint-log.yml
- timestamp: 2025-03-31 15:37:17,643
level: INFO
message:
- "Starting single point calculation"
trace: single_point
line: 355
- timestamp: 2025-03-31 15:37:17,849
level: INFO
message:
- "Single point calculation complete"
trace: single_point
line: 371
The summary file contains:
The main command run
The CLI options specified
Basic information about the structure
Output files generated by the calculation
Start and end times of the calculation
Carbon tracking summary, if applicable
[20]:
! cat janus_results/NaCl-singlepoint-summary.yml
command: janus singlepoint
config:
arch: mace_mp
calc_kwargs: {}
device: cpu
file_prefix: null
log: null
model_path: null
out: null
properties: []
read_kwargs: {}
struct: ../data/NaCl.xyz
summary: null
tracker: false
write_kwargs: {}
info:
struct:
formula: Cl4Na4
n_atoms: 8
struct_path: ../data/NaCl.xyz
output_files:
log: /Users/elliottkasoar/Documents/PSDI/janus-core/docs/source/tutorials/cli/janus_results/NaCl-singlepoint-log.yml
results: /Users/elliottkasoar/Documents/PSDI/janus-core/docs/source/tutorials/cli/janus_results/NaCl-results.extxyz
summary: /Users/elliottkasoar/Documents/PSDI/janus-core/docs/source/tutorials/cli/janus_results/NaCl-singlepoint-summary.yml
start_time: 31/03/2025, 15:37:17
end_time: 31/03/2025, 15:37:17
Reusing configuration files¶
We can extract the configuration used to run our first calculation from the summary file, reusing it with a slight modification.
First, we read in the configuration via the summary file:
[21]:
import yaml
with open("janus_results/NaCl-singlepoint-summary.yml", encoding="utf8") as file:
summary = yaml.safe_load(file)
config = summary["config"]
print(config)
{'arch': 'mace_mp', 'calc_kwargs': {}, 'device': 'cpu', 'file_prefix': None, 'log': None, 'model_path': None, 'out': None, 'properties': [], 'read_kwargs': {}, 'struct': '../data/NaCl.xyz', 'summary': None, 'tracker': False, 'write_kwargs': {}}
Next, let’s change the structure to run the calculations on, ensure we read all images the file (this is actaully the default for single point calculations), and change the calculated property:
[22]:
config["struct"] = "../data/NaCl-set.xyz"
config["read_kwargs"] = {"index": ":"} # Key word arguments, passed to ase.io.read`
config["properties"] = ["hessian"] # This must be a list, even for a single quantity
Now, we write this file out, and use it to run our calculation:
[23]:
with open("singlepoint_config_3.yml", "w", encoding="utf8") as file:
yaml.dump(config, file)
[24]:
! cat singlepoint_config_3.yml
arch: mace_mp
calc_kwargs: {}
device: cpu
file_prefix: null
log: null
model_path: null
out: null
properties:
- hessian
read_kwargs:
index: ':'
struct: ../data/NaCl-set.xyz
summary: null
tracker: false
write_kwargs: {}
[25]:
! janus singlepoint --config singlepoint_config_3.yml
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/e3nn/o3/_wigner.py:10: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
_Jd, _W3j_flat, _W3j_indices = torch.load(os.path.join(os.path.dirname(__file__), 'constants.pt'))
cuequivariance or cuequivariance_torch is not available. Cuequivariance acceleration will be disabled.
Using Materials Project MACE for MACECalculator with /Users/elliottkasoar/.cache/mace/20231210mace128L0_energy_epoch249model
Using float64 for MACECalculator, which is slower but more accurate. Recommended for geometry optimization.
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/mace/calculators/mace.py:139: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
torch.load(f=model_path, map_location=device)
Computing Hessian... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11/11 0:00:00m 0:00:01
We can read in these results, ensuring we read in all structures from the file:
[26]:
NaCl_set_results = read("janus_results/NaCl-set-results.extxyz", index=":")
[27]:
print(NaCl_set_results[0].info["mace_mp_hessian"])
[[[ 1.25015779e+01 -1.01554411e-20 1.38595365e-17]
[-1.29279560e+01 0.00000000e+00 -3.19988073e-22]
[ 3.29895005e-01 0.00000000e+00 3.19839641e-18]
[-2.34182749e-01 0.00000000e+00 0.00000000e+00]
[-3.13032441e-02 0.00000000e+00 -1.60461922e-17]
[ 1.96636174e-01 0.00000000e+00 -1.19262239e-18]
[-3.13032441e-02 -3.46944695e-18 0.00000000e+00]
[ 1.96636174e-01 1.19262239e-18 0.00000000e+00]]
[[-5.25714643e-21 -7.62354636e-01 5.11595856e-18]
[ 0.00000000e+00 1.52481636e+00 -6.50917606e-19]
[ 0.00000000e+00 -6.53117090e-01 4.98732999e-18]
[ 0.00000000e+00 -4.14234119e-02 -3.46944695e-18]
[ 2.16840434e-19 -4.88497760e-03 1.08420217e-19]
[ 0.00000000e+00 -1.07996124e-01 0.00000000e+00]
[ 1.40946282e-18 2.02868811e-01 0.00000000e+00]
[ 0.00000000e+00 -1.57908927e-01 -1.29769071e-23]]
[[-1.37928486e-17 -8.85611216e-21 -7.62354636e-01]
[-2.09289921e-20 1.95148002e-19 1.52481636e+00]
[ 0.00000000e+00 1.73472348e-18 -6.53117090e-01]
[ 8.67361738e-19 0.00000000e+00 -4.14234119e-02]
[ 1.08420217e-18 0.00000000e+00 2.02868811e-01]
[ 0.00000000e+00 0.00000000e+00 -1.57908927e-01]
[-2.16840434e-19 2.16840434e-19 -4.88497760e-03]
[ 0.00000000e+00 8.65754552e-19 -1.07996124e-01]]
[[-1.29279560e+01 0.00000000e+00 -7.47754282e-22]
[ 1.25015779e+01 -4.21566393e-20 -5.43837545e-20]
[-2.34182749e-01 0.00000000e+00 4.33680869e-18]
[ 3.29895005e-01 0.00000000e+00 -4.33680869e-19]
[ 1.96636174e-01 0.00000000e+00 -8.67361738e-19]
[-3.13032441e-02 0.00000000e+00 -4.01154804e-18]
[ 1.96636174e-01 -4.33680869e-19 0.00000000e+00]
[-3.13032441e-02 -3.46944695e-18 0.00000000e+00]]
[[ 0.00000000e+00 1.52481636e+00 3.99342630e-21]
[ 0.00000000e+00 -7.62354636e-01 -5.25365648e-18]
[ 0.00000000e+00 -4.14234119e-02 -1.73472348e-18]
[ 0.00000000e+00 -6.53117090e-01 3.90312782e-18]
[ 1.08420217e-19 -1.07996124e-01 2.16840434e-19]
[-4.33680869e-19 -4.88497760e-03 -8.67361738e-19]
[ 0.00000000e+00 -1.57908927e-01 0.00000000e+00]
[ 1.19262239e-18 2.02868811e-01 2.16836374e-19]]
[[ 3.95859727e-20 -1.11334722e-20 1.52481636e+00]
[-5.32694811e-20 -3.51043463e-18 -7.62354636e-01]
[-8.67361738e-19 0.00000000e+00 -4.14234119e-02]
[ 0.00000000e+00 1.08420217e-18 -6.53117090e-01]
[ 0.00000000e+00 0.00000000e+00 -1.57908927e-01]
[-8.67361738e-19 -4.33680869e-19 2.02868811e-01]
[ 0.00000000e+00 6.50521303e-19 -1.07996124e-01]
[ 5.42101086e-19 -8.65814861e-19 -4.88497760e-03]]
[[ 3.29895005e-01 0.00000000e+00 2.29247877e-22]
[-2.34182749e-01 0.00000000e+00 -6.93703464e-18]
[ 1.25015779e+01 0.00000000e+00 0.00000000e+00]
[-1.29279560e+01 0.00000000e+00 0.00000000e+00]
[-3.13032441e-02 3.36102673e-18 0.00000000e+00]
[ 1.96636174e-01 -9.75781955e-19 0.00000000e+00]
[-3.13032441e-02 0.00000000e+00 9.97465999e-18]
[ 1.96636174e-01 0.00000000e+00 -1.08420217e-19]]
[[ 0.00000000e+00 -6.53117090e-01 1.36864433e-17]
[ 0.00000000e+00 -4.14234119e-02 1.04104033e-17]
[ 0.00000000e+00 -7.62354636e-01 -2.42861287e-17]
[ 0.00000000e+00 1.52481636e+00 4.33680869e-19]
[ 1.30104261e-18 2.02868811e-01 0.00000000e+00]
[ 0.00000000e+00 -1.57908927e-01 0.00000000e+00]
[-2.16840434e-19 -4.88497760e-03 -2.16840434e-19]
[ 0.00000000e+00 -1.07996124e-01 -1.60797602e-23]]
[[-4.68884435e-19 -2.51849707e-19 -6.53117090e-01]
[-1.08616701e-19 1.60834051e-18 -4.14234119e-02]
[ 0.00000000e+00 5.20417043e-18 -7.62354636e-01]
[ 0.00000000e+00 -4.33680869e-19 1.52481636e+00]
[-5.42101086e-19 -2.16840434e-19 -4.88497760e-03]
[ 0.00000000e+00 0.00000000e+00 -1.07996124e-01]
[ 1.13841228e-18 0.00000000e+00 2.02868811e-01]
[-5.42101086e-20 3.03622891e-21 -1.57908927e-01]]
[[-2.34182749e-01 0.00000000e+00 2.08156142e-17]
[ 3.29895005e-01 0.00000000e+00 3.63168159e-22]
[-1.29279560e+01 0.00000000e+00 0.00000000e+00]
[ 1.25015779e+01 0.00000000e+00 -2.77555756e-17]
[ 1.96636174e-01 0.00000000e+00 0.00000000e+00]
[-3.13032441e-02 -1.08420217e-18 0.00000000e+00]
[ 1.96636174e-01 0.00000000e+00 -2.16840434e-19]
[-3.13032441e-02 0.00000000e+00 -9.75781955e-19]]
[[ 0.00000000e+00 -4.14234119e-02 5.20122361e-18]
[-2.16840434e-19 -6.53117090e-01 2.49365789e-17]
[ 0.00000000e+00 1.52481636e+00 0.00000000e+00]
[ 0.00000000e+00 -7.62354636e-01 -2.42861287e-17]
[ 0.00000000e+00 -1.57908927e-01 0.00000000e+00]
[ 5.96311195e-19 2.02868811e-01 -2.16840434e-19]
[ 0.00000000e+00 -1.07996124e-01 4.33680869e-19]
[ 5.42101086e-19 -4.88497760e-03 1.34676753e-24]]
[[ 3.70258146e-19 1.55393156e-18 -4.14234119e-02]
[ 2.34391500e-19 5.00355591e-18 -6.53117090e-01]
[ 0.00000000e+00 0.00000000e+00 1.52481636e+00]
[ 0.00000000e+00 -3.46944695e-18 -7.62354636e-01]
[ 0.00000000e+00 0.00000000e+00 -1.07996124e-01]
[-2.16840434e-19 8.67361738e-19 -4.88497760e-03]
[ 0.00000000e+00 0.00000000e+00 -1.57908927e-01]
[ 5.42101086e-19 8.89837869e-22 2.02868811e-01]]
[[-3.13032441e-02 0.00000000e+00 -1.38778333e-17]
[ 1.96636174e-01 -2.16840434e-19 -3.16522564e-22]
[-3.13032441e-02 0.00000000e+00 0.00000000e+00]
[ 1.96636174e-01 0.00000000e+00 0.00000000e+00]
[ 2.90228947e+00 -1.73472348e-18 1.82145965e-17]
[-3.26931171e+00 5.42101086e-20 5.42101086e-20]
[ 3.63270571e-02 2.16840434e-19 0.00000000e+00]
[ 2.93250854e-05 0.00000000e+00 0.00000000e+00]]
[[ 0.00000000e+00 -4.88497760e-03 -2.80405753e-18]
[ 0.00000000e+00 -1.07996124e-01 -1.51440066e-18]
[ 0.00000000e+00 2.02868811e-01 6.50521303e-19]
[ 0.00000000e+00 -1.57908927e-01 -5.42101086e-19]
[ 1.73472348e-18 -1.57196463e-01 -1.38777878e-17]
[ 1.08420217e-19 5.54360680e-01 0.00000000e+00]
[ 0.00000000e+00 -2.90072704e-01 1.66967135e-17]
[ 0.00000000e+00 -3.91702947e-02 4.55265372e-23]]
[[ 6.17458220e-21 5.62810581e-19 2.02868811e-01]
[-5.26127112e-20 2.02478283e-20 -1.57908927e-01]
[-8.67361738e-19 -2.16840434e-18 -4.88497760e-03]
[ 0.00000000e+00 6.50521303e-19 -1.07996124e-01]
[ 3.46944695e-18 -3.46944695e-18 -1.57196463e-01]
[ 0.00000000e+00 2.16840434e-19 5.54360680e-01]
[ 0.00000000e+00 2.81892565e-18 -2.90072704e-01]
[ 0.00000000e+00 -4.36303623e-19 -3.91702947e-02]]
[[ 1.96636174e-01 0.00000000e+00 1.40225552e-20]
[-3.13032441e-02 0.00000000e+00 -8.90853924e-23]
[ 1.96636174e-01 2.71050543e-20 2.16840434e-19]
[-3.13032441e-02 0.00000000e+00 0.00000000e+00]
[-3.26931171e+00 5.42101086e-20 5.42101086e-20]
[ 2.90228947e+00 0.00000000e+00 -3.46944695e-18]
[ 2.93250854e-05 0.00000000e+00 0.00000000e+00]
[ 3.63270571e-02 -7.37903599e-20 -2.90630794e-19]]
[[ 0.00000000e+00 -1.07996124e-01 -9.88828094e-19]
[ 0.00000000e+00 -4.88497760e-03 -3.15920365e-19]
[ 0.00000000e+00 -1.57908927e-01 7.58941521e-19]
[ 0.00000000e+00 2.02868811e-01 -6.50521303e-19]
[-1.08420217e-19 5.54360680e-01 2.16840434e-19]
[ 0.00000000e+00 -1.57196463e-01 -1.38777878e-17]
[ 0.00000000e+00 -3.91702947e-02 0.00000000e+00]
[ 0.00000000e+00 -2.90072704e-01 1.38777824e-17]]
[[ 5.26377515e-20 -2.71636234e-19 -1.57908927e-01]
[-1.40534952e-20 2.03168692e-19 2.02868811e-01]
[ 0.00000000e+00 4.33680869e-19 -1.07996124e-01]
[ 0.00000000e+00 0.00000000e+00 -4.88497760e-03]
[ 0.00000000e+00 0.00000000e+00 5.54360680e-01]
[ 0.00000000e+00 -6.93889390e-18 -1.57196463e-01]
[ 8.67361738e-19 0.00000000e+00 -3.91702947e-02]
[ 0.00000000e+00 -4.38906520e-22 -2.90072704e-01]]
[[-3.13032441e-02 0.00000000e+00 1.05073809e-20]
[ 1.96636174e-01 0.00000000e+00 5.26481754e-22]
[-3.13032441e-02 0.00000000e+00 0.00000000e+00]
[ 1.96636174e-01 0.00000000e+00 0.00000000e+00]
[ 3.63270571e-02 2.16840434e-19 0.00000000e+00]
[ 2.93250854e-05 0.00000000e+00 0.00000000e+00]
[ 2.90228947e+00 -3.46944695e-18 -6.05182592e-18]
[-3.26931171e+00 2.71050543e-20 -2.71050543e-20]]
[[ 0.00000000e+00 2.02868811e-01 2.22847070e-19]
[ 5.42101086e-20 -1.57908927e-01 -4.88223421e-19]
[ 0.00000000e+00 -4.88497760e-03 -8.67361738e-19]
[ 0.00000000e+00 -1.07996124e-01 -8.67361738e-19]
[ 0.00000000e+00 -2.90072704e-01 1.51788304e-18]
[ 0.00000000e+00 -3.91702947e-02 -9.97465999e-18]
[ 1.73472348e-18 -1.57196463e-01 1.04018670e-17]
[ 6.50521303e-19 5.54360680e-01 4.56900347e-25]]
[[ 1.87572840e-19 -1.38852602e-18 -4.88497760e-03]
[ 1.81240458e-20 -1.28178929e-18 -1.07996124e-01]
[ 0.00000000e+00 2.16840434e-19 2.02868811e-01]
[ 5.42101086e-20 -1.08420217e-19 -1.57908927e-01]
[-2.16840434e-19 -2.16840434e-18 -2.90072704e-01]
[ 0.00000000e+00 4.33680869e-19 -3.91702947e-02]
[-1.73472348e-18 -6.93889390e-18 -1.57196463e-01]
[-2.16840434e-19 -2.15911927e-19 5.54360680e-01]]
[[ 1.96636174e-01 -7.93278890e-19 2.16652481e-19]
[-3.13032441e-02 0.00000000e+00 2.08101348e-21]
[ 1.96636174e-01 0.00000000e+00 -7.86046575e-19]
[-3.13032441e-02 0.00000000e+00 0.00000000e+00]
[ 2.93250854e-05 0.00000000e+00 0.00000000e+00]
[ 3.63270571e-02 2.34616802e-19 -1.99064066e-19]
[-3.26931171e+00 2.71050543e-20 8.13151629e-20]
[ 2.90228947e+00 4.36088969e-18 8.91442740e-19]]
[[-5.42101086e-20 -1.57908927e-01 -3.19204143e-19]
[ 0.00000000e+00 2.02868811e-01 2.58689315e-20]
[ 0.00000000e+00 -1.07996124e-01 -1.30104261e-18]
[ 0.00000000e+00 -4.88497760e-03 -1.30104261e-18]
[-8.67361738e-19 -3.91702947e-02 0.00000000e+00]
[ 0.00000000e+00 -2.90072704e-01 0.00000000e+00]
[ 2.16840434e-19 5.54360680e-01 2.16840434e-19]
[-1.04083409e-17 -1.57196463e-01 -7.88674727e-21]]
[[ 1.14535018e-21 -1.12394604e-18 -1.07996124e-01]
[ 2.93911979e-19 7.62273686e-19 -4.88497760e-03]
[ 5.42101086e-20 -5.42101086e-19 -1.57908927e-01]
[ 0.00000000e+00 0.00000000e+00 2.02868811e-01]
[ 0.00000000e+00 0.00000000e+00 -3.91702947e-02]
[ 0.00000000e+00 0.00000000e+00 -2.90072704e-01]
[ 1.08420217e-19 3.25260652e-19 5.54360680e-01]
[ 1.73472348e-18 -1.29433583e-20 -1.57196463e-01]]]
Setting keyword arguments¶
All janus
commands accept keyword arguments (kwargs), which are input in the form of Python dictionaries: {"key": value}
.
One useful example is passing options that are specific to an MLIP calculator.
For example, MACE has an option to run with D3 dispersion correction, through the dispersion
option. In the command-line, this can be set using:
[28]:
! janus singlepoint --config singlepoint_config_1.yml --calc-kwargs "{'dispersion': True}" --out janus_results/NaCl-dispersion-results.extxyz
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/e3nn/o3/_wigner.py:10: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
_Jd, _W3j_flat, _W3j_indices = torch.load(os.path.join(os.path.dirname(__file__), 'constants.pt'))
cuequivariance or cuequivariance_torch is not available. Cuequivariance acceleration will be disabled.
Using Materials Project MACE for MACECalculator with /Users/elliottkasoar/.cache/mace/20231210mace128L0_energy_epoch249model
Using float64 for MACECalculator, which is slower but more accurate. Recommended for geometry optimization.
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/mace/calculators/mace.py:139: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
torch.load(f=model_path, map_location=device)
Using TorchDFTD3Calculator for D3 dispersion corrections
To avoid the complications of nested quotations, setting this in the configuration file is preferable:
[29]:
%%writefile singlepoint_config_4.yml
struct: ../data/NaCl.xyz
tracker: False
calc_kwargs:
dispersion: True
out: janus_results/NaCl-dispersion-results.extxyz
Writing singlepoint_config_4.yml
[30]:
! janus singlepoint --config singlepoint_config_4.yml
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/e3nn/o3/_wigner.py:10: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
_Jd, _W3j_flat, _W3j_indices = torch.load(os.path.join(os.path.dirname(__file__), 'constants.pt'))
cuequivariance or cuequivariance_torch is not available. Cuequivariance acceleration will be disabled.
Using Materials Project MACE for MACECalculator with /Users/elliottkasoar/.cache/mace/20231210mace128L0_energy_epoch249model
Using float64 for MACECalculator, which is slower but more accurate. Recommended for geometry optimization.
/Users/elliottkasoar/Documents/PSDI/janus-core/.venv/lib/python3.12/site-packages/mace/calculators/mace.py:139: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.
torch.load(f=model_path, map_location=device)
Using TorchDFTD3Calculator for D3 dispersion corrections
Comparing the results before and after the correction:
[31]:
dispersion_results = read("janus_results/NaCl-dispersion-results.extxyz")
print(f"Original results: {results.info['mace_mp_energy']}")
print(f"Results with dispersion correction: {dispersion_results.info['mace_mp_energy']}")
Original results: -27.0300815358917
Results with dispersion correction: -28.749976781125884