RasaHQ / rasa

💬 Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants
https://rasa.com/docs/rasa/
Apache License 2.0
18.88k stars 4.63k forks source link

Slot filling not working if slot already has same value #5011

Closed samscudder closed 4 years ago

samscudder commented 4 years ago

Rasa version: 1.4.6

Rasa SDK version (if used & relevant):

Rasa X version (if used & relevant):

Python version: 3.6.9 (anaconda)

Operating system (windows, osx, ...): RHEL 7 (CentOS)

Issue: If you try and set a slot with the same value that's already in the slot, the results are unpredictable. Sometime I get a fallback action, sometimes I get a different value or no value in the slot, even though the debug information shows the slot contains the right value.

I have an intent where I display 3 buttons for the tester to choose the profile he wants to test. The bot responds differently depending on the profile set. The show_profile intent is called by the buttons like this (for the three buttons):

Just /show_profile will show me the currently set profile. This was made based on a blank "rasa init"

If I set the same profile twice in a row, I get unpredictable results. Here's a sample conversation (debug version below):

Your input ->  who am i?                                                                                                                                                                                                                      
No profile set
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
I'm VIP
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile                                                                                                                                                                                                                  
I'm VIP
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
No profile set
Your input ->  /show_profile                                                                                                                                                                                                                  
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                                                                                                                                           
I'm standard
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
I'm VIP
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                                                                                                                                                
Fallback... Didn't understand.
Your input ->  /show_profile                                                                                                                                                                                                                  
I'm VIP
Your input ->  

Error (including full traceback):

