Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 3DCS Datasets
|
| 2 |
+
|
| 3 |
+
This repository hosts multiple 3DCS datasets under separate configs.
|
| 4 |
+
|
| 5 |
+
## Configs
|
| 6 |
+
|
| 7 |
+
- `chirality`: keys, enantiomers, and MolBlocks with 3D coordinates
|
| 8 |
+
- `traj_frames`: per-frame MolBlocks for trajectory data
|
| 9 |
+
- `traj_energies`: per-trajectory energy arrays
|
| 10 |
+
- `rotation`: rotation conformers with MolBlocks and torsion angles
|
| 11 |
+
|
| 12 |
+
## Usage
|
| 13 |
+
|
| 14 |
+
```python
|
| 15 |
+
from datasets import load_dataset
|
| 16 |
+
|
| 17 |
+
chirality = load_dataset("EscheWang/3dcs", name="chirality")
|
| 18 |
+
rotation = load_dataset("EscheWang/3dcs", name="rotation")
|
| 19 |
+
```
|