这是我的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)
但是这样的回归是异常的 像这样
我要输入lstm模型作为时间
我该如何解决这个问题?