-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproducing paper results: questions about generating masks correctly from MasrkRCNN #1
Comments
I was unable to reproduce the paper results. The only issue I can think of is that the MaskRCNN model I'm using is from But the training instructions aren't clear. Specifically the @vidit98 could you elaborate on the |
I'm working on reproducing the paper results too. I've created a PR for generating masks, maybe we can compare? #2 |
For creating the training data for STM, use the training data provided by the DAVIS dataset. For the first frame annotations use the ground truth provided by DAVIS Dataset for the STM code. Then do the following steps at each timestep to create the training dataset for Selector Net:
|
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
config/defaults.py
:_C.MODEL.ROI_HEADS.NMS = 0.2
_C.MODEL.RPM.NMS_THRESH = 0.5
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.
The text was updated successfully, but these errors were encountered: