I tries to change spacy-model part to the directory where the ner model I trained is located, but it doesn't seem very successful. So I want to ask if I can use the ner model I trained above to label more data?
Then it will generate two model folders in your local directory, one called model-best and another called model-last. The former contains the model with the best scores while the other one contains the model state at the end of the training procedure.
If you want to use this model, you will need to refer to it. In the case of ner.teach the call would look something like:
This call is different from yours. In your example you're pointing the recipe to the ./d3/model-best/ner/model path, which seems like it's a path too deep and not pointing to the model that you've trained. Does this help?
A final tip; you can also use the ner.correct recipe to correct the output of the NER model. Give you're dealing with multiple entity types this might be an interface worth considering too.