Datasets:
Size:
10M - 100M
Upload README.qm9-smiles.md with huggingface_hub
Browse files- README.qm9-smiles.md +37 -0
README.qm9-smiles.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: []
|
| 3 |
+
pretty_name: QM9 (SMILES-only)
|
| 4 |
+
config_name: qm9-smiles
|
| 5 |
+
tags:
|
| 6 |
+
- molecules
|
| 7 |
+
- chemistry
|
| 8 |
+
- parquet
|
| 9 |
+
task_categories:
|
| 10 |
+
- graph-regression
|
| 11 |
+
homepage: https://pytorch-geometric.readthedocs.io/en/latest/_modules/torch_geometric/datasets/qm9.html#QM9
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# qm9-smiles
|
| 15 |
+
|
| 16 |
+
QM9 with canonical SMILES and 19 regression targets (no graph tensors).
|
| 17 |
+
|
| 18 |
+
## Splits
|
| 19 |
+
|
| 20 |
+
| Split | File |
|
| 21 |
+
| --- | --- |
|
| 22 |
+
| train | `train.parquet` |
|
| 23 |
+
| validation | `val.parquet` |
|
| 24 |
+
| test | `test.parquet` |
|
| 25 |
+
|
| 26 |
+
## Features
|
| 27 |
+
|
| 28 |
+
- **mol_id**: int64 unique identifier per molecule
|
| 29 |
+
- **smiles**: string canonical SMILES
|
| 30 |
+
- **target**: list[float32], length 19, regression targets (converted units per PyG)
|
| 31 |
+
|
| 32 |
+
## References
|
| 33 |
+
|
| 34 |
+
- PyTorch Geometric QM9 implementation: `https://pytorch-geometric.readthedocs.io/en/latest/_modules/torch_geometric/datasets/qm9.html#QM9`
|
| 35 |
+
- MoleculeNet paper: `https://arxiv.org/abs/1703.00564`
|
| 36 |
+
|
| 37 |
+
|