hamedkhaledi commited on
Commit
b865e0e
·
verified ·
1 Parent(s): 88aadc9

Update src/about.py

Browse files
Files changed (1) hide show
  1. 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("anli_r1", "acc", "ANLI")
16
- task1 = Task("logiqa", "acc_norm", "LogiQA")
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