--- license: cc-by-4.0 tags: - chemistry - conformer-generation - molecules pretty_name: GEOM-Drugs (Mirror) --- # GEOM: Molecular Conformations (Drugs Subset) **Note:** *This is a mirrored and specifically preprocessed version of the GEOM dataset (Drugs subset), originally created by Simon Axelrod and Rafael Gómez-Bombarelli. All credit for the original conformational sampling and DFT calculations goes to the original authors. This repository exists to guarantee availability and exact reproducibility for downstream machine learning projects.* ## Dataset Description The Geometric Ensemble Of Molecules (GEOM) dataset contains millions of molecular conformations annotated by energy and statistical weight. This specific repository hosts the "Drugs" subset, which focuses on realistically sized drug-like molecules with experimental data, and contains only the conformers and smiles associated. * **Original Paper:** [GEOM, energy-annotated molecular conformations for property prediction and molecular generation](https://www.nature.com/articles/s41597-022-01288-4) * **Original GitHub:** [learningmatter-mit/geom](https://github.com/learningmatter-mit/geom) --- ## Data Structure & Organization To maximize flexibility and reproducibility, this repository is organized into specific dataset versions and pre-computed splits. ### Available Versions * **`allconfs/`**: The full, unredacted version containing all available conformers. * **`5confs/`**: A redacted, lightweight version limited to a maximum of 5 conformers per molecule. ### Directory Layout Inside each version folder, you will find the **unsplit** dataset files located at the root, alongside pre-computed `train/` and `test/` subdirectories: ```text geom_drugs/ ├── 5confs/ │ ├── train/ │ │ ├── train_confs.sdf │ │ ├── train_counts.csv │ │ └── train_smiles.smi │ ├── test/ │ │ ├── test_confs.sdf │ │ ├── test_counts.csv │ │ └── test_smiles.smi │ ├── 5confs_confs.sdf <-- Unsplit dataset │ ├── 5confs_counts.csv <-- Unsplit counts │ └── 5confs_smiles.smi <-- Unsplit SMILES └── allconfs/ └── ... (Matches the structure above) ``` ### File Types Each split (and the unsplit root) contains three complementary files representing the exact same pool of molecules: 1. **`*_confs.sdf`**: The main Structure-Data File containing the 3D molecular conformers. 2. **`*_counts.csv`**: A summary file mapping each unique SMILES string to the number of conformers it has in the corresponding `.sdf` file. 3. **`*_smiles.smi`**: A strict 1:1 text file containing the SMILES string for every single entry in the `.sdf` file (useful for fast, sequential parsing or redundancy checks). --- ## Train / Test Splitting Strategy The `train/` and `test/` subfolders contain an 80/20 split of the data. **Note on Data Leakage:** The splits are calculated strictly based on **unique SMILES keys**, *not* by individual conformer counts. This guarantees that all conformers belonging to a specific molecule are assigned exclusively to either the training set or the testing set. There are absolutely **zero shared molecules** between the train and test splits, ensuring robust validation of model generalizability. If you prefer to use alternative splitting strategies (e.g., scaffold splits or specific property cutoffs), you can ignore the subdirectories and build custom splits using the unsplit files located at the root of each version folder. --- ## Citation Information If you use this dataset, you must cite the original creators: ```bibtex @article{axelrod2022geom, title={GEOM, energy-annotated molecular conformations for property prediction and molecular generation}, author={Axelrod, Simon and G{\'o}mez-Bombarelli, Rafael}, journal={Scientific Data}, volume={9}, number={1}, pages={185}, year={2022}, publisher={Nature Publishing Group UK London} } ```