I want to use only these pipeline as my requirement is entity extraction from lookup files and regex matching for a given input. pipeline:
- name: SpacyNLP case_sensitive: true
- name: SpacyTokenizer
- name: RegexFeaturizer
- name: SpacyFeaturizer
- name: CRFEntityExtractor
- name: “regex.RegexEntityExtractor”
- name: EntitySynonymMapper
- name: SklearnIntentClassifier
I don’t have any requirement of building a chat bot. Do I need to install entire rasa tool? Since my requirement is not so big, I feel like installing entire rasa tool creates a huge footprint. Is there any other way? I am new to nlp and rasa. Any suggestions are welcome.