
TensorFlow&Keras
ljz2015301785
这个作者很懒,什么都没留下…
展开
-
Keras实现cifar10分类
from tensorflow.keras.datasets import cifar10from tensorflow.python.keras.utils import np_utilsfrom tensorflow.keras.models import Sequentialfrom tensorflow.python.keras.layers.core import Dense, ...原创 2020-03-10 12:07:29 · 424 阅读 · 0 评论 -
minist手写数字识别(CNN)
import numpyfrom tensorflow.keras.datasets import mnistfrom tensorflow.keras.models import Sequentialfrom tensorflow.keras.layers import Densefrom tensorflow.keras.layers import Dropoutfrom tens...原创 2020-03-08 13:22:25 · 746 阅读 · 0 评论 -
mnist手写识别数据集(Keras实现)
import numpy #导入数据库from tensorflow.keras.datasets import mnistfrom tensorflow.keras.models import Sequentialfrom tensorflow.keras.layers import Densefrom tensorflow.keras.utils import to_catego...原创 2020-03-08 12:35:28 · 465 阅读 · 0 评论