2019年8月6日
摘要: # -*- coding: utf-8 -*-import numpy as npnp.random.seed(1337)import matplotlib.pyplot as pltfrom keras.mod... 阅读全文
posted @ 2019-08-06 19:38 蔡军帅 阅读(167) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- import numpy as np np.random.seed(1337) import matplotlib.pyplot as plt from keras.models import Sequential from keras.layers import LSTM,TimeDistributed,Dense from keras.opti... 阅读全文
posted @ 2019-08-06 19:38 蔡军帅 阅读(1270) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- import numpy as np np.random.seed(1337) from keras.datasets import mnist from keras.utils import np_utils from keras.models import Sequential from keras.layers import SimpleR... 阅读全文
posted @ 2019-08-06 16:31 蔡军帅 阅读(822) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*-import numpy as npnp.random.seed(1337)from keras.datasets import mnistfrom keras.ut... 阅读全文
posted @ 2019-08-06 16:31 蔡军帅 阅读(187) 评论(0) 推荐(0)