3
我尝试了张量流螺旋数据集的示例代码并构建了神经网络。我想要可视化网络的图形结构。 PFB我试过的代码。如何绘制张量流神经网络对象
with tf.Graph().as_default():
net = tflearn.input_data([None, 2])
net = tflearn.fully_connected(net,6,
activation='tanh',weights_init='normal')
print(net)
“http:// localhost:6006 /#graphs” - 图表不显示在此链接中。 –
“找不到图形定义文件。”它会抛出此错误,而不是 –
您是否在'tmp/tensorboard_log'中有事件文件? –