kexinhuang commited on
Commit
cca4f63
1 Parent(s): 188d911

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ metrics:
5
+ - accuracy
6
+ - AUC ROC
7
+ - precision
8
+ - recall
9
+ tags:
10
+ - biology
11
+ - chemistry
12
+ library_name: tdc
13
+ license: bsd-2-clause
14
+ ---
15
+
16
+ ## Dataset description
17
+
18
+ As a membrane separating circulating blood and brain extracellular fluid, the blood-brain barrier (BBB) is the protection layer that blocks most foreign drugs. Thus the ability of a drug to penetrate the barrier to deliver to the site of action forms a crucial challenge in development of drugs for central nervous system.
19
+
20
+
21
+
22
+ ## Task description
23
+
24
+ Binary classification. Given a drug SMILES string, predict the activity of BBB.
25
+
26
+
27
+ ## Dataset statistics
28
+
29
+ Total: 1,975 drugs
30
+
31
+
32
+ ## Dataset split:
33
+ Random split on 70% training, 10% validation, and 20% testing
34
+ To load the dataset in TDC, type
35
+
36
+ ```python
37
+ from tdc.single_pred import ADME
38
+ data = ADME(name = 'BBB_Martins')
39
+ ```
40
+
41
+ ## Model description
42
+ Morgan chemical fingerprint with an MLP decoder. Model is tuned with 100 runs using Ax platform.
43
+
44
+
45
+ ```python
46
+ from tdc import tdc_hf_interface
47
+ tdc_hf = tdc_hf_interface("BBB_Martins-Morgan")
48
+ # load deeppurpose model from this repo
49
+ dp_model = tdc_hf_herg.load_deeppurpose('./data')
50
+ tdc_hf.predict_deeppurpose(dp_model, ['YOUR SMILES STRING'])
51
+ ```
52
+
53
+ ## References:
54
+
55
+ [1] Martins, Ines Filipa, et al. “A Bayesian approach to in silico blood-brain barrier penetration modeling.” Journal of chemical information and modeling 52.6 (2012): 1686-1697.