Views
No views yet
yt_2019_vit_large_68.6.pth from tue-mps/VidEoMT.| Metric | Value |
|---|---|
| AP | 68.6 |
| AR@10 | 73.9 |
| FPS | 160 |
1from transformers import AutoModelForUniversalSegmentation, AutoVideoProcessor
2
3model_id = "tue-mps/videomt-dinov2-large-ytvis2019"
4processor = AutoVideoProcessor.from_pretrained(model_id)
5model = AutoModelForUniversalSegmentation.from_pretrained(model_id)processor.post_process_instance_segmentation,
processor.post_process_panoptic_segmentation, or
processor.post_process_semantic_segmentation depending on the target task.