Views
No views yet
ovis_vit_large_52.5.pth from tue-mps/VidEoMT.| Metric | Value |
|---|---|
| AP | 52.5 |
| AR@10 | 57.5 |
| FPS | 115 |
1from transformers import AutoModelForUniversalSegmentation, AutoVideoProcessor
2
3model_id = "tue-mps/videomt-dinov2-large-ovis"
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.