Question about using spacy pipline for NER, coref and relation extraction models #11290
Replies: 1 comment 1 reply
-
If you're using our example relation extraction component, that would typically rely on the NER labels, so it would have to come after that. It depends on how you generate candidates for relation extraction though. What coref component are you using? The one we're working on (that isn't quite released yet) doesn't use labels of other components, so where it falls in the order wouldn't matter, unless you use it to generate candidates for relation extraction. Other than that, there's the question of whether you train your components all at once or separately and then assemble them. The general overview of that is covered here in the docs, is there a particular part of it you had a question about? |
Beta Was this translation helpful? Give feedback.
-
Hello,
We want to use spacy models to build a NER, Coref, and relation extraction pipeline.
Could you suggest us a way to stack them together using the spacy pipeline? Especially the ordering of these three models.
Beta Was this translation helpful? Give feedback.
All reactions