Commit 413c6a43 authored by peastman's avatar peastman
Browse files

Merge branch 'master' into molnet

parents bd52b89c ae12a7eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ conda install -y -c conda-forge rdkit deepchem==2.3.0
You install the nightly build version via pip. The nightly version is built by the HEAD of DeepChem.

```bash
pip install tensorflow==2.2.0
pip install tensorflow==2.3.0
pip install --pre deepchem
```

+12 −11
Original line number Diff line number Diff line
@@ -134,6 +134,7 @@ class Featurizer(object):

    override_args_info = ''
    for arg_name, default in zip(args_names, args_default_values):
      if arg_name in self.__dict__:
        arg_value = self.__dict__[arg_name]
        # validation
        # skip list
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ def test_compute_model_performance_multitask_classifier():
  y = np.stack([y1, y2], axis=1)
  dataset = NumpyDataset(X, y)

  features = layers.Input(shape=(n_data_points // 2, n_features))
  features = layers.Input(shape=(n_features))
  dense = layers.Dense(n_tasks * n_classes)(features)
  logits = layers.Reshape((n_tasks, n_classes))(dense)
  output = layers.Softmax()(logits)

docs/.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
_files/
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ The nightly version is built by the HEAD of DeepChem.

.. code-block:: bash

    pip install tensorflow==2.2.0
    pip install tensorflow==2.3.0
    pip install --pre deepchem


Loading