15

I am able to run the Deep MNIST Example fine, but when running fully_connected_feed.py, I am getting the following error:

File "fully_connected_feed.py", line 19, in <module>
from tensorflow.g3doc.tutorials.mnist import input_data ImportError: No module named
g3doc.tutorials.mnist

I am new to Python so could also just be a general setup problem.

4

2 回答 2

13

这是一个 Python 路径问题。假设该目录tensorflow/g3doc/tutorials/mnist是您当前的工作目录(或在您的 Python 路径中),解决它的最简单方法是在fully_connected_feed.py 中更改以下行:

from tensorflow.g3doc.tutorials.mnist import input_data
from tensorflow.g3doc.tutorials.mnist import mnist

...至:

import input_data
import mnist
于 2015-11-12T00:26:11.227 回答
1

另一种选择是将 github repo 中的“g3doc”目录链接到 tensorflow python wheel 文件夹中。这样您就不需要更改代码。

于 2015-11-12T22:39:14.970 回答