SemanticMoments: Training-Free Motion Similarity via Third Moment Features
Paper
• 2602.09146 • Published
• 21
video video |
|---|
Real-world benchmark for evaluating motion representation consistency, introduced in:
"SemanticMoments: Training-Free Motion Similarity via Third Moment Features" (arXiv:2602.09146)
License: For research purposes only.
The benchmark consists of 40 real-world test cases, each organized as a triplet:
| File | Description |
|---|---|
ref.mp4 |
Reference video defining the target semantic motion |
positive.mp4 |
Video sharing the same semantic motion as reference |
negative.mp4 |
Hard negative - similar appearance but different motion |
from semantic_moments import SimMotionReal, download_simmotion
# Download
download_simmotion(dataset="real")
# Load
dataset = SimMotionReal("SimMotion_Real_benchmark")
print(f"Loaded {len(dataset)} triplets")
for triplet in dataset:
print(triplet.ref_path, triplet.positive_path, triplet.negative_path)
Or download directly:
huggingface-cli download Shuberman/SimMotion-Real --repo-type dataset --local-dir SimMotion_Real_benchmark
@article{huberman2026semanticmoments,
title={SemanticMoments: Training-Free Motion Similarity via Third Moment Features},
author={Huberman, Saar and Goldberg, Kfir and Patashnik, Or and Benaim, Sagie and Mokady, Ron},
journal={arXiv preprint arXiv:2602.09146},
year={2026}
}
For research purposes only.