【发布时间】:2020-12-11 12:47:20
【问题描述】:
我正在尝试合并两个 LSTM Sequential 模型,但没有成功。我正在使用来自 tensorflow.keras.layers 的 Concatenate() 方法。每当我尝试连接模型时,它都会显示ValueError: A Concatenate layer should be called on a list of at least 2 inputs,这没有意义,因为这两个模型是在列表中传递的。
这是我的模型代码:
# Initialising the LSTM
regressor = Sequential()
# Adding the first LSTM layer and some Dropout regularisation
regressor.add(LSTM(units = 50, return_sequences = True, input_shape = (X_train.shape[1], 1)))
regressor.add(Dropout(0.2))
# Adding a second LSTM layer and some Dropout regularisation
regressor.add(LSTM(units = 50, return_sequences = True))
regressor.add(Dropout(0.2))
# Adding a third LSTM layer and some Dropout regularisation
regressor.add(LSTM(units = 50, return_sequences = True))
regressor.add(Dropout(0.2))
# Adding a fourth LSTM layer and some Dropout regularisation
regressor.add(LSTM(units = 50))
regressor.add(Dropout(0.2))
regressor.add(Dense(units = 1))
lstm_model = Sequential()
lstm_model.add(LSTM(units = 4, activation = 'relu', input_shape = (X_train.shape[1], 1)))
# returns a sequence of vectors of dimension 4
# Adding the output layer
lstm_model.add(Dense(units = 1))
merge = Concatenate([regressor, lstm_model])
hidden = Dense(1, activation = 'sigmoid')
conc_model = Sequential()
conc_model.add(merge)
conc_model.add(hidden)
conc_model.compile(optimizer = 'adam', loss = 'mean_squared_error', metrics=['mae', 'acc'])
history = conc_model.fit(X_train, y_train, validation_split=0.1, epochs = 50, batch_size = 32, verbose=1, shuffle=False)
如何连接和拟合这些模型?我不明白我做错了什么。
【问题讨论】:
-
尝试拟合模型时是否出错?
-
是的,看起来很合适
-
你X_train是单数组吗?你有 2 个输入,那么 X_train 的形状是什么
-
是的,X_Train 是一个数组
标签: python tensorflow keras deep-learning lstm