-
Notifications
You must be signed in to change notification settings - Fork 8
/
2024-01-07-mace-128-L2.sh
42 lines (42 loc) · 1.19 KB
/
2024-01-07-mace-128-L2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
srun python /pscratch/sd/c/cyrusyc/mace/mace/cli/run_train.py \
--name=$exp_name \
--train_file="../../dataset/mptrj-gga-ggapu-train" \
--valid_file="../../dataset/mptrj-gga-ggapu-val" \
--statistics_file="../../dataset/mptrj-gga-ggapu-statistics.json" \
--loss='universal' \
--energy_weight=1 \
--forces_weight=10 \
--compute_stress=True \
--stress_weight=100 \
--stress_key='stress' \
--eval_interval=1 \
--error_table='PerAtomMAE' \
--model="ScaleShiftMACE" \
--interaction_first="RealAgnosticResidualInteractionBlock" \
--interaction="RealAgnosticResidualInteractionBlock" \
--num_interactions=2 \
--correlation=3 \
--max_ell=3 \
--r_max=6.0 \
--max_L=2 \
--num_channels=128 \
--num_radial_basis=10 \
--MLP_irreps="16x0e" \
--scaling='rms_forces_scaling' \
--num_workers=16 \
--lr=0.005 \
--weight_decay=1e-8 \
--ema \
--ema_decay=0.995 \
--scheduler_patience=5 \
--batch_size=16 \
--valid_batch_size=32 \
--max_num_epochs=200 \
--patience=50 \
--amsgrad \
--device=cuda \
--distributed \
--seed=1 \
--clip_grad=100 \
--keep_checkpoints \
--save_cpu \