Sumit Mandal
Sumit Mandal
Adding the complete code here ``` target_size = (28,28) train_generator = train_datagen.flow_from_directory(dir_,target_size=target_size, batch_size = 1920, class_mode='categorical', shuffle = False, subset = 'training') test_generator = train_datagen.flow_from_directory(dir_, target_size=target_size, batch_size=480,class_mode = 'categorical', shuffle...
Created predict_fn as mentioned by you. It creates a new error of `Predictor failed to be called on of shape (1, 28, 28, 1) and dtype float32. Check that the...
Wow.!! That worked like a charm. For image classification anchor image is sorted. I am getting the same error when trying it on yolo_v3 architecture. ``` photo_filename = './000023.jpg' image_with_bbox,...