Skip to content

Commit 8e91dc3

Browse files
committed
pep8
1 parent 205c493 commit 8e91dc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/lenet.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Let's have a little bit of fun with this...
270270
img = numpy.asarray(img, dtype='float64') / 256.
271271

272272
# put image in 4D tensor of shape (1, 3, height, width)
273-
img_ = img.transpose(2,0,1).reshape(1, 3, 639, 516)
273+
img_ = img.transpose(2, 0, 1).reshape(1, 3, 639, 516)
274274
filtered_img = f(img_)
275275

276276
# plot original image and first and second components of output

0 commit comments

Comments
 (0)