Patch based image training and combine their probability from an image
问题 Firstly, I have implemented a simple VGG16 network for image classification. model = keras.applications.vgg16.VGG16(include_top = False, weights = None, input_shape = (32,32,3), pooling = 'max', classes = 10) Whose input shape is 32 x 32 . Now, I am trying to implement a patch-based neural network . The main idea is, from the input image, extract 4 image patch like this image, and train the extracted patch image( resizing to 32 x 32 as it is input shape of our model) finally, combine their