我有使用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)
我添加了一個TensorBoard可視化到我的網絡,並注意到只有外層變化很大。爲什麼網絡的權重沒有改變很多?這在覆蓋直方圖中尤其明顯。 直方圖 相同,但覆蓋視圖 我的模型 def neural_network_model(inputdata):
"""The blueprint of the network and the tensorboard information
:p
我通過這裏描述的步驟在我的MacBook Pro 10.12.5上從源代碼安裝了TensorFlow。 https://www.tensorflow.org/install/install_sources TensorFlow本身運作良好,但我無法運行TensorBoard。 似乎tensorboard沒有正確安裝。 當我嘗試運行tensorboard --logdir=...它說-bash: t