摘要: import time import keras from keras.utils import np_utils start = time.time() (x_train, y_train), (x_test, y_test) = keras.datasets.mnist.load_data() rows = 28 cols = 28 CLASSES = 10 x_train = x_train 阅读全文
posted @ 2019-10-16 16:43 yytxdy 阅读(345) 评论(0) 推荐(1) 编辑