Coder Social home page Coder Social logo

Comments (4)

nshmyrev avatar nshmyrev commented on July 1, 2024

You can not do that. Confidence is available in C api with ps_get_prob call which is not used in bindings.

from pocketsphinx-ruby.

watsonbox avatar watsonbox commented on July 1, 2024

I've made it possible to get at this value using Pocketsphinx::Decoder::Hypothesis#posterior_prob. Does this help? Is there some additional normalization calculation that would be worth adding to the hypothesis?

@nshmyrev Does calling ps_get_prob every time I call ps_get_hyp have any negative performance implications?

from pocketsphinx-ruby.

chinshr avatar chinshr commented on July 1, 2024

@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. .81 = 81% confidence, etc. According to my investigation, I think an approach worth investigating is the following:

...
# 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.

from pocketsphinx-ruby.

watsonbox avatar watsonbox commented on July 1, 2024

Sorry for the delay! Please let me know if my commit resolves these issues.

from pocketsphinx-ruby.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.