Datasets:

Modalities:
Text
Formats:
parquet
Libraries:
Datasets
pandas
License:
gabrielbianchin commited on
Commit
0a85e47
·
1 Parent(s): 48369c2

update readme

Browse files
Files changed (1) hide show
  1. README.md +9 -22
README.md CHANGED
@@ -5,7 +5,6 @@ tags:
5
  - bioinformatics
6
  - drug-discovery
7
  - blood-brain-barrier
8
- - graph-neural-network
9
  configs:
10
  - config_name: classification
11
  data_files:
@@ -68,14 +67,14 @@ dataset_info:
68
  dataset_size: 97943
69
  ---
70
 
71
- # BBBP Dataset
72
  The paper is under review.
73
 
74
  \[[Github Repo](https://github.com/pcdslab/BBBP-Hybrid)\] |
75
- \[[Classification Model](https://huggingface.co/SaeedLab/BBBP-Classification)\] | \[[Regression Model](https://huggingface.co/SaeedLab/BBBP-Regression)\] | \[[Cite](#citation)\]
76
 
77
  ## Abstract
78
- The blood-brain barrier is a critical interface of the central nervous system, preventing most compounds from entering the brain. Predicting BBB permeability is essential for drug discovery targeting neurological diseases. Experimental in vitro and in vivo assays are costly and limited, motivating the use of computational approaches. While machine learning has shown promising results, combining handcrafted chemical descriptors with deep learning embeddings remains underexplored. In this work, we propose a model that integrates atom-level embeddings derived from SMILES representations with descriptors from cheminformatics libraries. We also introduce a curated dataset aggregated from multiple literature sources, which, to the best of our knowledge, is the largest available for this task. Results demonstrate that our approach outperforms state-of-the-art methods in classification and achieves competitive performance in regression, highlighting the benefits of combining deep representations with domain-specific features.
79
 
80
  ## Dataset Details
81
 
@@ -87,14 +86,14 @@ The number of samples for BBB- and BBB+ is presented below (corresponding to TAB
87
 
88
  | Set Name | BBB+ | BBB- |
89
  | :--------- | -----: | -----: |
90
- | Training | 4,506 | 2,902 |
91
- | Validation | 557 | 370 |
92
- | Test | 573 | 354 |
93
  | **Total** | **5,636** | **3,626** |
94
 
95
  ### Regression Task
96
 
97
- For the regression task, based on the classification dataset, only compounds with logBB values were utilized. This resulted in a subset with 850 samples for training, 103 samples for validation, and 103 samples for testing.
98
 
99
  ## Dataset Usage
100
 
@@ -105,13 +104,7 @@ Use the code below to load the dataset for classification task.
105
  ```py
106
  from datasets import load_dataset
107
 
108
- data_files = {
109
- "train": "train_classification.csv",
110
- "validation": "val_classification.csv",
111
- "test": "test_classification.csv"
112
- }
113
-
114
- dataset_dict = load_dataset("SaeedLab/BBBP", data_files=data_files)
115
  ```
116
 
117
  ### Regression
@@ -121,13 +114,7 @@ Use the code below to load the dataset for regression task.
121
  ```py
122
  from datasets import load_dataset
123
 
124
- data_files = {
125
- "train": "train_regression.csv",
126
- "validation": "val_regression.csv",
127
- "test": "test_regression.csv"
128
- }
129
-
130
- dataset_dict = load_dataset("SaeedLab/BBBP", data_files=data_files)
131
  ```
132
 
133
  ## Citation
 
5
  - bioinformatics
6
  - drug-discovery
7
  - blood-brain-barrier
 
8
  configs:
9
  - config_name: classification
10
  data_files:
 
67
  dataset_size: 97943
68
  ---
69
 
70
+ # BBB Dataset
71
  The paper is under review.
72
 
73
  \[[Github Repo](https://github.com/pcdslab/BBBP-Hybrid)\] |
74
+ \[[Inference Model](https://huggingface.co/SaeedLab/TITAN-BBB)\] | \[[Cite](#citation)\]
75
 
76
  ## Abstract
77
+ The blood-brain barrier (BBB) restricts most compounds from entering the brain, making BBB permeability prediction crucial for drug discovery. Experimental assays are costly and limited, motivating computational approaches. While machine learning has shown promise, combining chemical descriptors with deep learning embeddings remains underexplored. Here, we introduce TITAN-BBB, a multi-modal architecture that combines tabular, image, and text-based features via attention mechanism. To evaluate, we aggregated multiple literature sources to create the largest BBB permeability dataset to date, enabling robust training for both classification and regression tasks. Our results demonstrate that TITAN-BBB achieves 86.5% of balanced accuracy on classification tasks and 0.436 of mean absolute error for regression. Our approach also outperforms state-of-the-art models in both classification and regression performance, demonstrating the benefits of combining deep and domain-specific representations.
78
 
79
  ## Dataset Details
80
 
 
86
 
87
  | Set Name | BBB+ | BBB- |
88
  | :--------- | -----: | -----: |
89
+ | Training | 4,564 | 3,029 |
90
+ | Validation | 434 | 293 |
91
+ | Test | 638 | 304 |
92
  | **Total** | **5,636** | **3,626** |
93
 
94
  ### Regression Task
95
 
96
+ For the regression task, based on the classification dataset, only compounds with logBB values were utilized. This resulted in a subset with 963 samples for training, 84 samples for validation, and 100 samples for testing.
97
 
98
  ## Dataset Usage
99
 
 
104
  ```py
105
  from datasets import load_dataset
106
 
107
+ dataset_dict = load_dataset("SaeedLab/BBB", "classification")
 
 
 
 
 
 
108
  ```
109
 
110
  ### Regression
 
114
  ```py
115
  from datasets import load_dataset
116
 
117
+ dataset_dict = load_dataset("SaeedLab/BBB", "regression")
 
 
 
 
 
 
118
  ```
119
 
120
  ## Citation