Commit ·
06684ec
1
Parent(s): 4e2f4ee
v1.1: rename metadata_v2.json → metadata.json; update README version history
Browse files- README.md +16 -14
- metadata_v2.json → metadata.json +0 -0
README.md
CHANGED
|
@@ -18,12 +18,12 @@ modalities:
|
|
| 18 |
- structured-data
|
| 19 |
---
|
| 20 |
|
| 21 |
-
# PianoVAM: A Multimodal Piano Performance Dataset
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
|
| 28 |
## Summary
|
| 29 |
|
|
@@ -58,12 +58,14 @@ The recommended way to download the entire dataset (including all large video fi
|
|
| 58 |
```
|
| 59 |
|
| 60 |
2. **Download the dataset**:
|
| 61 |
-
Run the following command in your terminal. This will download all repository files, including LFS data, into a folder named `PianoVAM_v1.
|
| 62 |
|
| 63 |
```bash
|
| 64 |
-
huggingface-cli download PianoVAM/PianoVAM_v1.0 --repo-type dataset --local-dir ./PianoVAM_v1.
|
| 65 |
```
|
| 66 |
|
|
|
|
|
|
|
| 67 |
### 1. Load and Prepare the Dataset
|
| 68 |
|
| 69 |
This initial script loads the dataset, constructs the necessary file URLs, and prepares the audio for direct access.
|
|
@@ -163,16 +165,16 @@ Please be aware that all video performances by the pianist named "jiwoo" have ha
|
|
| 163 |
The dataset repository is organized into the following directories:
|
| 164 |
|
| 165 |
```
|
| 166 |
-
PianoVAM_v1.
|
| 167 |
├── Audio/
|
| 168 |
├── Handskeleton/
|
| 169 |
├── MIDI/
|
| 170 |
├── TSV/
|
| 171 |
├── Video/
|
| 172 |
-
├──
|
| 173 |
-
├──
|
| 174 |
├── README.md
|
| 175 |
-
└── Fingering/
|
| 176 |
```
|
| 177 |
|
| 178 |
### Folder Contents
|
|
@@ -200,9 +202,9 @@ PianoVAM_v1.0/
|
|
| 200 |
* **Format:** Standard MIDI Files (`.mid`).
|
| 201 |
* **Details:** These files provide the precise timing (onset, offset), pitch, and velocity for every note played.
|
| 202 |
|
| 203 |
-
* **`
|
| 204 |
|
| 205 |
-
* **`
|
| 206 |
|
| 207 |
* **`TSV/`**: Contains pre-processed label data derived from the MIDI files for easier parsing. Each file is a tab-separated value file with 5 columns.
|
| 208 |
|
|
@@ -225,4 +227,4 @@ This dataset is licensed under the **Creative Commons Attribution-NonCommercial-
|
|
| 225 |
|
| 226 |
## Contact
|
| 227 |
|
| 228 |
-
For any questions about the dataset, please open an issue in the Community tab of this repository or contact [Yonghyun Kim/yonghyun.kim@gatech.edu].
|
|
|
|
| 18 |
- structured-data
|
| 19 |
---
|
| 20 |
|
| 21 |
+
# PianoVAM v1.1: A Multimodal Piano Performance Dataset
|
| 22 |
|
| 23 |
+
## Version History
|
| 24 |
+
|
| 25 |
+
* **v1.1 (current).** `metadata.json` is the canonical split file, consolidating the `metadata_v2.json` update from v1.0. Video files for the `'Sep 04-05'` recordings are the sync-corrected versions. Files previously found to have video-MIDI synchronization issues have been relocated across splits; the current splits reflect this correction.
|
| 26 |
+
* **v1.0.** Initial release (ISMIR 2025). Provided `metadata_v1.json` as the split file. Later augmented with `metadata_v2.json` and sync-corrected `'Sep 04-05'` videos; v1.1 formalises those changes and renames the split file.
|
| 27 |
|
| 28 |
## Summary
|
| 29 |
|
|
|
|
| 58 |
```
|
| 59 |
|
| 60 |
2. **Download the dataset**:
|
| 61 |
+
Run the following command in your terminal. This will download all repository files, including LFS data, into a folder named `PianoVAM_v1.1`.
|
| 62 |
|
| 63 |
```bash
|
| 64 |
+
huggingface-cli download PianoVAM/PianoVAM_v1.0 --repo-type dataset --local-dir ./PianoVAM_v1.1
|
| 65 |
```
|
| 66 |
|
| 67 |
+
(The Hugging Face repo URL retains the `PianoVAM_v1.0` path for backward compatibility; the contents correspond to v1.1.)
|
| 68 |
+
|
| 69 |
### 1. Load and Prepare the Dataset
|
| 70 |
|
| 71 |
This initial script loads the dataset, constructs the necessary file URLs, and prepares the audio for direct access.
|
|
|
|
| 165 |
The dataset repository is organized into the following directories:
|
| 166 |
|
| 167 |
```
|
| 168 |
+
PianoVAM_v1.1/
|
| 169 |
├── Audio/
|
| 170 |
├── Handskeleton/
|
| 171 |
├── MIDI/
|
| 172 |
├── TSV/
|
| 173 |
├── Video/
|
| 174 |
+
├── metadata.json (Recommended)
|
| 175 |
+
├── metadata_v1.json (Legacy - ISMIR 2025 split)
|
| 176 |
├── README.md
|
| 177 |
+
└── Fingering/ (Coming Soon)
|
| 178 |
```
|
| 179 |
|
| 180 |
### Folder Contents
|
|
|
|
| 202 |
* **Format:** Standard MIDI Files (`.mid`).
|
| 203 |
* **Details:** These files provide the precise timing (onset, offset), pitch, and velocity for every note played.
|
| 204 |
|
| 205 |
+
* **`metadata.json`**: **(Recommended)** The canonical v1.1 split file. Maps each recording to its data split (`train`, `valid`, `test`, `ext-train`, `special(blurry)`, `special(4hands)`) and provides per-recording metadata. Splits reflect the video-MIDI sync corrections.
|
| 206 |
|
| 207 |
+
* **`metadata_v1.json`**: **(Legacy)** The original ISMIR 2025 split file, retained for reproducibility of v1.0-era results. Uses `train`, `valid`, `test`, `special` splits.
|
| 208 |
|
| 209 |
* **`TSV/`**: Contains pre-processed label data derived from the MIDI files for easier parsing. Each file is a tab-separated value file with 5 columns.
|
| 210 |
|
|
|
|
| 227 |
|
| 228 |
## Contact
|
| 229 |
|
| 230 |
+
For any questions about the dataset, please open an issue in the Community tab of this repository or contact [Yonghyun Kim/yonghyun.kim@gatech.edu].
|
metadata_v2.json → metadata.json
RENAMED
|
File without changes
|