Download pre-trained model weights
January 17, 2025 ยท View on GitHub
TAPPS model weights
Here, we list the different models that we release, and provide a download link.
COCO pre-trained model weights
To initialize a model with COCO (panoptic) pre-trained weights, as done in our work, follow these steps:
-
Identify the backbone architecture of the model you wish to train (e.g., ResNet-50 or Swin-B)
-
For this backbone, download the model weights provided in the original Mask2Former repository, trained for COCO panoptic segmentation.
-
Place these model weights in the
checkpointsdirectory, following this structure:checkpoints/ maskformer2_R50_bs16_50ep/ model_final_94dc52.pkl maskformer2_swin_base_IN21k_384_bs16_50ep/ model_final_54b88a.pkl
Then, you can simply run the training code following the instructions provided here. In the default configs, the path to the COCO pre-trained weights is already provided.