DrugRes

Drug Response Prediction

Task Overview

Drug Response Prediction involves predicting interactions or relationships between multiple biological entities. These multi-instance prediction tasks are crucial for understanding complex biological systems and drug discovery processes.

Available Datasets

Usage Example

You can access these datasets using the PyTDC library:

from tdc_ml.multi_pred import DrugRes

# Load a dataset
data = DrugRes(name='GDSC1')

# Access the data
df = data.get_data()
print(df.head())

# Get train/val/test splits
split = data.get_split()
print(split)