摘要: 1、获取mnist数据集,得到正确的数据格式 mnist = input_data.read_data_sets('MNIST_data',one_hot=True) 2、定义网络大小:图片的大小是28*28,784个像素点,输入神经元为784个,输出0~9个数,输出神经元为10个 n_input 阅读全文
posted @ 2019-02-26 21:28 hengxin 阅读(610) 评论(0) 推荐(0) 编辑
摘要: 1、tensorflow结构 import tensorflow as tfimport numpy as np #create datax_data=np.random.rand(100).astype(np.float32)y_data=x_data*0.1+0.3 定义线性方程 #create 阅读全文
posted @ 2019-02-26 11:00 hengxin 阅读(249) 评论(0) 推荐(0) 编辑