我遵循了给定的mnist教程,并且能够训练模型并评估其准确性。但是,这些教程没有显示如何在给定模型的情况下进行预测。我对准确性不感兴趣,我只想使用模型来预测一个新示例,然后在输出中查看所有结果(标签),每个结果都有其分配的分数(排序或不排序)。
Answers:
在“ Deep MNIST for Experts ”示例中,请参见以下行:
现在,我们可以实现回归模型。只需要一行!我们将向量化的输入图像x乘以权重矩阵W,加上偏差b,然后计算分配给每个类别的softmax概率。
y = tf.nn.softmax(tf.matmul(x,W) + b)
只需拉上节点y,您就会拥有所需的内容。
feed_dict = {x: [your_image]}
classification = tf.run(y, feed_dict)
print classification
这几乎适用于您创建的任何模型-在计算损失之前,您已经将预测概率计算为最后步骤之一。
y_conv=tf.nn.softmax(tf.matmul(h_fc1_drop, W_fc2) + b_fc2)
我使用getInvalid argument: You must feed a value for placeholder tensor 'Placeholder_2' with dtype float
可以正常工作。为什么这样的任何想法?
feed_dict = {x: [your_image], keep_prob:1.0}
tf.run()
似乎已被删除,但y.eval(feed_dict)
为我工作。
正如@dga建议的那样,您需要通过已经预测的模型来运行数据的新实例。
这是一个例子:
假设您通过了第一个教程并计算了模型的准确性(模型是:)y = tf.nn.softmax(tf.matmul(x, W) + b)
。现在,您获取模型并将新数据点应用于该模型。在下面的代码中,我计算向量,获得最大值的位置。显示图像并打印最大位置。
from matplotlib import pyplot as plt
from random import randint
num = randint(0, mnist.test.images.shape[0])
img = mnist.test.images[num]
classification = sess.run(tf.argmax(y, 1), feed_dict={x: [img]})
plt.imshow(img.reshape(28, 28), cmap=plt.cm.binary)
plt.show()
print 'NN predicted', classification[0]
2.0兼容答案:假设您已建立Keras模型,如下所示:
model = keras.Sequential([
keras.layers.Flatten(input_shape=(28, 28)),
keras.layers.Dense(128, activation='relu'),
keras.layers.Dense(10, activation='softmax')
])
model.compile(optimizer='adam',
loss='sparse_categorical_crossentropy',
metrics=['accuracy'])
然后使用以下代码训练和评估模型:
model.fit(train_images, train_labels, epochs=10)
test_loss, test_acc = model.evaluate(test_images, test_labels, verbose=2)
之后,如果要预测特定图像的类别,则可以使用以下代码进行:
predictions_single = model.predict(img)
如果要预测一组图像的类别,可以使用以下代码:
predictions = model.predict(new_images)
new_images
图像数组在哪里。
有关更多信息,请参阅此Tensorflow教程。
这个问题专门针对Google MNIST教程,该教程定义了一个预测变量,但没有应用它。根据乔纳森·惠(Jonathan Hui)的TensorFlow Estimator博客文章的指导,以下代码完全适合Google教程并进行预测:
from matplotlib import pyplot as plt
images = mnist.test.images[0:10]
predict_input_fn = tf.estimator.inputs.numpy_input_fn(
x={"x":images},
num_epochs=1,
shuffle=False)
mnist_classifier.predict(input_fn=predict_input_fn)
for image,p in zip(images,mnist_classifier.predict(input_fn=predict_input_fn)):
print(np.argmax(p['probabilities']))
plt.imshow(image.reshape(28, 28), cmap=plt.cm.binary)
plt.show()