-
Notifications
You must be signed in to change notification settings - Fork 1
/
benchmark_utils.py
302 lines (238 loc) · 10.4 KB
/
benchmark_utils.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# coding=utf-8
import re
# Pre-defined prompts references
# Leaderboard: https://huggingface.co/spaces/openlifescienceai/open_medical_llm_leaderboard
# Language Model Evaluation Harness: https://github.com/EleutherAI/lm-evaluation-harness
# Special Notice 1: We use `"Directly answer the best option:"` instead of `Answer:`
# to better guide LLMs to generate the best option and to easier extract the best option from the responses
# Special Notice 2: Since a lot of LLaMA responses were in `mixed English-Hindi`,
# we used "कृपया प्रश्न का उत्तर हिंदी में दें और सीधे सबसे अच्छे विकल्प के साथ जवाब दें:" to guide the model to
# respond the question in Hindi only for LLaMA models
english_prompt = "Directly answer the best option:"
english_prompt_pubmedqa = "Directly answer yes/no/maybe:"
hindi_prompt = "सीधे सबसे अच्छे विकल्प के साथ जवाब दें:"
# For LLaMA models, please use the following prompt for Hindi Benchmarks
# Please answer the question in Hindi and directly answer the best option:
# hindi_prompt = "कृपया प्रश्न का उत्तर हिंदी में दें और सीधे सबसे अच्छे विकल्प के साथ जवाब दें:"
french_prompt = "Répondez directement avec la meilleure option:"
spanish_prompt = "Responde directamente con la mejor opción:"
chinese_prompt = "直接回答最优选项:"
def medqa_format(item):
"""
The format the input of MedQA Benchmark
:param item: the input one example
:return full_question: the formatted question
"""
# Start with the question part
question = item["question"] + "\n"
# Initialize an empty string for the options
options_str = ""
# Check if 'options' is indeed a dictionary and contains items
if isinstance(item["options"], dict) and item["options"]:
# Retrieve all keys to handle the last key differently
keys = list(item["options"].keys())
# Loop through each key-value pair in the dictionary
for key in keys: # Iterate over all keys except the last one
value = item["options"][key]
# Append the key and value to the options string with a newline for all except the last one
options_str += f"{key}. {value}\n"
# Concatenate the question with the formatted options string
full_question = question + options_str + english_prompt
return full_question
def pubmedqa_format(item):
"""
The format the input of PubMedQA Benchmark
:param item: the input one example
:return full_question: the formatted question
"""
# Start with the question part
question = ("Abstract: " + "\n".join(item["CONTEXTS"])
+ "\nQuestion: " + item["QUESTION"] + "\n")
# Concatenate the question with the formatted options string
full_question = question + english_prompt_pubmedqa
return full_question
def medmcqa_format(item):
"""
The format the input of MedMCQA Benchmark
:param item: the input one example
:return full_question: the formatted question
"""
# Start with the question part
question = item["question"] + "\n"
# Initialize an empty string for the options
options_str = "A. " + item["opa"] + "\n"
options_str += "B. " + item["opb"] + "\n"
options_str += "C. " + item["opc"] + "\n"
options_str += "D. " + item["opd"] + "\n"
# Concatenate the question with the formatted options string
full_question = question + options_str + english_prompt
return full_question
def usmle_format(item):
"""
The format the input of the Internal USMLE QA (Lindsey, Divya, and Meagan)
:param item: the input one example
:return full_question: the formatted question
"""
# Start with the question part
question = item["question"]
options_str = item["choices"]
for letter in "ABCDEFGHIJ":
options_str = re.sub(rf"\({letter}\)", rf"\n{letter}.", options_str)
# Add a "\n" after all the options
options_str += "\n"
# Concatenate the question with the formatted options string
full_question = question + options_str + english_prompt
return full_question
def medexpqa_format(item, lang='English'):
"""
The format the input of MedExpQA Benchmark
:param item: the input one example
:return full_question: the formatted question
"""
# Start with the question part
question = item["full_question"] + "\n"
# Initialize an empty string for the options
options_str = ""
# Check if 'options' is indeed a dictionary and contains items
if isinstance(item["options"], dict) and item["options"]:
# Retrieve all keys to handle the last key differently
keys = list(item["options"].keys())
# Loop through each key-value pair in the dictionary
for key in keys: # Iterate over all keys except the last one
value = item["options"][key]
if key == "1":
key = "A"
elif key == "2":
key = "B"
elif key == "3":
key = "C"
elif key == "4":
key = "D"
elif key == "5":
key = "E"
if value != "None":
# Append the key and value to the options string with a newline for all except the last one
options_str += f"{key}. {value}\n"
# Concatenate the question with the formatted options string
full_question = question + options_str
if lang == 'English':
full_question += english_prompt
elif lang == 'Spanish':
full_question += spanish_prompt
elif lang == 'French':
full_question += french_prompt
return full_question
def mmlu_format(item, lang='English'):
"""
The format the input of the MMLU Benchmark
(1) anatomy_test.csv
(2) clinical_knowledge_test.csv
(3) college_biology_test.csv
(4) college_medicine_test.csv
(5) medical_genetics_test.csv
(6) professional_medicine_test.csv
:param item: the input one example
:param lang: the language of the prompt
:return full_question: the formatted question
"""
# Start with the question part
question = item[0] + "\n"
# Initialize an empty string for the options
options_str = "A. " + item[1] + "\n"
options_str += "B. " + item[2] + "\n"
options_str += "C. " + item[3] + "\n"
options_str += "D. " + item[4] + "\n"
# Concatenate the question with the formatted options string
full_question = question + options_str
if lang == 'English':
full_question += english_prompt
elif lang == 'Hindi':
full_question += hindi_prompt
elif lang == 'Spanish':
full_question += spanish_prompt
elif lang == 'French':
full_question += french_prompt
return full_question
def mcmle_format(item):
"""
The format the input of MedQA-MCMLE Benchmark
:param item: the input one example
:return full_question: the formatted question
"""
# Start with the question part
question = item["question"] + "\n"
# Initialize an empty string for the options
options_str = ""
# Check if 'options' is indeed a dictionary and contains items
if isinstance(item["options"], dict) and item["options"]:
# Retrieve all keys to handle the last key differently
keys = list(item["options"].keys())
# Loop through each key-value pair in the dictionary
for key in keys: # Iterate over all keys except the last one
value = item["options"][key]
# Append the key and value to the options string with a newline for all except the last one
options_str += f"{key}. {value}\n"
# Concatenate the question with the formatted options string
full_question = question + options_str + chinese_prompt
return full_question
def cmmlu_format(item):
"""
The format the input of the CMMLU Benchmark
(1) anatomy.csv
(2) clinical_knowledge.csv
(3) college_medicine.csv
(4) genetics.csv
(5) nutrition.csv
(6) traditional_chinese_medicine.csv
(7) virology.csv
:param item: the input one example
:return full_question: the formatted question
"""
# Start with the question part
question = item[1] + "\n"
# Initialize an empty string for the options
options_str = "A. " + item[2] + "\n"
options_str += "B. " + item[3] + "\n"
options_str += "C. " + item[4] + "\n"
options_str += "D. " + item[5] + "\n"
# Concatenate the question with the formatted options string
full_question = question + options_str + chinese_prompt
return full_question
def frenchmedmcqa_format(item):
"""
The format the input of the FrenchMedMCQA Benchmark
:param item: the input one example
:return full_question: the formatted question
"""
# Start with the question part
question = item["question"] + "\n"
# Initialize an empty string for the options
options_str = ""
# Check if 'options' is indeed a dictionary and contains items
if isinstance(item["answers"], dict) and item["answers"]:
# Retrieve all keys to handle the last key differently
keys = list(item["answers"].keys())
# Loop through each key-value pair in the dictionary
for key in keys: # Iterate over all keys except the last one
value = item["answers"][key]
# Append the key and value to the options string with a newline for all except the last one
options_str += f"{key.upper()}. {value}\n"
# Concatenate the question with the formatted options string
full_question = question + options_str + french_prompt
return full_question
def headqa_format(item):
"""
The format the input of the HEAD-QA Benchmark
:param item: the input one example
:return full_question: the formatted question
"""
# Start with the question part
question = item["qtext"] + "\n"
# Initialize an empty string for the options
options_str = "A. " + item['answers'][0]["atext"] + "\n"
options_str += "B. " + item['answers'][1]["atext"] + "\n"
options_str += "C. " + item['answers'][2]["atext"] + "\n"
options_str += "D. " + item['answers'][3]["atext"] + "\n"
# Concatenate the question with the formatted options string
full_question = question + options_str + spanish_prompt
return full_question