motionhalluc commited on
Commit
5ad64c0
Β·
verified Β·
1 Parent(s): 00d9532

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +106 -3
README.md CHANGED
@@ -1,3 +1,106 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ ---
4
+ # MotionHalluc Benchmark
5
+
6
+ This repository contains the **MotionHalluc benchmark**, a dataset designed for evaluating motion hallucination and motion reasoning in video-based multimodal models.
7
+
8
+ ---
9
+
10
+ ## πŸ“Œ Overview
11
+
12
+ MotionHalluc introduces three evaluation tasks that require models to compare, reason about, and verify human motion patterns across videos. The benchmark is constructed using curated annotations and motion representations derived from human motion estimation pipelines.
13
+
14
+ We provide:
15
+ - Structured QA annotations for motion reasoning
16
+ - Motion representations extracted using a state-of-the-art motion reconstruction model
17
+ - Evaluation-ready dataset splits
18
+
19
+ ---
20
+
21
+ ## πŸ“ Dataset Structure
22
+
23
+ ### 1. `anno/`
24
+ Contains all annotation files, including:
25
+ - Three MotionHalluc tasks (QA-based evaluation)
26
+ - Original curated annotations used to construct the benchmark
27
+
28
+ Each file is in JSON format.
29
+
30
+ ### 2. `motion_4dHumans/`
31
+ Contains motion representations corresponding to each video sample.
32
+
33
+ - Format: `.npy`
34
+ - Extracted using a pretrained 4D human motion reconstruction pipeline
35
+ - Each file corresponds to a video ID used in the QA annotations
36
+
37
+ ---
38
+
39
+ ## πŸŽ₯ Video Data
40
+
41
+ We distribute **annotations and motion representations only**.
42
+
43
+ Since we do not own the original videos, users are required to download them separately.
44
+
45
+ - Fit3D dataset: https://fit3d.imar.ro/
46
+
47
+ The videos are used solely as input references for motion extraction and evaluation alignment.
48
+
49
+ ---
50
+
51
+ ## βš™οΈ Motion Extraction
52
+
53
+ Motion representations are obtained using a pretrained 4D human motion reconstruction method:
54
+
55
+ :contentReference[oaicite:1]{index=1}
56
+
57
+ This approach is used to extract 3D human motion trajectories from video inputs.
58
+
59
+ ---
60
+
61
+ ## πŸ’» Preprocessing & Evaluation Code
62
+
63
+ We provide video processing and evaluation scripts in the official code repository:
64
+
65
+ πŸ‘‰ GitHub repository: https://your-github-link-here
66
+
67
+ This includes:
68
+ - Video preprocessing pipeline.
69
+ - Evaluation scripts for all three MotionHalluc tasks.
70
+ - Accuracy calculation script.
71
+
72
+ ---
73
+
74
+ ## πŸ”„ Fit3D Ground Truth Motion Processing
75
+
76
+ Due to dataset licensing restrictions, we do **not redistribute Fit3D-derived motion data**.
77
+
78
+ However:
79
+ - We will release the full Fit3D ground-truth motion processing pipeline upon acceptance.
80
+ - This includes conversion from raw motion capture format to our benchmark representation.
81
+
82
+ In the current submission, all experiments are conducted using the **4D-Humans-based motion representation**, which already demonstrates strong performance and serves as a reliable proxy for kinematic evaluation.
83
+
84
+ ---
85
+
86
+ ## πŸ“Š Benchmark Usage
87
+
88
+ Each sample in MotionHalluc contains:
89
+ - A question about motion comparison or reasoning
90
+ - Multiple-choice or binary answers
91
+ - Corresponding motion representation for each video
92
+
93
+ Example format:
94
+ ```json
95
+ {
96
+ "0001": {
97
+ "v1": "Bench/s03/band_pull_apart/band_pull_apart_front_215_304.mp4",
98
+ "v2": "Bench/s04/band_pull_apart/band_pull_apart_front_236_345.mp4",
99
+ "q": "You are given a query motion in Video1 and a reference motion in Video2. Which of the following correction accurate and necessary to improve the query motion in Video1 based on the reference motion in Video2?",
100
+ "c": [
101
+ "Hands level with your head at the beginning",
102
+ "At the beginning, keep your hands below head level"
103
+ ],
104
+ "a": "A"
105
+ },
106
+ }