my training data looks like
intent:welcome intent
- hey
- hello
- hi
- good morning
- good evening
- hey there
##intent:ask for date
and config file pipeline:
- name: “tokenizer_whitespace”
- name: “intent_entity_featurizer_regex”
- name: “ner_crf”
- name: “ner_synonyms”
- name: “intent_featurizer_count_vectors”
- name: “intent_classifier_tensorflow_embedding” intent_tokenization_flag: true intent_split_symbol: “+”
- name: “ner_duckling_http” url: “http://duckling:8000” dimensions: [“time”]
when i am doing get call using 127.0.0.1:5002/parse?q=today&project=current, i want it should give me value “value”:“2018-05-31T00:00:00.000+01:00” but it is giving “value”:today and entity extractor:ner_crf. any help???how i can get this value…