add Icelandic evals
Browse files- src/about.py +5 -3
src/about.py
CHANGED
@@ -12,9 +12,11 @@ class Task:
|
|
12 |
# ---------------------------------------------------
|
13 |
class Tasks(Enum):
|
14 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
15 |
-
task0 = Task("
|
16 |
-
task1 = Task("
|
17 |
-
|
|
|
|
|
18 |
|
19 |
NUM_FEWSHOT = 0 # Change with your few shot
|
20 |
# ---------------------------------------------------
|
|
|
12 |
# ---------------------------------------------------
|
13 |
class Tasks(Enum):
|
14 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
15 |
+
task0 = Task("icelandic_sentences_ged_stringmatch", "acc,none", "GED")
|
16 |
+
task1 = Task("icelandic_inflection_easy", "json_metric,get-answer", "Inflection (common)")
|
17 |
+
task2 = Task("icelandic_inflection_medium", "json_metric,get-answer", "Inflection (uncommon)")
|
18 |
+
task3 = Task("icelandic_inflection_hard", "json_metric,get-answer", "Inflection (rare)")
|
19 |
+
task4 = Task("icelandic_belebele", "exact_match,get-answer", "Belebele")
|
20 |
|
21 |
NUM_FEWSHOT = 0 # Change with your few shot
|
22 |
# ---------------------------------------------------
|