模块“ lstm”没有属性“ load_data”

时间:2019-01-20 08:26:30

标签: python python-3.x tensorflow neural-network lstm

我正在尝试在python中实现LSTM神经网络。

我的代码如下:

import pandas
# with date as dataframe index
df_daily = pandas.read_csv('daily_data.csv', index_col='Date')
df_daily = df_daily.drop(['MinMax Price (input 2)'], axis =1)

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

x_train, y_train, x_test, y_test = lstm.load_data(df_daily, 50, True)
x_train.head(5)

但是在运行时:

  

x_training,y_training,x_test,y_test = lstm.load_data(df_daily,50,   是的)

我得到了错误:

  

模块“ lstm”没有属性“ load_data”

我真的不明白为什么会出现此错误。我还尝试安装“ theano-lstm”和“ theano”。

请帮助。

0 个答案:

没有答案