Extending training of an existing SpaCy model for NER #12237
-
Hello, Our team is building a model to perform NER. We would like to utilise SpaCy's existing NER models and categories, for example, For example... We have already annotated several thousand examples of data us Surprisingly, what we have noticed is that performance is not really good for some of the "original spacy" NER entity types, including Our questions are as follows:
I have attached our
Many thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @rory-hurley-gds, we strongly recommend training your own NER model from scratch if your target labels change. One reason for that is fine-tuning may lead to catastrophic forgetting of previously learned labels. It's possible to use spaCy's rehearsal functionality to improve model stability, but retraining from scratch is the go-to approach for this as of now. |
Beta Was this translation helpful? Give feedback.
Hi @rory-hurley-gds, we strongly recommend training your own NER model from scratch if your target labels change. One reason for that is fine-tuning may lead to catastrophic forgetting of previously learned labels. It's possible to use spaCy's rehearsal functionality to improve model stability, but retraining from scratch is the go-to approach for this as of now.
More resources on this issue.