just the meaning of the image
Keras極簡(jiǎn)入門教程本文是《Keras Tutorial:The Ultimate Beginner's Guide to Deep Learning in Python[https://eli...
just the meaning of the image
Keras極簡(jiǎn)入門教程本文是《Keras Tutorial:The Ultimate Beginner's Guide to Deep Learning in Python[https://eli...
I 've looked up in the keras document.
model.add(Conv2D(32, (3, 3), activation='relu', input_shape=(1, 28, 28)))
Perhaps this line should be:
model.add(Conv2D(32, (3, 3), activation='relu', input_shape=(28, 28, 1)))
Thus the input shape of Conv2D object should be : (x_dimension, y_dimension, depth)
(Sorry there's something wrong with my Chinese input method.)
Keras極簡(jiǎn)入門教程本文是《Keras Tutorial:The Ultimate Beginner's Guide to Deep Learning in Python[https://eli...