Spaces:
Running
Running
Update src/about.py
Browse files- src/about.py +4 -3
src/about.py
CHANGED
@@ -12,12 +12,13 @@ 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("community|ifeval-fr|0", "norm_acc", "IFEval-Fr")
|
16 |
task1 = Task("community|pr-fouras|0", "pr-fouras-qem", "Pr-Fouras")
|
17 |
task2 = Task("community|kangourou-to|0", "norm_acc", "Kangourou-TO")
|
|
|
|
|
18 |
#task3 = Task("community|gpqa-fr|0", "norm_acc", "GPQA-Fr")
|
19 |
-
|
20 |
-
|
21 |
|
22 |
NUM_FEWSHOT = 0 # Change with your few shot
|
23 |
# ---------------------------------------------------
|
|
|
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 |
task1 = Task("community|pr-fouras|0", "pr-fouras-qem", "Pr-Fouras")
|
16 |
task2 = Task("community|kangourou-to|0", "norm_acc", "Kangourou-TO")
|
17 |
+
task3 = Task("community|sornette|0", "norm_acc", "Sornette")
|
18 |
+
task0 = Task("community|ifeval-fr|0", "norm_acc", "IFEval-Fr")
|
19 |
#task3 = Task("community|gpqa-fr|0", "norm_acc", "GPQA-Fr")
|
20 |
+
task4 = Task("community|bac-fr|0", "bac-fr-qem", "Bac-Fr")
|
21 |
+
|
22 |
|
23 |
NUM_FEWSHOT = 0 # Change with your few shot
|
24 |
# ---------------------------------------------------
|