I wanna make a model with multiple inputs. So, I try to build a model like this.
# define two sets of inputs inputA = Input(shape=(32,64,1)) inputB = Input(sh
Happened to me as well.
You can try reducing trainable parameters by using some form of Transfer Learning - try freezing the initial few layers and use lower batch sizes.