Asked
Active
Viewed 85 times
0
-
Please provide enough code so others can better understand or reproduce the problem. – Community Dec 19 '21 at 11:04
-
weights_file = '/content/drive/MyDrive/Sound-based-bird-species-detection-master/app/model/model.h5' early_stopping = EarlyStopping(monitor='val_acc', patience=5, mode='auto', verbose=2) model_checkpoint = ModelCheckpoint(weights_file, monitor='val_acc', save_best_only=True, verbose=2) callbacks = [early_stopping, model_checkpoint] model_fit = net_final.fit( train_batches,validation_data = valid_batches, steps_per_epoch=1000, epochs=5, callbacks=callbacks) – Dr M Venkatanarayana Dean CRI Dec 20 '21 at 12:46
-
ValueError: could not broadcast input array from shape (128,128,3) into shape (128,128,3,3) – Dr M Venkatanarayana Dean CRI Dec 20 '21 at 12:49