File size: 6,566 Bytes
f307cfa a60d7ab f307cfa a60d7ab f307cfa b2e2e77 f307cfa 80b7184 e7c7fb4 e8c0ac4 9fc8243 e7c7fb4 15a7b20 e7c7fb4 80b7184 e7c7fb4 15a7b20 b2e2e77 80b7184 15a7b20 b2e2e77 80b7184 b2e2e77 15a7b20 9b859bc 15a7b20 e7c7fb4 9b859bc 15a7b20 e7c7fb4 9fc8243 e7c7fb4 568fcbc e7c7fb4 15a7b20 e7c7fb4 9b859bc e7c7fb4 9b859bc 15a7b20 9b859bc e7c7fb4 15a7b20 e7c7fb4 15a7b20 c562bdd e7c7fb4 80b7184 | 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 | ---
license: mit
task_categories:
- tabular-classification
- tabular-regression
task_ids:
- multi-class-classification
- tabular-single-column-regression
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
language:
- en
tags:
- chemistry
- toxicity
- molecular-design
- SMILES
- drug-discovery
- benchmark
- multimodal
- structure-activity-relationship
pretty_name: "ToxiMol: A Benchmark for Structure-Level Molecular Detoxification"
dataset_info:
features:
- name: task
dtype: string
- name: id
dtype: int64
- name: smiles
dtype: string
- name: image_path
dtype: string
splits:
- name: test
num_examples: 660
configs:
- config_name: ames
data_files: "ames/*"
- config_name: carcinogens_lagunin
data_files: "carcinogens_lagunin/*"
- config_name: clintox
data_files: "clintox/*"
- config_name: dili
data_files: "dili/*"
- config_name: herg
data_files: "herg/*"
- config_name: herg_central
data_files: "herg_central/*"
- config_name: herg_karim
data_files: "herg_karim/*"
- config_name: ld50_zhu
data_files: "ld50_zhu/*"
- config_name: skin_reaction
data_files: "skin_reaction/*"
- config_name: tox21
data_files: "tox21/*"
- config_name: toxcast
data_files: "toxcast/*"
---
# ToxiMol: A Benchmark for Structure-Level Molecular Detoxification
[](https://arxiv.org/pdf/2506.10912)
[](https://huggingface.co/datasets/DeepYoke/ToxiMol-benchmark)
## Overview
**ToxiMol** is the first comprehensive benchmark for **molecular toxicity repair** tailored to general-purpose **Multimodal Large Language Models (MLLMs)**. This is the dataset repository for the paper "Breaking Bad Molecules: Are MLLMs Ready for Structure-Level Molecular Detoxification?".
## Key Features
### 🧬 Comprehensive Dataset
- **660 representative toxic molecules** spanning diverse toxicity mechanisms and varying granularities
- **11 primary toxicity repair tasks** based on [Therapeutics Data Commons (TDC) platform](https://tdcommons.ai/single_pred_tasks/tox/)
- **Multi-granular coverage**: Tox21 (12 sub-tasks), ToxCast (10 sub-tasks), and 9 additional datasets
- **Multimodal inputs**: SMILES strings + 2D molecular structure images rendered using RDKit
### 🎯 Challenging Task Definition
The molecular toxicity repair task requires models to:
1. **Identify potential toxicity endpoints** from molecular structures
2. **Interpret semantic constraints** from natural language descriptions
3. **Generate structurally similar substitute molecules** that eliminate toxic fragments
4. **Satisfy drug-likeness and synthetic feasibility** requirements
### 📊 Systematic Evaluation
- **ToxiEval framework**: Automated evaluation integrating toxicity prediction, synthetic accessibility, drug-likeness, and structural similarity
- **Comprehensive analysis**: Evaluation of ~30 mainstream MLLMs with ablation studies
- **Multi-dimensional metrics**: Success rate analysis across different evaluation criteria and failure modes
## Dataset Structure
### Task Overview
| Dataset | Task Type | # Molecules | Description |
|---------|-----------|-------------|-------------|
| **AMES** | Binary Classification | 60 | Mutagenicity testing |
| **Carcinogens** | Binary Classification | 60 | Carcinogenicity prediction |
| **ClinTox** | Binary Classification | 60 | Clinical toxicity data |
| **DILI** | Binary Classification | 60 | Drug-induced liver injury |
| **hERG** | Binary Classification | 60 | hERG channel inhibition |
| **hERG_Central** | Binary Classification | 60 | Large-scale hERG database with integrated cardiac safety profiles |
| **hERG_Karim** | Binary Classification | 60 | hERG data from Karim et al. |
| **LD50_Zhu** | Regression (log(LD50) < 2) | 60 | Acute toxicity |
| **Skin_Reaction** | Binary Classification | 60 | Adverse skin reactions |
| **Tox21** | Binary Classification (12 sub-tasks) | 60 | Nuclear receptors, stress response pathways, and cellular toxicity mechanisms (ARE, p53, ER, AR, etc.) |
| **ToxCast** | Binary Classification (10 sub-tasks) | 60 | Diverse toxicity pathways including mitochondrial dysfunction, immunosuppression, and neurotoxicity |
### Data Structure
Each entry contains:
```json
{
"task": "string", // Toxicity task identifier
"id": "int", // Molecule ID
"smiles": "string", // SMILES representation
"image": "binary" // 2D molecular structure image binary
}
```
<!-- ## Usage -->
<!--
### Loading the Dataset
```python
from datasets import load_dataset
# Load a specific subdataset
ames_dataset = load_dataset("DeepYoke/ToxiMol-benchmark", "ames")
tox21_dataset = load_dataset("DeepYoke/ToxiMol-benchmark", "tox21")
# Access the data
for example in ames_dataset['test']:
print(f"Task: {example['task']}")
print(f"ID: {example['id']}")
print(f"SMILES: {example['smiles']}")
print(f"Image: {example['image_path']}")
print("-" * 50)
``` -->
## Available Subdatasets
```python
subdatasets = [
"ames", "carcinogens_lagunin", "clintox", "dili",
"herg", "herg_central", "herg_karim", "ld50_zhu",
"skin_reaction", "tox21", "toxcast"
]
# Load all datasets
datasets = {}
for name in subdatasets:
datasets[name] = load_dataset("DeepYoke/ToxiMol-benchmark", data_dir=name)
```
## Experimental Results
Our systematic evaluation of ~30 mainstream MLLMs reveals:
- **Current limitations**: Overall success rates remain relatively low across models
- **Emerging capabilities**: Models demonstrate initial potential in toxicity understanding, semantic constraint adherence, and structure-aware molecule editing
- **Key challenges**: Structural validity, multi-dimensional constraint satisfaction, and failure mode attribution
## Citation
If you use this dataset in your research, please cite:
```bibtex
@misc{lin2025breakingbadmoleculesmllms,
title={Breaking Bad Molecules: Are MLLMs Ready for Structure-Level Molecular Detoxification?},
author={Fei Lin and Ziyang Gong and Cong Wang and Yonglin Tian and Tengchao Zhang and Xue Yang and Gen Luo and Fei-Yue Wang},
year={2025},
eprint={2506.10912},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2506.10912},
}
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. |