-
Notifications
You must be signed in to change notification settings - Fork 11
/
evaluator.py
227 lines (192 loc) · 8.89 KB
/
evaluator.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
import random
import sys
sys.path.append('..')
from preprocessing.utils.dbPointer import queryResultVenues
import json
domains = ['restaurant', 'hotel', 'attraction', 'train', 'taxi', 'hospital', 'police']
requestables = ['phone', 'address', 'postcode', 'reference', 'id']
def issubset(A, B):
A = set(A)
B = set(B)
return A.issubset(B)
def parseGoal(goal, d, domain):
"""Parses user goal into dictionary format."""
goal[domain] = {}
goal[domain] = {'informable': [], 'requestable': [], 'booking': []}
if 'info' in d['goal'][domain]:
if domain == 'train':
# we consider dialogues only where train had to be booked!
if 'book' in d['goal'][domain]:
goal[domain]['requestable'].append('reference')
if 'reqt' in d['goal'][domain]:
if 'trainID' in d['goal'][domain]['reqt']:
goal[domain]['requestable'].append('id')
else:
if 'reqt' in d['goal'][domain]:
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]:
goal[domain]['requestable'].append("reference")
goal[domain]["informable"] = d['goal'][domain]['info']
if 'book' in d['goal'][domain]:
goal[domain]["booking"] = d['goal'][domain]['book']
return goal
def evaluateModel(dialogues, domain_success={}):
"""Gathers statistics for the whole sets."""
fin1 = open('data/delex.json')
delex_dialogues = json.load(fin1)
successes, matches = 0, 0
real_sucesses, real_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]}
filenames = sorted(dialogues.keys())
for filename in filenames:
dial = dialogues[filename]
if filename not in delex_dialogues:
filename += ".json"
domain_success[filename]={}
data = delex_dialogues[filename]
success, match, _ = evaluateDialogue(dial, data)
domain_success[filename]['inform']=match
domain_success[filename]['request']=success
successes += success
matches += match
total += 1
# Print results
matches = matches / float(total) * 100
successes = successes / float(total) * 100
print('Corpus Inform Success : %2.2f%%' % (matches))
print('Corpus Requestable Success : %2.2f%%' % (successes))
# return "{}_{}".format("%2.2f"%bleu, matches, successes)
return matches, successes
def evaluateDialogue(dialog, realDialogue):
# get the list of domains in the goal
goal = {}
for domain in domains:
if realDialogue['goal'][domain]:
goal = parseGoal(goal, realDialogue, domain)
real_requestables = {}
for domain in goal.keys():
real_requestables[domain] = goal[domain]['requestable']
# CHECK IF MATCH HAPPENED
provided_requestables = {}
venue_offered = {}
for domain in goal.keys():
venue_offered[domain] = []
provided_requestables[domain] = []
for t, sent_t in enumerate(dialog):
#sent_t = sent_t.replace("colleges", "[attaraction_name]")
#sent_t = sent_t.replace("college", "[attaraction_name]")
for domain in goal.keys():
# Search for the only restaurant, hotel, attraction or train with an ID
if '[' + domain + '_name]' in sent_t or 'trainid]' in sent_t:
if domain in ['restaurant', 'hotel', 'attraction', 'train']:
# HERE YOU CAN PUT YOUR BELIEF STATE ESTIMATION
venues = queryResultVenues(domain, realDialogue['log'][t * 2 + 1])
# if venue has changed
if len(venue_offered[domain]) == 0 and venues:
venue_offered[domain] = venues # random.sample(venues, 1)
else:
flag = True
for ven in venue_offered[domain]:
if ven not in venues:
flag = False
break
if not flag and venues: # sometimes there are no results so sample won't work
venue_offered[domain] = venues
else:
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 'name' in goal[domain]['informable']:
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 domain == 'train':
if not venue_offered[domain]:
if goal[domain]['requestable'] and 'id' not in goal[domain]['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']:
if type(venue_offered[domain]) is str and '_name' in venue_offered[domain]:
match += 1
match_stat = 1
elif venue_offered[domain]:
groundtruth = queryResultVenues(domain, goal[domain]['informable'], real_belief=True)
if issubset(venue_offered[domain], groundtruth):
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):
match = 1
else:
match = 0
# SUCCESS
if match:
for domain in goal.keys():
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
if success >= len(real_requestables):
success = 1
else:
success = 0
# print requests, 'DIFF', requests_real, 'SUCC', success
return success, match, stats