I am trying to use lookup table for entities but its not working… I am sharing my code. nlu.yml
- lookup: loantype
examples: |
- Personal Loan
- Education Loan
config.yml pipeline:
- name: WhitespaceTokenizer
- name: CRFEntityExtractor
- name: LexicalSyntacticFeaturizer
- name: CountVectorsFeaturizer
- name: CountVectorsFeaturizer analyzer: char_wb min_ngram: 1 max_ngram: 4
- name: DIETClassifier epochs: 100 entity_recognition: False
- name: RegexEntityExtractor
- name: EntitySynonymMapper
Whenever i am trying to train it giving the error like this:- YamlSyntaxException: Failed to read ‘data\nlu.yml’. while scanning a block scalar in “data\nlu.yml”, line 146, column 13 found a tab character where an indentation space is expected in “data\nlu.yml”, line 151, column 1
Please help me out and explain. thank you