Datasets:
File size: 7,708 Bytes
9e306ba e029fa6 9e306ba d3d5f48 e029fa6 d3d5f48 9e306ba e029fa6 9e306ba e029fa6 9e306ba e029fa6 9e306ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | ---
license: cc-by-nc-4.0
language:
- en
pretty_name: THEMol
size_categories:
- 1B<n<10B
tags:
- chemistry
- molecular-dynamics
- density-functional-theory
- medicine
- electrolytes
configs:
- config_name: hessian
data_files:
- split: full
path: "Hessian/hessian_dataset.csv"
- config_name: hessianrelax
data_files:
- split: full
path: "HessianRelax/relax_dataset.csv"
- config_name: torsionscan
data_files:
- split: full
path: "TorsionScan/torsion_dataset.csv"
- config_name: torsionscanrelax
data_files:
- split: full
path: "TorsionScanRelax/torsion_relax_dataset.csv"
- config_name: mbis
data_files:
- split: full
path: "MBIS/mbis_dataset.csv"
---
# THEMol: Torsion, Hessian, Energy of Molecules
## Dataset Summary
THEMol is an open-source collection of quantum mechanical properties tailored for organic molecules. It provides large-scale density functional theory (DFT) data for exploring intramolecular potential energy surfaces, including optimized geometries, structural relaxation trajectories, torsion scans, constrained torsion relaxation trajectories, Hessian matrices, and MBIS-derived atomic properties.
The dataset contains five tailored subsets and over three billion DFT calculations for molecules with up to 50 non-hydrogen atoms. Its chemical space spans twelve essential elements and diverse molecular architectures relevant to drug discovery, electrolytes, ionic liquids, and broader molecular modeling applications.
See the [paper](https://arxiv.org/abs/2605.14973) and [GitHub repository](https://github.com/ByteDance-Seed/THEMol) for more details. The GitHub repository provides data readers, validation utilities, and statistical scripts.
## Dataset Details
### Dataset Description
- **Repository** [https://github.com/ByteDance-Seed/THEMol](https://github.com/ByteDance-Seed/THEMol)
- **Paper** [https://arxiv.org/abs/2605.14973](https://arxiv.org/abs/2605.14973)
- **Data format** CSV index files plus HDF5 data files.
- **Computation scale** more than three billion DFT calculations across five subsets.
- **Molecular scope** organic molecules with up to 50 non-hydrogen atoms.
- **Element coverage** H, C, N, O, S, F, Cl, Br, Si, B, P, and I.
### Subsets
| Subset | Level of Theory | Entries | Supplementary Metrics | Description |
| :--- | :--- | ---: | :--- | :--- |
| Hessian | B3LYP-D3(BJ)/DZVP | 3,102,537 | - | Optimized molecular geometries and corresponding Hessian matrices. |
| Hessian Relax | B3LYP-D3(BJ)/DZVP | 4,811,722 | 281,123,880 relaxation steps | Complete structural relaxation trajectories for the Hessian subset. |
| TorsionScan | B3LYP-D3(BJ)/DZVP | 4,192,791 | 2,436,985 molecules; 93,994,576 constraints | Comprehensive in-ring and non-ring torsional scans after constrained optimization. |
| TorsionScan Relax | B3LYP-D3(BJ)/DZVP | 4,914,677 | 3,090,560 molecules; 110,235,160 constraints; 2,993,685,868 steps | Complete constrained structural relaxation trajectories for the TorsionScan subset. |
| MBIS | PBE0/def2-TZVPD, or DZVP for I atoms | 3,082,151 | - | Atomic properties and model parameters from Minimal Basis Iterative Stockholder (MBIS) partitioning. |
## Dataset Structure
The dataset is organized by subset. Each subset contains one CSV index file and HDF5 files referenced by the `h5_file` column.
```text
/
├── Hessian/
│ ├── hessian_dataset.csv
│ └── *.h5
├── HessianRelax/
│ ├── relax_dataset.csv
│ └── *.h5
├── TorsionScan/
│ ├── torsion_dataset.csv
│ └── *.h5
├── TorsionScanRelax/
│ ├── torsion_relax_dataset.csv
│ └── *.h5
└── MBIS/
├── mbis_dataset.csv
└── *.h5
```
### Data Fields
All HDF5 files are keyed by `uuid`. The CSV index files contain the UUID, mapped SMILES strings, and the HDF5 file location needed to retrieve each molecular record.
#### Hessian
**CSV columns**: `uuid`, `mapped_nonisomeric_smiles`, `mapped_isomeric_smiles`, `h5_file`
**HDF5 structure**:
```text
/<uuid>/
mapped_nonisomeric_smiles utf-8 string
mapped_isomeric_smiles utf-8 string
atomic_numbers (N, 1) int32
coords (N, 3) float64
hessian (3N, 3N) float64
```
#### Hessian Relax
**CSV columns**: `uuid`, `mapped_nonisomeric_smiles`, `mapped_isomeric_smiles`, `num_steps`, `h5_file`
**HDF5 structure**:
```text
/<uuid>/
mapped_nonisomeric_smiles utf-8 string
mapped_isomeric_smiles utf-8 string
atomic_numbers (N, 1) int32
step 0/
energy scalar float64
coords (N, 3) float64
forces (N, 3) float64
...
step k/
energy scalar float64
coords (N, 3) float64
forces (N, 3) float64
```
#### TorsionScan
**CSV columns**: `uuid`, `mapped_nonisomeric_smiles`, `mapped_isomeric_smiles`, `torsion_indices`, `h5_file`, `num_constraints`
**HDF5 structure**:
```text
/<uuid>/
mapped_nonisomeric_smiles utf-8 string
mapped_isomeric_smiles utf-8 string
atomic_numbers (N, 1) int32
torsion_atom_indices (4,) int32
constraint 0/
energy scalar float64
coords (N, 3) float64
forces (N, 3) float64
constraint 1/
...
```
#### TorsionScan Relax
**CSV columns**: `uuid`, `mapped_nonisomeric_smiles`, `mapped_isomeric_smiles`, `torsion_indices`, `h5_file`, `num_constraints`, `num_total_steps`
**HDF5 structure**:
```text
/<uuid>/
mapped_nonisomeric_smiles utf-8 string
mapped_isomeric_smiles utf-8 string
atomic_numbers (N, 1) int32
torsion_atom_indices (4,) int32
constraint 0/
energy (M,) float64
coords (M, N, 3) float64
forces (M, N, 3) float64
constraint 1/
...
```
Here `M` is the number of steps.
#### MBIS
**CSV columns**: `uuid`, `mapped_nonisomeric_smiles`, `mapped_isomeric_smiles`, `h5_file`
**HDF5 structure**:
```text
/<uuid>/
mapped_nonisomeric_smiles utf-8 string
mapped_isomeric_smiles utf-8 string
atomic_numbers (N, 1) int32
coords (N, 3) float64
mbis_info/
atomic_volumes (N, 1) float64
atomic_charge (N, 1) float64
atomic_dipole (N, 3) float64
atomic_quadrupole (N, 3, 3) float64
parameters (M, 3) float64
```
Here `M` is the number of MBIS Slater functions.
For `parameters`, each row contains the 0-based parent atom index, the Slater-function charge population `N_i`, and the inverse width `1/sigma_i`.
### Units
| Quantity | Unit |
| :--- | :--- |
| Coordinates | Å |
| Energy | kcal mol^-1 |
| Force | kcal mol^-1 Å^-1 |
| Hessian | kcal mol^-1 Å^-2 |
| Charge | e |
| Dipole | e Å |
| Quadrupole | e Å^2 |
| Volume | Å^3 |
| 1/sigma_i | Å^-1 |
## Licenses
[Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/).
## Citation
If you use THEMol in your research or applications, please cite:
```bibtex
@misc{THEMol,
title={THEMol dataset: Torsion, Hessian, and Energy of Molecules},
author={Jiashu Liang and Tianze Zheng and Yu Xia and Xingyuan Xu and Xu Han and Zhi Wang and Siyuan Liu and Ailun Wang and Yu Liu and Shiqian Tan and Dongfei Liu and Zhichen Pu and Yuanheng Wang and Qiming Sun and Xiaojie Wu and Wen Yan},
year={2026},
eprint={2605.14973},
archivePrefix={arXiv},
primaryClass={physics.chem-ph},
url={https://arxiv.org/abs/2605.14973},
}
```
|