-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.jsonnet
More file actions
54 lines (46 loc) · 1.63 KB
/
Copy pathconfig.jsonnet
File metadata and controls
54 lines (46 loc) · 1.63 KB
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
45
46
47
48
49
50
51
52
53
54
{
name: 'mmlusr',
description: 'mmlusr aims to measure the true comprehension abilities of Large Language Models (LLMs) by challenging their performance in question-answering tasks with modified terms.',
keywords: [
'LLMs',
'Benchmarks',
'Dataset',
'Reasoning'
],
authors: [
'Wentian Wang',
'Sarthak Jain',
'Paul Kantor',
'Jacob Feldman',
'Lazaros Gallos',
'Hao Wang'
],
data_source: {
type: 'hf',
hf_id: [
'NiniCat/MMLU-SR',
'answer_only_abstract_algebra' //switch to other tasks by altering to some task like 'question_and_answer_abstract_algebra'
],
git_commit_sha: '505322b292ac81cc83c0942c2d2930af5ba31068'
},
has_validation_set: false,
has_train_set: true,
task_type: 'multiple_choice',
evaluation_metrics: [
{
hf_id: 'accuracy',
best_score: 1.0,
git_commit_sha: '330abb383de68be32352dd876716f644bc71c1e5',
}
],
preparation_strategies: {
prompt_based_testing: {
prompt_builder: {
instruction_zero_shot: 'Please respond to each question with \'Answer: <letter>\' where <letter> is the correct choice. Avoid additional explanations.\n\n',
instruction_few_shot: 'Follow the given examples and answer the question. Please respond to each question with \'Answer: <letter>\' where <letter> is the correct choice. Avoid additional explanations. \n\n',
input_prefix: 'Q: ',
output_prefix: '\nA: '
}
}
}
}