Skip to content
Discussion options

You must be logged in to vote

It indeed sounds like you're more interested in span categorisation than named entity recognition. Both tasks involve finding substrings in text, but span categorisation allows for overlapping spans. It's supported as of spaCy 3.1 and you can read more about it here. There's an example project on GitHub that you might find useful as a starting point.

Training a model for span categorisation is very similar to training one for named entity recognition in spaCy, you'd still use the spacy train command from the terminal. You'll need the have training data prepared and a configuration file, which can be configured easily from the online interface on the docs.

If you're unfamiliar with the sp…

Replies: 2 comments 12 replies

Comment options

You must be logged in to vote
11 replies
@GenVr
Comment options

@pmbaumgartner
Comment options

@GenVr
Comment options

@pmbaumgartner
Comment options

@GenVr
Comment options

Answer selected by GenVr
Comment options

You must be logged in to vote
1 reply
@GenVr
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat / ner Feature: Named Entity Recognizer
3 participants