Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

Minor typo fixes in dream.ipynb #3

Merged
merged 2 commits into from
Jul 3, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update dream.ipynb
  • Loading branch information
Ji-Sung Kim committed Jul 2, 2015
commit 841b18e96a1120af1d20ba6b0788a8919a4ffc24
6 changes: 3 additions & 3 deletions dream.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"It'll be interesting to see what imagery people are able to generate using the described technique. If you post images to Google+, Facebook, or Twitter, be sure to tag them with **#deepdream** so other researchers can check them out too.\n",
"\n",
"##Dependences\n",
"This notebook is designed to have as few depencences as possible:\n",
"This notebook is designed to have as few dependencies as possible:\n",
"* Standard Python scientific stack: [NumPy](http://www.numpy.org/), [SciPy](http://www.scipy.org/), [PIL](http://www.pythonware.com/products/pil/), [IPython](http://ipython.org/). Those libraries can also be installed as a part of one of scientific packages for Python, such as [Anaconda](http://continuum.io/downloads) or [Canopy](https://store.enthought.com/).\n",
"* [Caffe](http://caffe.berkeleyvision.org/) deep learning framework ([installation instructions](http://caffe.berkeleyvision.org/installation.html)).\n",
"* Google [protobuf](https://developers.google.com/protocol-buffers/) library that is used for Caffe model manipulation."
Expand Down Expand Up @@ -66,8 +66,8 @@
},
"source": [
"## Loading DNN model\n",
"In this notebook we are going to use a [GoogLeNet](https://github.com/BVLC/caffe/tree/master/models/bvlc_googlenet) model trained on [ImageNet](http://www.image-net.org/) dataset.\n",
"Feel free to experiment with other models from Caffe [Model Zoo](https://github.com/BVLC/caffe/wiki/Model-Zoo). One particulary interesting [model](http://places.csail.mit.edu/downloadCNN.html) was trained in [MIT Places](http://places.csail.mit.edu/) dataset. It produced many visuals from the [original blog post](http://googleresearch.blogspot.ch/2015/06/inceptionism-going-deeper-into-neural.html)."
"In this notebook we are going to use a [GoogleNet](https://github.com/BVLC/caffe/tree/master/models/bvlc_googlenet) model trained on [ImageNet](http://www.image-net.org/) dataset.\n",
"Feel free to experiment with other models from Caffe [Model Zoo](https://github.com/BVLC/caffe/wiki/Model-Zoo). One particularly interesting [model](http://places.csail.mit.edu/downloadCNN.html) was trained in [MIT Places](http://places.csail.mit.edu/) dataset. It produced many visuals from the [original blog post](http://googleresearch.blogspot.ch/2015/06/inceptionism-going-deeper-into-neural.html)."
]
},
{
Expand Down