Skip to content

Commit

Permalink
Merge pull request pkmital#8 from adattudos/master
Browse files Browse the repository at this point in the history
type conversion was missing in std deviation calculation
  • Loading branch information
pkmital authored Oct 31, 2016
2 parents d1404e5 + dbd1834 commit 394e8d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion session-3/session-3.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
},
"outputs": [],
"source": [
"std_img = ds.std()\n",
"std_img = ds.std().astype(np.uint8)\n",
"plt.imshow(std_img)\n",
"print(std_img.shape)"
]
Expand Down

0 comments on commit 394e8d9

Please sign in to comment.