zhanggang001 / RefineMask

RefineMask: Towards High-Quality Instance Segmentation with Fine-Grained Features (CVPR 2021)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to apply refine mask in cascade mask rcnn / HTC?

fuweifu-vtoo opened this issue · comments

hello!
thanks for your beautiful work.
I have a question that how to apply refine mask in cascade mask rcnn / HTC?
Cause there are three stage in HTC, should I apply refine mask in the last stage or all the three stage?
thanks for your reply~

hello!
thanks for your beautiful work.
I have a question that how to apply refine mask in cascade mask rcnn / HTC?
Cause there are three stage in HTC, should I apply refine mask in the last stage or all the three stage?
thanks for your reply~

If for higher performance, you can apply refinemask with maximum output size 28 to the first two stages of HTC, and refinemask with maximum output size 112 to the last stage of HTC. You may need to set the loss weight of each stage on your own situation.

fine!that is helpful for me! Thanks a lot !!

Now I have another question
Can refinemask be used with mask scoring? Have you done a similar experiment?

thanks for your reply~

fine!that is helpful for me! Thanks a lot !!

Now I have another question
Can refinemask be used with mask scoring? Have you done a similar experiment?

thanks for your reply~

Sure, it can be used with mask scoring. Please refer to the solution of the winner of the LVIS Challenge 2020. And the result of Table 10 in our paper (RefineMask) is got by applying RefineMask to this solution.

fine! thanks a lot!