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

Create task_mappings.py

Browse files
Files changed (1) hide show
  1. src/task_mappings.py +79 -0
src/task_mappings.py ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ }