Unverified Commit 952375fc authored by Bharath Ramsundar's avatar Bharath Ramsundar Committed by GitHub
Browse files

Merge pull request #2209 from deepchem/tf23

Bump to tf 2.3 and tfp to 0.11.0
parents 9ce7a2a4 45d8b63e
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
```

+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


+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ DeepChem currently supports Python 3.5 through 3.7 and requires these packages o
- `SciPy`_
- `TensorFlow`_

  - `deepchem>=2.4.0` requires tensorflow v2 (2.2.0)
  - `deepchem>=2.4.0` requires tensorflow v2 (2.3.0)
  - `deepchem<2.4.0` requires tensorflow v1 (>=1.14)


Loading