使用此代码,当我尝试使用 X_test 运行预测时出现错误。错误发生在拟合之后,whiley_pred = model.predict(X_test)
被执行。
X_train.input_shape()
-> (784, 300, 7)
y_train.input_shape()
-> (784, 300, 1)
X_test.input_shape()
-> (124,300,7)
y_test.input_shape()
-> (124,300,1)
batchsize = 4
model = Sequential()
model.add(Masking(mask_value=0, batch_input_shape=(batchsize, len(X_train[0]),len(X_train[0][0]))))
model.add(Bidirectional(LSTM(200, return_sequences=True, stateful=True)))
model.add(TimeDistributed(Dense(len(classdict))))
model.compile(loss="sparse_categorical_crossentropy",
optimizer=Adam(0.001),
metrics=['accuracy'])
model.summary()
model.fit(X_train, y_train, epochs=1, batch_size=batchsize)
y_pred = model.predict(X_test)
错误:
Traceback (most recent call last):
File "lib/python3.7/site-packages/keras/utils/traceback_utils.py", line 67, in error_handler
raise e.with_traceback(filtered_tb) from None
File "lib/python3.7/site-packages/tensorflow/python/eager/execute.py", line 55, in quick_execute
inputs, attrs, num_outputs)
tensorflow.python.framework.errors_impl.InvalidArgumentError: Graph execution error:
Specified a list with shape [4,1] from a tensor with shape [32,1]
[[{{node TensorArrayUnstack_1/TensorListFromTensor}}]]
[[sequential/bidirectional/backward_lstm/PartitionedCall]] [Op:__inference_predict_function_13360]
在我看来,错误可能与所选的批量大小有关。在我的研究中,我读到样本数量必须能被有状态 LSTM 的批大小整除。于是我搜索了X_train和X_test的样本数的最大公约数,所以GCD(124,784) = 4 = batchsize。但是,现在发生了这个错误,我已经尝试了不同的batchsize,但是又出现了其他错误。有人对此有想法/解决办法吗?