Commit d327b71e authored by peastman's avatar peastman Committed by GitHub
Browse files

Merge branch 'master' into seq2seq

parents e1b9624a 65d2b7c5
Loading
Loading
Loading
Loading
+41.8 KiB

File added.

No diff preview for this file type.

+3 −1
Original line number Diff line number Diff line
@@ -585,7 +585,9 @@ class GraphConvTensorGraph(TensorGraph):
        print('Starting epoch %i' % epoch)
      for ind, (X_b, y_b, w_b, ids_b) in enumerate(
          dataset.iterbatches(
              self.batch_size, pad_batches=True, deterministic=deterministic)):
              self.batch_size,
              pad_batches=pad_batches,
              deterministic=deterministic)):
        d = {}
        for index, label in enumerate(self.my_labels):
          if self.mode == 'classification':
+3 −0
Original line number Diff line number Diff line
@@ -15,6 +15,9 @@ conda install -y ipywidgets
conda install -y zlib
conda install -y cmake
yes | pip install gym[atari]
conda install -y -c auto pubchempy
conda install -y xlrd
conda install -y seaborn

cd examples/notebooks
nosetests --with-timer tests.py --with-xunit --xunit-file=notebook_tests.xml|| true
+4 −0
Original line number Diff line number Diff line
Creating a high fidelity DeepChem dataset from experimental data
================================================================

.. notebook:: dataset_preparation
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ them in Jupyter::
   graph_convolutional_networks_for_tox21
   mnist 
   Multitask_Networks_on_MUV 
   dataset_preparation


Contributing tutorials 
Loading