Spaces:
Running
Running
ycy
commited on
Commit
·
0e8c72a
1
Parent(s):
cee73a2
test
Browse files- src/about.py +5 -2
src/about.py
CHANGED
@@ -13,8 +13,11 @@ class Task:
|
|
13 |
#TODO 指标
|
14 |
class Tasks(Enum):
|
15 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
16 |
-
task0 = Task("
|
17 |
-
task1 = Task("
|
|
|
|
|
|
|
18 |
|
19 |
NUM_FEWSHOT = 0 # Change with your few shot
|
20 |
# ---------------------------------------------------
|
|
|
13 |
#TODO 指标
|
14 |
class Tasks(Enum):
|
15 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
16 |
+
task0 = Task("Score_avg", "score", "Score_Avg")
|
17 |
+
task1 = Task("Score_gpt", "score", "Score_GPT")
|
18 |
+
task2 = Task("Score_cog", "score", "Score_COG")
|
19 |
+
task3 = Task("Score_cpm", "score", "Score_CPM")
|
20 |
+
task4 = Task("Length_Avg", "scoreL", "Length_Avg")
|
21 |
|
22 |
NUM_FEWSHOT = 0 # Change with your few shot
|
23 |
# ---------------------------------------------------
|