What problem does it solve?
This Skill solves the problem of accessing and utilizing AI-ready drug discovery datasets and benchmarks for therapeutic machine learning and pharmacological prediction.
Core Features & Use Cases
- Access to AI-Ready Datasets: Provides access to a wide range of datasets including ADME, toxicity, and drug-target interactions for therapeutic machine learning.
- Benchmarking: Offers standardized benchmarks for evaluating machine learning models on pharmaceutical tasks.
- Use Case: For a machine learning practitioner working on drug discovery, this Skill allows quick access to datasets like ADME, toxicity, and drug-target interactions to develop and validate models.
Quick Start
Use the PyTDC skill to load and evaluate a dataset for a specific task. For example, to load the ADME dataset 'Caco2_Wang', run: ```python
from tdc.single_pred import ADME
data = ADME(name='Caco2_Wang')
split = data.get_split(method='scaffold', seed=1, frac=[0.7, 0.1, 0.2])