marinkaz commited on
Commit
e85aa79
1 Parent(s): 1775389

Update readme

Browse files
Files changed (1) hide show
  1. README.md +11 -4
README.md CHANGED
@@ -9,6 +9,10 @@ metrics:
9
  tags:
10
  - biology
11
  - chemistry
 
 
 
 
12
  library_name: tdc
13
  license: bsd-2-clause
14
  ---
@@ -23,16 +27,18 @@ Binary classification. Given a drug SMILES string, predict the activity of BBB.
23
  ## Dataset statistics
24
  Total: 1,975; Train_val: 1,580; Test: 395
25
 
26
- ## Dataset split:
27
  Random split on 70% training, 10% validation, and 20% testing
 
28
  To load the dataset in TDC, type
 
29
  ```python
30
  from tdc.single_pred import ADME
31
  data = ADME(name = 'BBB_Martins')
32
  ```
33
 
34
  ## Model description
35
- AttentiveFP is a Graph Attention Network-based molecular representation learning method. Model is tuned with 100 runs using Ax platform.
36
  To load the pre-trained model, type
37
 
38
  ```python
@@ -43,5 +49,6 @@ dp_model = tdc_hf_herg.load_deeppurpose('./data')
43
  tdc_hf.predict_deeppurpose(dp_model, ['YOUR SMILES STRING'])
44
  ```
45
 
46
- ## References:
47
- [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.
 
 
9
  tags:
10
  - biology
11
  - chemistry
12
+ - therapeutic science
13
+ - drug design
14
+ - drug development
15
+ - therapeutics
16
  library_name: tdc
17
  license: bsd-2-clause
18
  ---
 
27
  ## Dataset statistics
28
  Total: 1,975; Train_val: 1,580; Test: 395
29
 
30
+ ## Dataset split
31
  Random split on 70% training, 10% validation, and 20% testing
32
+
33
  To load the dataset in TDC, type
34
+
35
  ```python
36
  from tdc.single_pred import ADME
37
  data = ADME(name = 'BBB_Martins')
38
  ```
39
 
40
  ## Model description
41
+ AttentiveFP is a Graph Attention Network-based molecular representation learning method. The model is tuned with 100 runs using the Ax platform.
42
  To load the pre-trained model, type
43
 
44
  ```python
 
49
  tdc_hf.predict_deeppurpose(dp_model, ['YOUR SMILES STRING'])
50
  ```
51
 
52
+ ## References
53
+ * Dataset entry in Therapeutics Data Commons, https://tdcommons.ai/single_pred_tasks/adme/#bbb-blood-brain-barrier-martins-et-al
54
+ * 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.