Hi Team
Embedding policy predicting wrong action every time
check story for different action
FIRST
- match_won
- utter_ask_game_type
- inform{“game_type”: “cricket”}
- slot{“game_type”: “cricket”}
- utter_ask_game_name_cricket
- inform{“game_name”: “ONE_DAY”}
- slot{“game_name”: “ONE_DAY”}
- utter_ask_date
- inform{“date”: “last night”}
- slot{“date”: “last night”}
- action_match_won
SECOND
- match_won
- utter_ask_game_type
- inform{“game_type”: “badminton”}
- slot{“game_type”: “badminton”}
- utter_ask_game_name_badminton
- inform{“game_name”: “BWF”}
- slot{“game_name”: “BWF”}
- utter_ask_date
- inform{“date”: “last night”}
- slot{“date”: “last night”}
- action_match_won
predicting the wrong action for story SECOND
actual prediction - utter_ask_game_name_badminton
executed prediction - utter_ask_game_name_cricket
Thanks