Skip to content

Commit

Permalink
removed printouts
Browse files Browse the repository at this point in the history
  • Loading branch information
sungjinl committed Jun 4, 2019
1 parent 42738a0 commit 403c6df
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion convlab/modules/policy/system/multiwoz/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,6 @@ def get_info_state(belief_state):
booking.append(0)
else:
if belief_state[domain]['book'][slot] != "":
print("domain {} booking set".format(domain))
booking.append(1)
else:
booking.append(0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ def get_info_state(self, belief_state):
booking.append(0)
else:
if belief_state[domain]['book'][slot] != "":
print("domain {} booking set".format(domain))
booking.append(1)
else:
booking.append(0)
Expand Down
1 change: 0 additions & 1 deletion convlab/modules/word_policy/multiwoz/mdrg/predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ def get_summary_bstate(bstate):
booking.append(0)
else:
if bstate[domain]['book'][slot] != "":
print("domain {} booking set".format(domain))
booking.append(1)
else:
booking.append(0)
Expand Down

0 comments on commit 403c6df

Please sign in to comment.