-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Normalize path_score as confidence score for utterance? #18
Comments
You can not do that. Confidence is available in C api with |
I've made it possible to get at this value using @nshmyrev Does calling |
@watsonbox IMO a step in the right direction, but the posterior probability is logarithmic and needs to be converted to a decimal probability in order to get to a more meaningful confidence score, e.g. ...
# Add inside Pocketsphinx::API::Pocketsphinx
typedef :pointer, :logmath
attach_function :ps_get_logmath, [:decoder], :logmath
attach_function :logmath_get_base, [:logmath], FFI::NativeType::FLOAT64
attach_function :logmath_exp, [:logmath, :int], FFI::NativeType::FLOAT64
...
# Pocketsphinx::Decoder
logmath = ps_api.ps_get_logmath(ps_decoder)
logbase = ps_api.logmath_get_base(logmath)
log_prob = ps_api.ps_get_prob(ps_decoder) # -> -9834
dec_prob = ps_api.logmath_exp(logmath, log_prob) # => 0.83111 Something similar needs to happen per word within an utterance: # Inside Pocketsphinx::Decoder
def words
...
acoustic_score = FFI::MemoryPointer.new(:int32, 1)
language_score = FFI::MemoryPointer.new(:int32, 1)
language_backoff = FFI::MemoryPointer.new(:int32, 1)
ps_api.ps_seg_prob(seg_iter, acoustic_score, language_score, language_backoff)
... Again, these scores are logarithmic and need to be converted before they are meaningful. |
This is based on the comment by @chinshr on watsonbox#18 (comment) 1506602 This conversion makes posterior_prob a usable confidence value between 0 and 1.
Sorry for the delay! Please let me know if my commit resolves these issues. |
How can I normalize a
path_score
(like inPocketsphinx::Decoder::Hypothesis
) of an utterance to a relative confidence probability?The text was updated successfully, but these errors were encountered: