I've trained a model and now would like to use ner.correct to work on it further. However, when I attempt to run the command I get the following error message:
command: prodigy ner.correct counternext3 blank:en defenseaerospace.jsonl --label [LABELS]
Error: "Can't find component 'ner' in pipeline. Make sure that the pipeline
you're using includes a trained entity recognizer that you can correct. If your
component has a different name, you can use the --component option to specify
it."
When I check in spacy, there is an NER entity in the package.
[('tok2vec', <spacy.pipeline.tok2vec.Tok2Vec object at 0x7ff4a82b47c0>), ('ner', <spacy.pipeline.ner.EntityRecognizer object at 0x7ff4484b1120>)]
Any help would be appreciated.