-
Notifications
You must be signed in to change notification settings - Fork 9
/
config.py
138 lines (133 loc) · 3.7 KB
/
config.py
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
from common import *
MODELS_CONFIG = {
"llama3.1": {
"name": "meta-llama/Meta-Llama-3.1-8B-Instruct",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"llama3.1-mmlu-labeled": {
"name": "mmlu_labeled",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"llama3.1-mmlu_pro_labeled": {
"name": "mmlu_pro_labeled",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"llama3.1-mmlu_pro_pseudo": {
"name": "mmlu_pro_pseudo",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"llama3.1-arc_labeled": {
"name": "arc_labeled",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"llama3.1-arc_pseudo": {
"name": "arc_pseudo",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"Reflection-Llama-3.1-8B": {
"name": "Solshine/reflection-llama-3.1-8B",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"Hermes-3-Llama-3.1-8B": {
"name": "NousResearch/Hermes-3-Llama-3.1-8B",
"url": "http://localhost:6003/v1",
"method": "loop"
},
"adaptllm-med": {
"name": "AdaptLLM/medicine-chat",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"adaptllm-fin": {
"name": "AdaptLLM/finance-chat",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"instuctpt-med": {
"name": "AdaptLLM/instuctpt-chat",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"instuctpt-fin": {
"name": "AdaptLLM/instuctpt-chat",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"memoryllm": {
"name": "memoryllm",
"url": "http://localhost:6006/v1",
"method": "loop"
},
"gpt-4o-mini": {
"name": "gpt-4o-mini",
"url": "https://api.openai.com/v1",
"method": "batch"
},
"gpt-4o-mini-arc_labeled": {
"name": "ft:gpt-4o-mini-2024-07-18:xxxx",
"url": "https://api.openai.com/v1",
"method": "batch"
},
"gpt-4o-mini-usmle_labeled": {
"name": "ft:gpt-4o-mini-2024-07-18:xxxx",
"url": "https://api.openai.com/v1",
"method": "batch"
},
"gpt-4o-mini-pubmedqa_labeled": {
"name": "ft:gpt-4o-mini-2024-07-18:xxxx",
"url": "https://api.openai.com/v1",
"method": "batch"
},
"gpt-4o-mini-fpb_labeled": {
"name": "ft:gpt-4o-mini-2024-07-18:xxxx",
"url": "https://api.openai.com/v1",
"method": "batch"
},
"gpt-4o-mini-convfinqa_labeled": {
"name": "ft:gpt-4o-mini-2024-07-18:xxxx",
"url": "https://api.openai.com/v1",
"method": "batch"
}
}
TASK_CONFIG = {
'mmlu': 'multiple_choice',
'mmlu_pro' :'multiple_choice',
'arc':'multiple_choice',
'FPB' :'multiple_choice',
'PubMedQA':'multiple_choice',
'USMLE':'multiple_choice',
'ConvFinQA' :'math'
}
FUNCTION_UTILS = {
'math': {
'format_fn': format_value_prompt,
'check_fn': check_answer,
'few_shot_prompt': FEW_SHOT_VALUE_SYSTEM,
'reflection_fn': format_reflection_value,
},
'multiple_choice': {
'format_fn': format_multichoice_question,
'check_fn': check_answer,
'few_shot_prompt': FEW_SHOT_SYSTEM,
'reflection_fn': format_reflection,
}
}
EVAL_UTILS = {
'math': {
'format_fn': format_value_question,
'check_fn': check_answer_value,
'extract_fn': extract_value,
},
'multiple_choice': {
'format_fn': format_question,
'check_fn': check_answer,
'extract_fn': extract_result,
}
}