connected words #13000
Answered
by
danieldk
88arvin
asked this question in
Help: Other Questions
connected words
#13000
-
I have trained a custom NER spacy model for extracting names from the ABC column to the NAME column, but I am having one issue, i.e., some names in the ABC column are connected with other words, so my spacy NER model is not extracting that name. Any ideas on how to extract those words? Although training data includes examples of names that are connected to other words. |
Beta Was this translation helpful? Give feedback.
Answered by
danieldk
Sep 26, 2023
Replies: 1 comment 4 replies
-
Could you give examples of what the training inference data looks like? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for elaborating! I see what you mean now. In these cases it's best to add exceptions to the tokenizer (or even a custom tokenizer) to improve tokenization of your data. See https://spacy.io/usage/linguistic-features#special-cases .