我的程序中有以下代码:
cmd_ln_t *config = cmd_ln_init(NULL, ps_args(), TRUE,
"-hmm", MODELDIR "/en-us/en-us",
"-lm", MODELDIR "/en-us/en-us.lm.bin",
"-dict", MODELDIR "/en-us/cmudict-en-us.dict",
NULL);
ps_decoder_t *ps = ps_init(config);
// ...
const char *text = recognizeFromFile(ps, fileName);
// ...
fprintf(stdout, "Recognized text: %s\n", text);
fprintf(stdout, "Confidence: %g%%\n", logmath_exp(ps_get_logmath(ps), ps_get_prob(ps)) * 100);
但是每次我得到一个置信度输出时,看起来我正在寻找的值并没有被正确打印。
例如,这是我说“测试”并生成输出的情况:
Recognized text: toes Confidence: 8.17663% ... Recognized text: test Confidence: 0.195157%
正如你在我第一次说它时所看到的那样,程序猜错了我说的内容,但仍然比它实际猜对时具有更高的置信度值。
根据我从互联网上获得的信息,我认为我一直在正确计算置信度。这是不正确的吗?如何修复它以使输出更准确?