matcav commited on
Commit
6bebb3f
·
verified ·
1 Parent(s): dbfed2f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -6
README.md CHANGED
@@ -5,10 +5,22 @@ language:
5
  size_categories:
6
  - 100M<n<1B
7
  configs:
 
 
 
 
 
 
 
 
 
 
8
  - config_name: music_metadata
9
- data_files: "music_metadata.parquet"
10
- - config_name: grammy_original
11
- data_files: "grammy_originals.parquet"
 
 
12
  ---
13
 
14
  # Preprocessed Data for the ADA Project 2025
@@ -16,6 +28,12 @@ configs:
16
  ## By DataCookers
17
 
18
  List of Files:
19
- * *music_metadata.parquet*: `yt_metadata_en` split of the [Youniverse](https://github.com/epfl-dlab/YouNiverse) Dataset where the category is "Music"
20
- * *grammy_originals.csv*: Original copy of [Grammy Winners](https://www.kaggle.com/datasets/johnpendenque/grammy-winners-and-nominees-from-1965-to-2024)
21
- * *grammy_originals.parquet*: Parquet converted version of `grammy_originals.csv`
 
 
 
 
 
 
 
5
  size_categories:
6
  - 100M<n<1B
7
  configs:
8
+ - config_name: channels_clean
9
+ data_files: "channels_clean.parquet"
10
+ - config_name: grammy_raw
11
+ data_files: "grammy_raw.parquet"
12
+ - config_name: grammy_videos
13
+ data_files: "grammy_videos.parquet"
14
+ - config_name: metadata_grammy
15
+ data_files: "metadata_grammy.parquet"
16
+ - config_name: metadata_grammy_lyrics
17
+ data_files: "metadata_grammy_lyrics.parquet"
18
  - config_name: music_metadata
19
+ data_files: "music_metadata.parquet"
20
+ - config_name: music_video_ids
21
+ data_files: "music_video_ids.parquet"
22
+ - config_name: timeseries_grammy
23
+ data_files: "timeseries_grammy.parquet"
24
  ---
25
 
26
  # Preprocessed Data for the ADA Project 2025
 
28
  ## By DataCookers
29
 
30
  List of Files:
31
+ * *channels_clean.parquet*: This dataset is obtained by preprocessing the `df_channels_en` split of the Youniverse Dataset. The main problem could be found int the missing values in certain rows relative to the **Category** column, that led to the remaining columns that were shifted one position to the left.
32
+ * *grammy_raw.parquet*: The original dataset that can be found at [This Kaggle link](https://www.kaggle.com/datasets/johnpendenque/grammy-winners-and-nominees-from-1965-to-2024).
33
+ * *grammy_videos.parquet*: Equivalent to the `grammy_raw.parquet` dataset, but expanded to also have the `video_id` column, using a scraping API (**YT-DLP**).
34
+ * *metadata_grammy.parquet*: This dataset is obtained by merging the original Grammy Dataset with the Youniverse's `yt_metadata_en` split. The merging is done through a set of scraping and heuristic functions.
35
+ * *metadata_grammy_lyrics.parquet*: A specialized dataset containing the lyrics for Grammy-nominated or winning songs, enabling text or sentiment analysis.
36
+ * *music_metadata.parquet*: This dataset is obtained by filtering the original `yt_metadata_en` split on the **Music** Category.
37
+ * *music_video_ids.parquet*: This dataset is obtained by filtering the ´yt_metadata_en´ split of the Youniverse dataset to include just those videos that are listed in the **Music** category.
38
+ * *timeseries_grammy.parquet*: This dataset describes the Timeseries evolution of channels belonging to Grammy Authors. We obtain this by filtering the Youniverse's `df_timeseries_en` split with the unique channels that can be found in the `metadata_grammy.parquet` dataset.
39
+