Views
No views yet
vipseg_vit_large_55.2.pth from tue-mps/VidEoMT.| Metric | Value |
|---|---|
| VPQ | 55.2 |
| STQ | 48.9 |
| FPS | 75 |
1from transformers import AutoModelForUniversalSegmentation, AutoVideoProcessor
2
3model_id = "tue-mps/videomt-dinov2-large-vipseg"
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.