KeyError: 'ner_crf'

I am trying to evaluate my model. It works well with the ‘spacy’ learning module, but it does not work with Tensor flow. I get the error “KeyError: ‘ner_crf’” how can I correct this?

show your config file

language: “en”

pipeline: “tensorflow_embedding”

This is what is contained in the config file.

Can you try using this to see if the error goes away?

language: "en"

pipeline:
- name: "tokenizer_whitespace"
- name: "ner_crf"
- name: "ner_synonyms"
- name: "intent_featurizer_count_vectors"
- name: "intent_classifier_tensorflow_embedding"