yoonholee commited on
Commit
e22a6a4
·
verified ·
1 Parent(s): 5e97889

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +94 -0
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ - tabular-regression
6
+ tags:
7
+ - chemistry
8
+ - drug-discovery
9
+ - molecules
10
+ - ADMET
11
+ - SMILES
12
+ - molecular-properties
13
+ size_categories:
14
+ - 100K<n<1M
15
+ ---
16
+
17
+ # MoleculeBench
18
+
19
+ Pre-computed molecular property scores for **417,500 unique drug-like molecules** from ZINC250K and dockstring, scored with three computational chemistry tools.
20
+
21
+ ## Quick Start
22
+
23
+ ```python
24
+ import pandas as pd
25
+
26
+ df = pd.read_parquet("hf://datasets/yoonholee/MoleculeBench/all_results.parquet")
27
+ print(df.shape) # (417500, 126)
28
+
29
+ # Filter drug-like molecules
30
+ druglike = df[
31
+ (df["admet_ai.QED"] > 0.5) &
32
+ (df["rdkit_properties.LipinskiViolations"] == 0) &
33
+ (df["admet_ai.BBB_Martins"] > 0.8)
34
+ ]
35
+ ```
36
+
37
+ ## Dataset Details
38
+
39
+ | | |
40
+ |---|---|
41
+ | **Molecules** | 417,500 unique canonical SMILES |
42
+ | **Sources** | ZINC250K (249K) + dockstring (260K), deduplicated |
43
+ | **Columns** | 126 (1 SMILES + 98 ADMET-AI + 24 RDKit + 3 similarity) |
44
+ | **Format** | Parquet (291 MB) |
45
+
46
+ ## Column Reference
47
+
48
+ ### ADMET-AI (98 columns)
49
+
50
+ Predicted with [ADMET-AI](https://github.com/swansonk14/admet_ai) (Chemprop-RDKit models trained on TDC datasets). Each property has a raw prediction and a DrugBank-approved percentile.
51
+
52
+ **Physicochemical:** `molecular_weight`, `logP`, `hydrogen_bond_acceptors`, `hydrogen_bond_donors`, `Lipinski`, `QED`, `stereo_centers`, `tpsa`
53
+
54
+ **Absorption:** `HIA_Hou`, `Bioavailability_Ma`, `Caco2_Wang`, `PAMPA_NCATS`, `Pgp_Broccatelli`, `Solubility_AqSolDB`, `HydrationFreeEnergy_FreeSolv`, `Lipophilicity_AstraZeneca`
55
+
56
+ **Distribution:** `BBB_Martins`, `PPBR_AZ`, `VDss_Lombardo`
57
+
58
+ **Metabolism:** `CYP1A2_Veith`, `CYP2C9_Veith`, `CYP2C9_Substrate_CarbonMangels`, `CYP2C19_Veith`, `CYP2D6_Veith`, `CYP2D6_Substrate_CarbonMangels`, `CYP3A4_Veith`, `CYP3A4_Substrate_CarbonMangels`
59
+
60
+ **Excretion:** `Clearance_Hepatocyte_AZ`, `Clearance_Microsome_AZ`, `Half_Life_Obach`
61
+
62
+ **Toxicity:** `AMES`, `Carcinogens_Lagunin`, `ClinTox`, `DILI`, `hERG`, `LD50_Zhu`, `Skin_Reaction`, `NR-AR`, `NR-AR-LBD`, `NR-AhR`, `NR-Aromatase`, `NR-ER`, `NR-ER-LBD`, `NR-PPAR-gamma`, `SR-ARE`, `SR-ATAD5`, `SR-HSE`, `SR-MMP`, `SR-p53`
63
+
64
+ Each property also has a `*_drugbank_approved_percentile` column (49 total).
65
+
66
+ ### RDKit Properties (24 columns)
67
+
68
+ Computed with RDKit. Prefixed with `rdkit_properties.`:
69
+
70
+ `MolWt`, `LogP`, `QED`, `TPSA`, `HBondDonorCount`, `HBondAcceptorCount`, `RotatableBondCount`, `RingCount`, `AromaticRingCount`, `HeavyAtomCount`, `FractionCSP3`, `MolarRefractivity`, `FormalCharge`, `BasicAmineCount`, `AccessibleSurfaceArea`, `SlogP_VSA5`, `PEOE_VSA6`, `Kappa1`, `BalabanJ`, `BertzCT`, `SyntheticAccessibility`, `PAINS`, `LipinskiViolations`, `MurckoScaffold`
71
+
72
+ ### Similarity Search (3 columns)
73
+
74
+ Nearest neighbors from a FAISS index over ChEMBL/PubChem/BindingDB (~2M compounds):
75
+
76
+ - `similarity.similar_compounds` — JSON list of top-k neighbors with SMILES, Tanimoto similarity, source database, and metadata
77
+ - `similarity.count` — number of neighbors returned
78
+ - `similarity.error` — error message if search failed (rare)
79
+
80
+ ## Source Datasets
81
+
82
+ - **ZINC250K**: 249,455 drug-like molecules from [ZINC](https://zinc.docking.org/) via the [chemical_vae](https://github.com/aspuru-guzik-group/chemical_vae) paper
83
+ - **dockstring**: 260,155 molecules from the [dockstring](https://github.com/dockstring/dockstring) benchmark (ExCAPE-DB subset with docking scores for 58 protein targets)
84
+
85
+ After canonicalization and deduplication, 1,041 overlapping molecules were removed.
86
+
87
+ ## Generation
88
+
89
+ Scored using [MoleculeBench](https://github.com/yoonholee/MoleculeBench), which runs each tool as an isolated HTTP worker service:
90
+
91
+ ```bash
92
+ uv run moleculebench --start-services
93
+ uv run python benchmark_all.py
94
+ ```