Why rel_component project's output score is different than f-score? #12830
-
I am training a pipiline with
This is weird because I am using the following settings for score weights.
Is Spacy calculating the final Score by using the test dataset? Because on my dataset, I have 21 relation types. The documents in the train and the dev set are usually longer than 500 tokens. However, the test set contains documents with 21 tokens.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Hi @wallybeamm, by default |
Beta Was this translation helpful? Give feedback.
Hi @wallybeamm, by default
ents_f
is set to a non-zero value for the calculation ofSCORE
. Try setting it to 0?[training.score_weights]
rel_micro_p = 0.0
rel_micro_r = 0.0
rel_micro_f = 1.0
ents_f = 0.0