What is the concept of mini-batch when we are sending one image to FCN for semantic segmentation?
The default value in data layers is batch_size: 1
. That means every forward and backward pass, one image is sent to the network. So what will be the mini-batch size? Is it the number of pixels in an image?
The other question is what if we send few images together to the net? Does it affect the convergence? In some papers, I see the number of 20
images.
Thanks