arc_easy.yaml 792 Bytes
Newer Older
lintangsutawika's avatar
lintangsutawika committed
1
group:
2
3
4
  - ai2_arc
  - multiple_choice
task: arc_easy
5
6
7
8
9
10
11
12
dataset_path: ai2_arc
dataset_name: ARC-Easy
output_type: multiple_choice
training_split: train
validation_split: validation
test_split: test
template_aliases: "{% set answer_choices = choices['text'] %}{% set gold = choices.label.index(answerKey) %}" # set the list of possible answer choices, and set what this doc's gold answer is (set what ds column used, and what)
doc_to_text: "Question: {{question}}\nAnswer:"
13
14
doc_to_target: "{{answer_choices[gold]}}"
gold_alias: "{{gold}}" # this will be cast to an int.
15
16
17
18
19
20
21
22
23
metric_list:
  - metric: acc
    aggregation: mean
    higher_is_better: true
  - metric: acc_norm
    aggregation: mean
    higher_is_better: true
  - metric: acc_mutual_info
    aggregation: mean
lintangsutawika's avatar
lintangsutawika committed
24
    higher_is_better: true