Retrain an existing model with new data of the same entity, and add new entities. Spacy v3 #11039
-
Hello. I am making a model with 10 different entities, and I don´t want to train all the model at once. The problem is that I haven´t found anything useful on the internet. Can someone explain me step by step how to retrain an existing model in spacy using the version 3 please. There are a lot of information but spacy version 2 is being used. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
There are similar questions. |
Beta Was this translation helpful? Give feedback.
-
Hi @berrodriquez26, The best way to see how retraining a NER model works is to check the If you're not familiar on how spaCy Projects work, feel free to check the documentation. You only need to install spaCy and you'll have access to the |
Beta Was this translation helpful? Give feedback.
Hi @berrodriquez26,
The best way to see how retraining a NER model works is to check the
ner_demo_update
project. If you want a step-by-step guide, you can check each step in the project'sproject.yml
file workflows. From there, you should be able to pattern the project on your own dataset / use case.If you're not familiar on how spaCy Projects work, feel free to check the documentation. You only need to install spaCy and you'll have access to the
spacy project
command. You can also clone the saidner_demo_update
project usingspacy project clone
.