$ rasa shell --debug
2019-12-20 10:54:13 DEBUG    rasa.model  - Extracted model to '/tmp/tmpwmm_pckd'.
2019-12-20 10:54:13 DEBUG    rasa.cli.utils  - Parameter 'endpoints' not set. Using default location 'endpoints.yml' instead.
2019-12-20 10:54:13 DEBUG    rasa.cli.utils  - Parameter 'credentials' not set. Using default location 'credentials.yml' instead.
2019-12-20 10:54:13 DEBUG    rasa.model  - Extracted model to '/tmp/tmp30m1luqh'.
2019-12-20 10:54:14 INFO     root  - Connecting to channel 'cmdline' which was specified by the '--connector' argument. Any other channels will be ignored. To connect to all given channels, omit the '--connector' argument.
2019-12-20 10:54:14 DEBUG    sanic.root  - CORS: Configuring CORS with resources: {'/*': {'origins': [''], 'methods': 'DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT', 'allow_headers': ['.*'], 'expose_headers': None, 'supports_credentials': True, 'max_age': None, 'send_wildcard': False, 'automatic_options': True, 'vary_header': True, 'resources': {'/*': {'origins': ''}}, 'intercept_exceptions': True, 'always_send': True}}
2019-12-20 10:54:14 DEBUG    rasa.core.utils  - Available web server routes: 
/webhooks/rest                                     GET                            custom_webhook_CmdlineInput.health
/webhooks/rest/webhook                             POST                           custom_webhook_CmdlineInput.receive
/                                                  GET                            hello
2019-12-20 10:54:14 INFO     root  - Starting Rasa server on http://localhost:5005
2019-12-20 10:54:14 INFO     root  - Enabling coroutine debugging. Loop id 94800492976808.
2019-12-20 10:54:14 DEBUG    rasa.model  - Extracted model to '/tmp/tmpd_ww121o'.
2019-12-20 10:54:14 INFO     numexpr.utils  - NumExpr defaulting to 2 threads.
2019-12-20 10:54:17 INFO     absl  - Entry Point [tensor2tensor.envs.tic_tac_toe_env:TicTacToeEnv] registered with id [T2TEnv-TicTacToeEnv-v0]
2019-12-20 10:54:18 DEBUG    rasa.core.tracker_store  - Connected to MongoTrackerStore.
2019-12-20 10:54:18 DEBUG    rasa.core.lock_store  - Connected to lock store 'InMemoryLockStore'.
2019-12-20 10:54:18 DEBUG    rasa.model  - Extracted model to '/tmp/tmpddmvmvj4'.
2019-12-20 10:54:18 DEBUG    pykwalify.compat  - Using yaml library: /home/sscudder/anaconda3/envs/Especialista/lib/python3.6/site-packages/ruamel/yaml/__init__.py
Bot loaded. Type a message and press enter (use '/stop' to exit): 
Your input ->  who am i?                                                                                              
2019-12-20 10:58:43 DEBUG    rasa.core.processor  - Received user message 'who am i?' with intent '{'name': 'show_profile', 'confidence': 0.9996775388717651}' and entities '[]'
2019-12-20 10:58:43 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 2 events
2019-12-20 10:58:43 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:58:43 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:58:43 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '17'
2019-12-20 10:58:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:58:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:58:44 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_none' with confidence 1.00.
2019-12-20 10:58:44 DEBUG    rasa.core.processor  - Action 'utter_slot_none' ended with events '['BotUttered(text: No profile set, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:58:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:58:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_none': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 10:58:44 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '0'
2019-12-20 10:58:44 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:58:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:58:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:58:44 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:58:44 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:58:44 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
No profile set
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Current slot values: 
    profile: vip
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 7 events
2019-12-20 10:58:59 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:58:59 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:58:59 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_vip' with confidence 0.99.
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Action 'utter_slot_vip' ended with events '['BotUttered(text: I\'m VIP, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:58:59 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_vip': 1.0}]
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_vip': 1.0}]
2019-12-20 10:58:59 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:58:59 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:58:59 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:58:59 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:58:59 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:58:59 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm VIP
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Current slot values: 
    profile: vip
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 12 events
2019-12-20 10:59:19 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:19 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:19 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:19 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 10:59:19 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:19 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:19 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:19 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:19 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile                                                                                          
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Received user message '/show_profile' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[]'
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 16 events
2019-12-20 10:59:28 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:28 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:28 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '19'
2019-12-20 10:59:28 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:28 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_vip' with confidence 1.00.
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Action 'utter_slot_vip' ended with events '['BotUttered(text: I\'m VIP, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:28 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:28 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_vip': 1.0}]
2019-12-20 10:59:28 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '0'
2019-12-20 10:59:28 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:28 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:28 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:28 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:28 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm VIP
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Current slot values: 
    profile: standard
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 21 events
2019-12-20 10:59:36 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:36 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:36 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 1.00.
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:36 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 10:59:36 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:36 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:36 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:36 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:36 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:36 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Current slot values: 
    profile: standard
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 26 events
2019-12-20 10:59:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_none' with confidence 0.75.
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Action 'utter_slot_none' ended with events '['BotUttered(text: No profile set, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_none': 1.0}]
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_none': 1.0}]
2019-12-20 10:59:44 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 10:59:44 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:44 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:44 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
No profile set
Your input ->  /show_profile                                                                                          
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Received user message '/show_profile' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[]'
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 30 events
2019-12-20 10:59:50 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 10:59:50 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '18'
2019-12-20 10:59:50 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:50 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 1.00.
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 10:59:50 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 10:59:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 10:59:50 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '0'
2019-12-20 10:59:50 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 10:59:50 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 10:59:50 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 10:59:50 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 10:59:50 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Current slot values: 
    profile: standard
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 35 events
2019-12-20 11:00:08 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:08 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:08 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.70.
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:08 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:08 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:08 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:08 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:08 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:08 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:08 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Current slot values: 
    profile: standard
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 40 events
2019-12-20 11:00:11 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:11 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:11 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:11 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:11 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:11 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:11 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:11 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:11 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Current slot values: 
    profile: standard
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 45 events
2019-12-20 11:00:14 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:14 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:14 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.70.
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:14 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:14 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:14 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:14 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:14 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:14 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:14 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Current slot values: 
    profile: standard
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 50 events
2019-12-20 11:00:16 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:16 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:16 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.71.
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:16 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:16 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:16 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:16 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:16 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:16 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:16 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Current slot values: 
    profile: standard
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 55 events
2019-12-20 11:00:19 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:19 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:19 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:19 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:19 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:19 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:19 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:19 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:19 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Current slot values: 
    profile: standard
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 60 events
2019-12-20 11:00:21 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:21 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:21 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.70.
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:21 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:21 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:21 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:21 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:21 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:21 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:21 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "standard"}                                                                   
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "standard"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 36, 'value': 'standard'}]'
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Current slot values: 
    profile: standard
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 65 events
2019-12-20 11:00:25 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:25 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:25 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_standard' with confidence 0.71.
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Action 'utter_slot_standard' ended with events '['BotUttered(text: I\'m standard, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:25 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'prev_utter_slot_standard': 1.0, 'slot_profile_1': 1.0, 'intent_show_profile': 1.0}]
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_standard': 1.0}]
2019-12-20 11:00:25 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:25 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:25 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:25 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:25 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:25 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm standard
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Current slot values: 
    profile: vip
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 70 events
2019-12-20 11:00:34 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:34 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:34 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_vip' with confidence 1.00.
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Action 'utter_slot_vip' ended with events '['BotUttered(text: I\'m VIP, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:34 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_vip': 1.0}]
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_slot_vip': 1.0}]
2019-12-20 11:00:34 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:34 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:34 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:34 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_2_KerasPolicy
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:34 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:34 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm VIP
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Current slot values: 
    profile: vip
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 75 events
2019-12-20 11:00:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:44 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:44 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:44 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:44 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:44 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:44 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:44 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Current slot values: 
    profile: vip
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 80 events
2019-12-20 11:00:46 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:46 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:46 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:46 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:46 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:46 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:46 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:46 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:46 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:47 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:47 DEBUG    rasa.core.processor  - Current slot values: 
    profile: vip
