Tensorflow - Testing a mnist neural net with my own images

£可爱£侵袭症+ 提交于 2019-12-12 07:48:26

问题


I'm trying to write a script that will allow me to draw an image of a digit and then determine what digit it is with a model trained on MNIST.

Here is my code:

import random
import image
from tensorflow.examples.tutorials.mnist import input_data
import tensorflow as tf
import numpy as np
import scipy.ndimage

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(tf.float32, [None, 10])

cross_entropy = tf.reduce_mean(-tf.reduce_sum(y_ * tf.log(y), reduction_indices=[1]))

train_step = tf.train.GradientDescentOptimizer(0.5).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( 1000 )
    sess.run(train_step, feed_dict= {x: batch_xs, y_: batch_ys})

print ("done with training")

data = np.ndarray.flatten(scipy.ndimage.imread("im_01.jpg", flatten=True))
result = sess.run(tf.argmax(y,1), feed_dict={x: [data]})
print (' '.join(map(str, result)))

For some reason the results are always wrong but has a 92% accuracy when I use the standard testing method.

I think the problem might be how I encoded the image:

data = np.ndarray.flatten(scipy.ndimage.imread("im_01.jpg", flatten=True))

I tried looking in the tensorflow code for the next_batch() function to see how they did it, but I have no idea how I can compare against my approach.

The problem might be somewhere else too.

Any help to make the accuracy 80+% would be greatly appreciated.


回答1:


I found my mistake: it encoded the reverse, blacks were at 255 instead of 0.

 data = np.vectorize(lambda x: 255 - x)(np.ndarray.flatten(scipy.ndimage.imread("im_01.jpg", flatten=True)))

Fixed it.



来源:https://stackoverflow.com/questions/40179209/tensorflow-testing-a-mnist-neural-net-with-my-own-images

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!