I'm getting the error for CNN 1 Dimension, below is the model I have created :
model = Sequential()
model.add(Conv1D(31, 31, padding='same', input_shape=(992, 2))) # ignore -1
model.add(BatchNormalization())
model.add(LeakyReLU())
model.add(MaxPooling1D(1,1, padding='same'))
I'm getting the error for CNN 1 Dimension, below is the model I have created : model = Sequential() model.add(Conv1D(31, 31, padding='same', input_shape=(992, 2))) # ignore -1 model.add(BatchNormalization()) model.add(LeakyReLU()) model.add(MaxPooling1D(1,1, padding='same'))