-
Notifications
You must be signed in to change notification settings - Fork 0
/
mmlu_eval1_back.py
495 lines (426 loc) · 19 KB
/
mmlu_eval1_back.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
# Sync version (Backup)
import argparse
import json
import os
import time
import numpy as np
import pandas as pd
from datasets import load_dataset
from langchain_openai import ChatOpenAI
from categories import categories, subcategories
import random
# 기본 설정
choices = ["A", "B", "C", "D"]
def format_subject(subject):
l = subject.split("_")
s = ""
for entry in l:
s += " " + entry
return s
def format_example(df, idx, include_answer=True):
prompt = df.iloc[idx, 0]
k = df.shape[1] - 2
for j in range(k):
prompt += "\n{}. {}".format(choices[j], df.iloc[idx, j + 1])
prompt += "\nAnswer:"
if include_answer:
# 숫자를 알파벳으로 변환
answer_num = int(df.iloc[idx, k + 1])
answer_letter = choices[answer_num] # 0->A, 1->B, 2->C, 3->D
prompt += " {}\n\n".format(answer_letter)
return prompt
def gen_prompt(train_df, subject, k=-1):
prompt = "The following are multiple choice questions (with answers) about {}.\n\n".format(
format_subject(subject)
)
if k == -1:
k = train_df.shape[0]
for i in range(k):
prompt += format_example(train_df, i)
return prompt
def extract_answer(response_text: str) -> str:
"""모델 응답에서 A, B, C, D 형식의 답변을 추출합니다."""
if not response_text:
raise ValueError("모델 응답이 비어있습니다")
# 응답을 줄 단위로 분리
lines = response_text.upper().split('\n')
# "ANSWER:" 또는 "THE ANSWER IS" 패턴 찾기
for line in lines:
if "ANSWER:" in line or "THE ANSWER IS" in line:
# 해당 라인에서 A, B, C, D 찾기
for char in line:
if char in ['A', 'B', 'C', 'D']:
return char
# 위 방법으로 찾지 못한 경우, 전체 텍스트에서 첫 번째로 나오는 A, B, C, D 찾기
for char in response_text.upper():
if char in ['A', 'B', 'C', 'D']:
return char
raise ValueError(f"유효한 답변(A,B,C,D)을 찾을 수 없습니다: {response_text[:100]}...")
def eval(args, subject, llm, dev_df, test_df):
correct_count = 0
total_count = 0
cors = []
evaluation_results = []
# 시스템 메시지 수정
system_msg = """You are a helpful assistant that answers multiple choice questions.
Answer with ONLY a single letter (A, B, C, or D) without any explanation."""
for idx, row in test_df.iterrows():
start_time = time.time()
# few-shot 예제 준비 부분 수정
if args.use_few_shot and args.ntrain > 0 and not dev_df.empty: # dev_df가 비어있지 않은 경우에만 few-shot 적용
k = args.ntrain
# 테스트 문제를 마지막에 추가
prompt = f"Answer the following multiple choice questions about {format_subject(subject)}.\n\n"
prompt += gen_prompt(dev_df, subject, k) # few-shot 예제들
prompt += "Now answer this question:\n\n"
prompt += format_example(test_df, idx, include_answer=False)
else:
prompt = f"Answer this multiple choice question about {format_subject(subject)}:\n\n"
prompt += format_example(test_df, idx, include_answer=False)
# verbose 모드일 때만 few-shot 예제와 테스트 질문 출력
if args.verbose:
print("\nFew-shot examples and test question:")
print(prompt)
print("=" * 80)
messages = [
{"role": "system", "content": system_msg},
{"role": "user", "content": prompt}
]
# 모델 응답 받기
response = llm.invoke(messages)
model_response = response.content.strip()
# 답변 처리
model_answer = extract_answer(model_response)
if model_answer is None:
print(f"Warning: 모델 응답에서 답변을 추출할 수 없습니다: {model_response}")
continue
model_answer_num = ord(model_answer) - ord('A')
correct_answer = row['answer']
is_correct = model_answer_num == correct_answer
if is_correct:
correct_count += 1
total_count += 1
cors.append(is_correct)
accuracy = (correct_count / total_count) * 100
# 결과 저장
result_entry = {
'subject': subject,
'question': row['question'],
'choices': [
row['choice_0'],
row['choice_1'],
row['choice_2'],
row['choice_3']
],
'model_answer': model_response,
'correct_answer': row['answer'],
'is_correct': is_correct,
'response_time': time.time() - start_time,
'few_shot_used': args.use_few_shot and args.ntrain > 0,
'num_few_shot': args.ntrain if args.use_few_shot else 0
}
evaluation_results.append(result_entry)
print(f"""
================================================================================
Progress: {idx+1}/{len(test_df)} ({(idx+1)/len(test_df)*100:.1f}%)
Subject: {subject}
Question: {row['question']}
Model answer: {model_response} ({model_answer_num})
Correct answer: {choices[int(row['answer'])]} ({row['answer']})
Result: {'Correct' if is_correct else 'Wrong'}
Accuracy so far: {accuracy:.1f}%
Time: {time.time() - start_time:.1f}s
================================================================================
""")
return np.array(cors), accuracy, evaluation_results
def get_interactive_selections():
"""대화형으로 카테고리와 과목을 선택받는 함수"""
# 카테고리 선택
print("\n사용 가능한 카테고리:")
category_list = list(categories.keys())
for idx, category in enumerate(category_list, start=1):
subject_count = len([s for s, subcats in subcategories.items()
if any(subcat in categories[category] for subcat in subcats)])
print(f"{idx}. {category} ({subject_count} subjects)")
while True:
try:
cat_input = input("\n카테고리 번호를 선택하세요 (1-4, 여러 개는 쉼표로 구분, all): ").strip()
if cat_input.lower() == 'all':
selected_categories = category_list
break
indices = [int(i.strip()) for i in cat_input.split(',')]
if all(1 <= i <= len(categories) for i in indices):
selected_categories = [category_list[i-1] for i in indices]
break
print(f"1부터 {len(categories)} 사이의 숫자를 입력해주세요.")
except ValueError:
print("올바른 형식으로 입력해주세요 (예: 1,2 또는 all)")
# 선택된 카테고리의 과목 표시
selected_subjects = []
for category in selected_categories:
print(f"\n=== {category} 카테고리의 과목들: ===")
category_subjects = [subject for subject, subcats in subcategories.items()
if any(subcat in categories[category] for subcat in subcats)]
for idx, subject in enumerate(category_subjects, 1):
print(f"{idx}. {subject}")
while True:
try:
subj_input = input(f"\n과목 번호를 선택하세요 (1-{len(category_subjects)}, 여러 개는 쉼표로 구분, all): ").strip()
if subj_input.lower() == 'all':
selected_subjects.extend(category_subjects)
break
indices = [int(i.strip()) for i in subj_input.split(',')]
if all(1 <= i <= len(category_subjects) for i in indices):
selected_subjects.extend([category_subjects[i-1] for i in indices])
break
print(f"1부터 {len(category_subjects)} 사이의 숫자를 입력해주세요.")
except ValueError:
print("올바른 형식으로 입력해주세요 (예: 1,2 또는 all)")
# Few-shot 설정
while True:
use_few_shot = input("\nFew-shot 학습을 사용하시겠습니까? (y/n): ").lower().strip()
if use_few_shot in ['y', 'n']:
break
print("y 또는 n으로 입력해주세요.")
ntrain = 0
if use_few_shot == 'y':
while True:
try:
ntrain = int(input("Few-shot 예제 개수를 입력하세요 (1-5): "))
if 1 <= ntrain <= 5:
break
print("1부터 5 사이의 숫자를 입력해주세요.")
except ValueError:
print("올바른 숫자를 입력해주세요.")
# 테스트 문제 개수 설정
while True:
try:
ntest = int(input("\n각 과목당 평가할 문제 수를 입력하세요 (-1: 전체): "))
if ntest == -1 or ntest > 0:
break
print("양수 또는 -1을 입력해주세요.")
except ValueError:
print("올바른 숫자를 입력해주세요.")
return selected_subjects, use_few_shot == 'y', ntrain, ntest
def main(args):
# 카테고리 매핑 생성
subject_to_category = {}
for subject, subcats in subcategories.items():
for cat, subcat_list in categories.items():
if any(subcat in subcat_list for subcat in subcats):
subject_to_category[subject] = cat
break
if args.auto_mode:
# CLI 모드
category_list = list(categories.keys())
selected_subjects = []
# 전체 과목 리스트 생성 (카테고리 정보 포함)
all_subjects = []
for subject, cat in subject_to_category.items():
all_subjects.append((cat, subject))
# 카테고리 처리
if args.categories:
try:
cat_indices = [int(i.strip()) for i in args.categories.split(',')]
selected_categories = [category_list[i-1] for i in cat_indices
if 1 <= i <= len(category_list)]
except (ValueError, IndexError):
print("카테고리 번호가 잘못되었습니다. 1-4 사이의 숫자를 사용하세요.")
return
else:
selected_categories = category_list
# 과목 선택 처리
if args.subjects:
try:
subj_indices = [int(i.strip()) for i in args.subjects.split(',')]
selected_subjects = [all_subjects[i-1][1] for i in subj_indices
if 1 <= i <= len(all_subjects)]
if not selected_subjects:
print("유효한 과목이 선택되지 않았습니다.")
return
except (ValueError, IndexError):
print("과목 번호가 잘못되었습니다.")
return
else:
selected_subjects = [subject for _, subject in all_subjects]
# Few-shot 설정 출력
print(f"\n=== 평가 설정 ===")
print(f"선택된 카테고리: {', '.join(selected_categories)}")
print(f"선택된 과목: {', '.join(selected_subjects)}")
print(f"Few-shot 사용: {args.use_few_shot}")
if args.use_few_shot:
print(f"Few-shot 예제 수: {args.ntrain}")
print(f"테스트 문제 수: {'모두' if args.ntest <= 0 else args.ntest}")
print("=" * 30 + "\n")
else:
# 대화형 모드
selected_subjects, use_few_shot, ntrain, ntest = get_interactive_selections()
args.use_few_shot = use_few_shot
args.ntrain = ntrain
args.ntest = ntest
# 나머지 코드는 그대로 유지
if args.nsubjects > 0:
selected_subjects = random.sample(selected_subjects, min(args.nsubjects, len(selected_subjects)))
# 결과 저장을 위한 딕셔너리 초기화
results = {
"metadata": {
"model_name": args.model_name,
"ntrain": args.ntrain,
"ntest": args.ntest,
"timestamp": time.strftime("%Y%m%d-%H%M%S")
},
"categories": {cat: {"correct_rate": 0.0, "subjects": []} for cat in categories},
"subjects": {},
"overall_correct_rate": 0.0
}
# LLM 모델 초기화
llm = ChatOpenAI(
base_url=args.base_url,
api_key=args.api_key,
model=args.model_name,
streaming=True,
)
# MMLU 데이터셋 로드
mmlu_dataset = load_dataset('cais/mmlu', 'all')
# 결과 저장 디렉토리 생성
if not os.path.exists(args.save_dir):
os.makedirs(args.save_dir)
# 시작 시간 기록
start_time = time.time()
# 평가 결과 저장을 위한 변수들
all_cors = []
all_results = []
subcat_cors = {subcat: [] for subcat_lists in subcategories.values() for subcat in subcat_lists}
cat_cors = {cat: [] for cat in categories}
# 각 과목별 평가 수행
for subject in selected_subjects:
print(f"\n=== Evaluating {subject} ===\n")
# 개발 데이터 준비 - few-shot 설정에 따라 조정
if args.use_few_shot and args.ntrain > 0:
dev_samples = [x for x in mmlu_dataset['dev'] if x['subject'] == subject][:args.ntrain]
else:
dev_samples = [] # few-shot을 사용하지 않을 경우 빈 리스트로 설정
print(f"Number of few-shot examples: {len(dev_samples)}") # 메시지 변경
dev_data = {
'question': [],
'choice_0': [],
'choice_1': [],
'choice_2': [],
'choice_3': [],
'answer': []
}
# few-shot 예제가 있을 때만 dev_data를 채움
if dev_samples:
for sample in dev_samples:
dev_data['question'].append(sample['question'])
for i, choice in enumerate(sample['choices']):
dev_data[f'choice_{i}'].append(choice)
dev_data['answer'].append(sample['answer'])
# 테스트 데이터 준비
test_samples = [x for x in mmlu_dataset['test'] if x['subject'] == subject]
if args.ntest > 0:
test_samples = test_samples[:args.ntest]
print(f"Number of test examples: {len(test_samples)}")
# test_data 딕셔너리 생성 추가
test_data = {
'question': [],
'choice_0': [],
'choice_1': [],
'choice_2': [],
'choice_3': [],
'answer': []
}
for sample in test_samples:
test_data['question'].append(sample['question'])
for i, choice in enumerate(sample['choices']):
test_data[f'choice_{i}'].append(choice)
test_data['answer'].append(sample['answer'])
# DataFrame 생성
dev_df = pd.DataFrame(dev_data)
test_df = pd.DataFrame(test_data)
# 평가 수행
cors, acc, subject_results = eval(args, subject, llm, dev_df, test_df)
all_results.extend(subject_results)
# 결과 저장
subcats = subcategories[subject]
for subcat in subcats:
subcat_cors[subcat].append(cors)
for key in categories.keys():
if subcat in categories[key]:
cat_cors[key].append(cors)
all_cors.append(cors)
# 결과 저장
category = subject_to_category[subject]
results["subjects"][subject] = {
"correct_rate": acc,
"category": category,
"details": subject_results
}
results["categories"][category]["subjects"].append({
"subject": subject,
"correct_rate": acc
})
# 카테고리별 평균 정답률 계산
for cat in categories:
cat_subjects = results["categories"][cat]["subjects"]
if cat_subjects:
cat_rate = np.mean([s["correct_rate"] for s in cat_subjects])
results["categories"][cat]["correct_rate"] = round(cat_rate, 2)
print(f"\n평균 정답률 {cat_rate:.2f} - {cat}")
# 전체 평균 정답률 계산
all_rates = [s["correct_rate"] for s in results["subjects"].values()]
if all_rates:
results["overall_correct_rate"] = round(np.mean(all_rates), 2)
print(f"\n전체 정답률: {results['overall_correct_rate']:.2f}")
# 결과 저장 디렉토리 구조 수정
results_dir = os.path.join(args.save_dir, args.model_name.replace('/', '_'))
if not os.path.exists(results_dir):
os.makedirs(results_dir)
# 결과 JSON 파일 저장
timestamp = time.strftime('%Y%m%d-%H%M%S')
save_path = os.path.join(
results_dir,
f"results_{timestamp}.json"
)
with open(save_path, 'w', encoding='utf-8') as f:
json.dump(results, f, ensure_ascii=False, indent=2)
# 평균 정답률 요약 파일 저장
total_time = time.time() - start_time
summary = {
"timestamp": timestamp,
"model_name": args.model_name,
"total_time": f"{total_time:.1f}s",
"overall_correct_rate": round(results["overall_correct_rate"], 2),
"category_correct_rates": {
cat: round(results["categories"][cat]["correct_rate"], 2)
for cat in categories
}
}
summary_path = os.path.join(args.save_dir, "correct_summary.jsonl")
with open(summary_path, 'a', encoding='utf-8') as f:
f.write(json.dumps(summary, ensure_ascii=False) + '\n')
print(f"\n결과가 저장되었습니다: {save_path}")
print(f"정답률 요약이 추가되었습니다: {summary_path}")
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--auto_mode", "-am", action="store_true",
help="CLI 인자를 사용하여 자동으로 설정합니다")
parser.add_argument("--categories", "-c", type=str,
help="평가할 카테고리 (쉼표로 구분)")
parser.add_argument("--subjects", "-sb", type=str,
help="평가할 과목 (쉼표로 구분)")
parser.add_argument("--use_few_shot", "-f", action="store_true", default=False,
help="few-shot 학습 사용 여부")
parser.add_argument("--ntrain", "-k", type=int, default=5,
help="few-shot 예제 개수")
parser.add_argument("--ntest", "-n", type=int, default=-1,
help="각 과목당 평가할 문제 수")
parser.add_argument("--nsubjects", "-ns", type=int, default=-1)
parser.add_argument("--save_dir", "-s", type=str, default="results")
parser.add_argument("--base_url", type=str, default="http://localhost:1234/v1")
parser.add_argument("--api_key", type=str, default="lm-studio")
parser.add_argument("--model_name", type=str, default="llama-3-8b-instruct@?")
parser.add_argument("--verbose", "-v", action="store_true",
help="출력 로그에 few-shot 예제를 포함합니다")
args = parser.parse_args()
main(args)