jogonba2 commited on
Commit
c1cfe75
·
verified ·
1 Parent(s): cfca4c6

Update src/task_mappings.py

Browse files
Files changed (1) hide show
  1. src/task_mappings.py +256 -74
src/task_mappings.py CHANGED
@@ -1,79 +1,261 @@
1
- task_categories = {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  "Stance Detection": [
3
- "ibereval-multistancecat-stance_detection-2018-catalan",
4
- "ibereval-multistancecat-stance_detection-2018-spanish",
5
- "iberlef-vaxxstance-stance_detection-2021-basque",
6
- "iberlef-vaxxstance-stance_detection-2021-spanish",
7
- ],
8
- "Sentiment & Emotion Analysis": [
9
- "iberlef-emoevales-emotion_analysis-2021-spanish",
10
- "tass-tass-emotion_analysis-2020-spanish",
11
- "iberlef-restmex-sentiment_analysis-2021-spanish-mexico",
12
- "iberlef-restmex-sentiment_analysis-2022-spanish-mexico",
13
- "tass-tass-sentiment_analysis-2020-spanish-costa_rica",
14
- "tass-tass-sentiment_analysis-2020-spanish-mexico",
15
- "tass-tass-sentiment_analysis-2020-spanish-peru",
16
- "tass-tass-sentiment_analysis-2020-spanish-spain",
17
- "tass-tass-sentiment_analysis-2020-spanish-uruguay",
18
- ],
19
- "Offensive Language & Toxicity Detection": [
20
- "iberlef-detoxis-aggressiveness_detection-2021-spanish",
21
- "iberlef-detoxis-improper_language_detection-2021-spanish",
22
- "iberlef-detoxis-insult_detection-2021-spanish",
23
- "iberlef-detoxis-mockery_detection-2021-spanish",
24
- "iberlef-detoxis-toxicity_detection-2021-spanish",
25
- "iberlef-emoevales-offensiveness_detection-2021-spanish",
26
- "iberlef-meoffendes-offensiveness_detection-2021-spanish",
27
- "iberlef-mex_a3t-aggressiveness_detection-2019-spanish-mexico",
28
- ],
29
- "Hate Speech & Prejudice Detection": [
30
- "iberlef-detests_dis-stereotype_detection-2024-spanish",
31
- "iberlef-huhu-fatphobia_detection-2023-spanish",
32
- "iberlef-huhu-lgtbiq_prejudice_detection-2023-spanish",
33
- "iberlef-huhu-racial_prejudice_detection-2023-spanish",
34
- "iberlef-huhu-women_prejudice_detection-2023-spanish",
35
- ],
36
- "Sexism & Gender Detection": [
37
- "iberlef-exist-sexism_categorization-2021-spanish",
38
- "iberlef-exist-sexism_detection-2021-spanish",
39
- "iberlef-meoffendes-gender_detection-2021-spanish",
40
- "iberlef-restmex-gender_detection-2021-spanish-mexico",
41
- ],
42
- "Fake News & Misinformation Detection": [
43
- "iberlef-fakedes-fake_news_detection-2021-spanish"
44
- ],
45
- "Humor, Sarcasm & Irony Detection": [
46
- "iberlef-haha-humor_detection-2019-spanish",
47
- "iberlef-haha-humor_detection-2021-spanish",
48
- "iberlef-huhu-humor_detection-2023-spanish",
49
- "iberlef-irosva-irony_detection-2019-spanish-cuba",
50
- "iberlef-irosva-irony_detection-2019-spanish-mexico",
51
- "iberlef-irosva-irony_detection-2019-spanish-spain",
52
- ],
53
- "Mental Health Risk Detection": [
54
- "iberlef-mentalriskes-depression_categorization-2023-spanish",
55
- "iberlef-mentalriskes-depression_detection-2023-spanish",
56
- "iberlef-mentalriskes-eating_disorder_detection-2023-spanish",
57
- ],
58
- "Machine-Generated Text Detection & Attribution": [
59
- "iberlef-iberautextification-machine_generated_text_attribution-2024-basque",
60
- "iberlef-iberautextification-machine_generated_text_attribution-2024-catalan",
61
- "iberlef-iberautextification-machine_generated_text_attribution-2024-english",
62
- "iberlef-iberautextification-machine_generated_text_attribution-2024-galician",
63
- "iberlef-iberautextification-machine_generated_text_attribution-2024-portuguese",
64
- "iberlef-iberautextification-machine_generated_text_attribution-2024-spanish",
65
- "iberlef-iberautextification-machine_generated_text_detection-2024-basque",
66
- "iberlef-iberautextification-machine_generated_text_detection-2024-catalan",
67
- "iberlef-iberautextification-machine_generated_text_detection-2024-english",
68
- "iberlef-iberautextification-machine_generated_text_detection-2024-galician",
69
- "iberlef-iberautextification-machine_generated_text_detection-2024-portuguese",
70
- "iberlef-iberautextification-machine_generated_text_detection-2024-spanish",
71
- ],
72
- "Paraphrase & Lexical Borrowing Detection": [
73
- "iberlef-parmex-paraphrase_detection-2022-spanish-mexico",
74
- "iberlef-adobo-lexical_borrowing_chunking-2021-spanish",
 
 
 
 
 
 
 
 
 
 
 
75
  ],
76
  "Language Identification": [
77
- "tweetlid-tweetlid-language_identification-2014-spanish"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79
  }
 
1
+ # Group datasets under broad semantic categories
2
+ semantic_categories = {
3
+ "Sentiment and Emotion Analysis": [
4
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-uruguay",
5
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-mexico",
6
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-spain",
7
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-costa_rica",
8
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-peru",
9
+ "iberbench/tass-tass-emotion_analysis-2020-spanish",
10
+ "iberbench/iberlef-restmex-sentiment_analysis-2022-spanish-mexico",
11
+ "iberbench/iberlef-restmex-sentiment_analysis-2021-spanish-mexico",
12
+ "iberbench/general-bec-sentiment_analysis-2024-basque",
13
+ "iberbench/iberlef-emoevales-emotion_analysis-2021-spanish"
14
+ ],
15
+ "Toxicity and Harmful Language Detection": [
16
+ "iberbench/iberlef-detoxis-aggressiveness_detection-2021-spanish",
17
+ "iberbench/iberlef-detoxis-toxicity_detection-2021-spanish",
18
+ "iberbench/iberlef-detoxis-improper_language_detection-2021-spanish",
19
+ "iberbench/iberlef-detoxis-insult_detection-2021-spanish",
20
+ "iberbench/iberlef-detoxis-mockery_detection-2021-spanish",
21
+ "iberbench/iberlef-emoevales-offensiveness_detection-2021-spanish",
22
+ "iberbench/iberlef-meoffendes-offensiveness_detection-2021-spanish",
23
+ "iberbench/iberlef-mex_a3t-aggressiveness_detection-2019-spanish-mexico",
24
+ "iberbench/general-hate_check-hate_speech_detection-2024-portuguese"
25
+ ],
26
+ "Prejudice and Discrimination Detection": [
27
+ "iberbench/iberlef-detests_dis-stereotype_detection-2024-spanish",
28
+ "iberbench/iberlef-exist-sexism_detection-2021-spanish",
29
+ "iberbench/iberlef-exist-sexism_categorization-2021-spanish",
30
+ "iberbench/iberlef-huhu-racial_prejudice_detection-2023-spanish",
31
+ "iberbench/iberlef-huhu-women_prejudice_detection-2023-spanish",
32
+ "iberbench/iberlef-huhu-lgtbiq_prejudice_detection-2023-spanish",
33
+ "iberbench/iberlef-huhu-fatphobia_detection-2023-spanish"
34
+ ],
35
+ "Machine Generated Text Detection and Attribution": [
36
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-galician",
37
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-english",
38
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-spanish",
39
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-catalan",
40
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-basque",
41
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-english",
42
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-portuguese",
43
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-portuguese",
44
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-basque",
45
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-catalan",
46
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-galician",
47
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-spanish"
48
+ ],
49
+ "Irony and Sarcasm Detection": [
50
+ "iberbench/iberlef-detoxis-sarcasm_detection-2021-spanish",
51
+ "iberbench/iberlef-irosva-irony_detection-2019-spanish-cuba",
52
+ "iberbench/iberlef-irosva-irony_detection-2019-spanish-mexico",
53
+ "iberbench/iberlef-irosva-irony_detection-2019-spanish-spain"
54
+ ],
55
+ "Mental Health Detection": [
56
+ "iberbench/iberlef-mentalriskes-eating_disorder_detection-2023-spanish",
57
+ "iberbench/iberlef-mentalriskes-depression_detection-2023-spanish",
58
+ "iberbench/iberlef-mentalriskes-depression_categorization-2023-spanish"
59
+ ],
60
  "Stance Detection": [
61
+ "iberbench/iberlef-vaxxstance-stance_detection-2021-basque",
62
+ "iberbench/iberlef-vaxxstance-stance_detection-2021-spanish",
63
+ "iberbench/ibereval-multistancecat-stance_detection-2018-spanish",
64
+ "iberbench/ibereval-multistancecat-stance_detection-2018-catalan"
65
+ ],
66
+ "Paraphrase Detection": [
67
+ "iberbench/iberlef-parmex-paraphrase_detection-2022-spanish-mexico",
68
+ "iberbench/general-paws_x-paraphrase_detection-2019-spanish",
69
+ "iberbench/general-paws_gl-paraphrase_detection-2019-galician",
70
+ "iberbench/general-paws_pt-paraphrase_detection-2019-portuguese",
71
+ "iberbench/general-paws_ca-paraphrase_detection-2019-catalan",
72
+ "iberbench/general-parafraseja-paraphrase_detection-2022-catalan"
73
+ ],
74
+ "Author Profiling": [
75
+ "iberbench/pan-author_profiling-gender_detection-2017-spanish",
76
+ "iberbench/pan-author_profiling-age_detection-2015-spanish",
77
+ "iberbench/iberlef-meoffendes-gender_detection-2021-spanish",
78
+ "iberbench/iberlef-restmex-gender_detection-2021-spanish-mexico"
79
+ ],
80
+ "Fake News Detection": [
81
+ "iberbench/iberlef-fakedes-fake_news_detection-2021-spanish"
82
+ ],
83
+ "Humor Detection": [
84
+ "iberbench/iberlef-haha-humor_detection-2021-spanish",
85
+ "iberbench/iberlef-haha-humor_detection-2019-spanish",
86
+ "iberbench/iberlef-huhu-humor_detection-2023-spanish"
87
+ ],
88
+ "Question Answering": [
89
+ "iberbench/general-eus_exams-question_answering-2024-basque",
90
+ "iberbench/general-eus_exams-question_answering-2024-spanish",
91
+ "iberbench/general-eus_trivia-question_answering-2024-basque",
92
+ "iberbench/general-xstorycloze-question_answering-2024-galician",
93
+ "iberbench/general-xstorycloze-question_answering-2024-portuguese",
94
+ "iberbench/general-xstorycloze-question_answering-2024-catalan",
95
+ "iberbench/general-openbook_qa-question_answering-2022-spanish",
96
+ "iberbench/general-openbook_qa-question_answering-2022-catalan",
97
+ "iberbench/general-arc-question_answering-2024-basque",
98
+ "iberbench/general-arc-question_answering-2024-catalan"
99
+ ],
100
+ "Commonsense Reasoning": [
101
+ "iberbench/general-xcopa-commonsense_reasoning-2024-basque",
102
+ "iberbench/general-copa_es-commonsense_reasoning-2024-spanish",
103
+ "iberbench/general-piqa-commonsense_reasoning-2024-basque",
104
+ "iberbench/general-copa-commonsense_reasoning-2024-catalan"
105
+ ],
106
+ "Reading Comprehension": [
107
+ "iberbench/general-eus_reading-reading_comprehension-2024-basque",
108
+ "iberbench/general-belebele-reading_comprehension-2024-basque",
109
+ "iberbench/general-belebele-reading_comprehension-2024-spanish",
110
+ "iberbench/general-belebele-reading_comprehension-2024-portuguese",
111
+ "iberbench/general-belebele-reading_comprehension-2024-catalan"
112
+ ],
113
+ "Topic Classification": [
114
+ "iberbench/general-eus_trivia-topic_classification-2024-basque",
115
+ "iberbench/general-bhtc-topic_classification-2024-basque",
116
+ "iberbench/general-clindiagnoses-topic_classification-2024-spanish"
117
+ ],
118
+ "Linguistic Acceptability": [
119
+ "iberbench/general-escola-linguistic_acceptability-2024-spanish",
120
+ "iberbench/general-galcola-linguistic_acceptability-2024-galician",
121
+ "iberbench/general-catcola-linguistic_acceptability-2024-catalan"
122
+ ],
123
+ "Textual Entailment": [
124
+ "iberbench/general-qnli-textual_entailment-2024-basque",
125
+ "iberbench/general-xnli-textual_entailment-2024-spanish",
126
+ "iberbench/general-xnli-textual_entailment-2024-galician",
127
+ "iberbench/general-xnli-textual_entailment-2024-catalan",
128
+ "iberbench/general-teca-textual_entailment-2021-catalan"
129
+ ],
130
+ "Intent Classification": [
131
+ "iberbench/general-fmtodeu-intent_classification-2024-basque"
132
+ ],
133
+ "Proficiency Evaluation": [
134
+ "iberbench/general-eus_proficiency-proficiency_evaluation-2024-basque",
135
+ "iberbench/general-teleia-proficiency_evaluation-2024-spanish"
136
+ ],
137
+ "Text Summarization": [
138
+ "iberbench/general-xlsum-text_summarization-2021-spanish",
139
+ "iberbench/general-xlsum-text_summarization-2021-portuguese",
140
+ "iberbench/general-cabreu-text_summarization-2024-catalan"
141
+ ],
142
+ "Lexical Analysis": [
143
+ "iberbench/iberlef-adobo-lexical_borrowing_chunking-2021-spanish"
144
  ],
145
  "Language Identification": [
146
+ "iberbench/tweetlid-tweetlid-language_identification-2014-spanish"
147
+ ]
148
+ }
149
+
150
+ # Group datasets in "fundamental" or "professional".
151
+ # Fundamental tasks are those that evaluates knowledge and writting capabilities of LLMs.
152
+ # Tasks like question answering on exams, reading comprehension, entailment, proficiency evaluation, linguistic acceptability, etc. are under this category.
153
+ # Professional tasks are those that have economic interest for the industry.
154
+ # Tasks like author profiling, sentiment analysis, machine-generated text detection, fake news detection, stance, discrimination, etc. are under this category.
155
+ professional_mapping = {
156
+ "Fundamental NLP": [
157
+ "iberbench/iberlef-adobo-lexical_borrowing_chunking-2021-spanish",
158
+ "iberbench/general-eus_exams-question_answering-2024-basque",
159
+ "iberbench/general-eus_exams-question_answering-2024-spanish",
160
+ "iberbench/general-eus_trivia-topic_classification-2024-basque",
161
+ "iberbench/general-eus_trivia-question_answering-2024-basque",
162
+ "iberbench/general-eus_proficiency-proficiency_evaluation-2024-basque",
163
+ "iberbench/general-xcopa-commonsense_reasoning-2024-basque",
164
+ "iberbench/general-eus_reading-reading_comprehension-2024-basque",
165
+ "iberbench/general-arc-question_answering-2024-basque",
166
+ "iberbench/general-piqa-commonsense_reasoning-2024-basque",
167
+ "iberbench/general-belebele-reading_comprehension-2024-basque",
168
+ "iberbench/general-qnli-textual_entailment-2024-basque",
169
+ "iberbench/general-copa_es-commonsense_reasoning-2024-spanish",
170
+ "iberbench/general-openbook_qa-question_answering-2022-spanish",
171
+ "iberbench/general-teleia-proficiency_evaluation-2024-spanish",
172
+ "iberbench/general-belebele-reading_comprehension-2024-spanish",
173
+ "iberbench/general-escola-linguistic_acceptability-2024-spanish",
174
+ "iberbench/general-xnli-textual_entailment-2024-spanish",
175
+ "iberbench/general-xnli-textual_entailment-2024-galician",
176
+ "iberbench/general-galcola-linguistic_acceptability-2024-galician",
177
+ "iberbench/general-xstorycloze-question_answering-2024-galician",
178
+ "iberbench/general-belebele-reading_comprehension-2024-portuguese",,
179
+ "iberbench/general-xstorycloze-question_answering-2024-portuguese",
180
+ "iberbench/general-xstorycloze-question_answering-2024-catalan",
181
+ "iberbench/general-xnli-textual_entailment-2024-catalan",
182
+ "iberbench/general-arc-question_answering-2024-catalan",
183
+ "iberbench/general-belebele-reading_comprehension-2024-catalan",
184
+ "iberbench/general-openbook_qa-question_answering-2022-catalan",
185
+ "iberbench/general-copa-commonsense_reasoning-2024-catalan",
186
+ "iberbench/general-catcola-linguistic_acceptability-2024-catalan",
187
+ "iberbench/general-teca-textual_entailment-2021-catalan",
188
  ],
189
+ "Professional NLP": [
190
+ "iberbench/iberlef-restmex-sentiment_analysis-2022-spanish-mexico",
191
+ "iberbench/iberlef-restmex-sentiment_analysis-2021-spanish-mexico"
192
+ "iberbench/general-parafraseja-paraphrase_detection-2022-catalan",
193
+ "iberbench/general-paws_ca-paraphrase_detection-2019-catalan",
194
+ "iberbench/general-cabreu-text_summarization-2024-catalan",
195
+ "iberbench/general-xlsum-text_summarization-2021-portuguese",
196
+ "iberbench/general-paws_pt-paraphrase_detection-2019-portuguese"
197
+ "iberbench/general-paws_gl-paraphrase_detection-2019-galician",
198
+ "iberbench/general-paws_x-paraphrase_detection-2019-spanish",
199
+ "iberbench/general-clindiagnoses-topic_classification-2024-spanish",
200
+ "iberbench/general-fmtodeu-intent_classification-2024-basque",
201
+ "iberbench/general-bhtc-topic_classification-2024-basque",
202
+ "iberbench/general-xlsum-text_summarization-2021-spanish",
203
+ "iberbench/general-bec-sentiment_analysis-2024-basque",
204
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-uruguay",
205
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-mexico",
206
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-spain",
207
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-costa_rica",
208
+ "iberbench/tass-tass-sentiment_analysis-2020-spanish-peru",
209
+ "iberbench/tass-tass-emotion_analysis-2020-spanish",
210
+ "iberbench/iberlef-emoevales-emotion_analysis-2021-spanish",
211
+ "iberbench/iberlef-haha-humor_detection-2021-spanish",
212
+ "iberbench/iberlef-haha-humor_detection-2019-spanish",
213
+ "iberbench/iberlef-irosva-irony_detection-2019-spanish-cuba",
214
+ "iberbench/iberlef-irosva-irony_detection-2019-spanish-mexico",
215
+ "iberbench/iberlef-irosva-irony_detection-2019-spanish-spain",
216
+ "iberbench/tweetlid-tweetlid-language_identification-2014-spanish",
217
+ "iberbench/iberlef-parmex-paraphrase_detection-2022-spanish-mexico",
218
+ "iberbench/iberlef-detests_dis-stereotype_detection-2024-spanish",
219
+ "iberbench/iberlef-detoxis-aggressiveness_detection-2021-spanish",
220
+ "iberbench/iberlef-detoxis-toxicity_detection-2021-spanish",
221
+ "iberbench/iberlef-detoxis-improper_language_detection-2021-spanish",
222
+ "iberbench/iberlef-detoxis-sarcasm_detection-2021-spanish",
223
+ "iberbench/iberlef-detoxis-insult_detection-2021-spanish",
224
+ "iberbench/iberlef-detoxis-mockery_detection-2021-spanish",
225
+ "iberbench/iberlef-exist-sexism_detection-2021-spanish",
226
+ "iberbench/iberlef-emoevales-offensiveness_detection-2021-spanish",
227
+ "iberbench/iberlef-exist-sexism_categorization-2021-spanish",
228
+ "iberbench/iberlef-fakedes-fake_news_detection-2021-spanish",
229
+ "iberbench/iberlef-huhu-racial_prejudice_detection-2023-spanish",
230
+ "iberbench/iberlef-huhu-women_prejudice_detection-2023-spanish",
231
+ "iberbench/iberlef-huhu-lgtbiq_prejudice_detection-2023-spanish",
232
+ "iberbench/iberlef-huhu-fatphobia_detection-2023-spanish",
233
+ "iberbench/iberlef-huhu-humor_detection-2023-spanish",
234
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-galician",
235
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-english",
236
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-spanish",
237
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-catalan",
238
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-basque",
239
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-english",
240
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-portuguese",
241
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-portuguese",
242
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-basque",
243
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-catalan",
244
+ "iberbench/iberlef-iberautextification-machine_generated_text_attribution-2024-galician",
245
+ "iberbench/iberlef-iberautextification-machine_generated_text_detection-2024-spanish",
246
+ "iberbench/iberlef-mentalriskes-eating_disorder_detection-2023-spanish",
247
+ "iberbench/iberlef-vaxxstance-stance_detection-2021-basque",
248
+ "iberbench/iberlef-vaxxstance-stance_detection-2021-spanish",
249
+ "iberbench/ibereval-multistancecat-stance_detection-2018-spanish",
250
+ "iberbench/iberlef-mex_a3t-aggressiveness_detection-2019-spanish-mexico",
251
+ "iberbench/iberlef-meoffendes-offensiveness_detection-2021-spanish",
252
+ "iberbench/iberlef-meoffendes-gender_detection-2021-spanish",
253
+ "iberbench/iberlef-mentalriskes-depression_detection-2023-spanish",
254
+ "iberbench/ibereval-multistancecat-stance_detection-2018-catalan",
255
+ "iberbench/iberlef-mentalriskes-depression_categorization-2023-spanish",
256
+ "iberbench/iberlef-restmex-gender_detection-2021-spanish-mexico",
257
+ "iberbench/pan-author_profiling-gender_detection-2017-spanish",
258
+ "iberbench/pan-author_profiling-age_detection-2015-spanish",
259
+ "iberbench/general-hate_check-hate_speech_detection-2024-portuguese"
260
+ ]
261
  }