我对Recurrentshop和Keras有疑问。我正在尝试在循环模型中使用连接和多维张量,但无论我如何安排输入、形状和batch_shape,我都会遇到维度问题。最少的代码:fromkeras.layersimport*fromkeras.modelsimport*fromrecurrentshopimport*fromkeras.layersimportConcatenateinput_shape=(128,128,3)x_t=Input(shape=(128,128,3,))h_tm1=Input(shape=(128,128,3,))h_t1=Concatenate()([x_