我似乎找不到关于我要在这里问什么的确切问题。我刚开始在YouTube 上学习 Tensorflow 教程,但一开始就卡住了。我在我的 spyder IDE 中编写了以下代码:
import tensorflow as tf
a = tf.constant(2)
b = tf.constant(3)
x = tf.add(a,b)
#writer = tf.summary.FileWriter('./graphs', tf.get_default_graph())
with tf.Session() as sess:
writer = tf.summary.FileWriter('./graphs', sess.graph)
print(sess.run(x))
writer.close()
通过 anaconda 终端,我激活了我的环境(我新创建的,安装了所有需要的包,spyder 也是如此)我输入python tftuts.py并得到了2018-10-05 11:50:49.431174: I T:\src\github\tensorflow\tensorflow\core\platform\cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
5
然后我tensorboard --logdir="./graphs" --port 6006按照我正在观看的教程中的建议输入。现在,当我转到http://localhost:6006/页面显示

我在Win10上,在Anaconda env中使用python 3.6.6,tensorflow 1.10.0。
如何解决这个问题?