haneulpark commited on
Commit
4d03cac
·
verified ·
1 Parent(s): 9fbb694

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -1
README.md CHANGED
@@ -185,7 +185,7 @@ then load, featurize, split, fit, and evaluate the catboost model
185
  predictions=preds["cat_boost_classifier::BBB+/BBB-"])
186
 
187
 
188
- ## About the DB3B
189
 
190
  ### Overview
191
 
@@ -202,6 +202,59 @@ merge.py
202
  descriptors.py
203
  Further information about curation process can be found in the associated manuscript.
204
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
 
206
  ### Data splits
207
  The original AqSoDB dataset does not define splits, so here we have used the `Realistic Split` method described
 
185
  predictions=preds["cat_boost_classifier::BBB+/BBB-"])
186
 
187
 
188
+ ## Aqueous Solubility Data Curation
189
 
190
  ### Overview
191
 
 
202
  descriptors.py
203
  Further information about curation process can be found in the associated manuscript.
204
 
205
+ ## Examples
206
+
207
+ ### data-preprocess.py
208
+ This file converts 2 example sub-datasets (25 instances from raw forms of dataset-A[1] and dataset-H[6])
209
+ which are then converted into a standardized format. (This is an example how to preprocess datasets.
210
+ The preporcessed data files already in the data folder.)
211
+
212
+ inputs:
213
+
214
+ raw-dataset-A.csv (various solubility metrics (g/L, mg/L..) with Name and CAS Number)
215
+ raw-dataset-H.csv (has solubility values(LogS) with SLN representations)
216
+
217
+ outputs:
218
+
219
+ dataset-A.csv
220
+ dataset-H.csv
221
+
222
+ Note
223
+ To apply this method to your own dataset, perform the following steps:
224
+
225
+ Check the available properties, representations, and solubility units of your dataset
226
+ Select the suitable preprocessing methods from the "preprocess.py" module.
227
+
228
+
229
+ ### data-curation.py
230
+ This file curates, i.e., merges datasets, selects most reliable values among multiple occurences, and adds 2D descriptors from 9 different standardized datasets that are obtained after the pre-processing step.
231
+
232
+ inputs:
233
+
234
+ dataset-A.csv [1]
235
+ dataset-B.csv [2]
236
+ dataset-C.csv [3]
237
+ dataset-D.csv [4]
238
+ dataset-E.csv [5]
239
+ dataset-F.csv [6]
240
+ dataset-G.csv [7]
241
+ dataset-H.csv [6]
242
+ dataset-I.csv [8]
243
+
244
+ outputs:
245
+
246
+ dataset_curated.csv
247
+
248
+ Note
249
+ To apply this method, your input dataset should be in the standardized format (output of preprocessing) having following columns:
250
+
251
+ ID
252
+ Name
253
+ InChI
254
+ InChIKey
255
+ SMILES
256
+ Solubility
257
+ Prediction
258
 
259
  ### Data splits
260
  The original AqSoDB dataset does not define splits, so here we have used the `Realistic Split` method described