forked from julianser/hed-dlg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
evaluation.py
451 lines (366 loc) · 13.8 KB
/
evaluation.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
"""
Computes BLEU@n, Jaccard, Recall, MRR, TF-IDF Cosine Similarity etc.
"""
__docformat__ = 'restructedtext en'
__authors__ = ("Alessandro Sordoni, Iulian Vlad Serban")
__contact__ = "Alessandro Sordoni <sordonia@iro.umontreal>"
import sys
import math
import copy
import re
import operator
import collections
from collections import Counter
import numpy
def get_ref_length(ref_lens, candidate_len, method='closest'):
if method == 'closest':
len_diff = [(x, numpy.abs(x - candidate_len)) for x in ref_lens]
min_len = sorted(len_diff, key=operator.itemgetter(1))[0][0]
elif method == 'shortest':
min_len = min(ref_lens)
elif method == 'average':
min_len = float(sum(ref_lens))/len(ref_lens)
return min_len
def normalize(sentence):
return sentence.strip().split()
def count_ngrams(sentences, n=4):
global_counts = {}
for sentence in sentences:
local_counts = {}
list_len = len(sentence)
for k in xrange(1, n + 1):
for i in range(list_len - k + 1):
ngram = tuple(sentence[i:i+k])
local_counts[ngram] = local_counts.get(ngram, 0) + 1
### Store maximum occurrence; useful for multireference bleu
for ngram, count in local_counts.items():
global_counts[ngram] = max(global_counts.get(ngram, 0), count)
return global_counts
def count_letter_ngram(sentence, n=3):
local_counts = set()
for k in range(len(sentence.strip()) - n + 1):
local_counts.add(sentence[k:k+n])
return local_counts
class Jaccard:
"""
Jaccard n-letter-gram similarity.
Use:
>>> j = Jaccard()
>>> j.update("i have it", "i have is")
>>> print j.compute()
0.75
>>> j.reset()
"""
def __init__(self, n=3):
self.n = n
self.statistics = []
def aggregate(self):
if len(self.statistics) == 0:
return numpy.zeros((1,))
stat_matrix = numpy.array(self.statistics)
return numpy.mean(stat_matrix)
def update(self, candidate, ref):
stats = numpy.zeros((1,))
cand_ngrams = count_letter_ngram(candidate, self.n)
ref_ngrams = count_letter_ngram(ref, self.n)
stats[0] = float(len(cand_ngrams & ref_ngrams)) / len(cand_ngrams | ref_ngrams)
self.statistics.append(stats)
def compute(self):
stats = self.aggregate()
#return stats[0]
return stats
def reset(self):
self.statistics = []
class JaccardEvaluator(object):
""" Jaccard evaluator
"""
def __init__(self, n=3):
self.jaccard = Jaccard(n)
def evaluate(self, prediction, target):
if len(target) != len(prediction):
raise ValueError('Target and predictions length mismatch!')
# Assume ordered list and take only the first one
if isinstance(prediction[0], list):
prediction = [x[0] for x in prediction]
self.jaccard.reset()
for ts, ps in zip(target, prediction):
self.jaccard.update(ps, *ts)
return self.jaccard.compute()
class Bleu:
"""
Bleu score.
Use:
>>> b = Bleu()
>>> b.update("i have this", "i have this :)", "oh my my") # multi-references
>>> b.compute()
>>> b.reset()
"""
def __init__(self, n=4):
# Statistics are
# - 1-gramcount,
# - 2-gramcount,
# - 3-gramcount,
# - 4-gramcount,
# - 1-grammatch,
# - 2-grammatch,
# - 3-grammatch,
# - 4-grammatch,
# - reflen
self.n = n
self.statistics = []
def aggregate(self):
if len(self.statistics) == 0:
return numpy.zeros((2 * self.n + 1,))
stat_matrix = numpy.array(self.statistics)
return numpy.sum(stat_matrix, axis=0)
def update(self, candidate, *refs):
refs = [normalize(ref) for ref in refs]
candidate = normalize(candidate)
stats = numpy.zeros((2 * self.n + 1,))
stats[-1] = get_ref_length(map(len, refs), len(candidate))
cand_ngram_counts = count_ngrams([candidate], self.n)
refs_ngram_counts = count_ngrams(refs, self.n)
for ngram, count in cand_ngram_counts.items():
stats[len(ngram) + self.n - 1] += min(count, refs_ngram_counts.get(ngram, 0))
for k in xrange(1, self.n + 1):
stats[k - 1] = max(len(candidate) - k + 1, 0)
self.statistics.append(stats)
def compute(self, smoothing=0, length_penalty=1):
precs = numpy.zeros((self.n + 1,))
stats = self.aggregate()
log_bleu = 0.
for k in range(self.n):
correct = float(stats[self.n + k] + smoothing)
if correct == 0.:
return 0., precs
total = float(stats[k] + 2*smoothing)
precs[k] = numpy.log(correct) - numpy.log(total)
log_bleu += precs[k]
log_bleu /= float(self.n)
stats[-1] = stats[-1] * length_penalty
log_bleu += min(0, 1 - float(stats[0]/stats[-1]))
return numpy.exp(log_bleu), numpy.exp(precs)
def reset(self):
self.statistics = []
class BleuEvaluator(object):
""" Bleu evaluator
"""
def __init__(self, n=4):
self.bleu = Bleu(n)
def evaluate(self, prediction, target):
if len(target) != len(prediction):
raise ValueError('Target and predictions length mismatch!')
# Assume ordered list and take only the first one
if isinstance(prediction[0], list):
prediction = [x[0] for x in prediction]
self.bleu.reset()
for ts, ps in zip(target, prediction):
self.bleu.update(ps, *ts)
return self.bleu.compute()
class Recall:
"""
Evaluate mean recall at utterance level.
Use:
>>> r = Recall()
>>> r.update("i have it", ["i have is", "i have some"])
>>> r.update("i have it", ["i have is", "i have it"])
>>> print r.compute()
0.5
>>> r.reset()
"""
def __init__(self, n):
self.n = n
self.statistics = []
def aggregate(self):
if len(self.statistics) == 0:
return numpy.zeros((1,))
stat_matrix = numpy.array(self.statistics)
return float(numpy.mean(stat_matrix))
def update(self, candidates, ref):
stats = numpy.zeros((1,))
for candidate in candidates:
if candidate == ref:
stats[0] = 1
self.statistics.append(stats)
return
stats[0] = 0
self.statistics.append(stats)
def compute(self):
stats = self.aggregate()
return stats
def reset(self):
self.statistics = []
class RecallEvaluator(object):
""" Recall evaluator
"""
def __init__(self, n=5):
self.recall = Recall(n)
self.n = n
def evaluate(self, prediction, target):
if len(target) != len(prediction):
raise ValueError('Target and predictions length mismatch!')
self.recall.reset()
for ts, ps in zip(target, prediction):
#assert(len(ps) >= self.n)
# Replace missing samples with last sample instead of throwing an error
samples_len = len(ps)
if samples_len >= self.n:
ps_complete = ps[0:self.n]
else:
ps_complete = ps[0:samples_len]
miss = self.n - samples_len
last_element = ps[samples_len-1]
for i in range(miss):
ps_complete.append(last_element)
self.recall.update(ps_complete, *ts)
return self.recall.compute()
class MRR:
"""
Evaluate mean reciprocal rank.
Use:
>>> r = MRR()
>>> r.update("i have it", ["i have is", "i have some"])
>>> r.update("i have it", ["i have is", "i have it"])
>>> print r.compute()
0.25
>>> r.reset()
"""
def __init__(self, n):
self.n = n
self.statistics = []
def aggregate(self):
if len(self.statistics) == 0:
return numpy.zeros((1,))
stat_matrix = numpy.array(self.statistics)
return float(numpy.mean(stat_matrix))
def update(self, candidates, ref):
stats = numpy.zeros((1,))
for index in range(len(candidates)):
if candidates[index] == ref:
stats[0] = 1/(index+1)
self.statistics.append(stats)
return
self.statistics.append(stats)
def compute(self):
stats = self.aggregate()
return stats
def reset(self):
self.statistics = []
class MRREvaluator(object):
""" Mean reciprocal rank evaluator
"""
def __init__(self, n=5):
self.mrr = MRR(n)
self.n = n
def evaluate(self, prediction, target):
if len(target) != len(prediction):
raise ValueError('Target and predictions length mismatch!')
self.mrr.reset()
for ts, ps in zip(target, prediction):
#assert(len(ps) >= self.n)
# Replace missing samples with last sample instead of throwing an error
samples_len = len(ps)
if samples_len >= self.n:
ps_complete = ps[0:self.n]
else:
ps_complete = ps[0:samples_len]
miss = self.n - samples_len
last_element = ps[samples_len-1]
for i in range(miss):
ps_complete.append(last_element)
self.mrr.update(ps_complete, *ts)
return self.mrr.compute()
class TFIDF_CS:
"""
Evaluate TF-IDF-based cosine similarity.
Use:
>>> tfidf_cs = TFIDF_CS()
>>> tfidf_cs.update("i have it", ["i have is", "i have some"])
>>> tfidf_cs.update("i have it", ["i have is", "i have it"])
>>> print tfidf_cs.compute()
>>> tfidf_cs.reset()
"""
def __init__(self, model, document_count, n):
self.model = model
self.document_count = document_count
self.n = n
self.statistics = []
def aggregate(self):
if len(self.statistics) == 0:
return numpy.zeros((1,))
stat_matrix = numpy.array(self.statistics)
return float(numpy.mean(stat_matrix))
def update(self, candidates, ref):
stats = numpy.zeros((1,))
# Split reference (target) into word indices and count each word
ref_words = normalize(ref)
# We don't count empty targets, since these would always give cosine similarity one with empty responses!
if len(ref_words) == 0:
return
ref_indices = self.model.words_to_indices(ref_words)
ref_counter = Counter(ref_indices)
ref_indices_unique = list(set(ref_indices))
# Compute reference (target) vector
ref_vector = numpy.zeros((len(ref_indices)))
for i in range(len(ref_indices_unique)):
word_index = ref_indices_unique[i]
ref_vector[i] = ref_counter[word_index] * math.log(self.document_count/max(1, self.model.document_freq[word_index]))
ref_vector_norm = numpy.sqrt(numpy.sum(ref_vector**2))
# We don't count references which we cannot match (this should never happen in the dataset anyway, but it does happen in our tests...)
if ref_vector_norm < 0.0000001:
return
best_score = 0
for candidate in candidates:
# Split candidate into word indices and count each word
cand_words = normalize(candidate)
cand_indices = self.model.words_to_indices(cand_words)
cand_counter = Counter(cand_indices)
# Loop over unique indices (to speed up calculations) and compute un-normalized cosine similarity
current_score = 0
cand_norm = 0
ref_norm = 0
cand_vector = numpy.zeros((len(ref_indices)))
cand_vector_norm = 0
# Compute irrespective of reference
for word_index in cand_counter.keys():
cand_vector_norm += (cand_counter[word_index] * math.log(self.document_count/max(1, self.model.document_freq[word_index])))**2
cand_vector_norm = numpy.sqrt(cand_vector_norm)
# Compute candidate vector
for i in range(len(ref_indices_unique)):
word_index = ref_indices_unique[i]
if cand_counter[word_index] > 0:
cand_vector[i] = cand_counter[word_index] * math.log(self.document_count/max(1, self.model.document_freq[word_index]))
if cand_vector_norm > 0:
current_score = float(numpy.dot(cand_vector.T, ref_vector) / (cand_vector_norm*ref_vector_norm))
if current_score > best_score:
best_score = current_score
self.statistics.append(best_score)
def compute(self):
stats = self.aggregate()
return stats
def reset(self):
self.statistics = []
class TFIDF_CS_Evaluator(object):
""" Mean TF-IDF-based cosine similarity evaluator
"""
def __init__(self, model, document_count, n):
self.tfidf_cs = TFIDF_CS(model, document_count, n)
self.n = n
def evaluate(self, prediction, target):
if len(target) != len(prediction):
raise ValueError('Target and predictions length mismatch!')
self.tfidf_cs.reset()
for ts, ps in zip(target, prediction):
#assert(len(ps) >= self.n)
# Replace missing samples with last sample instead of throwing an error
samples_len = len(ps)
if samples_len >= self.n:
ps_complete = ps[0:self.n]
else:
ps_complete = ps[0:samples_len]
miss = self.n - samples_len
last_element = ps[samples_len-1]
for i in range(miss):
ps_complete.append(last_element)
self.tfidf_cs.update(ps_complete, *ts)
return self.tfidf_cs.compute()