Rasa not identifying "get_picture" intent

0

I am quite new to Rasa. I am trying to get it to identify the “get pictures” internet. This is what my nlu.yml looks like for this:

- intent: get_picture
  examples: |
    - Can I see a picture
    - Show me a picture
    - I want to see a picture
    - Display a picture
    - Bring up a picture
    - I want to see a picture

And this is what domain.yml looks like:

intents:
  - get_picture
  - greet
  - goodbye
  - affirm
  - deny
  - mood_great
  - mood_unhappy
  - bot_challenge

Despite this, Rasa almost always fails to identify the get_picture intent, once in a while it does it, but 90% of the time it fails, even if I copy-paste the examples. I did re-train Rasa. What else can I troubleshoot?

Run Rasa shell with the --debug option to get more data. You can also run rasa shell nlu and just see the nlu prediction.