I’ve trained rasa_nlu on the following intent, where I’ve 6 entities:
3 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_gp
I gave sufficient training examples. When I hit rasa_nlu server with a similar line, I’m getting proper entities and intent predictions with high confidence, but when I put several such lines in an array and hit the server repeatedly in a loop, like:
3 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 rcu_gp
143 root 20 0 45228 5436 4892 S 0.0 0.2 0:00.04 wpa_supplicant
27 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 tpm_dev_wq
few entities are missed for certain examples, rasa_nlu doesn’t even pick them. It picks like 4 or 5 entities and misses one or two. It’s happening in a random manner. You can’t say for which example all the entities are detected and for which a few are skipped. So when given a data set that has around 200 such examples, all the 6 entities are being detected for not more than 100 examples, for the rest, rasa_nlu is missing out on an entity or two. But the confidence is pretty high (> 96%) when all the entities are successfully predicted. I’m using CRF entity extractor as I’ve a lot of custom entities to deal with. Please suggest a solution asap. Thank You.