2019-12-20 11:00:47 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 85 events
2019-12-20 11:00:47 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:47 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:47 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:48 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:48 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:48 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:48 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:48 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:48 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:48 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:48 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:48 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:48 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:48 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile{"profile": "vip"}                                                                        
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Received user message '/show_profile{"profile": "vip"}' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[{'entity': 'profile', 'start': 13, 'end': 31, 'value': 'vip'}]'
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Current slot values: 
    profile: vip
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 90 events
2019-12-20 11:00:50 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:50 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:50 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Predicted next action 'utter_default' with confidence 0.70.
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Action 'utter_default' ended with events '['BotUttered(text: Fallback... Didn\'t understand., data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:50 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'entity_profile': 1.0, 'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_default': 1.0}]
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Launch DeLorean...
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'prev_utter_default': 1.0}]
2019-12-20 11:00:50 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2019-12-20 11:00:50 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:50 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_4_FallbackPolicy
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:50 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:50 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
Fallback... Didn't understand.
Your input ->  /show_profile                                                                                          
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Received user message '/show_profile' with intent '{'name': 'show_profile', 'confidence': 1.0}' and entities '[]'
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 94 events
2019-12-20 11:00:56 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:56 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_action_listen': 1.0}]
2019-12-20 11:00:56 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '19'
2019-12-20 11:00:56 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:56 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Predicted next action 'utter_slot_vip' with confidence 1.00.
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Action 'utter_slot_vip' ended with events '['BotUttered(text: I\'m VIP, data: {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, metadata: {})']'
2019-12-20 11:00:56 DEBUG    rasa.core.policies.form_policy  - There is no active form
2019-12-20 11:00:56 DEBUG    rasa.core.policies.memoization  - Current tracker state [{'slot_profile_0': 1.0, 'intent_show_profile': 1.0, 'prev_utter_slot_vip': 1.0}]
2019-12-20 11:00:56 DEBUG    rasa.core.policies.memoization  - There is a memorised next action '0'
2019-12-20 11:00:56 DEBUG    rasa.core.policies.mapping_policy  - There is no mapped action for the predicted intent, 'show_profile'.
2019-12-20 11:00:56 DEBUG    rasa.core.policies.fallback  - NLU confidence threshold met, confidence of fallback action set to core threshold (0.7).
2019-12-20 11:00:56 DEBUG    rasa.core.policies.ensemble  - Predicted next action using policy_1_AugmentedMemoizationPolicy
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2019-12-20 11:00:56 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'
2019-12-20 11:00:56 DEBUG    rasa.core.lock_store  - Deleted lock for conversation 'default'.
I'm VIP
Your input ->  

Command or request that led to error:

rasa shell

Content of configuration file (config.yml) (if relevant):

# Configuration for Rasa NLU.
# https://rasa.com/docs/rasa/nlu/components/
language: pt
pipeline:
  - name: "WhitespaceTokenizer"
  - name: "RegexFeaturizer"
  - name: "CRFEntityExtractor"
  - name: "EntitySynonymMapper"
  - name: "CountVectorsFeaturizer"
    strip_accents: "unicode"
    analyzer: "char_wb"
    min_ngram: 1
    max_ngram: 4
  - name: "EmbeddingIntentClassifier"
    random_seed: 2614

# Configuration for Rasa Core.
# https://rasa.com/docs/rasa/core/policies/
policies:
  - name: FormPolicy
  - name: AugmentedMemoizationPolicy
    max_history: 1
  - name: KerasPolicy
    validation_split: 0.2
    batch_size: 32
    epochs: 200
  - name: MappingPolicy
  - name: FallbackPolicy
    nlu_threshold: 0.7
    core_threshold: 0.7
    fallback_action_name: "utter_default"

Content of domain file (domain.yml) (if relevant):

