tensorflow 错误 utf-8 OS X Sierra

tensorflow error utf-8 OS X Sierra

我已经在 OS X Sierra 上安装了带有 Anaconda 的 TensorFlow。我在安装过程中没有遇到任何问题。 编写典型示例:

import tensorflow as tf
a = tf.constant(5, name="input_a")
b = tf.constant(3, name="input_b")
c = tf.mul(a, b, name="mul_c")
d = tf.add(a, b, name="add_d")
e = tf.add(c, d, name="add_e")

sess = tf.Session()
output = sess.run(e)
writer = tf.summary.FileWriter('./my_graph', sess.graph)

writer.close()
sess.close()

文件创建在适当的文件夹中,但当我尝试用 TensorBoard 书写时,没有图形。 当我尝试使用 Jupyter-Notebook 打开文件时,我收到以下文本。

错误! /Users/Pancho/tf-notebooks/my_graph/events.out.tfevents.xxxxxxxxx.MacBook-Pro-xxx.local不是UTF-8编码的

保存已禁用。

有关详细信息,请参阅控制台。

控制台上没有其他信息。

我找到问题了。 我无法使用 tensorboard 打开文件,因为我没有使用目录的完整路径。 使用Jupyter notebook打开文件时出现UTF-8错误