本文介绍了TensorFlow MNIST 示例未与fully_connected_feed.py 一起运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我能够很好地运行 Deep MNIST Example,但是在运行 fully_connected_feed.py 时,我收到以下错误:

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

我是 Python 新手,所以也可能只是一般的设置问题.

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

推荐答案

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

This is a Python path issue. Assuming that the directory tensorflow/g3doc/tutorials/mnist is your current working directory (or in your Python path), the easiest way to resolve it is to change the following lines in fully_connected_feed.py from:

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

...到:

import input_data
import mnist

这篇关于TensorFlow MNIST 示例未与fully_connected_feed.py 一起运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 12:14