Views
No views yet
| Checkpoint Filename | Target Dataset | Backbone | Decoder Type | Reached mIoU |
|---|---|---|---|---|
best_model_voc.pth | PASCAL VOC 2012 Val | EfficientViT-SAM-XL0 | RC (Resize-Conv) Decoder | 84.91% |
best_model_coco.pth | MS COCO 2014 Val | EfficientViT-SAM-XL0 | CT (Transpose-Conv) Decoder | 59.31% |
state_dict loading errors (such as KeyError or missing key warnings), you must configure the decoder type in your config.py to match the downloaded checkpoint exactly:best_model_voc.pth):1# Inside your config.py for VOC evaluation:
2decoder_type = "RC" # Ensure this matches the RC-Decoder setupbest_model_coco.pth):1# Inside your config.py for COCO evaluation:
2decoder_type = "CT" # Ensure this matches the CT-Decoder setup.pth) and place it under your local checkpoints/ folder.1# To evaluate PASCAL VOC:
2bash val_voc.sh
3
4# To evaluate MS COCO:
5bash val_coco.sh