Is it possible to add two NERs into one Pipeline? #11297
rsoika
started this conversation in
Help: Best practices
Replies: 1 comment 1 reply
-
Hello, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I wonder if it is possible to add two different NER in one pipeline. My idea is to start with the existing
en_core_web_sm
model, which already provides some useful entities.Now I want to add my own second NER and train some different entity (with the hope that my new NER will benefit form the existing).
I understand that I have to disable during training the pipes from the pretrained
en_core_web_sm
model to avoid the catastrophic forgetting.But when I try to call the update method I got the following error:
I think the "O" is an entity from the NER in the "en_core_web_sm" model that I thought was disabled?
So my question is: is it possible to train different NERs in one pipeline?
Beta Was this translation helpful? Give feedback.
All reactions