Closed colin-de closed 6 months ago
Hi Colin,
Happy to see you find our code useful. The weights are the following:
1 is the pre-trained weights from which you can start training the network. You can see in train.py
2 is a set of weights for if you want to train just the mask rcnn on COCO data. I don't think we ever used this.
3 & 4 are trained sets of weights you can either use for NOCS testing since we have trained them, or you can load them and continue trying to train.
Hope this helps!
Thanks for your information. If I'm using a dataset with different categories, is it recommended to train a model like mask_rcnn_coco.pth
on new dataset first or can simply start with rand_weight
option ?
using the pretrained weight from 1. (rand_weight=True) for training I got the inference result like this much worse than the checkpoint from 4. NOCS_Trained_2.pth. could you please let me know how to reproduce the training result. Many Thanks!
Hi Colin,
The inference results show that the mask head is not producing good segments in the image. Starting with pre-trained weights might ensure that the masks are well-formed. To reproduce the results, you should start with the model pre-trained on COCO data.
Hi! Thanks for the great work; I have some questions regarding the pre-trained weight provided in the repo.
what settings/experiments are those weights referring to? Thanks for your assistance!