I am trying entity extraction. for that, I added MitieEntityExtractor
in my pipeline. As per the rasa document, to use MitieEntityExtractor MitieNLP
is required. So I as per the document I install
pip3 install git+https://github.com/mit-nlp/MITIE.git
pip3 install rasa[mitie]
mitin using the above commands. After that add mitin in my pipeline like this:
- name: "MitieNLP"
model: "data/total_word_feature_extractor.dat"
- name: DIETClassifier
- name: "MitieEntityExtractor"
- name: RegexEntityExtractor
use_lookup_tables: True
use_regexes: True
- name: WhitespaceTokenizer
- name: RegexFeaturizer
So now when I try to train my model it throwing me errors, like these:
MissingDependencyException: Not all required importable packages are installed to use the configured NLU pipeline. To use this pipeline, you need to install the missing modules:
- mitie (needed for MitieNLP, MitieEntityExtractor)
Please install the packages that contain the missing modules.
Can anyone tell me what wrongs with my setup?