Closed dantp-ai closed 7 years ago
The comments in config.py regarding __C.TEST.NMS seem to contain a typo, namely it states
config.py
__C.TEST.NMS
# Overlap threshold used for non-maximum suppression (suppress boxes with # IoU >= this threshold) __C.TEST.NMS = 0.3
But it should state:
# Overlap threshold used for non-maximum suppression (suppress boxes with # IoU #<=# this threshold)
Can you confirm this ?
NMS is designed to suppress boxes which heavily overlap with another box which has a higher score.
The comments in
config.py
regarding__C.TEST.NMS
seem to contain a typo, namely it statesBut it should state:
Can you confirm this ?