โ What the parameter "cfg.MODEL.ROI_HEADS.BATCH_SIZE_PER_IMAGE" is used for? I understood that it doesn't identify the training batch size but from your docs I do not understand its meaning
cfg.MODEL.ROI_HEADS.BATCH_SIZE_PER_IMAGE parameter is used to sample a subset of proposals coming out of RPN to calculate cls and reg loss during training. Calculating loss on all RPN proposals isn't computationally efficient.
>All comments
cfg.MODEL.ROI_HEADS.BATCH_SIZE_PER_IMAGE parameter is used to sample a subset of proposals coming out of RPN to calculate cls and reg loss during training. Calculating loss on all RPN proposals isn't computationally efficient.
Most helpful comment
cfg.MODEL.ROI_HEADS.BATCH_SIZE_PER_IMAGEparameter is used to sample a subset of proposals coming out of RPN to calculateclsandregloss during training. Calculating loss on all RPN proposals isn't computationally efficient.