My question is regarding the implementation of Faster R-CNN.
I read the paper and was going through the config.py file is written by the author of the algorithm which is available here: https://github.com/rbgirshick/py-faster-rcnn/blob/master/lib/fast_rcnn/config.py
I am quite unable to understand that why do we need BBOX_INSIDE_WEIGHTS (mentioned at line 84) and RPN_POSITIVE_WEIGHT (mentioned at line 124)?
In some other implementation, I also saw anchor masks (line 659), anchor regression weights and anchor regression masks which are available here: https://github.com/DeepRNN/object_detection/blob/master/model.py
Can some one please give the simple and easy answer that what are these parameters for and why do we actually need them?