RS2002 commited on
Commit
54eb30a
·
verified ·
1 Parent(s): 5c8dabc

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # RPMC-L2
2
+
3
+ The description is generated by Grok3.
4
+
5
+ ## Dataset Description
6
+
7
+ - **Repository:** [RS2002/Skip-BART: Official Repository for The Paper, Automatic Stage Lighting Control: Is it a Rule-Driven Process or Generative Task?](https://github.com/RS2002/Skip-BART)
8
+ - **Paper:** [Automatic Stage Lighting Control: Is it a Rule-Driven Process or Generative Task?](https://arxiv.org/abs/2506.01482)
9
+ - **Contact:** zzhaock@connect.ust.hk
10
+ - **Collector:** Zijian Zhao
11
+ - **Dataset Processer:** Dian Jin
12
+ - **Organization:** [Tokamak Disruption Band](https://tokamak-disruption.netlify.app/)
13
+ - **Dataset Summary:**
14
+ The Rock, Punk, Metal, and Core - Livehouse Lighting (RPMC-L2) dataset contains synchronized music and lighting data collected from professional live performance venues in the genres of Rock, Punk, Metal, and Core. The dataset includes 699 files in HDF5 format, totaling approximately 40 GB, designed to study the relationship between music features and lighting effects in live performances.
15
+ - **Tasks:** Music-to-Lighting Relationship Analysis, Audio-Visual Synchronization, Cross-Domain Tasks.
16
+
17
+ ## Dataset Structure
18
+
19
+ ### Data Instances
20
+
21
+ Each instance is an HDF5 file (`.h5`) containing synchronized music and lighting data for a specific live performance. The dataset is split into multiple parts (`RPMC_L2_part_aa`, `RPMC_L2_part_ab`, etc.) that can be merged into a single `RPMC_L2.h5` file. Each file is organized into two main groups: `music` and `light`, with the following features:
22
+
23
+ - **Music Features**: Audio-related features stored as `np.ndarray` arrays with shape `(X, L)`, where `L` is the sequence length.
24
+ - **Light Features**: Lighting-related data stored as `np.ndarray` arrays, primarily threshold data with shape `(F, 3, 256)`.
25
+
26
+ ### Data Fields
27
+
28
+ | Group | Feature | Shape | Description |
29
+ | ----- | ------------------ | ----------- | ------------------------------------------------------------ |
30
+ | music | openl3 | (512, L) | OpenL3 deep audio embedding |
31
+ | music | mel_spectrogram | (128, L) | Mel spectrogram |
32
+ | music | mel_spectrogram_db | (128, L) | Mel spectrogram in decibels |
33
+ | music | cqt | (84, L) | Constant-Q transform (CQT) |
34
+ | music | stft | (1025, L) | Short-time Fourier transform (STFT) |
35
+ | music | mfcc | (128, L) | Mel-frequency cepstral coefficients |
36
+ | music | chroma_stft | (12, L) | Chroma features from STFT |
37
+ | music | chroma_cqt | (12, L) | Chroma features from CQT |
38
+ | music | chroma_cens | (12, L) | Chroma Energy Normalized Statistics |
39
+ | music | spectral_centroids | (1, L) | Spectral centroid |
40
+ | music | spectral_bandwidth | (1, L) | Spectral bandwidth |
41
+ | music | spectral_contrast | (7, L) | Spectral contrast |
42
+ | music | spectral_rolloff | (1, L) | Spectral rolloff frequency |
43
+ | music | zero_crossing_rate | (1, L) | Zero-crossing rate |
44
+ | light | threshold | (F, 3, 256) | Frame-specific light threshold data (Hue: 0–179, Saturation: 0–255, Value: 0–255) |
45
+
46
+ ### Data Splits
47
+
48
+ The dataset consists of 699 files, organized by file hashes (top-level keys in the HDF5 file). There are no predefined splits; users can process the merged `RPMC_L2.h5` file to create custom train/validation/test splits based on their research needs.
49
+
50
+ ## Dataset Creation
51
+
52
+ ### Curation Rationale
53
+
54
+ The dataset was created to facilitate research on the relationship between music characteristics and lighting effects in live performance venues, enabling applications in automated lighting design, audio-visual synchronization, and immersive live experiences.
55
+
56
+ ### Source Data
57
+
58
+ - Initial Data Collection:
59
+
60
+ Data was collected from professional live performance venues hosting Rock, Punk, Metal, and Core music genres. Music features were extracted from audio recordings, and lighting data was captured as threshold values (Hue, Saturation, Value) synchronized with the audio.
61
+
62
+ - **Total Size:** ~40 GB
63
+ - **Collection Method:** Professional live performance venues
64
+ - **File Format:** HDF5 (`.h5`)
65
+
66
+ - **Who are the source data producers?**
67
+ The data was collected by researchers or professionals in live music venues, capturing synchronized audio and lighting data.
68
+
69
+ ### Annotations
70
+
71
+ - **Annotation Process:**
72
+ The dataset includes music features (e.g., mel spectrogram, MFCC) and lighting data (threshold values for Hue, Saturation, Value) automatically extracted and synchronized during data collection. No manual annotations were provided.
73
+ - **Who are the annotators?**
74
+ The dataset creators processed and organized the data using automated feature extraction tools.
75
+
76
+ ## Citation
77
+
78
+ ```bibtex
79
+ @article{zhao2025automatic,
80
+ title={Automatic Stage Lighting Control: Is it a Rule-Driven Process or Generative Task?},
81
+ author={Zhao, Zijian and Jin, Dian and Zhou, Zijing and Zhang, Xiaoyu},
82
+ journal={arXiv preprint arXiv:2506.01482},
83
+ year={2025}
84
+ }
85
+ ```
86
+