Detectron2: About batch size

Created on 30 Apr 2020  ยท  1Comment  ยท  Source: facebookresearch/detectron2

โ“ 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

Most helpful comment

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jinfagang picture jinfagang  ยท  3Comments

guy4261 picture guy4261  ยท  4Comments

kl720 picture kl720  ยท  3Comments

soumik12345 picture soumik12345  ยท  3Comments

marcoippolito picture marcoippolito  ยท  4Comments