上传者: 38516380
|
上传时间: 2021-09-28 18:11:18
|
文件大小: 50KB
|
文件类型: PDF
说明
本例子利用TensorFlow搭建一个全连接神经网络,实现对MNIST手写数字的识别。
先上代码
from tensorflow.examples.tutorials.mnist import input_data
import tensorflow as tf
# prepare data
mnist = input_data.read_data_sets('MNIST_data', one_hot=True)
xs = tf.placeholder(tf.float32, [None, 784])
ys = tf.placeholder(tf.float32, [None, 10]