YOLOS
YOLOS copied to clipboard
Implmenetation queries
❔Question
Hi thanks for opensourcing the code base this gives steps to learn transformers, i am having few queries
- The dataset is loaded from coco.py using which function since "ConvertCocoPolysToMask" is not called inherently anywhere
- Your load the data training for each epoch using train_one_epoch() for the whole dataset which internally performs losses and then the out for that is performed with evaluation this is performed for each 300 epoch so what's the idea behind this training
- Does yolos provide panoptic segmentation also?can we get pretrained model on this
Thanks in advance
Additional context
Our codebase is inherit from DETR and ViT of timm. So,
- ConvertCocoPolysToMask is inherit from DETR, we didn't modify that.
- This is similar to the original DETR implantation, you can also refer to other DETR implantations, e.g., mmdet (https://github.com/open-mmlab/mmdetection/blob/master/configs/detr/README.md).
- We didn't try panoptic seg, but we believe it is feasible for YOLOS to perform panoptic seg following the configuration of DETR.