我正在尝试从python控制台而不是通过bazel -build运行Tensorflow的translate.py,但是在这两行出现错误:
from tensorflow.models.rnn.translate import data_utils
from tensorflow.models.rnn.translate import seq2seq_model
ImportError: No module named translate
我检查了文件夹,发现其中存在“ init .py”文件,但是python似乎认为没有诸如translate这样的模块。
我怎样才能解决这个问题?
最佳答案
最好的方法是导航到包含转换模块的文件夹并运行它。您还可以将翻译模块下载到其他任何地方并运行它。但是,不要忘记将以上行更改为:
from translate import data_utils
from translate import seq2seq_model
关于python - Tensorflow translate.py导入错误: No module named translate,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33910638/