Use source NER pipeline component with spacy-legacy (config file) #7263
-
I am trying to continue the training of
That is because the trained component use a deprecated version of I also tried to replace
with
which is the section that describes the Do I have to override from This is my config file:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi! Apologies for the late follow-up.
This should in fact happen automatically. I tried reproducing your issue by copy-pasting the config as you had it, but I can't reproduce the error message you're getting. What specific versions of When looking into your config file, there's one other point I'd like to note. The components that you're sourcing, will be taken as is from the models. That also means that you don't have to specify the So, in short, you can just remove the entire This shouldn't really interfer with the problem about |
Beta Was this translation helpful? Give feedback.
-
I was able to resolve the above issue by downgrading spacy from 3.1.3 to 3.1.0 |
Beta Was this translation helpful? Give feedback.
Hi! Apologies for the late follow-up.
This should in fact happen automatically. I tried reproducing your issue by copy-pasting the config as you had it, but I can't reproduce the error message you're getting. What specific versions of
spacy
andspacy-legacy
do you have installed?When looking into your config file, there's one other point I'd like to note. The components that you're sourcing, will be taken as is from the models. That also means that you don't have to specify the
model
architecture of these components - thi…