- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是 TensorFlow 的新手。我得到了 mnist 训练样本,我想通过生成检查点来测试图像。我引用了 Tensorflow 文档并生成了检查点,并尝试通过访问 softmax 层来测试样本图像。但是给定图像 number-9 softmax 给了我一个无效的单热编码数组,如 'array([[ 0., 1., 0., 0., 0., 0., 0., 0., 0., 0.] ], dtype=float32)',当我尝试使用
访问 softmax 时softmax = graph.get_tensor_by_name('SOFTMAX:0')。
我尝试使用不同的图像进行测试,但没有给出任何正确的结果。
1.我假设,softmax 会给我一系列概率。我是对的吗?
2.我是否正确保存模型?
3.我是否访问了正确的层来测试输入?
4.我的测试/训练代码中还有什么需要添加的吗?
很抱歉在这里发布所有内容。
这是我的火车代码:
from __future__ import division, print_function, unicode_literals
import tensorflow as tf
from time import time
import numpy as np
import os
import scipy.ndimage as ndimage
from scipy import misc
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
logs_train_dir = '/home/test/Logs'
def weight_variable(shape,name):
initial = tf.truncated_normal(shape, stddev=0.1)
return tf.Variable(initial,name=name+'_weight')
def bias_variable(shape,name):
initial = tf.constant(0.1, shape=shape)
return tf.Variable(initial,name=name+'_bias')
def conv2d(x, W):
return tf.nn.conv2d(x, W, strides=[1, 1, 1, 1], padding='SAME')
def max_pool_2x2(x,name):
return tf.nn.max_pool(x, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='SAME',name=name+'_max_pool')
# correct labels
y_ = tf.placeholder(tf.float32, [None, 10])
# reshape the input data to image dimensions
x = tf.placeholder(tf.float32, [None, 784],name='X')#Input Tensor
x_image = tf.reshape(x, [-1, 28, 28, 1],name='X_Image')
# build the network
W_conv1 = weight_variable([5, 5, 1, 32],'W_conv1')
b_conv1 = bias_variable([32],'b_conv1')
h_conv1 = tf.nn.relu(conv2d(x_image, W_conv1) + b_conv1,name='h_conv1')
h_pool1 = max_pool_2x2(h_conv1,'h_pool1')
W_conv2 = weight_variable([5, 5, 32, 64],'W_conv2')
b_conv2 = bias_variable([64],'b_conv2')
h_conv2 = tf.nn.relu(conv2d(h_pool1, W_conv2) + b_conv2,name='h_conv2')
h_pool2 = max_pool_2x2(h_conv2,'W_conv2')
W_fc1 = weight_variable([7 * 7 * 64, 1024],name='wc1')
b_fc1 = bias_variable([1024],name='b_fc1')
h_pool2_flat = tf.reshape(h_pool2, [-1, 7*7*64])
h_fc1 = tf.nn.relu(tf.matmul(h_pool2_flat, W_fc1) + b_fc1)
keep_prob = tf.placeholder(tf.float32,name='KEEP_PROB')
h_fc1_drop = tf.nn.dropout(h_fc1, keep_prob)
W_fc2 = weight_variable([1024, 10],name='w_fc2')
b_fc2 = bias_variable([10],name='b_fc2')
y_conv=tf.nn.softmax(tf.matmul(h_fc1_drop, W_fc2) + b_fc2,name='SOFTMAX')#Softmax Tensor
# define the loss function
cross_entropy = tf.reduce_mean(-tf.reduce_sum(y_ * tf.log(y_conv), reduction_indices=[1]),name='CROSS_ENTROPY')
loss_summary = tf.summary.scalar('loss_sc',cross_entropy)
# define training step and accuracy
train_step = tf.train.AdamOptimizer(1e-4).minimize(cross_entropy)
correct_prediction = tf.equal(tf.argmax(y_conv, 1), tf.argmax(y_, 1),name='CORRECT_PRED')
accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32),name='ACCURACY')
accuracy_summary = tf.summary.scalar('accuracy_sc', accuracy)
# create a saver
saver = tf.train.Saver()
# initialize the graph
init = tf.global_variables_initializer()
summary_op = tf.summary.merge_all()
sess = tf.Session()
train_writer = tf.summary.FileWriter(logs_train_dir, sess.graph)
sess.run(init)
# train
print("Startin Burn-In...")
for i in range(500):
input_images, correct_predictions = mnist.train.next_batch(50)
if i % 100 == 0:
train_accuracy = sess.run(accuracy, feed_dict={x: input_images, y_: correct_predictions, keep_prob: 1.0})
print("step %d, training accuracy_a %g" % (i, train_accuracy))
sess.run(train_step, feed_dict={x: input_images, y_: correct_predictions, keep_prob: 0.5})
print("Starting the training...")
start_time = time()
for i in range(20000):
input_images, correct_predictions = mnist.train.next_batch(50)
if i % 100 == 0:
train_accuracy = sess.run(accuracy, feed_dict={x: input_images, y_: correct_predictions, keep_prob: 1.0})
print("step %d, training accuracy_b %g" % (i, train_accuracy))
sess.run(train_step, feed_dict={x: input_images, y_: correct_predictions, keep_prob: 0.5})
summary_str = sess.run(summary_op,feed_dict={x: input_images, y_: correct_predictions, keep_prob: 0.5})
train_writer.add_summary(summary_str, i)
print('SAVING CHECKPOINTS......i is ',i)
if i % 1000 == 0 or (i+1) == 20000:
checkpoint_path = os.path.join(logs_train_dir,'cnn_new_model.ckpt')
print('checkpoint_path is ',checkpoint_path)
saver.save(sess,checkpoint_path,global_step=i)
print("The training took %.4f seconds." % (time() - start_time))
# validate
print("test accuracy %g" % sess.run(accuracy, feed_dict={
x: mnist.test.images,
y_: mnist.test.labels,
keep_prob: 1.0}))
准确度为 0.97。
这是我的测试代码:
import numpy as np
import tensorflow as tf
import scipy.ndimage as ndimage
from scipy import misc
import cv2 as cv
def get_test_image():
image = cv.imread('/home/test/Downloads/9.png', 0)
resized = cv.resize(image, (28,28), interpolation = cv.INTER_AREA)
image = np.array(resized)
flat = np.ndarray.flatten(image)
reshaped_image = np.reshape(flat,(1, 784))
return reshaped_image
def evaluate_one_image():
image_array = get_test_image()
image_array = image_array.astype(np.float32)
logs_train_dir ='/home/test/Logs'
model_path = logs_train_dir+"/cnn_new_model.ckpt-19999"
detection_graph = tf.Graph()
with tf.Session(graph=detection_graph) as sess:
# Load the graph with the trained states
loader = tf.train.import_meta_graph(model_path+'.meta')
loader.restore(sess, model_path)
# Get the tensors by their variable name
image_tensor = detection_graph.get_tensor_by_name('X:0')
softmax = detection_graph.get_tensor_by_name('SOFTMAX:0')
keep_prob = detection_graph.get_tensor_by_name('KEEP_PROB:0')
# Make prediction
softmax = sess.run(softmax, feed_dict={image_tensor: image_array,keep_prob:0.75})
print('softmax is ', cost_val,'\n\n')
print('softmax maximum val is ', np.argmax(cost_val))
evaluate_one_image()
因此,当我使用数字 9 的图像进行测试时,它给出了以下输出:
softmax 为 [[ 0., 1., 0., 0., 0., 0., 0., 0., 0., 0.]]
softmax 最大值为 1
我不知道我哪里出了问题。任何帮助都会非常有用,并且非常感激。
最佳答案
在评估/预测期间不使用 Dropout。所以你需要设置 keep_prob=1
检查输入图像image_array
的像素值,像素值应在[0, 1]
范围内,否则需要对像素进行归一化减去图像均值并除以图像标准差的值
对于加载图像的功能,您可以添加以下行来标准化
def get_test_image():
...
image = np.array(resized)
mean = image.mean()
std = image.std()
image = np.subtract(image, mean)
image = np.divide(image, std)
image = np.clip(image, 0, 1.000001)
...
关于python - 使用检查点在 Tensorflow Mnist 模型上测试图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45782031/
我获得了一些源代码示例,我想测试一些功能。不幸的是,我在执行程序时遇到问题: 11:41:31 [linqus@ottsrvafq1 example]$ javac -g test/test.jav
我想测试ggplot生成的两个图是否相同。一种选择是在绘图对象上使用all.equal,但我宁愿进行更艰巨的测试以确保它们相同,这似乎是identical()为我提供的东西。 但是,当我测试使用相同d
我确实使用 JUnit5 执行我的 Maven 测试,其中所有测试类都有 @ExtendWith({ProcessExtension.class}) 注释。如果是这种情况,此扩展必须根据特殊逻辑使测试
在开始使用 Node.js 开发有用的东西之前,您的流程是什么?您是否在 VowJS、Expresso 上创建测试?你使用 Selenium 测试吗?什么时候? 我有兴趣获得一个很好的工作流程来开发我
这个问题已经有答案了: What is a NullPointerException, and how do I fix it? (12 个回答) 已关闭 3 年前。 基于示例here ,我尝试为我的
我正在考虑测试一些 Vue.js 组件,作为 Laravel 应用程序的一部分。所以,我有一个在 Blade 模板中使用并生成 GET 的组件。在 mounted 期间请求生命周期钩子(Hook)。假
考虑以下程序: #include struct Test { int a; }; int main() { Test t=Test(); std::cout<
我目前的立场是:如果我使用 web 测试(在我的例子中可能是通过 VS.NET'08 测试工具和 WatiN)以及代码覆盖率和广泛的数据来彻底测试我的 ASP.NET 应用程序,我应该不需要编写单独的
我正在使用 C#、.NET 4.7 我有 3 个字符串,即。 [test.1, test.10, test.2] 我需要对它们进行排序以获得: test.1 test.2 test.10 我可能会得到
我有一个 ID 为“rv_list”的 RecyclerView。单击任何 RecyclerView 项目时,每个项目内都有一个可见的 id 为“star”的 View 。 我想用 expresso
我正在使用 Jest 和模拟器测试 Firebase 函数,尽管这些测试可能来自竞争条件。所谓 flakey,我的意思是有时它们会通过,有时不会,即使在同一台机器上也是如此。 测试和函数是用 Type
我在测试我与 typeahead.js ( https://github.com/angular-ui/bootstrap/blob/master/src/typeahead/typeahead.js
我正在尝试使用 Teamcity 自动运行测试,但似乎当代理编译项目时,它没有正确完成,因为当我运行运行测试之类的命令时,我收到以下错误: fatal error: 'Pushwoosh/PushNo
这是我第一次玩 cucumber ,还创建了一个测试和 API 的套件。我的问题是在测试 API 时是否需要运行它? 例如我脑子里有这个, 启动 express 服务器作为后台任务 然后当它启动时(我
我有我的主要应用程序项目,然后是我的测试的第二个项目。将所有类型的测试存储在该测试项目中是一种好的做法,还是应该将一些测试驻留在主应用程序项目中? 我应该在我的主项目中保留 POJO JUnit(测试
我正在努力弄清楚如何实现这个计数。模型是用户、测试、等级 用户 has_many 测试,测试 has_many 成绩。 每个等级都有一个计算分数(strong_pass、pass、fail、stron
我正在尝试测试一些涉及 OkHttp3 的下载代码,但不幸失败了。目标:测试 下载图像文件并验证其是否有效。平台:安卓。此代码可在生产环境中运行,但测试代码没有任何意义。 产品代码 class Fil
当我想为 iOS 运行 UI 测试时,我收到以下消息: SetUp : System.Exception : Unable to determine simulator version for X 堆
我正在使用 Firebase Remote Config 在 iOS 上设置 A/B 测试。 一切都已设置完毕,我正在 iOS 应用程序中读取服务器端默认值。 但是在多个模拟器上尝试,它们都读取了默认
[已编辑]:我已经用 promise 方式更改了我的代码。 我正在写 React with this starter 由 facebook 创建,我是测试方面的新手。 现在我有一个关于图像的组件,它有
我是一名优秀的程序员,十分优秀!