ValueError:尺寸必须相等,但对于'{{node mean_squared_error / SquaredDifference}},尺寸应为2和5

时间:2020-10-21 13:57:37

标签: tensorflow keras lstm

仅当我的批处理大小大于1时,我才收到此错误 这是我的模特

model=Sequential([keras.layers.LSTM(50)])
model.compile(loss="mse")

当历元开始时会发生此错误。

x=np.array(x).reshape((2,5,50))
y=np.array(y).reshape((2,5,50))
model.fit(x,y,epochs=400,batch_size=2)

0 个答案:

没有答案