Model at each component #9995
Answered
by
ljvmiranda921
sonynavdeep81
asked this question in
Help: Model Advice
-
I have a very basic question regarding spaCy pipeline. I just want to know that for various components in the pipeline do we have different model for each component which can be trained separately from others? |
Beta Was this translation helpful? Give feedback.
Answered by
ljvmiranda921
Jan 6, 2022
Replies: 1 comment 1 reply
-
Hi @sonynavdeep81 ! Each component has its own internal state, and it's possible to train them separately. However, some of these components require a Tok2Vec, meaning you can't just train them completely alone. You can see more from the training pipeline design, and in the general pipeline docs. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
polm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @sonynavdeep81 !
Each component has its own internal state, and it's possible to train them separately. However, some of these components require a Tok2Vec, meaning you can't just train them completely alone. You can see more from the training pipeline design, and in the general pipeline docs.