Do pipeline components affect training accuracy? #7663
-
I would like some info on how different components depend on each other during training. Let's say for example I want to train a text categorizer Does the trainable component use the ones before it during training in a way that would result to better accuracy? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is actually something we're working on making clearer at the moment, but in general pipeline components don't affect each other's accuracy.
In your case of textcat and NER: no, the NER annotations are not going to affect textcat.
For textcat, yes, basically only the input representations would make a difference. |
Beta Was this translation helpful? Give feedback.
This is actually something we're working on making clearer at the moment, but in general pipeline components don't affect each other's accuracy.
In your case of textcat and NE…