intents:
  - greet
  - goodbye
  - affirm
  - deny
  - mood_great
  - mood_unhappy
  - bot_challenge
  - define_slots
  - show_profile

actions:
- utter_greet
- utter_cheer_up
- utter_did_that_help
- utter_happy
- utter_goodbye
- utter_iamabot
- utter_default
- utter_slot_vip
- utter_slot_standard
- utter_slot_anonimous
- utter_slot_none
- utter_setslot

entities:
  - profile

slots:
  profile:
    type: categorical
    values:
    - vip
    - standard
    - anonimous

templates:
  utter_greet:
  - text: "Hi! How are you feeling today?"

  utter_cheer_up:
  - text: "Here is something to cheer you up:"
    image: "https://i.imgur.com/nGF1K8f.jpg"

  utter_did_that_help:
  - text: "Did that help you?"

  utter_happy:
  - text: "Great, carry on!"

  utter_goodbye:
  - text: "Bye"

  utter_iamabot:
  - text: "I am a bot, powered by Rasa."

  utter_default:
  - text: "Fallback... Didn't understand."

  utter_setslot:
    - text: Selecione Perfil
      buttons:
      - title: vip
        payload: '/show_profile{"profile" : "vip"}'
      - title: standard
        payload: '/show_profile{"profile" : "standard"}'
      - title: anonimous
        payload: '/show_profile{"profile" : "anonimous"}'

  utter_slot_vip:
    - text: I'm VIP

  utter_slot_standard:
    - text: I'm standard

  utter_slot_anonimous:
    - text: I'm anonimous

  utter_slot_none:
    - text: "No profile set"

Content of nlu file (nlu.md):

## intent:greet
- hey
- hello
- hi
- good morning
- good evening
- hey there

## intent:goodbye
- bye
- goodbye
- see you around
- see you later

## intent:affirm
- yes
- indeed
- of course
- that sounds good
- correct

## synonym:yes
- sim
- correto
- right
- absolutely
- righto

## intent:deny
- no
- never
- "I don't think so"
- "don't like that"
- no way
- not really

## intent:mood_great
- perfect
- very good
- great
- amazing
- wonderful
- I am feeling very good
- I am great
- "I'm good"

## intent:mood_unhappy
- sad
- very sad
- unhappy
- bad
- very bad
- awful
- terrible
- not very good
- extremely sad
- so sad

## intent:bot_challenge
- are you a bot?
- are you a human?
- am I talking to a bot?
- am I talking to a human?

## intent:define_slots
- I want to change my profile
- I want to alter my profile
- change profile
- swap my profile
- set profile
- choose profile

## intent:show_profile
- who am I?
- what am I?
- show me slots
- show profile
- let me see my profile
- display profile

Content of stories file (stories.md):

## happy path
* greet
  - utter_greet
* mood_great
  - utter_happy

## sad path 1
* greet
  - utter_greet
* mood_unhappy
  - utter_cheer_up
  - utter_did_that_help
* affirm
  - utter_happy

## sad path 2
* greet
  - utter_greet
* mood_unhappy
  - utter_cheer_up
  - utter_did_that_help
* deny
  - utter_goodbye

## say goodbye
* goodbye
  - utter_goodbye

## bot challenge
* bot_challenge
  - utter_iamabot

## set_slots
* define_slots
  - utter_setslot

## show_profile_vip
* show_profile
  - slot{"profile" : "vip"}
  - utter_slot_vip

## show_profile_standard
* show_profile
  - slot{"profile" : "standard"}
  - utter_slot_standard

## show_profile_anonimous
* show_profile
  - slot{"profile" : "anonimous"}
  - utter_slot_anonimous

## show_profile
* show_profile
  - utter_slot_none
amn41 commented 4 years ago

the problem might be a mismatch between your stories and button payloads. In your stories you have

## show_profile_vip
* show_profile
  - slot{"profile" : "vip"}
  - utter_slot_vip

but your button payloads look lik /show_profile{"profile": "vip"}. I see you have the slots there in the stories, but in your button payload you are setting the slot via an entity (entities are also used to predict the next action).

can you try changing your domain to:

intents:
- show_profile:
    use_entities: []

see https://rasa.com/docs/rasa/core/domains/#ignoring-entities-for-certain-intents

samscudder commented 4 years ago

Learned something new there, but.... this throws an error when I try and train it:

properties.setdefault("use_entities", True)
AttributeError: 'NoneType' object has no attribute 'setdefault'

domain.py line 211 in 1.4.6 and line 256 in 1.6.0

I also tried

ignore_entities:
- profile

With the same result. I also tried setting an initial_value.

