<?xml version='1.0' encoding="utf-8"?>
      <rss version='2.0'>
      <channel>
      <title>Форум на Исходниках.RU</title>
      <link>https://forum.sources.ru</link>
      <description>Форум на Исходниках.RU</description>
      <generator>Форум на Исходниках.RU</generator>
  	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=397934&amp;view=findpost&amp;p=3557217</guid>
        <pubDate>Thu, 25 Dec 2014 15:54:56 +0000</pubDate>
        <title>Сборка Pocketsphinx fixed-point</title>
        <link>https://forum.sources.ru/index.php?showtopic=397934&amp;view=findpost&amp;p=3557217</link>
        <description><![CDATA[AndKy: Проблема устранена&#33; Причина в том, что библиотека была неправильно сконфигурирована. Проект библиотеки SphinxBase видит файлы конффигурации в директории include&#092;win32: <div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">&quot;C:\Program Files (x86)\Sphinx\sphinxbase\include\win32\config.h&quot;</div><div class="code_line">&quot;C:\Program Files (x86)\Sphinx\sphinxbase\include\win32\sphinx_config.h&quot;</div></ol></div></div></div></div><script>preloadCodeButtons('1');</script><br>
В данные файлы я и добавлял директиву FIXED_POINT. Проект библиотеки PocketSphinx видит файл конффигурации в директории include:<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">&quot;C:\Program Files (x86)\Sphinx\sphinxbase\include\sphinx_config.h&quot;</div></ol></div></div></div></div><br>
<br>
В нем оставалась конфигурация по-умолчанию. Таким образом, библиотека SphinxBase собралась как целочисленная, а PocketSphinx - с плавающей точкой. При вычислении гауссов (ms_gauden.c) возникала ошибка. После добавления директивы FIXED_POINT в файл конфигурации PocketSphinx ошибка устранилась. :victory:]]></description>
        <author>AndKy</author>
        <category>Речевые Технологии</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=397934&amp;view=findpost&amp;p=3557113</guid>
        <pubDate>Thu, 25 Dec 2014 12:07:10 +0000</pubDate>
        <title>Сборка Pocketsphinx fixed-point</title>
        <link>https://forum.sources.ru/index.php?showtopic=397934&amp;view=findpost&amp;p=3557113</link>
        <description><![CDATA[AndKy: Нашел так же, что причиной неработоспособности декодера является то, что все эмиссионные вероятности, вычисляемые целочисленной сборкой, равны нулю:<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">//SSID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2 (0)</div><div class="code_line">&nbsp;&nbsp;SENSCR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0</div><div class="code_line">//SCORES &nbsp; &nbsp; &nbsp; &nbsp;-337 &nbsp; &nbsp; &nbsp; &nbsp;-362 &nbsp;-536870912 &nbsp;-536870912</div><div class="code_line">//HISTID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1</div><div class="code_line">//SSID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 393 &nbsp; &nbsp; &nbsp; &nbsp; 395 &nbsp; &nbsp; &nbsp; &nbsp; 397 (1326)</div><div class="code_line">&nbsp;&nbsp;SENSCR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0</div><div class="code_line">//SCORES &nbsp; &nbsp; &nbsp; &nbsp; -28 &nbsp; &nbsp; &nbsp; &nbsp; -39 &nbsp;-536870912 &nbsp;-536870912</div><div class="code_line">//HISTID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1</div><div class="code_line">//SSID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1070 &nbsp; &nbsp; &nbsp; &nbsp;1080 &nbsp; &nbsp; &nbsp; &nbsp;1086 (4086)</div><div class="code_line">&nbsp;&nbsp;SENSCR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0</div><div class="code_line">//SCORES &nbsp; &nbsp; &nbsp; &nbsp; -30 &nbsp; &nbsp; &nbsp; &nbsp; -35 &nbsp;-536870912 &nbsp;-536870912</div><div class="code_line">//HISTID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1</div></ol></div></div></div></div><br>
В то время, как в сборке с плавающей точкой все нормально:<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">//SSID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2 (0)</div><div class="code_line">&nbsp;&nbsp;SENSCR &nbsp; &nbsp; &nbsp; &nbsp; -48 &nbsp; &nbsp; &nbsp; &nbsp; -24 &nbsp; &nbsp; &nbsp; &nbsp; -27</div><div class="code_line">//SCORES &nbsp; &nbsp; &nbsp; &nbsp;-385 &nbsp; &nbsp; &nbsp; &nbsp;-410 &nbsp;-536870912 &nbsp;-536870912</div><div class="code_line">//HISTID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1</div><div class="code_line">//SSID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 393 &nbsp; &nbsp; &nbsp; &nbsp; 395 &nbsp; &nbsp; &nbsp; &nbsp; 397 (1326)</div><div class="code_line">&nbsp;&nbsp;SENSCR &nbsp; &nbsp; &nbsp; &nbsp;-114 &nbsp; &nbsp; &nbsp; &nbsp;-189 &nbsp; &nbsp; &nbsp; &nbsp;-300</div><div class="code_line">//SCORES &nbsp; &nbsp; &nbsp; &nbsp;-142 &nbsp; &nbsp; &nbsp; &nbsp;-153 &nbsp;-536870912 &nbsp;-536870912</div><div class="code_line">//HISTID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1</div><div class="code_line">//SSID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1070 &nbsp; &nbsp; &nbsp; &nbsp;1080 &nbsp; &nbsp; &nbsp; &nbsp;1086 (4086)</div><div class="code_line">&nbsp;&nbsp;SENSCR &nbsp; &nbsp; &nbsp; &nbsp;-191 &nbsp; &nbsp; &nbsp; &nbsp;-140 &nbsp; &nbsp; &nbsp; &nbsp;-126</div><div class="code_line">//SCORES &nbsp; &nbsp; &nbsp; &nbsp;-221 &nbsp; &nbsp; &nbsp; &nbsp;-226 &nbsp;-536870912 &nbsp;-536870912</div><div class="code_line">//HISTID &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1</div></ol></div></div></div></div><br>
<br>
Теперь нужно найти, где вычисляются эмисионные вероятности.]]></description>
        <author>AndKy</author>
        <category>Речевые Технологии</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=397934&amp;view=findpost&amp;p=3557099</guid>
        <pubDate>Thu, 25 Dec 2014 11:01:42 +0000</pubDate>
        <title>Сборка Pocketsphinx fixed-point</title>
        <link>https://forum.sources.ru/index.php?showtopic=397934&amp;view=findpost&amp;p=3557099</link>
        <description><![CDATA[AndKy: Попробовал подключить отладочный вывод при работе декодера и, на сколько я могу судить, при использовании целочисленной сборки все HMM дают очень близкие оценки правдоподобия, что заставляет алгоритм исследовать все варианты слов. В то время как сборка с плавающей точкой рассматривает наиболее вероятные пути.<br>
<br>
Вот выборка из отладочной печати при использовании сборки с плавающей точкой.<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">INFO: cmn.c(175): CMN: 11,79 -0,19 &nbsp;0,09 &nbsp;0,09 -0,32 &nbsp;0,05 -0,29 -0,10 -0,25 -0,49 -0,27 -0,27 -0,05 </div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;0] &nbsp; &nbsp; 10 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -39</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;1] &nbsp; &nbsp; 10 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -55</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;2] &nbsp; &nbsp; 10 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -77</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;3] &nbsp; &nbsp; 19 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -91</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;4] &nbsp; &nbsp; 19 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-101</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;5] &nbsp; &nbsp; 19 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-117</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;6] &nbsp; &nbsp; 22 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-136</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;7] &nbsp; &nbsp; 24 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-195</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;8] &nbsp; &nbsp; 25 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-258</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;9] &nbsp; &nbsp; 25 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-303</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 10] &nbsp; &nbsp; 26 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-354</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 11] &nbsp; &nbsp; 29 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-404</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 12] &nbsp; &nbsp; 29 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-498</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 13] &nbsp; &nbsp; 32 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-585</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 14] &nbsp; &nbsp; 35 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-620</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 15] &nbsp; &nbsp; 37 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-645</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 16] &nbsp; &nbsp; 37 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-690</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 17] &nbsp; &nbsp; 37 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-722</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 18] &nbsp; &nbsp; 38 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-789</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 19] &nbsp; &nbsp; 40 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-839</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 20] &nbsp; &nbsp; 40 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-883</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 21] &nbsp; &nbsp; 39 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-887</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 22] &nbsp; &nbsp; 36 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-891</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 23] &nbsp; &nbsp; 35 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-895</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 24] &nbsp; &nbsp; 33 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-905</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 25] &nbsp; &nbsp; 30 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-909</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 26] &nbsp; &nbsp; 28 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-960</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 27] &nbsp; &nbsp; 26 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1030</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 28] &nbsp; &nbsp; 25 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1105</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 29] &nbsp; &nbsp; 26 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1157</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 30] &nbsp; &nbsp; 25 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1160</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 31] &nbsp; &nbsp; 18 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1171</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 32] &nbsp; &nbsp; 16 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1188</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 33] &nbsp; &nbsp; 13 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1201</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 34] &nbsp; &nbsp; 11 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1226</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 35] &nbsp; &nbsp; 11 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1272</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 36] &nbsp; &nbsp; 12 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1277</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 37] &nbsp; &nbsp; 11 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1299</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 38] &nbsp; &nbsp; 12 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1334</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 39] &nbsp; &nbsp; 12 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1337</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 40] &nbsp; &nbsp; 11 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1340</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 41] &nbsp; &nbsp; 10 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1343</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 42] &nbsp; &nbsp; 10 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1353</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 43] &nbsp; &nbsp; 10 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1358</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 44] &nbsp; &nbsp; &nbsp;9 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1371</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 45] &nbsp; &nbsp; &nbsp;6 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1376</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 46] &nbsp; &nbsp; &nbsp;6 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1384</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 47] &nbsp; &nbsp; &nbsp;6 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1398</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 48] &nbsp; &nbsp; &nbsp;6 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1403</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 49] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1409</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 50] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1416</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 51] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1423</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 52] &nbsp; &nbsp; &nbsp;5 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1447</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 53] &nbsp; &nbsp; &nbsp;5 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1523</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 54] &nbsp; &nbsp; &nbsp;5 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1560</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 55] &nbsp; &nbsp; &nbsp;5 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1618</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 56] &nbsp; &nbsp; &nbsp;5 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1621</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 57] &nbsp; &nbsp; &nbsp;5 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1633</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 58] &nbsp; &nbsp; &nbsp;5 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1634</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 59] &nbsp; &nbsp; &nbsp;5 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1635</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 60] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1636</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 61] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1637</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 62] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1670</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 63] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1703</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 64] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1742</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 65] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1784</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 66] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1873</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 67] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -1970</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 68] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2061</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 69] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2131</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 70] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2132</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 71] &nbsp; &nbsp; &nbsp;4 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2132</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 72] &nbsp; &nbsp; &nbsp;3 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2136</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 73] &nbsp; &nbsp; &nbsp;3 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2136</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 74] &nbsp; &nbsp; &nbsp;3 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2136</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 75] &nbsp; &nbsp; &nbsp;3 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2136</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 76] &nbsp; &nbsp; &nbsp;3 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2136</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 77] &nbsp; &nbsp; &nbsp;3 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2136</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 78] &nbsp; &nbsp; &nbsp;3 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2138</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 79] &nbsp; &nbsp; &nbsp;2 HMM; bestscr: &nbsp; &nbsp; &nbsp; -2138</div></ol></div></div></div></div><br>
<br>
А это выборка из отладочной печати при использовании сборки с фиксированной точкой.<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">INFO: cmn.c(175): CMN: 11,78 -0,19 &nbsp;0,09 &nbsp;0,09 -0,32 &nbsp;0,05 -0,29 -0,10 -0,25 -0,49 -0,27 -0,27 -0,05 </div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;0] &nbsp; &nbsp; 10 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -27</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;1] &nbsp; &nbsp; 10 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -28</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;2] &nbsp; &nbsp; 10 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -29</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;3] &nbsp; &nbsp; 19 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -30</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;4] &nbsp; &nbsp; 19 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -31</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;5] &nbsp; &nbsp; 19 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -32</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;6] &nbsp; &nbsp; 28 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -33</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;7] &nbsp; &nbsp; 28 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -34</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;8] &nbsp; &nbsp; 28 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -35</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; &nbsp;9] &nbsp; &nbsp; 38 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -36</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 10] &nbsp; &nbsp; 38 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -37</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 11] &nbsp; &nbsp; 38 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -38</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 12] &nbsp; &nbsp; 43 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -39</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 13] &nbsp; &nbsp; 43 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -40</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 14] &nbsp; &nbsp; 43 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -41</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 15] &nbsp; &nbsp; 46 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -42</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 16] &nbsp; &nbsp; 46 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -43</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 17] &nbsp; &nbsp; 46 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -44</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 18] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -45</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 19] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -46</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 20] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -47</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 21] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -48</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 22] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -49</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 23] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -50</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 24] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -51</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 25] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -52</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 26] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -53</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 27] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -54</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 28] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -55</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 29] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -56</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 30] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -57</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 31] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -58</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 32] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -59</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 33] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -60</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 34] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -61</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 35] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -62</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 36] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -63</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 37] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -64</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 38] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -65</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 39] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -66</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 40] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -67</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 41] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -68</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 42] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -69</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 43] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -70</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 44] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -71</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 45] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -72</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 46] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -73</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 47] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -74</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 48] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -75</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 49] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -76</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 50] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -77</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 51] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -78</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 52] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -79</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 53] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -80</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 54] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -81</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 55] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -82</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 56] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -83</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 57] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -84</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 58] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -85</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 59] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -86</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 60] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -87</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 61] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -88</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 62] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -89</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 63] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -90</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 64] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -91</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 65] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -92</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 66] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -93</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 67] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -94</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 68] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -95</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 69] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -96</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 70] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -97</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 71] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -98</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 72] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp; -99</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 73] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-100</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 74] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-101</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 75] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-102</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 76] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-103</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 77] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-104</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 78] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-105</div><div class="code_line">INFO: fsg_search.c(554): [ &nbsp; 79] &nbsp; &nbsp; 47 HMM; bestscr: &nbsp; &nbsp; &nbsp; &nbsp;-106</div></ol></div></div></div></div><br>
<br>
В обоих случаях распознавался один и тот же файл с одной командой.<br>
Может быть саму акустическую модель нужно как-то подготовить, перед использованием со сборкой с целочисленной арифметикой?]]></description>
        <author>AndKy</author>
        <category>Речевые Технологии</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=397934&amp;view=findpost&amp;p=3556983</guid>
        <pubDate>Wed, 24 Dec 2014 20:06:17 +0000</pubDate>
        <title>Сборка Pocketsphinx fixed-point</title>
        <link>https://forum.sources.ru/index.php?showtopic=397934&amp;view=findpost&amp;p=3556983</link>
        <description><![CDATA[AndKy: Не так давно узнал о существовании проекта CMU Sphinx, который решает многие вопросы в распознавании слитной речи, а так же позволяет в короткие сроки разработать полноценную систему распознавания голосовых команд. Важными, для меня, деталями Sphinx являются: открытость исходного кода, применение C++, а также поддержка целочисленных вычислений, что является огромным достоинством при аппаратной реализации системы. После изучения многочисленных веток форума посвященных Sphinx многие вопросы прояснились, однако на практике возникли некоторые сложности... В надежде разобраться в них, вкратце опишу возникшие вопросы.<br>
<br>
В начале, была сделана небольшая грамматика (цифры от 1 до 10) и словарь транскрипций. Акустическая модель msu_ru_nsh.cd_cont_1000_8gau_16000. Все прекрасно работало&#33; <br>
На следующем шаге была собрана целочисленная версия библиотеки. В файлах конфигурации config.h и sphinx_config.h добавлена директива <div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">#define FIXED_POINT 1</div></ol></div></div></div></div><br>
<br>
При компиляции ошибок не возникло, однако при тестировании распознавание пропало. Причем время декодирования значительно возросло (~2 секунды). Так же увеличился вывод при работе декодера. Вот вывод программы (HelloWorld из PocketSphinx с прикрученной звукозаписью) для слов &quot;один&quot;, &quot;два&quot;, &quot;три&quot;.<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">Current configuration:</div><div class="code_line">[NAME] &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[DEFLT] &nbsp; &nbsp; &nbsp; &nbsp; [VALUE]</div><div class="code_line">-agc &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;none &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;none</div><div class="code_line">-agcthresh &nbsp; &nbsp; &nbsp;2.0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2.000000e+000</div><div class="code_line">-alpha &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0.97 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9.700000e-001</div><div class="code_line">-ceplen &nbsp; &nbsp; &nbsp; &nbsp; 13 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;13</div><div class="code_line">-cmn &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;current &nbsp; &nbsp; &nbsp; &nbsp; current</div><div class="code_line">-cmninit &nbsp; &nbsp; &nbsp; &nbsp;8.0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 8.0</div><div class="code_line">-dither &nbsp; &nbsp; &nbsp; &nbsp; no &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;yes</div><div class="code_line">-doublebw &nbsp; &nbsp; &nbsp; no &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;no</div><div class="code_line">-feat &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1s_c_d_dd &nbsp; &nbsp; &nbsp; 1s_c_d_dd</div><div class="code_line">-frate &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;100 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 100</div><div class="code_line">-input_endian &nbsp; little &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;little</div><div class="code_line">-lda</div><div class="code_line">-ldadim &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0</div><div class="code_line">-lifter &nbsp; &nbsp; &nbsp; &nbsp; 0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0</div><div class="code_line">-logspec &nbsp; &nbsp; &nbsp; &nbsp;no &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;no</div><div class="code_line">-lowerf &nbsp; &nbsp; &nbsp; &nbsp; 133.33334 &nbsp; &nbsp; &nbsp; 1.333333e+002</div><div class="code_line">-ncep &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 13 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;13</div><div class="code_line">-nfft &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 512 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 512</div><div class="code_line">-nfilt &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;40 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;40</div><div class="code_line">-remove_dc &nbsp; &nbsp; &nbsp;no &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;no</div><div class="code_line">-round_filters &nbsp;yes &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; yes</div><div class="code_line">-samprate &nbsp; &nbsp; &nbsp; 16000 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1.600000e+004</div><div class="code_line">-seed &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1</div><div class="code_line">-smoothspec &nbsp; &nbsp; no &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;no</div><div class="code_line">-svspec</div><div class="code_line">-transform &nbsp; &nbsp; &nbsp;legacy &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;legacy</div><div class="code_line">-unit_area &nbsp; &nbsp; &nbsp;yes &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; yes</div><div class="code_line">-upperf &nbsp; &nbsp; &nbsp; &nbsp; 6855.4976 &nbsp; &nbsp; &nbsp; 6.855498e+003</div><div class="code_line">-varnorm &nbsp; &nbsp; &nbsp; &nbsp;no &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;no</div><div class="code_line">-verbose &nbsp; &nbsp; &nbsp; &nbsp;no &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;no</div><div class="code_line">-warp_params</div><div class="code_line">-warp_type &nbsp; &nbsp; &nbsp;inverse_linear &nbsp;inverse_linear</div><div class="code_line">-wlen &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 0.025625 &nbsp; &nbsp; &nbsp; &nbsp;2.560000e-002</div><div class="code_line">&nbsp;</div><div class="code_line">INFO: acmod.c(246): Parsed model-specific feature parameters from C:\Program Fil</div><div class="code_line">es (x86)\sphinx\pocketsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont</div><div class="code_line">_1000_8gau_16000/feat.params</div><div class="code_line">INFO: fe_interface.c(299): You are using the internal mechanism to generate the</div><div class="code_line">seed.</div><div class="code_line">INFO: feat.c(713): Initializing feature stream to type: &#39;1s_c_d_dd&#39;, ceplen=13,</div><div class="code_line">CMN=&#39;current&#39;, VARNORM=&#39;no&#39;, AGC=&#39;none&#39;</div><div class="code_line">INFO: cmn.c(142): mean[0]= 12.00, mean[1..12]= 0.0</div><div class="code_line">INFO: mdef.c(517): Reading model definition: C:\Program Files (x86)\sphinx\pocke</div><div class="code_line">tsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1000_8gau_16000/mdef</div><div class="code_line">&nbsp;</div><div class="code_line">INFO: bin_mdef.c(179): Allocating 113108 * 8 bytes (883 KiB) for CD tree</div><div class="code_line">INFO: tmat.c(205): Reading HMM transition probability matrices: C:\Program Files</div><div class="code_line">&nbsp;(x86)\sphinx\pocketsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1</div><div class="code_line">000_8gau_16000/transition_matrices</div><div class="code_line">INFO: acmod.c(121): Attempting to use SCHMM computation module</div><div class="code_line">INFO: ms_gauden.c(198): Reading mixture gaussian parameter: C:\Program Files (x8</div><div class="code_line">6)\sphinx\pocketsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1000_</div><div class="code_line">8gau_16000/means</div><div class="code_line">INFO: ms_gauden.c(292): 1153 codebook, 1 feature, size:</div><div class="code_line">INFO: ms_gauden.c(294): &nbsp;8x39</div><div class="code_line">INFO: ms_gauden.c(198): Reading mixture gaussian parameter: C:\Program Files (x8</div><div class="code_line">6)\sphinx\pocketsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1000_</div><div class="code_line">8gau_16000/variances</div><div class="code_line">INFO: ms_gauden.c(292): 1153 codebook, 1 feature, size:</div><div class="code_line">INFO: ms_gauden.c(294): &nbsp;8x39</div><div class="code_line">INFO: ms_gauden.c(354): 879 variance values floored</div><div class="code_line">INFO: acmod.c(123): Attempting to use PTHMM computation module</div><div class="code_line">INFO: ms_gauden.c(198): Reading mixture gaussian parameter: C:\Program Files (x8</div><div class="code_line">6)\sphinx\pocketsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1000_</div><div class="code_line">8gau_16000/means</div><div class="code_line">INFO: ms_gauden.c(292): 1153 codebook, 1 feature, size:</div><div class="code_line">INFO: ms_gauden.c(294): &nbsp;8x39</div><div class="code_line">INFO: ms_gauden.c(198): Reading mixture gaussian parameter: C:\Program Files (x8</div><div class="code_line">6)\sphinx\pocketsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1000_</div><div class="code_line">8gau_16000/variances</div><div class="code_line">INFO: ms_gauden.c(292): 1153 codebook, 1 feature, size:</div><div class="code_line">INFO: ms_gauden.c(294): &nbsp;8x39</div><div class="code_line">INFO: ms_gauden.c(354): 879 variance values floored</div><div class="code_line">INFO: ptm_mgau.c(792): Number of codebooks exceeds 256: 1153</div><div class="code_line">INFO: acmod.c(125): Falling back to general multi-stream GMM computation</div><div class="code_line">INFO: ms_gauden.c(198): Reading mixture gaussian parameter: C:\Program Files (x8</div><div class="code_line">6)\sphinx\pocketsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1000_</div><div class="code_line">8gau_16000/means</div><div class="code_line">INFO: ms_gauden.c(292): 1153 codebook, 1 feature, size:</div><div class="code_line">INFO: ms_gauden.c(294): &nbsp;8x39</div><div class="code_line">INFO: ms_gauden.c(198): Reading mixture gaussian parameter: C:\Program Files (x8</div><div class="code_line">6)\sphinx\pocketsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1000_</div><div class="code_line">8gau_16000/variances</div><div class="code_line">INFO: ms_gauden.c(292): 1153 codebook, 1 feature, size:</div><div class="code_line">INFO: ms_gauden.c(294): &nbsp;8x39</div><div class="code_line">INFO: ms_gauden.c(354): 879 variance values floored</div><div class="code_line">INFO: ms_senone.c(149): Reading senone mixture weights: C:\Program Files (x86)\s</div><div class="code_line">phinx\pocketsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1000_8gau</div><div class="code_line">_16000/mixture_weights</div><div class="code_line">INFO: ms_senone.c(200): Truncating senone logs3(pdf) values by 10 bits</div><div class="code_line">INFO: ms_senone.c(207): Not transposing mixture weights in memory</div><div class="code_line">INFO: ms_senone.c(266): Read mixture weights for 1153 senones: 1 features x 8 co</div><div class="code_line">dewords</div><div class="code_line">INFO: ms_senone.c(320): Mapping senones to individual codebooks</div><div class="code_line">INFO: ms_mgau.c(141): The value of topn: 4</div><div class="code_line">INFO: dict.c(317): Allocating 4136 * 20 bytes (80 KiB) for word entries</div><div class="code_line">INFO: dict.c(332): Reading main dictionary: C:\Program Files (x86)\sphinx\pocket</div><div class="code_line">sphinx\voxforge-ru-0.2\etc\andky_words_tr.dic</div><div class="code_line">INFO: dict.c(211): Allocated 0 KiB for strings, 0 KiB for phones</div><div class="code_line">INFO: dict.c(335): 36 words read</div><div class="code_line">INFO: dict.c(341): Reading filler dictionary: C:\Program Files (x86)\sphinx\pock</div><div class="code_line">etsphinx\voxforge-ru-0.2\model_parameters\msu_ru_nsh.cd_cont_1000_8gau_16000/noi</div><div class="code_line">sedict</div><div class="code_line">INFO: dict.c(211): Allocated 0 KiB for strings, 0 KiB for phones</div><div class="code_line">INFO: dict.c(344): 4 words read</div><div class="code_line">INFO: dict2pid.c(396): Building PID tables for dictionary</div><div class="code_line">INFO: dict2pid.c(404): Allocating 51^3 * 2 bytes (259 KiB) for word-initial trip</div><div class="code_line">hones</div><div class="code_line">INFO: dict2pid.c(131): Allocated 31416 bytes (30 KiB) for word-final triphones</div><div class="code_line">INFO: dict2pid.c(195): Allocated 31416 bytes (30 KiB) for single-phone word trip</div><div class="code_line">hones</div><div class="code_line">INFO: fsg_search.c(145): FSG(beam: -1080, pbeam: -1080, wbeam: -634; wip: -26, p</div><div class="code_line">ip: 0)</div><div class="code_line">INFO: jsgf.c(581): Defined rule: PUBLIC &#60;command.command&#62;</div><div class="code_line">INFO: fsg_model.c(215): Computing transitive closure for null transitions</div><div class="code_line">INFO: fsg_model.c(270): 0 null transitions added</div><div class="code_line">INFO: fsg_model.c(421): Adding silence transitions for &#60;sil&#62; to FSG</div><div class="code_line">INFO: fsg_model.c(441): Added 11 silence word transitions</div><div class="code_line">INFO: fsg_model.c(421): Adding silence transitions for &#60;sil&#62; to FSG</div><div class="code_line">INFO: fsg_model.c(441): Added 11 silence word transitions</div><div class="code_line">INFO: fsg_search.c(366): Added 0 alternate word transitions</div><div class="code_line">INFO: fsg_lextree.c(108): Allocated 1144 bytes (1 KiB) for left and right contex</div><div class="code_line">t phones</div><div class="code_line">INFO: fsg_lextree.c(253): 47 HMM nodes in lextree (20 leaves)</div><div class="code_line">INFO: fsg_lextree.c(255): Allocated 5076 bytes (4 KiB) for all lextree nodes</div><div class="code_line">INFO: fsg_lextree.c(258): Allocated 2160 bytes (2 KiB) for lextree leafnodes</div><div class="code_line">Нажмите ПРОБЕЛ, чтобы сказать фразу, а затем отпустите</div><div class="code_line">Говорите...</div><div class="code_line">Запись завершена (38400 байт), идет распознавание...</div><div class="code_line">INFO: cmn.c(175): CMN: &nbsp;7.73 -0.56 &nbsp;0.01 &nbsp;0.17 -0.18 &nbsp;0.03 -0.14 -0.06 -0.07 -0.</div><div class="code_line">11 -0.03 -0.12 -0.05</div><div class="code_line">INFO: fsg_search.c(1032): 119 frames, 5299 HMMs (44/fr), 11236 senones (94/fr),</div><div class="code_line">2905 history entries (24/fr)</div><div class="code_line">&nbsp;</div><div class="code_line">INFO: fsg_search.c(1417): Start node chetyre.0:17:118</div><div class="code_line">INFO: fsg_search.c(1417): Start node vosem&#39;.0:14:118</div><div class="code_line">INFO: fsg_search.c(1417): Start node devjat&#39;.0:14:118</div><div class="code_line">INFO: fsg_search.c(1417): Start node odin.0:11:118</div><div class="code_line">INFO: fsg_search.c(1417): Start node shest&#39;.0:11:118</div><div class="code_line">INFO: fsg_search.c(1417): Start node dva.0:8:118</div><div class="code_line">INFO: fsg_search.c(1417): Start node tri.0:8:118</div><div class="code_line">INFO: fsg_search.c(1417): Start node pjat&#39;.0:8:118</div><div class="code_line">INFO: fsg_search.c(1417): Start node sem&#39;.0:8:118</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.18:20:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node chetyre.0:17:118 (-260)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.15:17:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.15:17:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.12:14:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.12:14:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node vosem&#39;.0:14:118 (-204)</div><div class="code_line">INFO: fsg_search.c(1456): End node devjat&#39;.0:14:118 (-198)</div><div class="code_line">INFO: fsg_search.c(1456): End node odin.0:11:118 (-180)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node shest&#39;.0:11:118 (-197)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:118 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node dva.0:8:118 (-142)</div><div class="code_line">INFO: fsg_search.c(1456): End node tri.0:8:118 (-134)</div><div class="code_line">INFO: fsg_search.c(1456): End node pjat&#39;.0:8:118 (-168)</div><div class="code_line">INFO: fsg_search.c(1456): End node sem&#39;.0:8:118 (-158)</div><div class="code_line">INFO: fsg_search.c(1680): lattice start node &#60;s&#62;.0 end node &#60;/s&#62;.119</div><div class="code_line">INFO: ps_lattice.c(1365): Normalizer P(O) = alpha(&#60;/s&#62;:119:119) = 12799</div><div class="code_line">INFO: ps_lattice.c(1403): Joint P(O,S) = -6860 P(S|O) = -19659</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;</div><div class="code_line">tri</div><div class="code_line">&nbsp;Probability: -19659</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;</div><div class="code_line">Нажмите ПРОБЕЛ, чтобы сказать фразу, а затем отпустите</div><div class="code_line">Говорите...</div><div class="code_line">Запись завершена (25600 байт), идет распознавание...</div><div class="code_line">INFO: cmn.c(175): CMN: &nbsp;9.25 &nbsp;0.09 -0.02 &nbsp;0.02 -0.42 &nbsp;0.00 -0.12 -0.12 -0.16 -0.</div><div class="code_line">17 -0.01 -0.06 -0.08</div><div class="code_line">INFO: fsg_search.c(1032): 79 frames, 3419 HMMs (43/fr), 7316 senones (92/fr), 18</div><div class="code_line">25 history entries (23/fr)</div><div class="code_line">&nbsp;</div><div class="code_line">INFO: fsg_search.c(1417): Start node chetyre.0:17:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node vosem&#39;.0:14:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node devjat&#39;.0:14:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node odin.0:11:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node shest&#39;.0:11:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node dva.0:8:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node tri.0:8:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node pjat&#39;.0:8:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node sem&#39;.0:8:78</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.18:20:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node chetyre.0:17:78 (-260)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.15:17:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.15:17:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.12:14:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.12:14:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node vosem&#39;.0:14:78 (-204)</div><div class="code_line">INFO: fsg_search.c(1456): End node devjat&#39;.0:14:78 (-198)</div><div class="code_line">INFO: fsg_search.c(1456): End node odin.0:11:78 (-180)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node shest&#39;.0:11:78 (-197)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node dva.0:8:78 (-142)</div><div class="code_line">INFO: fsg_search.c(1456): End node tri.0:8:78 (-134)</div><div class="code_line">INFO: fsg_search.c(1456): End node pjat&#39;.0:8:78 (-168)</div><div class="code_line">INFO: fsg_search.c(1456): End node sem&#39;.0:8:78 (-158)</div><div class="code_line">INFO: fsg_search.c(1680): lattice start node &#60;s&#62;.0 end node &#60;/s&#62;.79</div><div class="code_line">INFO: ps_lattice.c(1365): Normalizer P(O) = alpha(&#60;/s&#62;:79:79) = 12799</div><div class="code_line">INFO: ps_lattice.c(1403): Joint P(O,S) = -6860 P(S|O) = -19659</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;</div><div class="code_line">tri</div><div class="code_line">&nbsp;Probability: -19659</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;</div><div class="code_line">Нажмите ПРОБЕЛ, чтобы сказать фразу, а затем отпустите</div><div class="code_line">Говорите...</div><div class="code_line">Запись завершена (25600 байт), идет распознавание...</div><div class="code_line">INFO: cmn.c(175): CMN: &nbsp;8.45 -0.58 &nbsp;0.01 &nbsp;0.35 -0.24 -0.02 -0.09 -0.10 -0.05 -0.</div><div class="code_line">19 -0.12 -0.09 -0.04</div><div class="code_line">INFO: fsg_search.c(1032): 79 frames, 3419 HMMs (43/fr), 7316 senones (92/fr), 18</div><div class="code_line">25 history entries (23/fr)</div><div class="code_line">&nbsp;</div><div class="code_line">INFO: fsg_search.c(1417): Start node chetyre.0:17:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node vosem&#39;.0:14:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node devjat&#39;.0:14:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node odin.0:11:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node shest&#39;.0:11:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node dva.0:8:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node tri.0:8:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node pjat&#39;.0:8:78</div><div class="code_line">INFO: fsg_search.c(1417): Start node sem&#39;.0:8:78</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.18:20:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node chetyre.0:17:78 (-260)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.15:17:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.15:17:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.12:14:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.12:14:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node vosem&#39;.0:14:78 (-204)</div><div class="code_line">INFO: fsg_search.c(1456): End node devjat&#39;.0:14:78 (-198)</div><div class="code_line">INFO: fsg_search.c(1456): End node odin.0:11:78 (-180)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node shest&#39;.0:11:78 (-197)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node &#60;sil&#62;.9:11:78 (-408)</div><div class="code_line">INFO: fsg_search.c(1456): End node dva.0:8:78 (-142)</div><div class="code_line">INFO: fsg_search.c(1456): End node tri.0:8:78 (-134)</div><div class="code_line">INFO: fsg_search.c(1456): End node pjat&#39;.0:8:78 (-168)</div><div class="code_line">INFO: fsg_search.c(1456): End node sem&#39;.0:8:78 (-158)</div><div class="code_line">INFO: fsg_search.c(1680): lattice start node &#60;s&#62;.0 end node &#60;/s&#62;.79</div><div class="code_line">INFO: ps_lattice.c(1365): Normalizer P(O) = alpha(&#60;/s&#62;:79:79) = 12799</div><div class="code_line">INFO: ps_lattice.c(1403): Joint P(O,S) = -6860 P(S|O) = -19659</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;</div><div class="code_line">tri</div><div class="code_line">&nbsp;Probability: -19659</div></ol></div></div></div></div><br>
При каждом распознавании, независимо, от произнесенного слова, декодер выдает один и то же результат. Такое ощущение, что ошибка где-то на поверхности. Первым делом я убедился, что запись происходит корректно (16 kHz, 16 bit, mono). Пробовал менять порядок байт, не помогло. Проверял извлечение MFCC с помощью sphinx_fe для для обеих версий библиотеки. Результаты выглядят вполне адекватными, расхождение коэффициентов около 1% или меньше.<br>
<br>
Может быть у кого-то возникала подобная проблема? В чем может быть ошибка? :unsure:]]></description>
        <author>AndKy</author>
        <category>Речевые Технологии</category>
      </item>
	
      </channel>
      </rss>
	