Arslan Mazitov
commited on
Commit
·
dffaaf1
1
Parent(s):
44fd0e1
Updated README
Browse files
README.md
CHANGED
@@ -10,12 +10,12 @@ The model can be downloaded directly from Hugging Face and loaded for use with P
|
|
10 |
|
11 |
## List of available models
|
12 |
|
13 |
-
- PET MAD v1.
|
14 |
-
- PET MAD v1.
|
15 |
- PET MAD v1.0.1
|
16 |
- PET MAD v1.0.0
|
17 |
-
- PET MAD v0.4.1
|
18 |
-
- PET MAD v0.3.2
|
19 |
|
20 |
|
21 |
## Downloading the Model
|
@@ -23,7 +23,7 @@ The model can be downloaded directly from Hugging Face and loaded for use with P
|
|
23 |
To download the model, you can use `wget` or `curl` to download the model checkpoint directly from the Hugging Face repository.
|
24 |
|
25 |
```bash
|
26 |
-
wget https://huggingface.co/lab-cosmo/pet-mad/resolve/
|
27 |
```
|
28 |
|
29 |
Alternatively, you can use the `metatrain` library, which will allow you to download and export the model to a TorchScript format, and save the extensions, if there are any, to the `extensions/` folder. To install `metatrain`, run the following command:
|
@@ -35,19 +35,21 @@ pip install metatrain[pet]
|
|
35 |
Then, you can export the model using the following command:
|
36 |
|
37 |
```bash
|
38 |
-
mtt export https://huggingface.co/lab-cosmo/pet-mad/resolve/v1.
|
39 |
```
|
40 |
|
41 |
## Usage
|
42 |
|
43 |
-
To see the examples of how to use the model, please refer to the PET
|
44 |
|
45 |
|
46 |
## Changelog
|
47 |
|
48 |
-
- v1.
|
49 |
-
|
50 |
-
|
51 |
-
- v1.0 -
|
|
|
|
|
52 |
- v0.4.1 - Technical pre-relase
|
53 |
- v0.3.2 - Technical pre-relase
|
|
|
10 |
|
11 |
## List of available models
|
12 |
|
13 |
+
- PET MAD v1.1.0 (dev)
|
14 |
+
- PET MAD v1.0.2 (paper)
|
15 |
- PET MAD v1.0.1
|
16 |
- PET MAD v1.0.0
|
17 |
+
- PET MAD v0.4.1 (deprecated)
|
18 |
+
- PET MAD v0.3.2 (deprecated)
|
19 |
|
20 |
|
21 |
## Downloading the Model
|
|
|
23 |
To download the model, you can use `wget` or `curl` to download the model checkpoint directly from the Hugging Face repository.
|
24 |
|
25 |
```bash
|
26 |
+
wget https://huggingface.co/lab-cosmo/pet-mad/resolve/v1.0.2/models/pet-mad-v1.0.2.ckpt
|
27 |
```
|
28 |
|
29 |
Alternatively, you can use the `metatrain` library, which will allow you to download and export the model to a TorchScript format, and save the extensions, if there are any, to the `extensions/` folder. To install `metatrain`, run the following command:
|
|
|
35 |
Then, you can export the model using the following command:
|
36 |
|
37 |
```bash
|
38 |
+
mtt export https://huggingface.co/lab-cosmo/pet-mad/resolve/v1.0.2/models/pet-mad-v1.0.2.ckpt
|
39 |
```
|
40 |
|
41 |
## Usage
|
42 |
|
43 |
+
To see the examples of how to use the model, please refer to the PET-MAD GitHub [repository](https://github.com/lab-cosmo/pet-mad).
|
44 |
|
45 |
|
46 |
## Changelog
|
47 |
|
48 |
+
- v1.1.0 - Dev. version of the PET-MAD with the non-conservative forces and stresses.
|
49 |
+
This version has notably worse performance on molecular systems,
|
50 |
+
and is not recommended for production use, as for now.
|
51 |
+
- v1.0.2 - The stable release version of the PET-MAD, which is used in the paper.
|
52 |
+
- v1.0.1 - Same model as v1.0.0 but with the new PET implementation in metatrain.
|
53 |
+
- v1.0.0 - Initial release of the PET MAD model with the the old PET implementation.
|
54 |
- v0.4.1 - Technical pre-relase
|
55 |
- v0.3.2 - Technical pre-relase
|