erohmensing commented 4 years ago

@samscudder can you post the full traceback for the 'NoneType' object has no attribute 'setdefault' error? also can you post the yaml for how you defined the intent itself? looks like you may not have put the ignore_entities under the show_profile intent?

samscudder commented 4 years ago

Here's what happens when I add use_entities: [] to the intent in domain.yml

$ rasa train --force
Traceback (most recent call last):
  File "/home/user/anaconda3/envs/ChatAna/bin/rasa", line 8, in <module>
    sys.exit(main())
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/__main__.py", line 76, in main
    cmdline_arguments.func(cmdline_arguments)
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/cli/train.py", line 76, in train
    kwargs=extract_additional_arguments(args),
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/train.py", line 45, in train
    kwargs=kwargs,
  File "uvloop/loop.pyx", line 1456, in uvloop.loop.Loop.run_until_complete
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/train.py", line 83, in train_async
    domain = await file_importer.get_domain()
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/importers/importer.py", line 242, in get_domain
    domains = await asyncio.gather(*domains)
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/importers/rasa.py", line 65, in get_domain
    domain = Domain.load(self._domain_path)
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/core/domain.py", line 70, in load
    other = cls.from_path(path)
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/core/domain.py", line 80, in from_path
    domain = cls.from_file(path)
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/core/domain.py", line 93, in from_file
    return cls.from_yaml(rasa.utils.io.read_file(path))
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/core/domain.py", line 103, in from_yaml
    return cls.from_dict(data)
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/core/domain.py", line 119, in from_dict
    **additional_arguments,
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/core/domain.py", line 282, in __init__
    self.intent_properties = self.collect_intent_properties(intents)
  File "/home/user/anaconda3/envs/ChatAna/lib/python3.6/site-packages/rasa/core/domain.py", line 211, in collect_intent_properties
    properties.setdefault("use_entities", True)
AttributeError: 'NoneType' object has no attribute 'setdefault'
erohmensing commented 4 years ago

Here's what happens when I add use_entities: [] to the intent in domain.yml

Can you post the whole relevant section please

samscudder commented 4 years ago

It's what @amn41 suggested... Adding use_entities: [] to the intent definition in domain.yml.

intents:
  - greet
  - goodbye
  - affirm
  - deny
  - mood_great
  - mood_unhappy
  - bot_challenge
  - define_slots
  - show_profile:
    use_entitites: []

actions:
- utter_greet
- utter_cheer_up
- utter_did_that_help
- utter_happy
- utter_goodbye
- utter_iamabot
- utter_default
- utter_slot_vip
- utter_slot_standard
- utter_slot_anonimous
- utter_slot_none
- utter_setslot

entities:
  - profile

slots:
  profile:
    type: categorical
    values:
    - vip
    - standard
    - anonimous

templates:
  utter_greet:
  - text: "Hi! How are you feeling today?"

  utter_cheer_up:
  - text: "Here is something to cheer you up:"
    image: "https://i.imgur.com/nGF1K8f.jpg"

  utter_did_that_help:
  - text: "Did that help you?"

  utter_happy:
  - text: "Great, carry on!"

  utter_goodbye:
  - text: "Bye"

  utter_iamabot:
  - text: "I am a bot, powered by Rasa."

  utter_default:
  - text: "Fallback... Didn't understand."

  utter_setslot:
    - text: Selecione Perfil
      buttons:
      - title: vip
        payload: '/show_profile{"profile" : "vip"}'
      - title: standard
        payload: '/show_profile{"profile" : "standard"}'
      - title: anonimous
        payload: '/show_profile{"profile" : "anonimous"}'

  utter_slot_vip:
    - text: I'm VIP

  utter_slot_standard:
    - text: I'm standard

  utter_slot_anonimous:
    - text: I'm anonimous

  utter_slot_none:
    - text: "No profile set"
erohmensing commented 4 years ago

Thanks for posting your code copy, as i expected, this is a YAML formatting issue. add 2 spaces before use_entities: like in his example:

intents:
  - greet
  - goodbye
  - affirm
  - deny
  - mood_great
  - mood_unhappy
  - bot_challenge
  - define_slots
  - show_profile:
      use_entitites: []
erohmensing commented 4 years ago

You can check the difference using https://onlineyamltools.com/convert-yaml-to-json:

Screenshot 2020-01-02 at 18 01 06 Screenshot 2020-01-02 at 18 00 58

Also right now you have use_entitities instead of use_entities, I just noticed

erohmensing commented 4 years ago

Closing as this should have fixed the issue, feel free to reopen if you still are having issues.