You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the documentation, there are two points which are not clear to me:
In the context of text classification, could the textcat pipe benefit from being preceded by other spacy pipes (e.g. sentencizer, ner, tok2vec, etc)? If so, how?
Is there any recommended way of using predictions coming separately from text classification oriented spaCy's features (like textcat and spaCy's word vectors) to improve performance?
I take the chance to also cite a Stack Overflow issue I wrote, which I hope could help many non-programmers like me approaching spaCy to go beyond the basics.
Hope this is the right place to ask, thanks in advance for any help.
The text was updated successfully, but these errors were encountered:
Hi @claudio20497 : These kind of questions are probably better kept at StackOverflow, where this is a larger community that can help. We don't always have the bandwidth to review specific use-cases, and we'd like to keep this issue tracker focused specifically on bug reports and feature requests.
That said, to answer your first question: The textcat pipeline currently does not consider features from previous pipes like NER or tagging. For spacy v.3.0 however, we're revamping the library so that you'll be able to change the ML models by just providing a different configuration file. This means you'll also be able to easily swap in a different tok2vec component. We're currently working on this on the develop branch. You might be interested in looking at this PR: #5143, which gives you an idea of where we're heading.
Hello,
From the documentation, there are two points which are not clear to me:
textcat
pipe benefit from being preceded by other spacy pipes (e.g.sentencizer
,ner
,tok2vec
, etc)? If so, how?textcat
and spaCy's word vectors) to improve performance?I take the chance to also cite a Stack Overflow issue I wrote, which I hope could help many non-programmers like me approaching spaCy to go beyond the basics.
Hope this is the right place to ask, thanks in advance for any help.
The text was updated successfully, but these errors were encountered: