複数のグラフを書いて、私はtensorflowを使用して、次のコードを持っている:tensorflowの要約 -
g1 = tf.Graph()
g2 = tf.Graph()
with g1.as_default():
a = tf.constant(3)
b = tf.constant(4)
c = tf.add(a, b)
with g2.as_default():
x = tf.constant(5)
y = tf.constant(2)
z = tf.multiply(x, y)
writer = tf.summary.FileWriter("./graphs", g1)
writer = tf.summary.FileWriter("./graphs", g2)
writer.close()
そしてtensorboardに、私はこれを取得:
をしかし、それは最初のグラフが不足しています。両方のグラフを描く方法はありますか?