You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,6 @@ See the [List of Supported Models](#list-of-supported-models) section for all av
70
70
> More examples can be found in the `examples` and `tests` folders.
71
71
72
72
`torch-molecule` supports applications in broad domains from chemistry, biology, to materials science. To get started, you can load prepared datasets from `torch_molecule.datasets` (updated after v0.1.3):
73
-
74
73
| Dataset | Description | Function |
75
74
|---------|-------------|----------|
76
75
| qm9 | Quantum chemical properties (DFT level) |`load_qm9`|
@@ -79,23 +78,30 @@ See the [List of Supported Models](#list-of-supported-models) section for all av
79
78
| toxcast | Toxicity of chemical compounds |`load_toxcast`|
80
79
| admet | Chemical absorption, distribution, metabolism, excretion, and toxicity |`load_admet`|
81
80
| gasperm | Six gas permeability properties for polymeric materials |`load_gasperm`|
82
-
81
+
| zinc250k | A common subset of ZINC dataset, which does not have labels and could be used for unconditional generation or virtual screening |`load_zinc250k`|
83
82
84
83
```python
85
84
from torch_molecule.datasets import load_qm9
86
85
87
86
# local_dir is the local path where the dataset will be saved
0 commit comments