-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
202 lines (171 loc) · 6.9 KB
/
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
import os
import re
import glob
import random
import os.path as osp
import numpy as np
import pandas as pd
from collections import defaultdict
from categories import zh2en,taskno,category,task2cate
choices = ["A", "B", "C", "D"]
def format_example(df, idx, subject, include_answer=True):
prompt_start = "题目:"
prompt = prompt_start + 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 += "\n答案是:"
if include_answer:
prompt += "{}\n\n".format(df.iloc[idx, k + 1])
return prompt
def gen_prompt(dev_df, subject, prompt_end, num_few_shot=0, tokenizer=None, max_length=2048):
prompt = "以下是关于{}的单项选择题,请直接给出正确答案的选项。\n\n".format(subject)
# If no tokenizer, don't consider max length.
if tokenizer==None:
for i in range(num_few_shot):
example = format_example(dev_df, i, subject)
prompt += example
return prompt + prompt_end
start_end_token_len = len(tokenizer.encode(prompt)+tokenizer.encode(prompt_end))
# If cannot fit in model even without training data, remove the prompt at the beginning.
if start_end_token_len>max_length:
return prompt_end
prompt_list = []
if num_few_shot > 0:
for i in range(num_few_shot):
example = format_example(dev_df, i, subject)
prompt_list.append((example, tokenizer.encode(example)))
while prompt_list != [] and sum(len(e[1]) for e in prompt_list) >= max_length - start_end_token_len:
print(f"Warning: {len(prompt_list)} shot case exceeds max_input_length, remove 1 shot.")
longest_length = max([len(e[1]) for e in prompt_list])
prompt_list = [e for e in prompt_list if len(e[1]) != longest_length]
for p in prompt_list:
prompt += p[0]
return prompt + prompt_end
def softmax(x):
z = x - max(x)
numerator = np.exp(z)
denominator = np.sum(numerator)
softmax = numerator/denominator
return softmax
def run_eval(model, tokenizer, eval, args):
if model:
model.eval()
subjects=sorted([f.split(".csv")[0] for f in os.listdir(os.path.join(args.data_dir, "test/"))])
args.save_dir = f"{args.save_dir}_{args.num_few_shot}_shot"
if not os.path.exists(args.save_dir):
os.mkdir(args.save_dir)
for subject in subjects:
out_file = os.path.join(args.save_dir, f"results_{subject}.csv")
if os.path.exists(out_file): # If result file exist, skip this subject
continue
dev_df = pd.read_csv(os.path.join(args.data_dir, "dev", subject + ".csv"), header=0, index_col=None)
test_df = pd.read_csv(os.path.join(args.data_dir, "test", subject + ".csv"), header=0, index_col=None)
acc, preds = eval(model=model,
tokenizer=tokenizer,
subject=subject,
dev_df=dev_df,
test_df=test_df,
num_few_shot=args.num_few_shot,
max_length=args.max_length,
)
test_df['prediction'] = preds
test_df.to_csv(out_file, header=None)
# print result
get_results(subjects,args.save_dir)
def extract_choice(response):
'''
Always return a choice, even cannot match by regex,
to ensure fair comparison to other models.
'''
response = str(response)
if response[0] in choices:
return response[0]
# 1. Single match
patterns = [
(r'答案(选项)?(是|为):? ?([ABCD])', 3),
(r'答案(是|为)选项 ?([ABCD])', 2),
(r'故?选择?:? ?([ABCD])',1),
(r'([ABCD]) ?选?项(是|为)?正确',1),
(r'正确的?选项(是|为) ?([ABCD])',2),
(r'答案(应该)?(是|为)([ABCD])',3),
(r'选项 ?([ABCD]) ?(是|为)?正确',1),
(r'选择答案 ?([ABCD])',1),
(r'答案?:?([ABCD])',1),
(r'([ABCD])(选?项)?是?符合题意',1),
(r'答案选项:? ?([ABCD])', 1), # chatglm
(r'答案(选项)?为(.*?)([ABCD])', 3), # chatgpt
]
for pattern,idx in patterns:
m = re.search(pattern, response, re.M)
if m:
answer = m.group(idx)
assert answer in choices
return answer
# 2. Recursive match
patterns = [
(r'([ABCD])(.*?)当选', 1),
(r'([ABCD])(.*?)正确', 1),
]
for pattern,idx in patterns:
m = re.search(pattern, response, re.M)
if m:
while m:
answer = m.group(idx)
m = re.search(pattern, m.group(0)[1:], re.M)
assert answer in choices
return answer
# 3. Weak single match
patterns = [
(r'[^不]是:? ?([ABCD])', 1),
]
for pattern,idx in patterns:
m = re.search(pattern, response, re.M)
if m:
answer = m.group(idx)
assert answer in choices
return answer
# 4. Check the only mentioend choices
pattern = r'^[^ABCD]*([ABCD])[^ABCD]*$'
m = re.match(pattern, response)
if m:
answer = m.group(1)
assert answer in choices
return answer
return choices[random.randint(0,3)]
def get_results(subjects, result_dir=''):
all_acc = defaultdict(float)
for subject in subjects:
try:
file = glob.glob(osp.join(result_dir, f"results_{subject}.csv"))[0]
except:
print(f"Warning, {subject} result file not found")
continue
data = pd.read_csv(file)
num_columns = len(data.columns)
if num_columns == 8:
df = pd.read_csv(file, names=['id', 'question', 'A', 'B', 'C', 'D', 'answer', 'response'], index_col=0)
else:
df = pd.read_csv(file, names=['question', 'A', 'B', 'C', 'D', 'answer', 'response'])
#df = pd.read_csv(, names=['id','question','A','B','C','D','answer','response'], index_col=0)
# To deal with some mismath between data and answer
if df.iloc[0]['question'] == '1':
df = df.drop(0)
df['pred'] = df['response'].apply(extract_choice)
df['acc'] = df['answer'] == df['pred']
acc = np.mean(df['acc']) * 100
all_acc[subject]=acc
subjects = sorted(taskno,key=taskno.get)
print_content = ''
category_dict = defaultdict(list)
for subject in subjects:
category_dict[task2cate[subject]].append(all_acc[subject])
#print_content +=f"| {all_acc[subject]:.1f} "
#print(f"{subject} {taskno[subject]} {all_acc[subject]:.2f}")
for c in category:
print_content +=f"| {np.mean(category_dict[c]):.2f} "
avg_all_acc = np.mean(list(all_acc.values()))
print_content += f"| {avg_all_acc:.2f} |"
print(print_content)
#print(f"{'Overall':30s} {avg_all_acc:.2f}")
return all_acc