Unable to extract common name as a named entity #9568
-
I am trying to extract the named entities for the following string If I run it in the spacy.io interactive web app as follows:
The name 'Benedict' is identified as a person, but the title of 'Pope' is not identified. Noun phrases: ['Pope Benedict', 'a red hat'] If I repeat the test using the "en_core_web_trf" model, neither 'Pope' nor 'Benedict' is identified, which is unexpected I am wondering if I need to provide additional information or maybe these are not the appropriate models? Info about spaCy
Thanks for your help, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Two issues here:
Whether to include titles or not is a decision made when designing training data. For the data in the spaCy models, titles are not included.
This is an accuracy problem, please understand the models are not perfect. It's also generally not possible to analyze why any specific single sentence failed. See #3052. |
Beta Was this translation helpful? Give feedback.
Two issues here:
Whether to include titles or not is a decision made when designing training data. For the data in the spaCy models, titles are not included.
This is an accuracy problem, please understand the models are not perfect. It's also generally not possible to analyze why any specific single sentence failed. See #3052.