File size: 8,709 Bytes
f5a0329 | 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 | import json
import argparse
from os import pread
import sys
import numpy as np
import jieba
import nltk
from nltk.translate.bleu_score import sentence_bleu, SmoothingFunction
from nltk import ngrams
from rouge import Rouge
def bleu(data):
"""
compute rouge score
Args:
data (list of dict including reference and candidate):
Returns:
res (dict of list of scores): rouge score
"""
res = {}
for i in range(1, 5):
res["sentence-bleu-%d"%i] = []
res["corpus-bleu-%d"%i] = nltk.translate.bleu_score.corpus_bleu([[d["reference"].strip().split()] for d in data], [d["candidate"].strip().split() for d in data], weights=tuple([1./i for j in range(i)]))
for tmp_data in data:
origin_candidate = tmp_data['candidate']
origin_reference = tmp_data['reference']
assert isinstance(origin_candidate, str)
if not isinstance(origin_reference, list):
origin_reference = [origin_reference]
for i in range(1, 5):
res["sentence-bleu-%d"%i].append(sentence_bleu(references=[r.strip().split() for r in origin_reference], hypothesis=origin_candidate.strip().split(), weights=tuple([1./i for j in range(i)])))
for key in res:
if "sentence" in key:
res[key] = np.mean(res[key])
return res
def repetition_distinct(eval_data):
result = {}
for i in range(1, 5):
all_ngram, all_ngram_num = {}, 0.
for k, tmp_data in enumerate(eval_data):
ngs = ["_".join(c) for c in ngrams(tmp_data["candidate"].strip().split(), i)]
all_ngram_num += len(ngs)
for s in ngs:
if s in all_ngram:
all_ngram[s] += 1
else:
all_ngram[s] = 1
result["distinct-%d"%i] = len(all_ngram) / float(all_ngram_num)
return result
def rouge(ipt, cand):
rouge_name = ["rouge-1", "rouge-2", "rouge-l"]
item_name = ["f", "p", "r"]
res = {}
for name1 in rouge_name:
for name2 in item_name:
res["%s-%s"%(name1, name2)] = []
for k, (tmp_ipt, tmp_cand) in enumerate(zip(ipt, cand)):
for tmp_ref in tmp_ipt.split("#"):
# print(tmp_ref.strip())
# print(" ".join(tmp_cand))
# tmp_ref = tmp_ref.strip()
# tmp_hyp = " ".join(tmp_cand).strip()
tmp_ref = " ".join([w for w in "".join(tmp_ref.strip().split())])
tmp_hyp = " ".join([w for w in "".join(tmp_cand.strip().split())])
# print(tmp_ref)
# print(tmp_hyp)
try:
tmp_res = Rouge().get_scores(refs=tmp_ref, hyps=tmp_hyp)[0]
for name1 in rouge_name:
for name2 in item_name:
res["%s-%s"%(name1, name2)].append(tmp_res[name1][name2])
except:
continue
for name1 in rouge_name:
for name2 in item_name:
res["%s-%s"%(name1, name2)] = np.mean(res["%s-%s"%(name1, name2)])
return {"coverage": res["rouge-l-r"]}
def LCS(x, y):
"""
Computes the length of the longest common subsequence (lcs) between two
strings. The implementation below uses a DP programming algorithm and runs
in O(nm) time where n = len(x) and m = len(y).
Source: http://www.algorithmist.com/index.php/Longest_Common_Subsequence
Args:
x: collection of words
y: collection of words
Returns:
Table of dictionary of coord and len lcs
"""
n, m = len(x), len(y)
table = dict()
for i in range(n + 1):
for j in range(m + 1):
if i == 0 or j == 0:
table[i, j] = 0
elif x[i - 1] == y[j - 1]:
table[i, j] = table[i - 1, j - 1] + 1
else:
table[i, j] = max(table[i - 1, j], table[i, j - 1])
return table
def Recon_LCS(x, y, exclusive=True):
"""
Returns the Longest Subsequence between x and y.
Source: http://www.algorithmist.com/index.php/Longest_Common_Subsequence
Args:
x: sequence of words
y: sequence of words
Returns:
sequence: LCS of x and y
"""
i, j = len(x), len(y)
table = LCS(x, y)
def _recon(i, j):
"""private recon calculation"""
if i == 0 or j == 0:
return []
elif x[i - 1] == y[j - 1]:
return _recon(i - 1, j - 1) + [(x[i - 1], i)]
elif table[i - 1, j] > table[i, j - 1]:
return _recon(i - 1, j)
else:
return _recon(i, j - 1)
recon_list = list(map(lambda x: x[0], _recon(i, j)))
if len(recon_list):
return "".join(recon_list).strip()
else:
return ""
# return Ngrams(recon_list, exclusive=exclusive)
# return recon_tuple
def lcs3_dp(input_x, input_y):
# input_y as column, input_x as row
dp = [([0] * (len(input_y)+1)) for i in range(len(input_x)+1)]
maxlen = maxindex = 0
for i in range(1, len(input_x)+1):
for j in range(1, len(input_y)+1):
if i == 0 or j == 0: # 在边界上,自行+1
dp[i][j] = 0
if input_x[i-1] == input_y[j-1]:
dp[i][j] = dp[i - 1][j - 1] + 1
if dp[i][j] > maxlen: # 随时更新最长长度和长度开始的位置
maxlen = dp[i][j]
maxindex = i - maxlen
# print('最长公共子串的长度是:%s' % maxlen)
# print('最长公共子串是:%s' % input_x[maxindex:maxindex + maxlen])
else:
dp[i][j] = 0
# for dp_line in dp:
# print(dp_line)
return input_x[maxindex:maxindex + maxlen]
def inversenum(a):
num = 0
all_num = 0
for i in range(0,len(a)):
for j in range(i,len(a)):
if a[i] > a[j]:
num += 1
all_num += 1
return num / float(all_num)
def find_all(sub,s):
index_list = []
index = s.find(sub)
while index != -1:
index_list.append(index)
index = s.find(sub,index+1)
if len(index_list) > 0:
return index_list
else:
return -1
def order(ipt, cand, kw2id):
num = []
for k, (tmp_ipt, tmp_cand, tmp_kw2id) in enumerate(zip(ipt, cand, kw2id)):
# all_pos = [[]]
pos = []
kw_list = list(tmp_kw2id.keys())
kw_list.reverse()
for tmp_ref in kw_list:
tmp_ref = "".join(tmp_ref.strip().split())
tmp_hyp = "".join(tmp_cand.strip().split())
lcs = lcs3_dp(tmp_ref, tmp_hyp)
if len(lcs)>1:
pos.append(tmp_hyp.find(lcs))
else:
pos.append(-1)
idlist = list(range(len(pos)))
orderlist = sorted(idlist, key=lambda x: pos[x])
new_rank = [-1 for _ in idlist]
for idl, ord in zip(idlist, orderlist):
new_rank[idl] = tmp_kw2id[kw_list[ord]]
num.append(1-inversenum(new_rank))
return {"order": np.mean(num)}
def load_file(filename, pred=False):
data = []
with open(filename, "r") as f:
for line in f.readlines():
if pred:
data.append({"story": line.strip()})
else:
data.append(json.loads(line))
f.close()
return data
def proline(line):
return " ".join([w for w in jieba.cut("".join(line.strip().split()))])
def compute(golden_file, pred_file, return_dict=True):
golden_data = load_file(golden_file)
pred_data = load_file(pred_file)#, pred=True)
if len(golden_data) != len(pred_data):
raise RuntimeError("Wrong Predictions")
ipt = ["#".join(g["outline"]) for g in golden_data]
truth = [g["story"] for g in golden_data]
pred = [p["story"] for p in pred_data]
kw2id = []
for i1, t1 in zip(ipt, truth):
kw_list = i1.strip().split("#")
pos = [t1.strip().find(kw.strip()) for kw in kw_list]
idlist = list(range(len(pos)))
orderlist = sorted(idlist, key=lambda x: pos[x])
kw2id.append({})
for idl, ord in zip(idlist, orderlist):
kw2id[-1][kw_list[ord]] = idl
eval_data = [{"reference": proline(g["story"]), "candidate": proline(p["story"])} for g, p in zip(golden_data, pred_data)]
res = bleu(eval_data)
res.update(repetition_distinct(eval_data))
res.update(rouge(ipt=ipt, cand=pred))
res.update(order(ipt=ipt, cand=pred, kw2id=kw2id))
# for key in res:
# res[key] = "_"
return res
def main():
argv = sys.argv
print("预测结果:{}, 测试集: {}".format(argv[1], argv[2]))
print(compute(argv[2], argv[1]))
if __name__ == '__main__':
main()
|