Skip to content

Commit

Permalink
small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemcdonald committed Jul 2, 2015
1 parent fe8fc9b commit a02ad16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dream.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
"def make_step(net, step_size=1.5, end='inception_4c/output', jitter=32, clip=True):\n",
" '''Basic gradient ascent step.'''\n",
"\n",
" src = net.blobs['data'] # input image is storred in Net's 'data' blob\n",
" src = net.blobs['data'] # input image is stored in Net's 'data' blob\n",
" dst = net.blobs[end]\n",
"\n",
" ox, oy = np.random.randint(-jitter, jitter+1, 2)\n",
Expand Down

0 comments on commit a02ad16

Please sign in to comment.