VidEoMT: Your ViT is Secretly Also a Video Segmentation Model
Paper • 2602.17807 • Published • 7
How to use tue-mps/videomt-dinov2-large-ovis with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-segmentation", model="tue-mps/videomt-dinov2-large-ovis") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("tue-mps/videomt-dinov2-large-ovis", dtype="auto")This repository contains the Hugging Face Transformers conversion of the official VidEoMT checkpoint
ovis_vit_large_52.5.pth from tue-mps/VidEoMT.
| Metric | Value |
|---|---|
| AP | 52.5 |
| AR@10 | 57.5 |
| FPS | 115 |
The metrics above are the numbers reported by the authors in the official model zoo.
from transformers import AutoModelForUniversalSegmentation, AutoVideoProcessor
model_id = "tue-mps/videomt-dinov2-large-ovis"
processor = AutoVideoProcessor.from_pretrained(model_id)
model = AutoModelForUniversalSegmentation.from_pretrained(model_id)
Use processor.post_process_instance_segmentation,
processor.post_process_panoptic_segmentation, or
processor.post_process_semantic_segmentation depending on the target task.