Hi All -
I am using rasa-nlu for intent classification and entity extraction. I have trained model with > 50 examples, how ever not all entities are being picked. I am testing with text similar to below but it only picks email id not customer number. Training Example:
{ “text”: “Hi Team, Email address : lee.fairweather@XXXXXX.com Customer # XXXXX34954 Account # XXXX27523 Account Name: lee fairweather Issue: Customer is unable to login to My Portal Screenshot link: Regards, Jaffer S”, “intent”: “liferay”, “entities”: [ { “start”: 123, “end”: 133, “value”: “XXXXX34954”, “entity”: “CUSTOMER_NUMBER” }, { “start”: 81, “end”: 111, “value”: “lee.fairweather@XXXXXX.com”, “entity”: “FAILED_EMAIL” } ] }
Text I am using for testing:
Hi Team, Email Adress : jaylaca@XXXXXX.com Customer # XXXX861753 Account # XXXX23985 Issue: Customer is unable to login to My Portal Regards, Jaffer S
Below is my config: trainer = Trainer(RasaNLUModelConfig({ “language”: “en”, “pipeline”: “tensorflow_embedding”, “path”:model_dir, “data”:data }))
Please help.