我正在使用keras,并且收到一条错误消息,提示“没有名为'lstm'的模块”

时间:2018-09-05 14:22:15

标签: python tensorflow keras lstm

我正在尝试使用以下代码设置Keras:

from keras.layers.core import Dense, Activation, Dropout
from keras.layers.recurrent import LSTM
from keras.models import Sequential
import lstm, time #helper libraries

不幸的是,它给了我两个错误信息,但我无法理解:

/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/importlib/_bootstrap.py:205: RuntimeWarning: compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util' does not match runtime version 3.6
  return f(*args, **kwds)

ModuleNotFoundError Traceback (most recent call last)
ModuleNotFoundError: No module named 'lstm'

预先感谢, 维克多

1 个答案:

答案 0 :(得分:1)

使用以下两项之一:

pip install seq2seq-lstm

pip install phased-lstm-keras