anonymous commited on
Commit
4d5f707
·
1 Parent(s): ff33be6

updated gitignore

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. models/upet/README.md +0 -31
README.md CHANGED
@@ -24,7 +24,7 @@ All model implementations, training code, evaluation code, and checkpoints are l
24
  The scripts are configured to be launched from the repository root directory. For example, to eval a matris model, run
25
 
26
  ```bash
27
- ./models/matris/scripts/run_matris.sh
28
  ```
29
 
30
 
 
24
  The scripts are configured to be launched from the repository root directory. For example, to eval a matris model, run
25
 
26
  ```bash
27
+ ./models/matris/scripts/eval_matris.sh
28
  ```
29
 
30
 
models/upet/README.md DELETED
@@ -1,31 +0,0 @@
1
- Install the requirements:
2
-
3
- ` pip install upet `
4
-
5
- To evaluate the models, run
6
-
7
- for UPET cons. 2.9M
8
- ```
9
- python eval_upet_pt.py \
10
- --xyz ../../datasets/xyz/testdata.xyz \
11
- --pt-path runs/seed42_upet_perstr_300ep_bs8_1e-4_lf5.pt \
12
- --forces-key forces \
13
- --progress
14
- ```
15
-
16
- for UPET non-cons. 3.0M
17
- ```
18
- python eval_upet_noncon_mtt.py \
19
- --xyz ../../datasets/xyz/testdata.xyz \
20
- --pt-path runs/seed42_upet_noncon_300ep_bs8_1e-4_lf5.pt \
21
- --forces-key forces
22
- ```
23
-
24
- for PET pretrained mad-s 25.9M
25
- ```
26
- python eval_upet_pt.py \
27
- --xyz ../../datasets/xyz/testdata.xyz \
28
- --pt-path runs/seed42_pet-mad-s_perstr_100ep_bs8_1e-4_lf5.pt \
29
- --forces-key forces \
30
- --progress
31
- ```