Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
improve metric name readability by adjusting spacing
Browse files- src/about.py +15 -15
src/about.py
CHANGED
@@ -32,17 +32,17 @@ class Task:
|
|
32 |
# ---------------------------------------------------
|
33 |
class Tasks(Enum):
|
34 |
AVG = Task("scores", "AVG", "AVG", TaskType.AVG, True)
|
35 |
-
CG = Task("scores", "CG", "AVG(CG)", TaskType.CG, True) # Code Generation - コード生成
|
36 |
-
EL = Task("scores", "EL", "AVG(EL)", TaskType.EL, True) # Entity Linking - エンティティリンキング
|
37 |
-
FA = Task("scores", "FA", "AVG(FA)", TaskType.FA, True) # Fundamental Analysis - 基礎解析
|
38 |
-
HE = Task("scores", "HE", "AVG(HE)", TaskType.HE, True) # Human Examination - 試験問題
|
39 |
-
MC = Task("scores", "MC", "AVG(MC)", TaskType.MC, True) # Multiple Choice question answering - 多肢選択式問題
|
40 |
-
MR = Task("scores", "MR", "AVG(MR)", TaskType.MR, True) # Mathematical Reasoning - 数学的推論
|
41 |
-
MT = Task("scores", "MT", "AVG(MT)", TaskType.MT, True) # Machine Translation - 機械翻訳
|
42 |
-
NLI = Task("scores", "NLI", "AVG(NLI)", TaskType.NLI, True) # Natural Language Inference - 自然言語推論
|
43 |
-
QA = Task("scores", "QA", "AVG(QA)", TaskType.QA, True) # Question Answering - 質問応答
|
44 |
-
RC = Task("scores", "RC", "AVG(RC)", TaskType.RC, True) # Reading Comprehension - 文章読解
|
45 |
-
SUM = Task("scores", "SUM", "AVG(SUM)", TaskType.SUM, True) # Summarization - 要約
|
46 |
alt_e_to_j_bert_score_ja_f1 = Task("scores", "alt-e-to-j_bert_score_ja_f1", "ALT E to J BERT Score", TaskType.MT)
|
47 |
alt_e_to_j_bleu_ja = Task("scores", "alt-e-to-j_bleu_ja", "ALT E to J BLEU", TaskType.MT)
|
48 |
alt_e_to_j_comet_wmt22 = Task("scores", "alt-e-to-j_comet_wmt22", "ALT E to J COMET WMT22", TaskType.MT)
|
@@ -63,15 +63,15 @@ class Tasks(Enum):
|
|
63 |
jsick_exact_match = Task("scores", "jsick_exact_match", "JSICK", TaskType.NLI)
|
64 |
jsquad_char_f1 = Task("scores", "jsquad_char_f1", "JSquad", TaskType.RC)
|
65 |
jsts_pearson = Task(
|
66 |
-
"scores", "jsts_pearson", "JSTS(Pearson)", TaskType.STS
|
67 |
) # Semantic Textual Similarity - 意味的類似度
|
68 |
jsts_spearman = Task(
|
69 |
-
"scores", "jsts_spearman", "JSTS(Spearman)", TaskType.STS
|
70 |
) # Semantic Textual Similarity - 意味的類似度
|
71 |
kuci_exact_match = Task("scores", "kuci_exact_match", "KUCI", TaskType.MC)
|
72 |
mawps_exact_match = Task("scores", "mawps_exact_match", "MAWPS", TaskType.MR)
|
73 |
-
mbpp_code_exec = Task("scores", "mbpp_code_exec", "MBPP(exec)", TaskType.CG)
|
74 |
-
mbpp_pylint_check = Task("scores", "mbpp_pylint_check", "MBPP(pylint)", TaskType.CG)
|
75 |
mmlu_en_exact_match = Task("scores", "mmlu_en_exact_match", "MMLU", TaskType.HE)
|
76 |
niilc_char_f1 = Task("scores", "niilc_char_f1", "NIILC", TaskType.QA)
|
77 |
wiki_coreference_set_f1 = Task("scores", "wiki_coreference_set_f1", "Wiki Coreference", TaskType.FA)
|
|
|
32 |
# ---------------------------------------------------
|
33 |
class Tasks(Enum):
|
34 |
AVG = Task("scores", "AVG", "AVG", TaskType.AVG, True)
|
35 |
+
CG = Task("scores", "CG", "AVG (CG)", TaskType.CG, True) # Code Generation - コード生成
|
36 |
+
EL = Task("scores", "EL", "AVG (EL)", TaskType.EL, True) # Entity Linking - エンティティリンキング
|
37 |
+
FA = Task("scores", "FA", "AVG (FA)", TaskType.FA, True) # Fundamental Analysis - 基礎解析
|
38 |
+
HE = Task("scores", "HE", "AVG (HE)", TaskType.HE, True) # Human Examination - 試験問題
|
39 |
+
MC = Task("scores", "MC", "AVG (MC)", TaskType.MC, True) # Multiple Choice question answering - 多肢選択式問題
|
40 |
+
MR = Task("scores", "MR", "AVG (MR)", TaskType.MR, True) # Mathematical Reasoning - 数学的推論
|
41 |
+
MT = Task("scores", "MT", "AVG (MT)", TaskType.MT, True) # Machine Translation - 機械翻訳
|
42 |
+
NLI = Task("scores", "NLI", "AVG (NLI)", TaskType.NLI, True) # Natural Language Inference - 自然言語推論
|
43 |
+
QA = Task("scores", "QA", "AVG (QA)", TaskType.QA, True) # Question Answering - 質問応答
|
44 |
+
RC = Task("scores", "RC", "AVG (RC)", TaskType.RC, True) # Reading Comprehension - 文章読解
|
45 |
+
SUM = Task("scores", "SUM", "AVG (SUM)", TaskType.SUM, True) # Summarization - 要約
|
46 |
alt_e_to_j_bert_score_ja_f1 = Task("scores", "alt-e-to-j_bert_score_ja_f1", "ALT E to J BERT Score", TaskType.MT)
|
47 |
alt_e_to_j_bleu_ja = Task("scores", "alt-e-to-j_bleu_ja", "ALT E to J BLEU", TaskType.MT)
|
48 |
alt_e_to_j_comet_wmt22 = Task("scores", "alt-e-to-j_comet_wmt22", "ALT E to J COMET WMT22", TaskType.MT)
|
|
|
63 |
jsick_exact_match = Task("scores", "jsick_exact_match", "JSICK", TaskType.NLI)
|
64 |
jsquad_char_f1 = Task("scores", "jsquad_char_f1", "JSquad", TaskType.RC)
|
65 |
jsts_pearson = Task(
|
66 |
+
"scores", "jsts_pearson", "JSTS (Pearson)", TaskType.STS
|
67 |
) # Semantic Textual Similarity - 意味的類似度
|
68 |
jsts_spearman = Task(
|
69 |
+
"scores", "jsts_spearman", "JSTS (Spearman)", TaskType.STS
|
70 |
) # Semantic Textual Similarity - 意味的類似度
|
71 |
kuci_exact_match = Task("scores", "kuci_exact_match", "KUCI", TaskType.MC)
|
72 |
mawps_exact_match = Task("scores", "mawps_exact_match", "MAWPS", TaskType.MR)
|
73 |
+
mbpp_code_exec = Task("scores", "mbpp_code_exec", "MBPP (exec)", TaskType.CG)
|
74 |
+
mbpp_pylint_check = Task("scores", "mbpp_pylint_check", "MBPP (pylint)", TaskType.CG)
|
75 |
mmlu_en_exact_match = Task("scores", "mmlu_en_exact_match", "MMLU", TaskType.HE)
|
76 |
niilc_char_f1 = Task("scores", "niilc_char_f1", "NIILC", TaskType.QA)
|
77 |
wiki_coreference_set_f1 = Task("scores", "wiki_coreference_set_f1", "Wiki Coreference", TaskType.FA)
|