This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import absolute_import | |
from __future__ import division | |
from __future__ import print_function | |
from __future__ import unicode_literals | |
# from rasa_nlu.converters import load_data | |
from rasa_nlu.training_data import load_data | |
from rasa_nlu.config import RasaNLUModelConfig | |
#from rasa_nlu.config import RasaNLUConfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: "en" | |
pipeline: | |
- name: "nlp_spacy" | |
model: "en" | |
- name: "tokenizer_spacy" | |
- name: "ner_crf" | |
- name: "intent_featurizer_spacy" | |
- name: "intent_classifier_sklearn" |