prob = -20.0 for all lemmas in en_core_web_lg #6119
-
How to reproduce the behaviourgives Also see #1590 Your Environment
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Because they're no longer used as model features in v2, the probability tables aren't distributed with the models as of v2.3 to save space. The table is provided through Note that the probability and cluster tables in |
Beta Was this translation helpful? Give feedback.
-
|
@adrianeboyd Thank you for the detailed answer, I wasn't aware for this. |
Beta Was this translation helpful? Give feedback.
Because they're no longer used as model features in v2, the probability tables aren't distributed with the models as of v2.3 to save space. The table is provided through
spacy-lookups-datainstead. See the section "Probability and cluster features" here for how to load them into an existing model: https://spacy.io/usage/v2-3#migratingNote that the probability and cluster tables in
spacy-lookups-dataonly include 1M tokens instead of 1.3M as in v2.2 models, so if you need to replicate the exact probability tables from v2.2, you'll want to export all the probabilities from a v2.2 model and import them in a custom v2.3 model.