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

Posted tszr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了吴裕雄 python 神经网络——TensorFlow 多线程队列操作相关的知识,希望对你有一定的参考价值。

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 多线程队列操作的主要内容,如果未能解决你的问题,请参考以下文章

吴裕雄 python 神经网络——TensorFlow 输入文件队列

吴裕雄 python 机器学习——人工神经网络感知机学习算法的应用

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

吴裕雄 python 神经网络——TensorFlow 数据集高层操作

吴裕雄 python 神经网络——TensorFlow pb文件保存方法

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