diff --git a/beginner_source/nn_tutorial.py b/beginner_source/nn_tutorial.py index 28764e46132..616ef4981ee 100644 --- a/beginner_source/nn_tutorial.py +++ b/beginner_source/nn_tutorial.py @@ -753,8 +753,7 @@ def preprocess(x): # # Our CNN is fairly concise, but it only works with MNIST, because: # - It assumes the input is a 28\*28 long vector -# - It assumes that the final CNN grid size is 4\*4 (since that's the average -# pooling kernel size we used) +# - It assumes that the final CNN grid size is 4\*4 (since that's the average pooling kernel size we used) # # Let's get rid of these two assumptions, so our model works with any 2d # single channel image. First, we can remove the initial Lambda layer by