File size: 1,818 Bytes
d39d937
 
 
 
 
 
 
 
 
 
 
 
 
 
5108c5d
 
2e771a4
5108c5d
 
 
2e771a4
5108c5d
d39d937
 
 
2e771a4
d39d937
 
 
2e771a4
d39d937
 
 
 
 
 
 
2e771a4
d39d937
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from dataclasses import dataclass
from enum import Enum

@dataclass
class Task:
    benchmark: str
    metric: str
    col_name: str


# Select your tasks here
# ---------------------------------------------------
class Tasks(Enum):
    # task_key in the json file, metric_key in the json file, name to display in the leaderboard 
    Persian_MMLU = Task("Persian MMLU", "Exact Match", "Persian MMLU")
    Persian_Math = Task("Persian Math", "Math Equivalence", "Persian Math")
    ParsiNLUـEntailment = Task("ParsiNLU Entailment", "Exact Match", "ParsiNLU Entailment")
    FarsTail_Entailment = Task("FarsTail Entailment", "Exact Match", "FarsTail Entailment")
    ParsiNLU_Machine_Translation_Fa_En = Task("ParsiNLU Machine Translation Fa En", "English Sentence Bleu", "ParsiNLU Machine Translation Fa-En")
    ParsiNLU_Machine_Translation_En_Fa = Task("ParsiNLU Machine Translation En Fa", "Persian Sentence Bleu", "ParsiNLU Machine Translation En-Fa")
    ParsiNLU_Reading_Comprehension = Task("ParsiNLU Reading Comprehension", "Common Tokens", "ParsiNLU Reading Comprehension")
    Persian_News_Summary = Task("Persian News Summary", "Persian Rouge", "Persian News Summary")


# Your leaderboard name
TITLE = """<h1 align="center" id="space-title">ParsBench Leaderboard</h1>"""

# What does your leaderboard evaluate?
INTRODUCTION_TEXT = """
This leaderboard is created using <a href="https://github.com/shahriarshm/parsbench">ParsBench</a> framework benchmarking toolkit.
"""

# Which evaluations are you running? how can people reproduce what you have?
LLM_BENCHMARKS_TEXT = f"""
"""

EVALUATION_QUEUE_TEXT = """
For now, you can contact me at shahriarshm81@gmail.com for submitting a new request.
"""

CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
CITATION_BUTTON_TEXT = r"""
"""