from dataclasses import dataclass from enum import Enum @dataclass class Task: benchmark: str metric: str col_name: str higher_is_better: bool = True scale_by_100: bool = True # 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 task0 = Task("arc_challenge_ita", "acc_norm,none", "ARC-C") task1 = Task("ami_2020_aggressiveness", "f1,none", "AMI 2020 Agg") task2 = Task("ami_2020_misogyny", "f1,none", "AMI 2020 Miso") task3 = Task("gente_rephrasing", "acc,none", "GeNTE Neutralizing") task4 = Task("belebele_ita", "acc_norm,none", "Belebele") task5 = Task("hatecheck_ita", "f1,none", "HateCheck") task6 = Task("honest_ita", "acc,none", "HONEST", higher_is_better=False) task7 = Task("itacola", "mcc,none", "ItaCoLA", scale_by_100=False) task8 = Task("news_sum", "bertscore,none", "News Sum") task9 = Task("squad_it", "squad_f1,get-answer", "SQuAD it") task10 = Task("truthfulqa_mc2_ita", "acc,none", "TruthfulQA") task11 = Task("xcopa_it", "acc,none", "TruthfulQA") NUM_FEWSHOT = 0 # Change with your few shot # --------------------------------------------------- # Your leaderboard name TITLE = """