Tensorflow 上手——手写数字识别

下面代码是Tensorflow入门教程中的代码,实现了一个softmax分类器。

第4行是将data文件夹下的mnist数据压缩包读取为tf使用的minibatch字典。

第6-11行定义了所用的变量。

第12行训练过程。

第13-15行创建会话。

第17-19行代入数据开始循环。

第20-21行评估模型。

运行很快结束,得到正确率为91.75%。

import tensorflow.examples.tutorials.mnist.input_data as input_data
import tensorflow as tf

mnist = input_data.read_data_sets("data", one_hot=True)

x = tf.placeholder("float", [None, 784])
W = tf.Variable(tf.zeros([784,10]))
b = tf.Variable(tf.zeros([10]))
y = tf.nn.softmax(tf.matmul(x,W) + b)
y_ = tf.placeholder("float", [None,10])
cross_entropy = -tf.reduce_sum(y_*tf.log(y))
train_step = tf.train.GradientDescentOptimizer(0.01).minimize(cross_entropy)
init = tf.initialize_all_variables()
sess = tf.Session()
sess.run(init)

for i in range(1000):
    batch_xs, batch_ys = mnist.train.next_batch(100)
    sess.run(train_step, feed_dict={x: batch_xs, y_: batch_ys})

correct_prediction = tf.equal(tf.argmax(y,1), tf.argmax(y_,1))
accuracy = tf.reduce_mean(tf.cast(correct_prediction, "float"))
print(sess.run(accuracy, feed_dict={x: mnist.test.images, y_: mnist.test.labels}))
原文地址:https://www.cnblogs.com/qw12/p/6135762.html