How to train a custom NER and preserve the standard entity classification also #9344
Answered
by
polm
DarkSoliditi
asked this question in
Help: Coding & Implementations
-
I was training a custom ner model and it's working great but I was wondering if there was a way to preserve spacy's out of the box entity classifications. I tried to train it with en_core_web_trf loaded instead of spacy.blank('en') and thought it would retain the original classification. Any help is greatly appreciated |
Beta Was this translation helpful? Give feedback.
Answered by
polm
Oct 1, 2021
Replies: 1 comment 1 reply
-
You can load multiple NER component in the same pipeline, see the double NER tutorial. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
DarkSoliditi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can load multiple NER component in the same pipeline, see the double NER tutorial.