如何将lstm模型输入作为时间?

时间:2019-05-22 04:51:37

标签: python keras

1 这是我的lstm模型p

我想要1到14000,因为x和y是p

所以我做了

y = p
x = list(range(len(p)))
x = np.reshape(x, (-1, 1))
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(x, y, train_size=.8, suffle=False)
from sklearn.linear_model import LinearRegression

model = LinearRegression() 
model.fit(X_train, y_train)

但是这样的回归是异常的 2 像这样

我要输入lstm模型作为时间

我该如何解决这个问题?

0 个答案:

没有答案