jcole1 commited on
Commit
717bfd3
1 Parent(s): cd86e4b

Update src/about.py

Browse files
Files changed (1) hide show
  1. src/about.py +6 -4
src/about.py CHANGED
@@ -12,14 +12,16 @@ 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
 
21
-
22
-
23
  # Your leaderboard name
24
  TITLE = """<h1 align="center" id="space-title">Demo leaderboard</h1>"""
25
 
 
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("mRNA", "RMSE", "mRNA (RMSE)")
16
+ task1 = Task("SNMD", "AUC", "SNMD (AUC)")
17
+ task2 = Task("SNMR", "F1", "SNMR (F1)")
18
+ task3 = Task("ArchiveII", "F1", "ArchiveII (F1)")
19
+ task4 = Task("bpRNA", "F1", "bpRNA (F1)")
20
+ task5 = Task("RNAStralign", "F1", "RNAStralign (F1)")
21
 
22
  NUM_FEWSHOT = 0 # Change with your few shot
23
  # ---------------------------------------------------
24
 
 
 
25
  # Your leaderboard name
26
  TITLE = """<h1 align="center" id="space-title">Demo leaderboard</h1>"""
27