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

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

时间:2019-05-18 13:58:52      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:port   join   nbsp   fifo   import   run   .com   技术   ssi   

import tensorflow as tf

q = tf.FIFOQueue(2, "int32")
init = q.enqueue_many(([0, 10],))
x = q.dequeue()
y = x + 1
q_inc = q.enqueue([y])
with tf.Session() as sess:
    init.run()
    for _ in range(5):
        v, _ = sess.run([x, q_inc])
        print(v)

技术图片

import time
import threading
import numpy as np

def MyLoop(coord, worker_id):
    while not coord.should_stop():
        if np.random.rand()<0.1:
            print("Stoping from id: %d\n" % worker_id,coord.request_stop())
        else:
            print("Working on id: %d\n" % worker_id, time.sleep(1))
coord = tf.train.Coordinator()
threads = [threading.Thread(target=MyLoop, args=(coord, i, )) for i in xrange(5)]
for t in threads:
    t.start()
coord.join(threads)

技术图片

 

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

标签:port   join   nbsp   fifo   import   run   .com   技术   ssi   

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

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