Commit d4de1f20 authored by Bharath Ramsundar's avatar Bharath Ramsundar
Browse files

fixes

parent 83c867b3
Loading
Loading
Loading
Loading
+13 −0
Original line number Original line Diff line number Diff line
# BACE Dataset Examples

The BACE dataset is from the following paper:

Subramanian, Govindan, et al. "Computational modeling of β-secretase 1 (BACE-1) inhibitors using ligand based approaches." Journal of chemical information and modeling 56.10 (2016): 1936-1949.

This study considers a small dataset of 205 compounds datasets
which are used to train a model which is evaluated on a larger
external validation set of 1273 compounds.

The file `bace_datasets.py` loads the data as used in the
original paper. `bace_rf.py` demonstrates training a random
forest against this dataset.
+11 −0
Original line number Original line Diff line number Diff line
# Clintox dataset models

The Clintox dataset is a collection of "clinical toxicity" datasets that compares drugs approved by the FDA and drugs that have failed clinical trials for toxicity reasons. It contains two classification tasks for 1491 compounds:

1) Clinical trial toxicity/non-toxicity
2) FDA approval status

In this example, we construct fully connected deep networks and
graph convolutional models for the task of predicting clinical
toxicity/FDA approval status from molecular structure.
+0 −4
Original line number Original line Diff line number Diff line
@@ -2,10 +2,6 @@
Script that trains multitask models on clintox dataset.
Script that trains multitask models on clintox dataset.
@author Caleb Geniesse
@author Caleb Geniesse
"""
"""
from __future__ import print_function
from __future__ import division
from __future__ import unicode_literals

import numpy as np
import numpy as np
import deepchem as dc
import deepchem as dc
from deepchem.molnet import load_clintox
from deepchem.molnet import load_clintox