From da82f2934b85a2a22f10eb1d16d47aabe8691756 Mon Sep 17 00:00:00 2001 From: lrudolph Date: Fri, 10 Jul 2015 13:10:29 -0700 Subject: [PATCH 1/3] minor grammar adjustment --- dream.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dream.ipynb b/dream.ipynb index 07bf138..916cab2 100644 --- a/dream.ipynb +++ b/dream.ipynb @@ -19,13 +19,13 @@ "source": [ "# Deep Dreams (with Caffe)\n", "\n", - "This notebook demonstrates how to use [Caffe](http://caffe.berkeleyvision.org/) neural network framework to produce \"dream\" visuals shown in the [Google Research blog post](http://googleresearch.blogspot.ch/2015/06/inceptionism-going-deeper-into-neural.html).\n", + "This notebook demonstrates how to use the [Caffe](http://caffe.berkeleyvision.org/) neural network framework to produce \"dream\" visuals shown in the [Google Research blog post](http://googleresearch.blogspot.ch/2015/06/inceptionism-going-deeper-into-neural.html).\n", "\n", "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", "##Dependencies\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", + "* 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 the 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." ] From c58ba6a0b65b9eba25415ca803193ed3e28f625b Mon Sep 17 00:00:00 2001 From: lrudolph Date: Fri, 10 Jul 2015 13:24:11 -0700 Subject: [PATCH 2/3] adjusted capitalization and fixed a minor grammatical error --- dream.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dream.ipynb b/dream.ipynb index 916cab2..ebc1c99 100644 --- a/dream.ipynb +++ b/dream.ipynb @@ -67,7 +67,7 @@ }, "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", + "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)." ] }, @@ -234,7 +234,7 @@ "id": "QrcdU-lmOZNx" }, "source": [ - "Now we are ready to let the neural network to reveal its dreams! Let's take a [cloud image](https://commons.wikimedia.org/wiki/File:Appearance_of_sky_for_weather_forecast,_Dhaka,_Bangladesh.JPG) as a starting point:" + "Now we are ready to let the neural network reveal its dreams! Let's take a [cloud image](https://commons.wikimedia.org/wiki/File:Appearance_of_sky_for_weather_forecast,_Dhaka,_Bangladesh.JPG) as a starting point:" ] }, { From 395ff1f9999728f2557e6d0d49741c9cb9018881 Mon Sep 17 00:00:00 2001 From: lrudolph Date: Fri, 10 Jul 2015 13:30:25 -0700 Subject: [PATCH 3/3] reverted capitalization --- dream.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dream.ipynb b/dream.ipynb index ebc1c99..7e83625 100644 --- a/dream.ipynb +++ b/dream.ipynb @@ -67,7 +67,7 @@ }, "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", + "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)." ] },