File size: 2,932 Bytes
b0bd9c9
 
 
 
 
ab7c0b1
 
b0bd9c9
ab7c0b1
ff4e7bb
 
 
 
 
 
 
 
b0bd9c9
 
ff4e7bb
b10cd54
 
ff4e7bb
b10cd54
ff4e7bb
d95574d
b0bd9c9
 
 
 
 
b10cd54
 
8714152
 
 
 
d95574d
 
71e6ae8
99bac11
cf70b20
 
6f70de6
cf70b20
 
 
 
 
3740b2f
2ef068f
 
62b811f
cf12d6e
2ef068f
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: smiles
    dtype: string
  - name: labels
    sequence: int64
  - name: mask
    sequence: int64
  - name: MW
    dtype: float64
  - name: LogP
    dtype: float64
  - name: TPSA
    dtype: float64
  - name: Complexity
    dtype: float64
  splits:
  - name: train
    num_bytes: 1605736737.3156543
    num_examples: 350183
  - name: test
    num_bytes: 401435330.6843458
    num_examples: 87546
  download_size: 31528613
  dataset_size: 2007172068
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: test
    path: data/test-*
tags:
- chemistry
size_categories:
- 100K<n<1M
task_categories:
- tabular-classification
---

## ChEMBL Drug-Target Activity Dataset

This dataset was extracted from [`ChEMBL34` database](https://doi.org/10.6019/CHEMBL.database.34). It is designed for multitask classification of drug-target activities. It links compound structures with activity data for multiple assays, enabling multitask learning experiments in drug discovery. Key features of the dataset include:

### Multitask Format
- Each assay ID is treated as a separate binary classification task.
- Binary labels (0 for inactive, 1 for active) and masks (indicating valid labels) are provided for each task.

### ChEMBL Assay IDs
This dataset includes 281 ChEMBL assays, corresponding to 281 binary-classification tasks. You can find the full list of assay_ids (same sequence as in labels and mask) in the [assay_ids.json](assay_ids.json) file.

Detail of the assays can be found from [ChEMBL Assays](https://www.ebi.ac.uk/chembl/explore/assays/).

### Column Descriptions



| **Column Name** | **Description**                                                                                           |
|------------------|----------------------------------------------------------------------------------------------------------|
| **smiles**       | Simplified Molecular Input Line Entry System (SMILES) representation of chemical compounds.              |
| **labels**       | A list of length = number of tasks. Could be 0 for inactive, 1 for active, and -1 for missing labels     |
| **mask**         | A list of length = number of tasks. Could be 0 for non-present and 1 for present and valid label         |
| **chembl_id**    | Unique identifier for the compound in the ChEMBL database.                                               |
| **MW**           | Molecular weight of the compound, representing the sum of atomic masses in Daltons (g/mol).              |
| **LogP**         | Partition coefficient (LogP) of the compound, indicating its lipophilicity or hydrophobicity.            |
| **TPSA**         | Topological polar surface area of the compound, reflecting the molecule's polarity and transportability. |
| **Complexity**   | Molecular complexity, measured as the fraction of sp³ hybridized carbons in the molecule (0–1 range).    |