Reputation: 1859
Let me describe the cluster setup first :
I have gone through the Distributed TensorFlow documentation but there are some functional basics I could not understand properly and hence this question.
Consider the following situation :
If I want to use Distributed TensorFlow to train a model :
Upvotes: 0
Views: 367
Reputation: 57893
with tf.device
. If you use within-graph replication with single client, your client needs to create graph for all nodes using multiple with tf.graph
sections.The simplest example of within-graph replication with separate client/worker processes is here
/job:worker/task:0
, /job:worker/task:1
etcUpvotes: 1