Skip to content

NVT #7

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

Open
wants to merge 5 commits into
base: ml17
Choose a base branch
from
Open
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions config/md.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ensemble:
name: nvt
dt: 0.5 # fs time step
temperature: 293 # K

duration: 20_000_000 # fs
n_inner: 5000 # compiled inner steps
sampling_rate: 200 # dump interval
buffer_size: 1000
dr_threshold: 0.5 # Neighborlist skin
checkpoint_interval: 200
57 changes: 57 additions & 0 deletions config/ml17.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
n_epochs: 2000
seed: 1
n_models: 1
n_jitted_steps: 8
patience: 250

data:
batch_size: 1
scale_method: per_element_force_rms_scale
shift_method: per_element_regression_shift
shift_options:
energy_regularisation: 1.0
valid_batch_size: 70
loss:
- name: energy
- name: forces
weight: 4.0
- name: stress
weight: 0.2

metrics:
- name: energy
reductions:
- mae
- name: forces
reductions:
- mae
- name: stress
reductions:
- mae

model:
n_basis: 7
n_radial: 5
nn:
- 512
- 512
r_max: 6.0
r_min: 0.7

b_init: zeros
emb_init: uniform

calc_stress: true
use_zbl: false

descriptor_dtype: fp32
readout_dtype: fp32
scale_shift_dtype: fp32

optimizer:
opt_name: adam
emb_lr: 0.01
nn_lr: 0.005
scale_lr: 0.001
shift_lr: 0.05
zbl_lr: 0.001
Loading