-
Notifications
You must be signed in to change notification settings - Fork 0
/
evaluate.py
614 lines (524 loc) · 25.6 KB
/
evaluate.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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
import math
import utils.delexicalize as delex
from collections import Counter
from nltk.util import ngrams
import json
from utils.nlp import normalize
import sqlite3
import os
import random
import logging
from utils.nlp import BLEUScorer
class BaseEvaluator(object):
def initialize(self):
raise NotImplementedError
def add_example(self, ref, hyp):
raise NotImplementedError
def get_report(self, *args, **kwargs):
raise NotImplementedError
@staticmethod
def _get_prec_recall(tp, fp, fn):
precision = tp / (tp + fp + 10e-20)
recall = tp / (tp + fn + 10e-20)
f1 = 2 * precision * recall / (precision + recall + 1e-20)
return precision, recall, f1
@staticmethod
def _get_tp_fp_fn(label_list, pred_list):
tp = len([t for t in pred_list if t in label_list])
fp = max(0, len(pred_list) - tp)
fn = max(0, len(label_list) - tp)
return tp, fp, fn
class BLEUScorer(object):
## BLEU score calculator via GentScorer interface
## it calculates the BLEU-4 by taking the entire corpus in
## Calulate based multiple candidates against multiple references
def score(self, hypothesis, corpus, n=1):
# containers
count = [0, 0, 0, 0]
clip_count = [0, 0, 0, 0]
r = 0
c = 0
weights = [0.25, 0.25, 0.25, 0.25]
# accumulate ngram statistics
for hyps, refs in zip(hypothesis, corpus):
# if type(hyps[0]) is list:
# hyps = [hyp.split() for hyp in hyps[0]]
# else:
# hyps = [hyp.split() for hyp in hyps]
# refs = [ref.split() for ref in refs]
hyps = [hyps]
# Shawn's evaluation
# refs[0] = [u'GO_'] + refs[0] + [u'EOS_']
# hyps[0] = [u'GO_'] + hyps[0] + [u'EOS_']
for idx, hyp in enumerate(hyps):
for i in range(4):
# accumulate ngram counts
hypcnts = Counter(ngrams(hyp, i + 1))
cnt = sum(hypcnts.values())
count[i] += cnt
# compute clipped counts
max_counts = {}
for ref in refs:
refcnts = Counter(ngrams(ref, i + 1))
for ng in hypcnts:
max_counts[ng] = max(max_counts.get(ng, 0), refcnts[ng])
clipcnt = dict((ng, min(count, max_counts[ng])) \
for ng, count in hypcnts.items())
clip_count[i] += sum(clipcnt.values())
# accumulate r & c
bestmatch = [1000, 1000]
for ref in refs:
if bestmatch[0] == 0: break
diff = abs(len(ref) - len(hyp))
if diff < bestmatch[0]:
bestmatch[0] = diff
bestmatch[1] = len(ref)
r += bestmatch[1]
c += len(hyp)
if n == 1:
break
# computing bleu score
p0 = 1e-7
bp = 1 if c > r else math.exp(1 - float(r) / float(c))
p_ns = [float(clip_count[i]) / float(count[i] + p0) + p0 \
for i in range(4)]
s = math.fsum(w * math.log(p_n) \
for w, p_n in zip(weights, p_ns) if p_n)
bleu = bp * math.exp(s)
return bleu
class MultiWozDB(object):
# loading databases
domains = ['restaurant', 'hotel', 'attraction', 'train', 'taxi', 'hospital'] # , 'police']
dbs = {}
CUR_DIR = os.path.dirname(__file__)
for domain in domains:
db = os.path.join('db/{}-dbase.db'.format(domain))
conn = sqlite3.connect(db)
c = conn.cursor()
dbs[domain] = c
def queryResultVenues(self, domain, turn, real_belief=False):
# query the db
sql_query = "select * from {}".format(domain)
if real_belief == True:
items = turn.items()
else:
items = turn['metadata'][domain]['semi'].items()
flag = True
for key, val in items:
if val == "" or val == "dontcare" or val == 'not mentioned' or val == "don't care" or val == "dont care" or val == "do n't care":
pass
else:
if flag:
sql_query += " where "
val2 = val.replace("'", "''")
val2 = normalize(val2)
if key == 'leaveAt':
sql_query += r" " + key + " > " + r"'" + val2 + r"'"
elif key == 'arriveBy':
sql_query += r" " + key + " < " + r"'" + val2 + r"'"
else:
sql_query += r" " + key + "=" + r"'" + val2 + r"'"
flag = False
else:
val2 = val.replace("'", "''")
val2 = normalize(val2)
if key == 'leaveAt':
sql_query += r" and " + key + " > " + r"'" + val2 + r"'"
elif key == 'arriveBy':
sql_query += r" and " + key + " < " + r"'" + val2 + r"'"
else:
sql_query += r" and " + key + "=" + r"'" + val2 + r"'"
try: # "select * from attraction where name = 'queens college'"
return self.dbs[domain].execute(sql_query).fetchall()
except:
return [] # TODO test it
class MultiWozEvaluator(BaseEvaluator):
def __init__(self, data_name):
self.data_name = data_name
self.slot_dict = delex.prepareSlotValuesIndependent()
self.delex_dialogues = json.load(file('data/multi-woz/delex.json'))
self.db = MultiWozDB()
self.labels = list()
self.hyps = list()
def add_example(self, ref, hyp):
self.labels.append(ref)
self.hyps.append(hyp)
def _parseGoal(self, goal, d, domain):
"""Parses user goal into dictionary format."""
goal[domain] = {}
goal[domain] = {'informable': [], 'requestable': [], 'booking': []}
if 'info' in d['goal'][domain]:
# if d['goal'][domain].has_key('info'):
if domain == 'train':
# we consider dialogues only where train had to be booked!
if 'book' in d['goal'][domain]:
# if d['goal'][domain].has_key('book'):
goal[domain]['requestable'].append('reference')
if 'reqt' in d['goal'][domain]:
# if d['goal'][domain].has_key('reqt'):
if 'trainID' in d['goal'][domain]['reqt']:
goal[domain]['requestable'].append('id')
else:
if 'reqt' in d['goal'][domain]:
# if d['goal'][domain].has_key('reqt'):
for s in d['goal'][domain]['reqt']: # addtional requests:
if s in ['phone', 'address', 'postcode', 'reference', 'id']:
# ones that can be easily delexicalized
goal[domain]['requestable'].append(s)
if 'book' in d['goal'][domain]:
# if d['goal'][domain].has_key('book'):
goal[domain]['requestable'].append("reference")
goal[domain]["informable"] = d['goal'][domain]['info']
if 'book' in d['goal'][domain]:
# if d['goal'][domain].has_key('book'):
goal[domain]["booking"] = d['goal'][domain]['book']
return goal
def _evaluateGeneratedDialogue(self, dialog, goal, realDialogue, real_requestables, soft_acc=False):
"""Evaluates the dialogue created by the model.
First we load the user goal of the dialogue, then for each turn
generated by the system we look for key-words.
For the Inform rate we look whether the entity was proposed.
For the Success rate we look for requestables slots"""
# for computing corpus success
requestables = ['phone', 'address', 'postcode', 'reference', 'id']
# CHECK IF MATCH HAPPENED
provided_requestables = {}
venue_offered = {}
domains_in_goal = []
for domain in goal.keys():
venue_offered[domain] = []
provided_requestables[domain] = []
domains_in_goal.append(domain)
for t, sent_t in enumerate(dialog):
for domain in goal.keys():
# for computing success
if '[' + domain + '_name]' in sent_t or '_id' in sent_t:
if domain in ['restaurant', 'hotel', 'attraction', 'train']:
# HERE YOU CAN PUT YOUR BELIEF STATE ESTIMATION
venues = self.db.queryResultVenues(domain, realDialogue['log'][t * 2 + 1])
# if venue has changed
if len(venue_offered[domain]) == 0 and venues:
venue_offered[domain] = random.sample(venues, 1)
else:
flag = False
for ven in venues:
if venue_offered[domain][0] == ven:
flag = True
break
if not flag and venues: # sometimes there are no results so sample won't work
# print venues
venue_offered[domain] = random.sample(venues, 1)
else: # not limited so we can provide one
venue_offered[domain] = '[' + domain + '_name]'
# ATTENTION: assumption here - we didn't provide phone or address twice! etc
for requestable in requestables:
if requestable == 'reference':
if domain + '_reference' in sent_t:
if 'restaurant_reference' in sent_t:
if realDialogue['log'][t * 2]['db_pointer'][
-5] == 1: # if pointer was allowing for that?
provided_requestables[domain].append('reference')
elif 'hotel_reference' in sent_t:
if realDialogue['log'][t * 2]['db_pointer'][
-3] == 1: # if pointer was allowing for that?
provided_requestables[domain].append('reference')
elif 'train_reference' in sent_t:
if realDialogue['log'][t * 2]['db_pointer'][
-1] == 1: # if pointer was allowing for that?
provided_requestables[domain].append('reference')
else:
provided_requestables[domain].append('reference')
else:
if domain + '_' + requestable + ']' in sent_t:
provided_requestables[domain].append(requestable)
# if name was given in the task
for domain in goal.keys():
# if name was provided for the user, the match is being done automatically
# if realDialogue['goal'][domain].has_key('info'):
if 'info' in realDialogue['goal'][domain]:
# if realDialogue['goal'][domain]['info'].has_key('name'):
if 'name' in realDialogue['goal'][domain]['info']:
venue_offered[domain] = '[' + domain + '_name]'
# special domains - entity does not need to be provided
if domain in ['taxi', 'police', 'hospital']:
venue_offered[domain] = '[' + domain + '_name]'
# the original method
# if domain == 'train':
# if not venue_offered[domain]:
# # if realDialogue['goal'][domain].has_key('reqt') and 'id' not in realDialogue['goal'][domain]['reqt']:
# if 'reqt' in realDialogue['goal'][domain] and 'id' not in realDialogue['goal'][domain]['reqt']:
# venue_offered[domain] = '[' + domain + '_name]'
# Wrong one in HDSA
# if domain == 'train':
# if not venue_offered[domain]:
# if goal[domain]['requestable'] and 'id' not in goal[domain]['requestable']:
# venue_offered[domain] = '[' + domain + '_name]'
# if id was not requested but train was found we dont want to override it to check if we booked the right train
if domain == 'train' and (not venue_offered[domain] and 'id' not in goal['train']['requestable']):
venue_offered[domain] = '[' + domain + '_name]'
"""
Given all inform and requestable slots
we go through each domain from the user goal
and check whether right entity was provided and
all requestable slots were given to the user.
The dialogue is successful if that's the case for all domains.
"""
# HARD EVAL
stats = {'restaurant': [0, 0, 0], 'hotel': [0, 0, 0], 'attraction': [0, 0, 0], 'train': [0, 0, 0],
'taxi': [0, 0, 0],
'hospital': [0, 0, 0], 'police': [0, 0, 0]}
match = 0
success = 0
# MATCH
for domain in goal.keys():
match_stat = 0
if domain in ['restaurant', 'hotel', 'attraction', 'train']:
goal_venues = self.db.queryResultVenues(domain, goal[domain]['informable'], real_belief=True)
if type(venue_offered[domain]) is str and '_name' in venue_offered[domain]:
match += 1
match_stat = 1
elif len(venue_offered[domain]) > 0 and venue_offered[domain][0] in goal_venues:
match += 1
match_stat = 1
else:
if domain + '_name]' in venue_offered[domain]:
match += 1
match_stat = 1
stats[domain][0] = match_stat
stats[domain][2] = 1
if soft_acc:
match = float(match)/len(goal.keys())
else:
if match == len(goal.keys()):
match = 1.0
else:
match = 0.0
# SUCCESS
if match == 1.0:
for domain in domains_in_goal:
success_stat = 0
domain_success = 0
if len(real_requestables[domain]) == 0:
success += 1
success_stat = 1
stats[domain][1] = success_stat
continue
# if values in sentences are super set of requestables
for request in set(provided_requestables[domain]):
if request in real_requestables[domain]:
domain_success += 1
if domain_success >= len(real_requestables[domain]):
success += 1
success_stat = 1
stats[domain][1] = success_stat
# final eval
if soft_acc:
success = float(success)/len(real_requestables)
else:
if success >= len(real_requestables):
success = 1
else:
success = 0
# rint requests, 'DIFF', requests_real, 'SUCC', success
return success, match, stats
def _evaluateRealDialogue(self, dialog, filename):
"""Evaluation of the real dialogue.
First we loads the user goal and then go through the dialogue history.
Similar to evaluateGeneratedDialogue above."""
domains = ['restaurant', 'hotel', 'attraction', 'train', 'taxi', 'hospital', 'police']
requestables = ['phone', 'address', 'postcode', 'reference', 'id']
# get the list of domains in the goal
domains_in_goal = []
goal = {}
for domain in domains:
if dialog['goal'][domain]:
goal = self._parseGoal(goal, dialog, domain)
domains_in_goal.append(domain)
# compute corpus success
real_requestables = {}
provided_requestables = {}
venue_offered = {}
for domain in goal.keys():
provided_requestables[domain] = []
venue_offered[domain] = []
real_requestables[domain] = goal[domain]['requestable']
# iterate each turn
m_targetutt = [turn['text'] for idx, turn in enumerate(dialog['log']) if idx % 2 == 1]
for t in range(len(m_targetutt)):
for domain in domains_in_goal:
sent_t = m_targetutt[t]
# for computing match - where there are limited entities
if domain + '_name' in sent_t or '_id' in sent_t:
if domain in ['restaurant', 'hotel', 'attraction', 'train']:
# HERE YOU CAN PUT YOUR BELIEF STATE ESTIMATION
venues = self.db.queryResultVenues(domain, dialog['log'][t * 2 + 1])
# if venue has changed
if len(venue_offered[domain]) == 0 and venues:
venue_offered[domain] = random.sample(venues, 1)
else:
flag = False
for ven in venues:
if venue_offered[domain][0] == ven:
flag = True
break
if not flag and venues: # sometimes there are no results so sample won't work
# print venues
venue_offered[domain] = random.sample(venues, 1)
else: # not limited so we can provide one
venue_offered[domain] = '[' + domain + '_name]'
for requestable in requestables:
# check if reference could be issued
if requestable == 'reference':
if domain + '_reference' in sent_t:
if 'restaurant_reference' in sent_t:
if dialog['log'][t * 2]['db_pointer'][-5] == 1: # if pointer was allowing for that?
provided_requestables[domain].append('reference')
elif 'hotel_reference' in sent_t:
if dialog['log'][t * 2]['db_pointer'][-3] == 1: # if pointer was allowing for that?
provided_requestables[domain].append('reference')
# return goal, 0, match, real_requestables
elif 'train_reference' in sent_t:
if dialog['log'][t * 2]['db_pointer'][-1] == 1: # if pointer was allowing for that?
provided_requestables[domain].append('reference')
else:
provided_requestables[domain].append('reference')
else:
if domain + '_' + requestable in sent_t:
provided_requestables[domain].append(requestable)
# offer was made?
for domain in domains_in_goal:
# if name was provided for the user, the match is being done automatically
# if dialog['goal'][domain].has_key('info'):
if 'info' in dialog['goal'][domain]:
# if dialog['goal'][domain]['info'].has_key('name'):
if 'name' in dialog['goal'][domain]['info']:
venue_offered[domain] = '[' + domain + '_name]'
# special domains - entity does not need to be provided
if domain in ['taxi', 'police', 'hospital']:
venue_offered[domain] = '[' + domain + '_name]'
# if id was not requested but train was found we dont want to override it to check if we booked the right train
if domain == 'train' and (not venue_offered[domain] and 'id' not in goal['train']['requestable']):
venue_offered[domain] = '[' + domain + '_name]'
# HARD (0-1) EVAL
stats = {'restaurant': [0, 0, 0], 'hotel': [0, 0, 0], 'attraction': [0, 0, 0], 'train': [0, 0, 0],
'taxi': [0, 0, 0],
'hospital': [0, 0, 0], 'police': [0, 0, 0]}
match, success = 0, 0
# MATCH
for domain in goal.keys():
match_stat = 0
if domain in ['restaurant', 'hotel', 'attraction', 'train']:
goal_venues = self.db.queryResultVenues(domain, dialog['goal'][domain]['info'], real_belief=True)
# print(goal_venues)
if type(venue_offered[domain]) is str and '_name' in venue_offered[domain]:
match += 1
match_stat = 1
elif len(venue_offered[domain]) > 0 and venue_offered[domain][0] in goal_venues:
match += 1
match_stat = 1
else:
if domain + '_name' in venue_offered[domain]:
match += 1
match_stat = 1
stats[domain][0] = match_stat
stats[domain][2] = 1
if match == len(goal.keys()):
match = 1
else:
match = 0
# SUCCESS
if match:
for domain in domains_in_goal:
domain_success = 0
success_stat = 0
if len(real_requestables[domain]) == 0:
# check that
success += 1
success_stat = 1
stats[domain][1] = success_stat
continue
# if values in sentences are super set of requestables
for request in set(provided_requestables[domain]):
if request in real_requestables[domain]:
domain_success += 1
if domain_success >= len(real_requestables[domain]):
success += 1
success_stat = 1
stats[domain][1] = success_stat
# final eval
if success >= len(real_requestables):
success = 1
else:
success = 0
return goal, success, match, real_requestables, stats
def _parse_entities(self, tokens):
entities = []
for t in tokens:
if '[' in t and ']' in t:
entities.append(t)
return entities
def evaluateModel(self, dialogues, real_dialogues=False, mode='valid'):
"""Gathers statistics for the whole sets."""
delex_dialogues = self.delex_dialogues
successes, matches = 0, 0
total = 0
gen_stats = {'restaurant': [0, 0, 0], 'hotel': [0, 0, 0], 'attraction': [0, 0, 0], 'train': [0, 0, 0],
'taxi': [0, 0, 0],
'hospital': [0, 0, 0], 'police': [0, 0, 0]}
sng_gen_stats = {'restaurant': [0, 0, 0], 'hotel': [0, 0, 0], 'attraction': [0, 0, 0], 'train': [0, 0, 0],
'taxi': [0, 0, 0], 'hospital': [0, 0, 0], 'police': [0, 0, 0]}
for filename, dial in dialogues.items():
data = delex_dialogues[filename]
goal, success, match, requestables, _ = self._evaluateRealDialogue(data, filename)
success, match, stats = self._evaluateGeneratedDialogue(dial, goal, data, requestables,
soft_acc=mode =='soft')
successes += success
matches += match
total += 1
for domain in gen_stats.keys():
gen_stats[domain][0] += stats[domain][0]
gen_stats[domain][1] += stats[domain][1]
gen_stats[domain][2] += stats[domain][2]
if 'SNG' in filename:
for domain in gen_stats.keys():
sng_gen_stats[domain][0] += stats[domain][0]
sng_gen_stats[domain][1] += stats[domain][1]
sng_gen_stats[domain][2] += stats[domain][2]
if real_dialogues:
# BLUE SCORE
corpus = []
model_corpus = []
bscorer = BLEUScorer()
for dialogue in dialogues:
data = real_dialogues[dialogue]
model_turns, corpus_turns = [], []
for idx, turn in enumerate(data['sys']):
corpus_turns.append([turn])
for turn in dialogues[dialogue]:
model_turns.append([turn])
if len(model_turns) == len(corpus_turns):
corpus.extend(corpus_turns)
model_corpus.extend(model_turns)
else:
raise('Wrong amount of turns')
blue_score = bscorer.score(model_corpus, corpus)
else:
blue_score = 0.
report = ""
report += '{} Corpus Matches : {:2.2f}%'.format(mode, (matches / float(total) * 100)) + "\n"
report += '{} Corpus Success : {:2.2f}%'.format(mode, (successes / float(total) * 100)) + "\n"
report += '{} Corpus BLEU : {:2.2f}%'.format(mode, blue_score) + "\n"
report += 'Total number of dialogues: %s ' % total
print(report)
return report, successes/float(total), matches/float(total)
if __name__ == '__main__':
mode = "test"
evaluator = MultiWozEvaluator(mode)
with open("data/test_dials.json", "r") as f:
human_raw_data = json.load(f)
human_proc_data = {}
for key, value in human_raw_data.items():
human_proc_data[key] = value['sys']
# PROVIDE HERE YOUR GENERATED DIALOGUES INSTEAD
generated_data = human_proc_data
evaluator.evaluateModel(generated_data, False, mode=mode)