Open cjpark87 opened 4 years ago
Maybe I can follow https://github.com/roytseng-tw/Detectron.pytorch/blob/master/configs/baselines/e2e_mask_rcnn_R-50-C4_2x.yaml?
It would be great if you can upload your configuration yaml file for mask rcnn!
In the train_net_step.py, in the 285 line , the code show as below:
```
maskRCNN = Generalized_RCNN()
if cfg.CUDA:
maskRCNN.cuda()
### Optimizer ###
gn_param_nameset = set()
for name, module in maskRCNN.named_modules():
if isinstance(module, nn.GroupNorm):
gn_param_nameset.add(name+'.weight')
gn_param_nameset.add(name+'.bias')
...........
**Is fsod a dataset for few shot object detection, and also a dataset for few shot image segmentation?** Does it have segmentation labels? In the train_net_step.py, the model is mask rcnn, not faster rcnn ???
Actually, instance segmentation is out of our scope. I removed those useless configs from the repo, you can use these configs in detectron-tw
to construct your mask-rcnn version.
Thanks for open sourcing your repo. I would be interested in using FSOD with mask rcnn. I think the instruction in the README is about object detection, rather than image segmentation. Could you provide instruction on building it with mask rcnn?