NER training with custom wordvectors #12541
-
I have custom wordvectors in spacy model, that i want to use for NER training. The spacy model is saved as folder-structure, the wordvectors are stored in its vocab. How do i load the model, or the vectors in the training config? Current config:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Followup question since i mix up model/component/pipeline.
So should i add my ner-model like the senter-model with add_pipe()?
and reload it with
So in short: I train different models for different components. Is that the way to go, or should i export the whole model so i can use it like
Because this way i could easily use it in my traing config. |
Beta Was this translation helpful? Give feedback.
Found the solution. Had to remake the base.config, added the full path to my Model to vectors = remade the full config and bingo! Its training with my own vectors now.