TensorFlow入门测试程序

Posted Run_For_Love一朝一夕一点一滴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TensorFlow入门测试程序相关的知识,希望对你有一定的参考价值。

技术分享图片
 1 import tensorflow as tf
 2 from tensorflow.examples.tutorials.mnist import input_data
 3 
 4 mnist=input_data.read_data_sets("MNIST_data/",one_hot=True)
 5 
 6 # print(mnist.train.images.shape,mnist.train.labels.shape)
 7 # print(mnist.test.images.shape,mnist.test.labels.shape)
 8 # print(mnist.validation.images.shape,mnist.validation.labels.shape)
 9 
10 sess=tf.InteractiveSession()
11 x=tf.placeholder(tf.float32,[None,784])
12 
13 W=tf.Variable(tf.zeros([784,10]))
14 b=tf.Variable(tf.zeros([10]))
15 
16 y=tf.nn.softmax(tf.matmul(x,W)+b)
17 
18 y_=tf.placeholder(tf.float32,[None,10])
19 cross_entropy=tf.reduce_mean(-tf.reduce_sum(y_*tf.log(y),reduction_indices=[1]))
20 
21 train_step=tf.train.GradientDescentOptimizer(0.5).minimize(cross_entropy)
22 tf.initialize_all_variables().run()
23 
24 for i in range(1000):
25     batch_xs,batch_ys=mnist.train.next_batch(100)
26     train_step.run({x:batch_xs,y_:batch_ys})
27 
28 correct_prediction=tf.equal(tf.arg_max(y,1),tf.arg_max(y_,1))
29 accuracy=tf.reduce_mean(tf.cast(correct_prediction,tf.float32))
30 
31 print(accuracy.eval({x:mnist.test.images,y_:mnist.test.labels}))
View Code

 

以上是关于TensorFlow入门测试程序的主要内容,如果未能解决你的问题,请参考以下文章

TensorFlow入门

深度学习入门——测试PyTorch和Tensorflow能正常使用GPU

tensorflow新手必看,tensorflow入门教程,tensorflow示例代码

TensorFlow入门——hello

手写数字识别——基于全连接层和MNIST数据集

Cg入门16:Fragment shader - 片段级光照