Spaces:
Sleeping
Sleeping
Update src/about.py
Browse files- src/about.py +7 -3
src/about.py
CHANGED
@@ -12,9 +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("
|
16 |
-
task1 = Task("
|
17 |
-
|
|
|
|
|
|
|
|
|
18 |
NUM_FEWSHOT = 0 # Change with your few shot
|
19 |
# ---------------------------------------------------
|
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("Math", "acc", "Math")
|
16 |
+
task1 = Task("Chemistry", "acc", "Chemistry")
|
17 |
+
task2 = Task("Physics", "acc", "Physics")
|
18 |
+
task3 = Task("Arabic", "acc", "Arabic")
|
19 |
+
task4 = Task("English", "acc", "English")
|
20 |
+
task5 = Task("Religion", "acc", "Religion")
|
21 |
+
task6 = Task("Persian Literature", "acc", "Persian Literature")
|
22 |
NUM_FEWSHOT = 0 # Change with your few shot
|
23 |
# ---------------------------------------------------
|
24 |
|