Skip to content

Commit

Permalink
Cleanup CI dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasdavid committed Nov 24, 2022
1 parent ab905a0 commit 70b6365
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
echo "Installing dependencies and caching them."
python -m pip install --upgrade pip
pip install numpy pandas matplotlib
pip install https://files.pythonhosted.org/packages/04/ea/49fd026ac36fdd79bf072294b139170aefc118e487ccb39af019946797e9/tensorflow-2.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
pip install setuptools pytest pytest-cov parameterized
pip install .
- name:
Expand Down
2 changes: 1 addition & 1 deletion docs/exposure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Grad-CAM (or Grad-CAM++) can be called immediately after that:
.. jupyter-execute::

inputs = np.random.normal(size=(4, 224, 224, 3))
indices = np.asarray([[13], [9], [32], [164]])
indices = np.asarray([[4], [9], [0], [2]])

scores, cams = ke.gradcam(model, inputs, indices)

Expand Down

0 comments on commit 70b6365

Please sign in to comment.