Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
emoUS-public
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
dsml
emoUS-public
Commits
a6dea527
Commit
a6dea527
authored
2 years ago
by
Christian
Browse files
Options
Downloads
Patches
Plain Diff
consitency with _ instead of - in evaluator
parent
681e7b80
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
convlab/dialog_agent/agent.py
+1
-2
1 addition, 2 deletions
convlab/dialog_agent/agent.py
convlab/evaluator/multiwoz_eval.py
+19
-15
19 additions, 15 deletions
convlab/evaluator/multiwoz_eval.py
with
20 additions
and
17 deletions
convlab/dialog_agent/agent.py
+
1
−
2
View file @
a6dea527
...
...
@@ -358,9 +358,8 @@ class DialogueAgent(Agent):
else
:
state
=
self
.
input_action
fundamental_info
[
'
state
'
]
=
state
state
=
deepcopy
(
state
)
# get rid of reference problem
fundamental_info
[
'
state
'
]
=
state
self
.
sys_state_history
.
append
(
state
)
# get action
...
...
This diff is collapsed.
Click to expand it.
convlab/evaluator/multiwoz_eval.py
+
19
−
15
View file @
a6dea527
...
...
@@ -172,13 +172,13 @@ class MultiWozEvaluator(Evaluator):
da_turn
=
self
.
_convert_action
(
da_turn
)
for
intent
,
domain
,
slot
,
value
in
da_turn
:
dom_int
=
'
-
'
.
join
([
domain
,
intent
])
domain
=
dom_int
.
split
(
'
-
'
)[
0
].
lower
()
dom_int
=
'
_
'
.
join
([
domain
,
intent
])
domain
=
dom_int
.
split
(
'
_
'
)[
0
].
lower
()
if
domain
in
belief_domains
and
domain
!=
self
.
cur_domain
:
self
.
cur_domain
=
domain
da
=
(
dom_int
+
'
-
'
+
slot
).
lower
()
da
=
(
dom_int
+
'
_
'
+
slot
).
lower
()
value
=
str
(
value
)
self
.
sys_da_array
.
append
(
da
+
'
-
'
+
value
)
self
.
sys_da_array
.
append
(
da
+
'
_
'
+
value
)
# new booking actions make life easier
if
intent
.
lower
()
==
"
book
"
:
...
...
@@ -208,13 +208,13 @@ class MultiWozEvaluator(Evaluator):
"""
da_turn
=
self
.
_convert_action
(
da_turn
)
for
intent
,
domain
,
slot
,
value
in
da_turn
:
dom_int
=
'
-
'
.
join
([
domain
,
intent
])
domain
=
dom_int
.
split
(
'
-
'
)[
0
].
lower
()
dom_int
=
'
_
'
.
join
([
domain
,
intent
])
domain
=
dom_int
.
split
(
'
_
'
)[
0
].
lower
()
if
domain
in
belief_domains
and
domain
!=
self
.
cur_domain
:
self
.
cur_domain
=
domain
da
=
(
dom_int
+
'
-
'
+
slot
).
lower
()
da
=
(
dom_int
+
'
_
'
+
slot
).
lower
()
value
=
str
(
value
)
self
.
usr_da_array
.
append
(
da
+
'
-
'
+
value
)
self
.
usr_da_array
.
append
(
da
+
'
_
'
+
value
)
def
_book_rate_goal
(
self
,
goal
,
booked_entity
,
domains
=
None
):
"""
...
...
@@ -326,7 +326,7 @@ class MultiWozEvaluator(Evaluator):
reqt_not_inform
=
set
()
bad_inform
=
set
()
for
da
in
sys_history
:
domain
,
intent
,
slot
,
value
=
da
.
split
(
'
-
'
,
3
)
domain
,
intent
,
slot
,
value
=
da
.
split
(
'
_
'
,
3
)
if
intent
in
[
'
inform
'
,
'
recommend
'
,
'
offerbook
'
,
'
offerbooked
'
]
and
\
domain
in
domains
and
slot
in
mapping
[
domain
]
and
value
.
strip
()
not
in
NUL_VALUE
:
key
=
mapping
[
domain
][
slot
]
...
...
@@ -391,7 +391,7 @@ class MultiWozEvaluator(Evaluator):
if
domain
in
self
.
goal
and
'
book
'
in
self
.
goal
[
domain
]:
goal
[
domain
][
'
book
'
]
=
self
.
goal
[
domain
][
'
book
'
]
for
da
in
self
.
usr_da_array
:
d
,
i
,
s
,
v
=
da
.
split
(
'
-
'
,
3
)
d
,
i
,
s
,
v
=
da
.
split
(
'
_
'
,
3
)
if
i
in
[
'
inform
'
,
'
recommend
'
,
'
offerbook
'
,
'
offerbooked
'
]
and
s
in
mapping
[
d
]:
goal
[
d
][
'
info
'
][
mapping
[
d
][
s
]]
=
v
score
=
self
.
_book_rate_goal
(
goal
,
self
.
booked
)
...
...
@@ -409,7 +409,7 @@ class MultiWozEvaluator(Evaluator):
if
domain
in
self
.
goal
and
'
book
'
in
self
.
goal
[
domain
]:
goal
[
domain
][
'
book
'
]
=
self
.
goal
[
domain
][
'
book
'
]
for
da
in
self
.
usr_da_array
:
d
,
i
,
s
,
v
=
da
.
split
(
'
-
'
,
3
)
d
,
i
,
s
,
v
=
da
.
split
(
'
_
'
,
3
)
if
i
in
[
'
inform
'
,
'
recommend
'
,
'
offerbook
'
,
'
offerbooked
'
]
and
s
in
mapping
[
d
]:
goal
[
d
][
'
info
'
][
mapping
[
d
][
s
]]
=
v
score
=
self
.
_book_goal_constraints
(
goal
,
self
.
booked_states
)
...
...
@@ -441,7 +441,7 @@ class MultiWozEvaluator(Evaluator):
else
:
goal
=
self
.
_init_dict
()
for
da
in
self
.
usr_da_array
:
d
,
i
,
s
,
v
=
da
.
split
(
'
-
'
,
3
)
d
,
i
,
s
,
v
=
da
.
split
(
'
_
'
,
3
)
if
i
in
[
'
inform
'
,
'
recommend
'
,
'
offerbook
'
,
'
offerbooked
'
]
and
s
in
mapping
[
d
]:
goal
[
d
][
'
info
'
][
mapping
[
d
][
s
]]
=
v
elif
i
==
'
request
'
:
...
...
@@ -502,7 +502,7 @@ class MultiWozEvaluator(Evaluator):
if
'
book
'
in
self
.
goal
[
domain
]:
goal
[
domain
][
'
book
'
]
=
self
.
goal
[
domain
][
'
book
'
]
for
da
in
self
.
usr_da_array
:
d
,
i
,
s
,
v
=
da
.
split
(
'
-
'
,
3
)
d
,
i
,
s
,
v
=
da
.
split
(
'
_
'
,
3
)
if
d
!=
domain
:
continue
if
i
in
[
'
inform
'
,
'
recommend
'
,
'
offerbook
'
,
'
offerbooked
'
]
and
s
in
mapping
[
d
]:
...
...
@@ -529,7 +529,7 @@ class MultiWozEvaluator(Evaluator):
if
'
book
'
in
self
.
goal
[
domain
]:
goal
[
domain
][
'
book
'
]
=
self
.
goal
[
domain
][
'
book
'
]
for
da
in
self
.
usr_da_array
:
d
,
i
,
s
,
v
=
da
.
split
(
'
-
'
,
3
)
d
,
i
,
s
,
v
=
da
.
split
(
'
_
'
,
3
)
if
d
!=
domain
:
continue
if
i
in
[
'
inform
'
,
'
recommend
'
,
'
offerbook
'
,
'
offerbooked
'
]
and
s
in
mapping
[
d
]:
...
...
@@ -664,7 +664,11 @@ class MultiWozEvaluator(Evaluator):
def
evaluate_dialog
(
self
,
goal
,
user_acts
,
system_acts
,
system_states
):
if
isinstance
(
goal
,
dict
):
self
.
add_goal
(
goal
)
else
:
self
.
add_goal
(
goal
.
domain_goals
)
for
sys_act
,
sys_state
,
user_act
in
zip
(
system_acts
,
system_states
,
user_acts
):
self
.
add_sys_da
(
sys_act
,
sys_state
)
self
.
add_usr_da
(
user_act
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment