新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   XML论坛     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> VoiceXML, CCXML, OpenVXI
    [返回] 中文XML论坛 - 专业的XML技术讨论区XML.ORG.CN讨论区 - 高级XML应用『 XML在语音技术中的应用 』 → 关于CMU的sphinx里的xml文档 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 6931 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: 关于CMU的sphinx里的xml文档 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     rickywolf 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:1
      积分:57
      门派:XML.ORG.CN
      注册:2007/5/11

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给rickywolf发送一个短消息 把rickywolf加入好友 查看rickywolf的个人资料 搜索rickywolf在『 XML在语音技术中的应用 』 的所有贴子 引用回复这个贴子 回复这个贴子 查看rickywolf的博客楼主
    发贴心情 关于CMU的sphinx里的xml文档

    大家好!
    我现在看sphinx(我知道现在大家很多都在用cmu的OpenVXI,因此这个可能有许多人接触过)的一些例子,在看到里面需要使用xml文档,我又看了点关于xml方面的资料,但是这里头的xml还是让我有些摸不着头脑,请各位帮帮看看,谢谢!


    因为比较长,所以放到上传文件里了.

       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2007/9/2 19:50:00
     
     rickywolf 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:1
      积分:57
      门派:XML.ORG.CN
      注册:2007/5/11

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给rickywolf发送一个短消息 把rickywolf加入好友 查看rickywolf的个人资料 搜索rickywolf在『 XML在语音技术中的应用 』 的所有贴子 引用回复这个贴子 回复这个贴子 查看rickywolf的博客2
    发贴心情 
    实际的xml,想了想还是贴出来比较看的清楚
    <?xml version="1.0" encoding="UTF-8" ?>
    - <!--    Sphinx-4 Configuration file

      -->
    - <!--  ********************************************************
      -->
    - <!--   an4 configuration file                             
      -->
    - <!--  ********************************************************
      -->
    - <config>
    - <!--  ********************************************************
      -->
    - <!--  frequently tuned properties                              
      -->
    - <!--  ********************************************************
      -->
      <property name="logLevel" value="WARNING" />
      <property name="absoluteBeamWidth" value="-1" />
      <property name="relativeBeamWidth" value="1E-80" />
      <property name="wordInsertionProbability" value="1E-36" />
      <property name="languageWeight" value="8" />
      <property name="frontend" value="epFrontEnd" />
      <property name="recognizer" value="recognizer" />
      <property name="showCreations" value="false" />
    - <!--  ********************************************************
      -->
    - <!--  word recognizer configuration                            
      -->
    - <!--  ********************************************************
      -->
    - <component name="recognizer" type="edu.cmu.sphinx.recognizer.Recognizer">
      <property name="decoder" value="decoder" />
    - <propertylist name="monitors">
      <item>accuracyTracker</item>
      <item>speedTracker</item>
      <item>memoryTracker</item>
      </propertylist>
      </component>
    - <!--  ********************************************************
      -->
    - <!--  The Decoder   configuration                              
      -->
    - <!--  ********************************************************
      -->
    - <component name="decoder" type="edu.cmu.sphinx.decoder.Decoder">
      <property name="searchManager" value="searchManager" />
      </component>
    - <component name="searchManager" type="edu.cmu.sphinx.decoder.search.SimpleBreadthFirstSearchManager">
      <property name="logMath" value="logMath" />
      <property name="linguist" value="flatLinguist" />
      <property name="pruner" value="trivialPruner" />
      <property name="scorer" value="threadedScorer" />
      <property name="activeListFactory" value="activeList" />
      </component>
    - <component name="activeList" type="edu.cmu.sphinx.decoder.search.PartitionActiveListFactory">
      <property name="logMath" value="logMath" />
      <property name="absoluteBeamWidth" value="${absoluteBeamWidth}" />
      <property name="relativeBeamWidth" value="${relativeBeamWidth}" />
      </component>
      <component name="trivialPruner" type="edu.cmu.sphinx.decoder.pruner.SimplePruner" />
    - <component name="threadedScorer" type="edu.cmu.sphinx.decoder.scorer.ThreadedAcousticScorer">
      <property name="frontend" value="${frontend}" />
      <property name="isCpuRelative" value="true" />
      <property name="numThreads" value="0" />
      <property name="minScoreablesPerThread" value="10" />
      <property name="scoreablesKeepFeature" value="true" />
      </component>
    - <!--  ********************************************************
      -->
    - <!--  The linguist  configuration                              
      -->
    - <!--  ********************************************************
      -->
    - <component name="flatLinguist" type="edu.cmu.sphinx.linguist.flat.FlatLinguist">
      <property name="logMath" value="logMath" />
      <property name="grammar" value="jsgfGrammar" />
      <property name="acousticModel" value="tidigits" />
      <property name="wordInsertionProbability" value="${wordInsertionProbability}" />
      <property name="languageWeight" value="${languageWeight}" />
      <property name="unitManager" value="unitManager" />
      </component>
    - <!--  ********************************************************
      -->
    - <!--  The Grammar  configuration                               
      -->
    - <!--  ********************************************************
      -->
    - <component name="jsgfGrammar" type="edu.cmu.sphinx.jsapi.JSGFGrammar">
      <property name="dictionary" value="dictionary" />
      <property name="grammarLocation" value="resource:/demo.sphinx.hellodigits.HelloDigits!/demo/sphinx/hellodigits/" />
      <property name="grammarName" value="digits" />
      <property name="logMath" value="logMath" />
      </component>
    - <!--  ********************************************************
      -->
    - <!--  The Dictionary configuration                            
      -->
    - <!--  ********************************************************
      -->
    - <component name="dictionary" type="edu.cmu.sphinx.linguist.dictionary.FastDictionary">
      <property name="dictionaryPath" value="resource:/edu.cmu.sphinx.model.acoustic.TIDIGITS_8gau_13dCep_16k_40mel_130Hz_6800Hz.Model!/edu/cmu/sphinx/model/acoustic/TIDIGITS_8gau_13dCep_16k_40mel_130Hz_6800Hz/dictionary" />
      <property name="fillerPath" value="resource:/edu.cmu.sphinx.model.acoustic.TIDIGITS_8gau_13dCep_16k_40mel_130Hz_6800Hz.Model!/edu/cmu/sphinx/model/acoustic/TIDIGITS_8gau_13dCep_16k_40mel_130Hz_6800Hz/fillerdict" />
      <property name="addSilEndingPronunciation" value="false" />
      <property name="wordReplacement" value="<sil>" />
      <property name="allowMissingWords" value="false" />
      <property name="unitManager" value="unitManager" />
      </component>
    - <!--  ********************************************************
      -->
    - <!--  The acoustic model configuration                         
      -->
    - <!--  ********************************************************
      -->
    - <component name="tidigits" type="edu.cmu.sphinx.model.acoustic.TIDIGITS_8gau_13dCep_16k_40mel_130Hz_6800Hz.Model">
      <property name="loader" value="sphinx3Loader" />
      <property name="unitManager" value="unitManager" />
      </component>
    - <component name="sphinx3Loader" type="edu.cmu.sphinx.model.acoustic.TIDIGITS_8gau_13dCep_16k_40mel_130Hz_6800Hz.ModelLoader">
      <property name="logMath" value="logMath" />
      <property name="unitManager" value="unitManager" />
      </component>
    - <!--  ********************************************************
      -->
    - <!--  The unit manager configuration                           
      -->
    - <!--  ********************************************************
      -->
      <component name="unitManager" type="edu.cmu.sphinx.linguist.acoustic.UnitManager" />
    - <!--  ********************************************************
      -->
    - <!--  The live frontend configuration                          
      -->
    - <!--  ********************************************************
      -->
    - <component name="epFrontEnd" type="edu.cmu.sphinx.frontend.FrontEnd">
    - <propertylist name="pipeline">
      <item>microphone</item>
      <item>speechClassifier</item>
      <item>speechMarker</item>
      <item>nonSpeechDataFilter</item>
      <item>premphasizer</item>
      <item>windower</item>
      <item>fft</item>
      <item>melFilterBank</item>
      <item>dct</item>
      <item>liveCMN</item>
      <item>featureExtraction</item>
      </propertylist>
      </component>
    - <!--  ********************************************************
      -->
    - <!--  The frontend pipelines                                   
      -->
    - <!--  ********************************************************
      -->
    - <component name="speechClassifier" type="edu.cmu.sphinx.frontend.endpoint.SpeechClassifier">
      <property name="threshold" value="13" />
      </component>
      <component name="nonSpeechDataFilter" type="edu.cmu.sphinx.frontend.endpoint.NonSpeechDataFilter" />
    - <component name="speechMarker" type="edu.cmu.sphinx.frontend.endpoint.SpeechMarker">
      <property name="speechTrailer" value="50" />
      </component>
      <component name="premphasizer" type="edu.cmu.sphinx.frontend.filter.Preemphasizer" />
      <component name="windower" type="edu.cmu.sphinx.frontend.window.RaisedCosineWindower" />
      <component name="fft" type="edu.cmu.sphinx.frontend.transform.DiscreteFourierTransform" />
      <component name="melFilterBank" type="edu.cmu.sphinx.frontend.frequencywarp.MelFrequencyFilterBank" />
      <component name="dct" type="edu.cmu.sphinx.frontend.transform.DiscreteCosineTransform" />
      <component name="liveCMN" type="edu.cmu.sphinx.frontend.feature.LiveCMN" />
      <component name="featureExtraction" type="edu.cmu.sphinx.frontend.feature.DeltasFeatureExtractor" />
    - <component name="microphone" type="edu.cmu.sphinx.frontend.util.Microphone">
      <property name="closeBetweenUtterances" value="false" />
      </component>
    - <!--  *******************************************************
      -->
    - <!--   monitors                                               
      -->
    - <!--  *******************************************************
      -->
    - <component name="accuracyTracker" type="edu.cmu.sphinx.instrumentation.AccuracyTracker">
      <property name="recognizer" value="${recognizer}" />
      <property name="showAlignedResults" value="false" />
      <property name="showRawResults" value="false" />
      </component>
    - <component name="memoryTracker" type="edu.cmu.sphinx.instrumentation.MemoryTracker">
      <property name="recognizer" value="${recognizer}" />
      <property name="showSummary" value="false" />
      <property name="showDetails" value="false" />
      </component>
    - <component name="speedTracker" type="edu.cmu.sphinx.instrumentation.SpeedTracker">
      <property name="recognizer" value="${recognizer}" />
      <property name="frontend" value="${frontend}" />
      <property name="showSummary" value="true" />
      <property name="showDetails" value="false" />
      </component>
    - <!--  *******************************************************
      -->
    - <!--   Miscellaneous components                               
      -->
    - <!--  *******************************************************
      -->
    - <component name="logMath" type="edu.cmu.sphinx.util.LogMath">
      <property name="logBase" value="1.0001" />
      <property name="useAddTable" value="true" />
      </component>
      </config>

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2007/9/2 19:51:00
     
     zhu_ruixian 帅哥哟,离线,有人找我吗?射手座1983-12-2
      
      
      威望:2
      等级:大二期末(Java考了96分!)
      文章:406
      积分:3471
      门派:W3CHINA.ORG
      注册:2006/3/30

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给zhu_ruixian发送一个短消息 把zhu_ruixian加入好友 查看zhu_ruixian的个人资料 搜索zhu_ruixian在『 XML在语音技术中的应用 』 的所有贴子 引用回复这个贴子 回复这个贴子 查看zhu_ruixian的博客3
    发贴心情 
    没见过

    ----------------------------------------------
    为什么总是索取的人多,奉献的人少...

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2007/9/2 22:35:00
     
     GoogleAdSense射手座1983-12-2
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 XML在语音技术中的应用 』 的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2024/4/27 17:10:08

    本主题贴数3,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    109.375ms