I wouldn’t mind reproducing your steps, but in order to do that I’d also like to see your nlu.md file. It is fine it it only has a few examples in it but that way I can produce my own model and mimic what you are doing.
Feel free to just paste it in here with as code, for example;
## intent:greet
- hey
- hello
- hi
- good morning
- good evening
- hey there
The nlu.md file contains examples of each intent so that the ML part can learn from it. An example portion from the rasa starter is listed below.
## intent:greet
- hey
- hello
- hi
- good morning
- good evening
- hey there
## intent:mood_great
- perfect
- very good
- great
- amazing
- wonderful
- I am feeling very good
- I am great
- I'm good
What I received from you looks like a stories.md file without example of each intent.
## story 01
* greet
-utter_greet
## story 02
* bye
-utter_goodbye
## story 03
* request
-utter_ask_acc
## story 04
* install
-utter_ask_app
## story 05
* request
-action_helpdesk
## story 06
* install
-action_helpdesk
Without the file that contains examples of the intents it would be hard to reproduce what you’ve got.
> rasa interactive
? Your input -> install python
? Your NLU model classified 'install python' with intent 'installation' and there are no entities, is this correct? Yes
------
Chat History
# Bot You
────────────────────────────────────────────────────────────
1 action_listen
────────────────────────────────────────────────────────────
2 hi install
intent: greet 0.36
────────────────────────────────────────────────────────────
3 utter_greet 1.00
Hello! How can I help?
action_listen 1.00
────────────────────────────────────────────────────────────
4 install python
intent: installation 0.98
Current slots:
accessory: None, application: None
------
? The bot wants to run 'action_helpdesk', correct? Yes
/Users/Vincent/Development/help-somebody/venv/lib/python3.7/site-packages/rasa/utils/common.py:351: UserWarning: Action 'action_helpdesk' set a slot type 'accessory' which it never set during the training. This can throw off the prediction. Make sure to include training examples in your stories for the different types of slots this action can return. Remember: you need to set the slots manually in the stories by adding '- slot{"accessory": None}' after the action.
------
Chat History
# Bot You
─────────────────────────────────────────────────────────────
1 action_listen
─────────────────────────────────────────────────────────────
2 hi install
intent: greet 0.36
─────────────────────────────────────────────────────────────
3 utter_greet 1.00
Hello! How can I help?
action_listen 1.00
─────────────────────────────────────────────────────────────
4 install python
intent: installation 0.98
─────────────────────────────────────────────────────────────
5 action_helpdesk 0.45
Here
slot{"accessory": null}
Current slots:
accessory: None, application: None