当前位置:  开发笔记 > 编程语言 > 正文

Tensorflow的Session.run()/ Tensor.eval()运行了很长时间

如何解决《Tensorflow的Session.run()/Tensor.eval()运行了很长时间》经验,为你挑选了1个好方法。

我正在尝试通过跟随卷积神经网络教程学习tenforflow ,但是当我试图弄清楚如何cifar10_input.py从中加载数据时cifar-10-batches-bin,我遇到了一个问题,这个问题Tensor.eval()执行了很长时间或者在没有结果的情况下永远运行.代码是这样的:

import tensorflow as tf
from tensorflow.models.image.cifar10 import cifar10_input

filenames = ['/Users/me/Downloads/cifar-10-batches-bin/data_batch_1.bin']
filename_queue = tf.train.string_input_producer(filenames)
read_input = cifar10_input.read_cifar10(filename_queue)
reshaped_image = tf.cast(read_input.uint8image, tf.float32)

with tf.Session() as sess:
    print reshaped_image.eval()

代码基本上来自cifar10_input.pydata_batch_1.bin从中提取文件cifar-10-binary.tar.gz.

通常,我可以使用它的eval()方法观察张量.但在这种情况下,它持续运行的时间比以往任何时候都长(我等了将近一个小时,它仍在运行).我的代码中有什么问题吗?



1> dga..:

1)作为基本的理智检查: ls -al /Users/me/Downloads/cifar-10-batches-bin/data_batch_1.bin

2)不要忘记:

init = tf.initialize_all_variables()
sess.run(init)

3)tf.train.start_queue_runners() (创建会话后)

它可能是#3.在string_input_producer增加了一个队列运行的QUEUE_RUNNERS集合,它需要启动.

推荐阅读
pan2502851807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有