minst数据集怎么跑

Posted 我在看代码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了minst数据集怎么跑相关的知识,希望对你有一定的参考价值。

方法一:命令行跑程序 参考http://blog.csdn.net/zhuiqiuk/article/details/52993544

(我用的python3,注意print的语法)

 

方法二:用IDE跑

将下好的mnist数据集拷贝到pycharm中,文件夹命名为MNIST_data

再创建一个python脚本,代码如下

import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("./MNIST_data/", one_hot=True)


x = tf.placeholder(tf.float32, [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}))

 

更多问题,可以私信我新浪微博@嘤嘤要偷偷瘦下去

 

以上是关于minst数据集怎么跑的主要内容,如果未能解决你的问题,请参考以下文章

分类问题MINST数据集与二元分类器

[cnn]cnn训练MINST数据集demo

编写C语言版本的卷积神经网络CNN之一:前言与Minst数据集

用PyTorch构建基于卷积神经网络的手写数字识别模型

笔记:基于keras的不同神经网络模型Minst手写体识别

Python学习之路:MINST实战第一版