Use textcat and textcat_multilabel in the same model #10819
Unanswered
silvathales
asked this question in
Help: Coding & Implementations
Replies: 1 comment 1 reply
-
You can do this with two instances of textcat in the same pipeline, one for each of your models. However you'd need to train them separately, since there's only one place to put labels for textcat on a document. After you've trained the components separately you can source one of them into the pipeline of the other. Take a look at the double NER example project for something similar. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I have a model that works with NER and TextCategorizer.
Can TextCategorizer be trained using both textcat and textcat_multilabel?
I need to evaluate the relevance of a text (textcat) and add tags (textcat_multilabel).
Is it possible to do this using a single model?
thank you!
Beta Was this translation helpful? Give feedback.
All reactions