Shuberman commited on
Commit
cc2eb5f
·
verified ·
1 Parent(s): cebfea9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +57 -17
README.md CHANGED
@@ -1,28 +1,64 @@
1
- # SimMotion-Real Benchmark (SemanticMoments)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- This folder contains the real-world benchmark for evaluating motion representation consistency as described in:
4
 
5
- **"SemanticMoments: Training-Free Motion Similarity via Third Moment Features"**
 
 
 
 
6
 
7
- ## Dataset Structure
8
  The benchmark consists of **40 real-world test cases**, each organized as a triplet:
9
- 1. **`ref.mp4`**: The reference video defining the target semantic motion.
10
- 2. **`positive.mp4`**: A real-world video sharing the same semantic motion as the reference.
11
- 3. **`negative.mp4`**: **Hard Negative**. A video with a similar visual appearance to the reference, but containing a different motion.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  ## Evaluation Protocol
14
- This benchmark evaluates retrieval performance using a large-scale distractor pool to ensure motion representations are robust against diverse real-world actions.
15
 
16
- * **Retrieval Pool**: For each reference video, the candidate pool includes:
17
- * The corresponding `positive.mp4`.
18
- * The corresponding `hard negative.mp4`.
19
- * **1,000 Distractor Videos**: The first 1,000 videos from the Kinetics-400 validation set (sorted alphabetically).
20
- * **Metric**: Top-1 Accuracy. A trial is successful if:
21
- $$Similarity(ref, positive) > Similarity(ref, candidates_{all})$$
22
- (Where $candidates_{all}$ includes the hard negative and all 1,000 Kinetics distractors).
23
 
24
  ## Citation
25
- If you use this benchmark, please cite:
26
 
27
  ```bibtex
28
  @article{huberman2026semanticmoments,
@@ -31,4 +67,8 @@ If you use this benchmark, please cite:
31
  journal={arXiv preprint arXiv:2602.09146},
32
  year={2026}
33
  }
34
- ```
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - video-classification
5
+ - feature-extraction
6
+ tags:
7
+ - video
8
+ - motion
9
+ - similarity
10
+ - retrieval
11
+ - benchmark
12
+ language:
13
+ - en
14
+ pretty_name: SimMotion-Real
15
+ size_categories:
16
+ - n<1K
17
+ ---
18
 
19
+ # SimMotion-Real Benchmark
20
 
21
+ Real-world benchmark for evaluating motion representation consistency, introduced in:
22
+
23
+ **"SemanticMoments: Training-Free Motion Similarity via Third Moment Features"** ([arXiv:2602.09146](https://arxiv.org/abs/2602.09146))
24
+
25
+ ## Dataset Description
26
 
 
27
  The benchmark consists of **40 real-world test cases**, each organized as a triplet:
28
+
29
+ | File | Description |
30
+ |------|-------------|
31
+ | `ref.mp4` | Reference video defining the target semantic motion |
32
+ | `positive.mp4` | Video sharing the same semantic motion as reference |
33
+ | `negative.mp4` | Hard negative - similar appearance but different motion |
34
+
35
+ ## Usage
36
+
37
+ ```python
38
+ from semantic_moments import SimMotionReal, download_simmotion
39
+
40
+ # Download
41
+ download_simmotion(dataset="real")
42
+
43
+ # Load
44
+ dataset = SimMotionReal("SimMotion_Real_benchmark")
45
+ print(f"Loaded {len(dataset)} triplets")
46
+
47
+ for triplet in dataset:
48
+ print(triplet.ref_path, triplet.positive_path, triplet.negative_path)
49
+ ```
50
+
51
+ Or download directly:
52
+ ```bash
53
+ huggingface-cli download Shuberman/SimMotion-Real --repo-type dataset --local-dir SimMotion_Real_benchmark
54
+ ```
55
 
56
  ## Evaluation Protocol
 
57
 
58
+ - **Retrieval Pool**: For each reference, candidates include the positive, hard negative, and 1,000 Kinetics-400 distractors
59
+ - **Metric**: Top-1 Accuracy - success if positive is retrieved first
 
 
 
 
 
60
 
61
  ## Citation
 
62
 
63
  ```bibtex
64
  @article{huberman2026semanticmoments,
 
67
  journal={arXiv preprint arXiv:2602.09146},
68
  year={2026}
69
  }
70
+ ```
71
+
72
+ ## License
73
+
74
+ MIT