JulienTBoucher commited on
Commit
b6c8c6b
·
verified ·
1 Parent(s): 24b096d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +66 -0
README.md ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - motion-inbetweening
7
+ - keypose-extraction
8
+ - character-animation
9
+ - adaptive-interpolation-synthesis
10
+ ---
11
+
12
+ # Motion In-Betweening Dataset
13
+
14
+ ## Dataset Description
15
+
16
+ This dataset contains character animation sequences from production. It is used for training and evaluating the motion in-betweening method presented in:
17
+
18
+ https://arxiv.org/abs/2605.02742
19
+
20
+ > Raël et al., "Adaptive Interpolation-Synthesis for Motion In-Betweening on Keyframe-Based Animation",
21
+ > SIGGRAPH 2026 Conference Papers (2026)
22
+
23
+ ## Dataset Summary
24
+
25
+ The dataset provides character animation at 24 fps for a single production rig, with each frame represented as a D=596-dimensional vector of rig controller values. It is split into two subsets:
26
+
27
+ - **`in_house_dataset:`** 8.5 hours of internal production sequences, split 95% for training and 5% for held-out evaluation (`test_held_out_algorithmic` and `test_held_out_random` splits).
28
+ - **`prod_test_dataset:`** 5 minutes of production data with ground-truth blocking keyposes, used for the `test_production` evaluation split.
29
+
30
+ For each subset, the dataset provides the processed per-frame controller-value sequences (`vectorized_controller_values/`) along with the corresponding block keypose annotations (`vectorized_block_keyframes/`). For `in_house_dataset`, the block keyposes are determined by the Domain-Based Algorithm; for `prod_test_dataset`, they are ground-truth animator block keyposes.
31
+
32
+ ## Usage
33
+
34
+ See the [GitHub repository](https://github.com/animaj-lab/mib-ais)
35
+
36
+ ## Data Format
37
+
38
+ The repository is organized as follows:
39
+
40
+ ```
41
+ root_directory/
42
+ ├── in_house_dataset
43
+ │ ├── ranges.csv
44
+ │ ├── split_types.csv
45
+ │ ├── vectorized_block_keyframes
46
+ │ │ ├── test.h5
47
+ │ │ └── train.h5
48
+ │ └── vectorized_controller_values
49
+ │ └── ef25a8e5ecd2fa86420741e5646cd785aa025c44c06f4118aab77f558c8f6981
50
+ │ ├── test.h5
51
+ │ └── train.h5
52
+ └── prod_test_dataset
53
+ ├── ranges.csv
54
+ ├── split_types.csv
55
+ ├── vectorized_block_keyframes
56
+ │ ├── test.h5
57
+ │ └── train.h5
58
+ └── vectorized_controller_values
59
+ └── ef25a8e5ecd2fa86420741e5646cd785aa025c44c06f4118aab77f558c8f6981
60
+ ├── test.h5
61
+ └── train.h5
62
+ ```
63
+
64
+ ## License
65
+
66
+ Apache 2.0