switchablenorms / DeepFashion2

DeepFashion2 Dataset https://arxiv.org/pdf/1901.07973.pdf
2.25k stars 353 forks source link

Match R-CNN? #27

Open jmaierborst opened 5 years ago

jmaierborst commented 5 years ago

Is there any chance to get the Match R-CNN? Or how difficult would it be to rebuild the net?

geyuying commented 5 years ago

Match R-CNN is built based on Mask R-CNN. We use https://github.com/facebookresearch/Detectron as framework. As can be seen from the Diagram of MatchR-CNN in our paper, you only need add the MN branch since FN and PN are provided in Mask R-CNN.

xwjabc commented 5 years ago

For MN branch, I wonder if the weights are shared between user and shop images, or you use different weights for user and shop images?

geyuying commented 5 years ago

In our settings, weights are share between user and shop images. You can also use different weights.

jmaierborst commented 4 years ago

@geyuying Thank you for your response.