How to get confidence score of custom trained NER model using Spacy? #9189
Answered
by
polm
karndeepsingh
asked this question in
Help: Coding & Implementations
-
Hi, Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
polm
Sep 12, 2021
Replies: 1 comment 6 replies
-
The NER model doesn't expose confidence scores, the way it works the scores wouldn't be meaningful for that (see #831). What you can do instead is train a spancat model, which can report confidence scores. Take a look at the spancat example project. |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
svlandeg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The NER model doesn't expose confidence scores, the way it works the scores wouldn't be meaningful for that (see #831).
What you can do instead is train a spancat model, which can report confidence scores. Take a look at the spancat example project.