Configuration parameters for portuguese edit_tree_lemmatizer #10567
-
Hello, I would like to know which (or some) configuration to reach the reported performance for lemmatization in Portuguese show here:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
What do the scores for other components look like? It is common to get such low scores when no static vectors are loaded. You could for instance use the vectors of the If you start with the standard configuration of the
The standard configuration should already initialize the vectors from this path:
Also make sure that static vectors are used by the
If this isn't the issue, could you post your configuration, so that we can have a look? |
Beta Was this translation helpful? Give feedback.
What do the scores for other components look like? It is common to get such low scores when no static vectors are loaded. You could for instance use the vectors of the
pt_core_news_lg
model.If you start with the standard configuration of the
pt_core_news_lg
model, you can do so by setting thevectors
setting in thepaths
section topt_core_news_lg
:The standard configuration should already initialize the vectors from this path:
Also make sure that static vectors are used by the
tok2vec
embedder:If this isn't the issue, could you …