davidlms commited on
Commit
f272857
1 Parent(s): 0c12352

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -20
README.md CHANGED
@@ -48,6 +48,9 @@ Collaboration is encouraged, with individuals able to verify the different recor
48
 
49
  For more information or to report a problem, you can write to [[email protected]](mailto:[email protected]).
50
 
 
 
 
51
 
52
  ### Languages
53
 
@@ -57,49 +60,91 @@ The dataset is in Spanish, reflecting the language of the Carnaval de Cádiz.
57
 
58
  ### Data Instances
59
 
60
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
 
62
  ### Data Fields
63
 
64
  `id`
65
 
66
- Unique identifier for each song in the dataset.
67
 
68
  `authors`
69
 
70
- List of authors who have written the song.
71
 
72
  `song_type`
73
 
74
- Type of song represented as an integer. The song types are:
75
-
76
- 1: Presentación
77
- 2: Pasodoble/Tango
78
- 3: Cuplé
79
- 4: Estribillo
80
- 5: Popurrí
81
- 6: Cuarteta
82
 
83
  `year`
84
 
85
- Year the song was written or performed.
86
 
87
  `group`
88
 
89
- Name of the group that performed the song.
90
 
91
  `group_type`
92
 
93
- Type of group represented as an integer. The group types are:
94
-
95
- 1: Coro
96
- 2: Comparsa
97
- 3: Chirigota
98
- 4: Cuarteto
99
 
100
  `lyrics`
101
 
102
- List of verses that make up the lyrics of the song.
103
 
104
  ### Data Splits
105
 
 
48
 
49
  For more information or to report a problem, you can write to [[email protected]](mailto:[email protected]).
50
 
51
+ ### Supported Tasks and Leaderboards
52
+
53
+ [More Information Needed]
54
 
55
  ### Languages
56
 
 
60
 
61
  ### Data Instances
62
 
63
+ A typical instance in the dataset is formatted in JSON and contains the following fields:
64
+
65
+ ```json
66
+ {
67
+ "id": "9de8647521b728c45ff45c1c11208708d055397fd7781b31cf91b473dff224d5",
68
+ "authors": ["Juan Carlos Aragón Becerra"],
69
+ "song_type": 2,
70
+ "year": "2018",
71
+ "group": "Los Mafiosos",
72
+ "group_type": 2,
73
+ "lyrics": [
74
+ "Mujer va llegando el momento",
75
+ "de ser la que lleve la rienda",
76
+ "el camino ha sido largo y polvoriento",
77
+ "pero ya no habrá varón que te detenga",
78
+ "gritad larga vida a la reina",
79
+ "que va a comenzar tu gobierno",
80
+ "ojalá no heredes nada",
81
+ "de aquel macho que te odiaba",
82
+ "porque en el fondo sabía",
83
+ "que ya tú te le acercabas",
84
+ "y el contigo no podía",
85
+ "ten en cuenta cuando hagas justicia",
86
+ "de volver a nivelar la balanza",
87
+ "y aguantar aunque tragando saliva",
88
+ "el deseo de venganza",
89
+ "de ser oh humano fatal",
90
+ "de ser o que puedo entender",
91
+ "tan solo con una mirada",
92
+ "la llaga que baña tu alma y tu piel",
93
+ "que te sirva la experiencia",
94
+ "del macho de la manada",
95
+ "la fuerza no vale nada",
96
+ "si no es con la inteligencia",
97
+ "y ojalá que tu conciencia",
98
+ "a mí me brinde la suerte",
99
+ "de nunca volver a verte",
100
+ "con los pies en una iglesia",
101
+ "que ella fue quien escribió",
102
+ "que ella fue quien escribió",
103
+ "la historia contra vosotras",
104
+ "y encima se la cobró",
105
+ "y encima se la cobró",
106
+ "con mil millones de devotas",
107
+ "ojalá que tu corona y tu bandera",
108
+ "abran paso a una vida nueva",
109
+ "como un mundo en primavera",
110
+ "ojalá que a ti no te envenene el poder",
111
+ "y que no dejes nunca de ser la mujer",
112
+ "que siempre fue nuestra gran compañera"
113
+ ]
114
+ }
115
+ ```
116
+
117
+ The id field uniquelyidentifies each instance in the dataset, providing a way to reference specific entries. The authors, song_type, year, group, and group_type fields provide context for the lyrics, while the lyrics field itself contains the actual text of the song. The relationships between these fields are implicit in the structure of the dataset, with each instance representing a single song from the Carnaval de Cádiz.
118
 
119
  ### Data Fields
120
 
121
  `id`
122
 
123
+ Unique identifier for each song in the dataset. A SHA-256 hash calculated from the first four verses of the lyrics and the group name, with all spaces removed and converted to lowercase (string).
124
 
125
  `authors`
126
 
127
+ List of authors who have written the song (string array).
128
 
129
  `song_type`
130
 
131
+ The type of song (1: presentación, 2: pasodoble/tango, 3: cuplé, 4: estribillo, 5: popurrí, 6: cuarteta).
 
 
 
 
 
 
 
132
 
133
  `year`
134
 
135
+ Year the song was written or performed (string).
136
 
137
  `group`
138
 
139
+ Name of the group that performed the song (string).
140
 
141
  `group_type`
142
 
143
+ The type of the group (1: coro, 2: comparsa, 3: chirigota, 4: cuarteto).
 
 
 
 
 
144
 
145
  `lyrics`
146
 
147
+ The lyrics of the song, represented as an array of verses (string array).
148
 
149
  ### Data Splits
150