Rasa NLU not able to extract entity

I am new to Rasa stack so I started with the Quickstart tutorial. I have downloaded starter-pack-rasa-stack from git and trained model with the given nlu set and stories.When I started the command line bot I see it’s not able to correctly extract entity. Please correct me if I am doing anything wrong

Your input -> hi Hey there! Tell me your name. 127.0.0.1 - - [2019-03-06 08:27:09] “POST /webhooks/rest/webhook?stream=true&token= HTTP/1.1” 200 197 0.039215 Your input -> Katherine Nice to you meet you avinash. How can I help?

it seem that it is able to extract entities only if we give any of the names in the training model

intent:name

You can improve efficiency of entity extraction by adding more training data.

Usually entity extraction for single word response is tricky. You can try lookup tables as well.

Best way to do this is a lookup table. I’ve tried many things, lookup table works best for names.

1 Like