Views
No views yet
| Variant | Backbone | Checkpoint file |
|---|---|---|
dinov2_vits14_yt | DINOv2 ViT-S/14 trained on YouTube-VOS | dino2_s14_flowfeat_yt.pth |
dinov2_vitb14_yt | DINOv2 ViT-B/14 trained on YouTube-VOS | dino2_b14_flowfeat_yt_v2.pth |
dinov2_vitb14_kt | DINOv2 ViT-B/14 trained on Kinetics | dino2_b14_flowfeat_kt_v2.pth |
pip install git+https://huggingface.co/neek-ans/flowfeat1from flowfeat_hf import flowfeat
2
3model = flowfeat(name="dinov2_vits14_yt", pretrained=True)
4model.eval()1import torch
2
3x = torch.randn(1, 3, 224, 224)
4with torch.no_grad():
5 y_enc, y_dec = model(x)
6
7print(y_enc.shape)
8print(y_dec.shape)checkpoints/.1@inproceedings{Araslanov:2025:FlowFeat,
2 author = {Araslanov, Nikita and Sonnweber, Anna and Cremers, Daniel},
3 title = {{FlowFeat}: Pixel-Dense Embedding of Motion Profiles},
4 booktitle = {NeurIPS},
5 year = {2025},
6}