Sorry for a very noob question here.
say for example I have the following model.
model = Sequential()
model.add(Convolution2D(1, filter_size, filter_size, border_mode='same',
input_shape=(1, 54, 36)))
model.add(LeakyReLU())
model.add(Flatten())
model.add(Dense(54*36, activation='sigmoid'))
model.compile(loss='binary_crossentropy', optimizer='adam')
How is it different with the Model.predict()?
Why am I getting a dimension of (samples,)? I was expecting a dimension of (samples, 54*36) though just like predict() & predict_proba.