我正在使用分布式TensorFlow而不是分配网络,而是分配工作。
通过分布式TensorFlow,我们获得了用于分配工作的框架以及状态之间工人之间的通信。这种轻量级的通信协议,针对特定任务的内置恢复和设备选择使我能够尝试并使用分布式tensorFlow并行构建多个微模型。
所以在我的代码中,这就是我正在做的。
def main(_):
#some global data block
a = np.arange(10).reshape((5, 2))
with tf.device(tf.train.replica_device_setter(worker_device="/job:worker/task:%d" %server.server_def.task_index,cluster=server.server_def.cluster)):
#some ops to keep the cluster alive
var = tf.Variable(initial_value=10, name='var')
op = tf.assign_add(var,10)
xx = tf.placeholder("float")
yy = tf.reduce_sum(xx)
#start monitoring session
with tf.train.MonitoredTrainingSession(master=server.target,is_chief=is_chief) as mon_sess:
mon_sess.run(op)
#distribute data
inputs = a[:,server.server_def.task_index]
#start a local session in worker
sess = tf.Session()
sum_value = sess.run(yy,feed_dict={xx:inputs})
sess.close()
每位工人工作完成后,我想向其中添加一些信息
全球网络中的变量。 (由于在上述示例中我们无法更新a
之类的全局变量,因此我想利用mon_sess
来更新全局网络。
我想继续附加一些张量(每个工人的o / p),并使chief
进行读写。
有没有办法做到这一点 ?
如果您在上述方法中发现任何问题,请进行更新。
谢谢
答案 0 :(得分:0)
我对此感到厌倦,并且能够将本地工人的信息更新到全球网络
import tensorflow as tf
import numpy as np
import os
import time
def main(server, log_dir, context):
#create a random array
a = np.arange(10).reshape((5, 2))
with tf.device(tf.train.replica_device_setter(worker_device="/job:worker/task:%d" %server.server_def.task_index,cluster=server.server_def.cluster)):
var = tf.Variable(initial_value=10, name='var')
op = tf.assign_add(var,10)
xx = tf.placeholder("float")
yy = tf.reduce_sum(xx)
concat_init = tf.Variable([0],dtype=tf.float32)
sum_holder = tf.placeholder(tf.float32)
concat_op = tf.concat([concat_init,sum_holder],0)
assign_op = tf.assign(concat_init,concat_op,validate_shape=False)
is_chief = server.server_def.task_index == 0
with tf.train.MonitoredTrainingSession(master=server.target,is_chief=is_chief) as mon_sess:
mon_sess.run(op)
print (a)
print ("reading my part")
inputs = a[:,server.server_def.task_index]
print(inputs)
sess = tf.Session()
sum_value = sess.run(yy,feed_dict={xx:inputs})
print(sum_value)
mon_sess.run(assign_op,feed_dict={sum_holder:[sum_value]})
if is_chief:
time.sleep(5)
worker_sums = mon_sess.run(assign_op,feed_dict={sum_holder:[0]})
print (worker_sums)
sess.close()
if is_chief:
while True:
pass