-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
In an email thread with one of the co-authors (@vidit98), some details were shared with me regarding correctly reproducing their results on DAVIS19. We talked about using the specific MaskRCNN model and config similar to theirs. Here are some required steps
- Implementation from: maskrcnn-benchmark (deprecated as of now)
- MaskRCNN Mode configl: R-50_FPN
- Change following keys in
config/defaults.py:_C.MODEL.ROI_HEADS.NMS = 0.2_C.MODEL.RPM.NMS_THRESH = 0.5
- Draw larger masks behind smaller masks in the final output (so smaller masks do not get occluded)
As of now, maskrcnn_benchmark has been deprecated and everything has been transfered to detectron2 and so I'll be using that repository to get MaskRCNN's mask outputs for the DAVIS19 dataset.
This issue will be closed once the results have been reproduced.
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation