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

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 304127a commit b2a5de3
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 @@ -146,7 +146,7 @@
" dst.diff[:] = dst.data # specify the optimization objective\n",
" net.backward(start=end)\n",
" g = src.diff[0]\n",
" # apply normaized ascent step to the input image\n",
" # apply normalized ascent step to the input image\n",
" src.data[:] += step_size/np.abs(g).mean() * g\n",
"\n",
" src.data[0] = np.roll(np.roll(src.data[0], -ox, -1), -oy, -2) # unshift image\n",
Expand Down

0 comments on commit b2a5de3

Please sign in to comment.