Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/tensorflow/deepviz
Browse files Browse the repository at this point in the history
  • Loading branch information
colah committed Aug 13, 2018
2 parents 4f34d9a + ce1be4e commit 3102450
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -41,7 +41,7 @@ You can run the notebooks on your local machine, too. Clone the repository and f
<img src="https://storage.googleapis.com/lucid-static/common/stickers/colab-tutorial.png" width="500" alt=""></img>
</a>

<a href="https://colab.research.google.com/github/tensorflow/lucid/blob/master/notebooks/tutorial.ipynb">**Modelzoo Notebook**</a>
<a href="https://colab.research.google.com/github/tensorflow/lucid/blob/master/notebooks/modelzoo.ipynb">**Modelzoo Notebook**</a> - If you want to study techniques for visualizing and understanding neural networks, it's important to be able to try your experiments on multiple models. As of lucid v0.3, we provide a consistent API for interacting with 27 different vision models.

## Feature Visualization Notebooks
*Notebooks corresponding to the [Feature Visualization](https://distill.pub/2017/feature-visualization/) article*
Expand Down
2 changes: 1 addition & 1 deletion lucid/recipes/caricature.py
Expand Up @@ -47,7 +47,7 @@ def feature_inversion(img, model, layer=None, n_steps=512, cossim_pow=0.0):
transform.pad(8, mode='constant', constant_value=.5),
transform.jitter(8),
transform.random_scale([0.9, 0.95, 1.05, 1.1] + [1]*4),
transform.random_rotate(range(-5, 5) + [0]*5),
transform.random_rotate(list(range(-5, 5)) + [0]*5),
transform.jitter(2),
]

Expand Down

0 comments on commit 3102450

Please sign in to comment.