en_core_web_lg vs en_core_web_trf #12849
-
Hi, Is there any advantage for using the trf model, other than the 1-2% improvements listed on the model release? I don't want to train anything myself, I'd just like to run the default pipeline on English text. Also, what's not clear to me from the model releases: do trf models only work with a GPU? +1 question: if I'm running en_core_web_lg, is there any point in running xx_sent_ud_sm for senter, or I should just enabled senter in the default en_core_web_lg pipeline? (From what I saw it's not enabled by default, right?) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @hyperknot,
Well, how much exactly transformer models are better depends on your use case and data. In general no, their benefit is being more accurate, their drawback is being slower and needing more resources.
No, but they are very slow on CPUs.
The parser component also determines sentence boundaries. You don't need a separate senter component for that. |
Beta Was this translation helpful? Give feedback.
Hi @hyperknot,
Well, how much exactly transformer models are better depends on your use case and data. In general no, their benefit is being more accurate, their drawback is being slower and needing more resources.
No, but they are very slow on CPUs.
The parser com…