Spaces:
Sleeping
Sleeping
Add tasks
Browse files- src/about.py +5 -2
src/about.py
CHANGED
@@ -12,8 +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 |
NUM_FEWSHOT = 0 # Change with your few shot
|
19 |
# ---------------------------------------------------
|
|
|
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("Count", "acc", "Count")
|
16 |
+
task1 = Task("Order", "acc", "Order")
|
17 |
+
task2 = Task("VCR", "acc", "VCR")
|
18 |
+
task3 = Task("Culture", "acc", "Culture")
|
19 |
+
task4 = Task("Trick", "acc", "Trick")
|
20 |
|
21 |
NUM_FEWSHOT = 0 # Change with your few shot
|
22 |
# ---------------------------------------------------
|