rcwang commited on
Commit
e2d6333
1 Parent(s): 3840113

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - 3D
5
+ - motion
6
+ - music
7
+ - piano
8
+ pretty_name: FürElise
9
+ ---
10
+
11
+ # FürElise: Capturing and Physically Synthesizing Hand Motions of Piano Performance
12
+
13
+ This hosts the [FürElise](https://for-elise.github.io/) dataset, which contains 10 hours, 153 pieces of piano music performed by 15 elite-level pianists, along with synchronized audio and key pressing events.
14
+
15
+ # Getting Started
16
+ To download the dataset and the related scripts, first run
17
+ ```
18
+ git lfs install
19
+ # We skip the raw dataset.zip because it's too large
20
+ GIT_LFS_SKIP_SMUDGE=1 git clone [email protected]:datasets/rcwang/for_elise
21
+ ```
22
+ And then download dataset.zip
23
+ ```
24
+ cd for_elise
25
+ wget https://huggingface.co/datasets/rcwang/for_elise/resolve/main/dataset.zip -O dataset.zip
26
+ unzip dataset.zip
27
+ ```
28
+
29
+ # 3D Visualizer
30
+ We provide a web-based 3D visualizer of our dataset under `visualizer/` which has the same functionality as the one you see in the [project website](https://for-elise.github.io/). You can run it with the following commands:
31
+ ```
32
+ cd visualizer
33
+ python server.py
34
+ ```
35
+ You need `flask` and `numpy` to run the visualizer.
36
+
37
+ # Dataset structure
38
+ The metadata for all 153 pieces can be found in `metadata.json`:
39
+ ```
40
+ [
41
+ {
42
+ "name": "Concerto in D Minor, BWV 1052: I. Allegro",
43
+ "composer": "J.S. Bach",
44
+ "piece_id": 0,
45
+ "subject_id": 0
46
+ },
47
+ ...
48
+ ]
49
+ ```
50
+ Motion data for each music piece is stored in a single subdirectory under `dataset/`. The motion data is stored frame by frame with FPS 59.94.
51
+ ```
52
+ piece_id # Directory
53
+ ├── motion.pkl # Pickle file of a dictionary storing 3D hand motion data
54
+ │ ├── left # Motion data for the left hand
55
+ │ │ ├── joints # Nx21x3, joint locations for every frame
56
+ │ │ ├── mano_params # MANO hand parameters for each frame
57
+ │ │ │ ├── global_translation # Nx3
58
+ │ │ │ ├── global_rotation # Nx3x3
59
+ │ │ │ ├── pose # Nx45
60
+ │ │ │ ├── shape # 10
61
+ │ │ │ └── vertices # Nx778x3
62
+ │ ├── right # Motion data for the right hand
63
+ │ │ ├── joints # Nx21x3, joint locations for every frame
64
+ │ │ ├── mano_params # MANO hand parameters for each frame
65
+ │ │ │ ├── global_translation # Nx3
66
+ │ │ │ ├── global_rotation # Nx3x3
67
+ │ │ │ ├── pose # Nx45
68
+ │ │ │ ├── shape # 10
69
+ │ │ │ └── vertices # Nx778x3
70
+ ├── midi.mid # Synchronized MIDI file recorded during performance
71
+ ├── audio.mp3 # Synchronized audio synthesized from the MIDI file
72
+ └── vis # Used for the 3D visualizer
73
+ ├── metadata.json
74
+ └── pressed_keys.pkl
75
+ ```
76
+ # Licensing
77
+ This dataset is released under the [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) license.
78
+
79
+ # Cite
80
+ ```
81
+ @inproceedings{wang2024piano,
82
+ title = {FürElise: Capturing and Physically Synthesizing Hand Motions of Piano Performance},
83
+ author = {Ruocheng Wang and Pei Xu and Haochen Shi and Elizabeth Schumann and C. Karen Liu},
84
+ booktitle = {SIGGRAPH Asia 2024},
85
+ year = {2024}
86
+ }
87
+ ```