rasa-nlu

Installing rasa on Windows

江枫思渺然 提交于 2019-11-30 16:33:26
I am trying to install rasa on Windows 10. I am done installing Python 3.6 and pip packege. When I am running pip install rasa_nlu I am getting the following error: c:\program files (x86)\python36-32\include\pyconfig.h(222): fatal error C1083: Cannot open include file: 'basetsd.h': No such file or directory error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' failed with exit status 2 I have tried most of the solutions like reinstalling Microsoft redistributables, installing build tools etc. but none of them worked. I also faced the similar issue. Here's how

How to handle two entity extraction methods in NLP

醉酒当歌 提交于 2019-11-29 12:50:36
I am using two different entity extraction methods ( https://rasa.com/docs/nlu/entities/ ) while building my NLP model in the RASA framework to build a chatbot. The bot should handle different questions which have custom entities as well as some general ones like location or organisation. So I use both components ner_spacy and ner_crf to create the model. After that I build a small helper script in python to evaluate the model performance. There I noticed that the model struggles to choose the correct enity. For example for a word 'X' it choosed the pre-defined enity 'ORG' from SpaCy, but it

How to handle two entity extraction methods in NLP

假如想象 提交于 2019-11-28 06:18:32
问题 I am using two different entity extraction methods (https://rasa.com/docs/nlu/entities/) while building my NLP model in the RASA framework to build a chatbot. The bot should handle different questions which have custom entities as well as some general ones like location or organisation. So I use both components ner_spacy and ner_crf to create the model. After that I build a small helper script in python to evaluate the model performance. There I noticed that the model struggles to choose the