Can I position a duckling before or after anything in the pipeline or there is a logic I should follow?
How can I test if duckling or in general the pipeline is working? ( maybe a this is a stupid question)
Right now my pipeline is :
language: "en"
pipeline:
- name: "ner_duckling_http"
# stack from https://haskell-lang.org/get-started/osx
# https://rasa.com/docs/nlu/components/#ner-duckling-http
# https://github.com/facebook/duckling#quickstart
# url of the running duckling server
url: "http://localhost:8000"
# dimensions to extract
dimensions: ["email", "time", "number", "amount-of-money", "distance"]
# allows you to configure the locale, by default the language is
# used
locale: "en_US"
# if not set the default timezone of Duckling is going to be used
# needed to calculate dates from relative expressions like "tomorrow"
timezone: "Europe/Berlin"
- name: "nlp_spacy" # loads the spacy language model
- name: "tokenizer_spacy" # splits the sentence into tokens
- name: "intent_featurizer_spacy" # transform the sentence into a vector representation
- name: "intent_classifier_sklearn" # uses the vector representation to classify using SVM
Hi Marco
I am also working on a password-reset chatbot with RASA. Are you interested in a knowledge exchange? You can contact me on: fioredar@students.zhaw.ch
Greets Dario