Commit a574e3f2 authored by Bharath Ramsundar's avatar Bharath Ramsundar Committed by GitHub
Browse files

Merge pull request #807 from rbharath/notebooks

Adds three more tutorials to website
parents 1f68fc15 6829ee14
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -211,6 +211,7 @@ class TensorGraph(Model):
          print('Ending global_step %d: Average loss %g' % (self.global_step,
                                                            avg_loss))
          avg_loss, n_batches = 0.0, 0.0
      if n_batches > 0:
        avg_loss = float(avg_loss) / n_batches
        print('Ending global_step %d: Average loss %g' % (self.global_step,
                                                          avg_loss))
+2 −2
Original line number Diff line number Diff line
BACE
====
Modeling Inhibitors of BACE-1
=============================

.. notebook:: BACE 
+4 −0
Original line number Diff line number Diff line
Using Multitask Deep Fully Connected Networks on the MUV dataset
================================================================

.. notebook:: Multitask_Networks_on_MUV
+4 −0
Original line number Diff line number Diff line
Modeling Small Molecule Toxicity with Graph Convolutions
========================================================

.. notebook:: graph_convolutional_networks_for_tox21 
+4 −0
Original line number Diff line number Diff line
@@ -17,8 +17,12 @@ them in Jupyter::
.. toctree::
   :maxdepth: 2
   :titlesonly:
   :caption: DeepChem Tutorials

   BACE 
   graph_convolutional_networks_for_tox21
   mnist 
   Multitask_Networks_on_MUV 


Contributing tutorials 
Loading