--- license: cc-by-4.0 task_categories: - audio-classification tags: - music - emotion - valence - arousal - continuous-annotation - music-emotion-recognition pretty_name: MERP — Music Emotion Recognition with Profile Information size_categories: - 1K 100 years) were removed. 3. Trials with long stagnant plateaus (≥ 300 identical consecutive values) were removed. 4. Raters who did not complete all 4 DEAM anchor songs were removed. 5. Raters whose valence or arousal range across all their trials was less than 1/3 of the full scale were removed. 6. Annotation arrays were trimmed to match the audio feature length. 7. Where a rater completed duplicate DEAM anchor sessions, the session with lower correlation to the DEAM reference annotations was discarded. The original processing pipeline then applied **per-rater rescaling** (each rater's min → −1, max → 1) and **Savitzky-Golay smoothing** (window=15, polynomial order=2) to produce the values stored in this split. --- ## Column descriptions ### `annotations_filtered.parquet` / `annotations_raw.parquet` | Column | Type | Description | | --- | --- | --- | | `rater_id` | str | Anonymized rater identifier (e.g., `rater_042`). Consistent with `rater_profiles.parquet`. | | `song_id` | str | Track identifier matching the `audio/` file stem (e.g., `00_35`, `deam_115`). | | `batch` | str | MTurk batch number (`"4"`–`"8"`). Batches 4–6 are US Master workers; 7–8 are worldwide non-Master. | | `arousal` | list[float] | Time-series arousal ratings at 10 Hz. | | `valence` | list[float] | Time-series valence ratings at 10 Hz. | ### `rater_profiles.parquet` | Column | Type | Description | | --- | --- | --- | | `rater_id` | str | Anonymized rater identifier. | | `master` | int | 1 = MTurk Master worker, 0 = non-Master. | | `age` | int | Rater's age in years. | | `country_enculturation` | str | Country where the rater grew up. | | `country_live` | str | Country where the rater currently lives. | | `fav_music_lang` | str | Preferred music language (e.g., `EN`, `ZH`). | | `gender` | str | Self-reported gender. | | `fav_genre` | str | Favourite music genre. | | `play_instrument` | str | Whether the rater plays an instrument (`Yes`/`No`). | | `training` | str | Whether the rater has formal music training (`Yes`/`No`). | | `training_duration` | int | Years of formal music training (0 if none). | --- ## Usage ```python import pandas as pd # Load filtered annotations ann = pd.read_parquet("annotations_filtered.parquet") # Average valence per song across all raters avg = ann.groupby("song_id")["valence"].apply( lambda arrs: [sum(x)/len(arrs) for x in zip(*arrs)] ) # Join with rater profiles profiles = pd.read_parquet("rater_profiles.parquet") merged = ann.merge(profiles, on="rater_id", how="left") ``` --- ## License **Annotations and rater profiles:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) **Audio files:** All tracks are from the Free Music Archive under Creative Commons licenses (CC BY, CC BY-SA, or CC BY-NC depending on the track). Please check the FMA metadata for per-track license details. --- ## Citation ```bibtex @article{koh2023merp, title = {{MERP}: A Music Dataset with Emotion Ratings and Raters' Profile Information}, author = {Koh, En Yan and Cheuk, Kin Wai and Heung, Kwan Yee and Agres, Kat R. and Herremans, Dorien}, journal = {Sensors}, volume = {23}, number = {1}, pages = {382}, year = {2023}, doi = {10.3390/s23010382} } ```