We find Mask2Former also achieves state-of-the-art performance on video instance segmentation without modifying the architecture, the loss or even the training pipeline. In this report, we show universal image segmentation architectures trivially generalize to video segmentation by directly predicting 3D segmentation volumes. Specifically, Mask2Former sets a new state-of-the-art of 60.4 AP on YouTubeVIS-2019 and 52.6 AP on YouTubeVIS-2021. We believe Mask2Former is also capable of handling video semantic and panoptic segmentation, given its versatility in image segmentation. We hope this will make state-of-theart video segmentation research more accessible and bring more attention to designing universal image and video segmentation architectures.
@inproceedings{cheng2021mask2former,
title={Masked-attention Mask Transformer for Universal Image Segmentation},
author={Bowen Cheng and Ishan Misra and Alexander G. Schwing and Alexander Kirillov and Rohit Girdhar},
journal={CVPR},
year={2022}
}
Note: Codalab has closed the evaluation portal of YouTube-VIS 2019
, so we do not provide the results of YouTube-VIS 2019
at present. If you want to evaluate the results of YouTube-VIS 2021
, at present, you can submit the result to the evaluation portal of YouTube-VIS 2022
. The value of AP_S
is the result of YouTube-VIS 2021
.
Method | Backbone | Style | Lr schd | Mem (GB) | Inf time (fps) | AP | Config | Download |
---|---|---|---|---|---|---|---|---|
Mask2Former | R-50 | pytorch | 8e | 6.0 | - | 41.3 | config | model | log |
Mask2Former | R-101 | pytorch | 8e | 7.5 | - | 42.3 | config | model | log |
Mask2Former(200 queries) | Swin-L | pytorch | 8e | 18.5 | - | 52.3 | config | model | log |
Tracking Development Environment Setup can refer to this document.
Tracking Dataset Prepare can refer to this document.
Due to the influence of parameters such as learning rate in default configuration file, we recommend using 8 GPUs for training in order to reproduce accuracy. You can use the following command to start the training.
# Training Mask2Former on YouTube-VIS-2021 dataset with following command.
# The number after config file represents the number of GPUs used. Here we use 8 GPUs.
bash tools/dist_train.sh configs/mask2former_vis/mask2former_r50_8xb2-8e_youtubevis2021.py 8
If you want to know about more detailed usage of train.py/dist_train.sh/slurm_train.sh
,
please refer to this document.
If you want to get the results of the YouTube-VOS val/test set, please use the following command to generate result files that can be used for submission. It will be stored in ./youtube_vis_results.submission_file.zip
, you can modify the saved path in test_evaluator
of the config.
# The number after config file represents the number of GPUs used.
bash tools/dist_test_tracking.sh configs/mask2former_vis/mask2former_r50_8xb2-8e_youtubevis2021.py --checkpoint ${CHECKPOINT_PATH}
If you want to know about more detailed usage of test_tracking.py/dist_test_tracking.sh/slurm_test_tracking.sh
,
please refer to this document.
Use a single GPU to predict a video and save it as a video.
python demo/mot_demo.py demo/demo_mot.mp4 configs/mask2former_vis/mask2former_r50_8xb2-8e_youtubevis2021.py --checkpoint {CHECKPOINT_PATH} --out vis.mp4
If you want to know about more detailed usage of mot_demo.py
, please refer to this document.