码迷,mamicode.com
首页 > 编程语言 > 详细

吴裕雄 python 神经网络——TensorFlow 多线程队列操作

时间:2019-05-18 13:42:10      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:fifo   src   read   runners   queue   图片   队列   image   star   

import tensorflow as tf

queue = tf.FIFOQueue(100,"float")
enqueue_op = queue.enqueue([tf.random_normal([1])])
qr = tf.train.QueueRunner(queue, [enqueue_op] * 5)
tf.train.add_queue_runner(qr)
out_tensor = queue.dequeue()

with tf.Session() as sess:
    coord = tf.train.Coordinator()
    threads = tf.train.start_queue_runners(sess=sess, coord=coord)
    for _ in range(3): 
        print(sess.run(out_tensor)[0])
    coord.request_stop()
    coord.join(threads)

技术图片

 

吴裕雄 python 神经网络——TensorFlow 多线程队列操作

标签:fifo   src   read   runners   queue   图片   队列   image   star   

原文地址:https://www.cnblogs.com/tszr/p/10885376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!