在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 叮当 安装依赖 打包

叮当 安装依赖 打包

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:45.78M
  • 下载次数:3
  • 浏览次数:94
  • 发布时间:2021-03-07
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.gz
  • 所需积分:2
 

实例介绍

【实例简介】
叮当,智能语音控制平台,基于树莓派搭建所有依赖打包下载, 详细介绍:http://blog.csdn.net/kxwinxp/article/details/78853756
【实例截图】
【核心代码】
6c214773-af77-4c2d-9011-b1c63b68d3f7
├── cmuclmtk
│   ├── AUTHORS
│   ├── autogen.sh
│   ├── ChangeLog
│   ├── cmuclmtk.sln
│   ├── configure.ac
│   ├── debian
│   │   ├── changelog
│   │   ├── cmuclmtk.install
│   │   ├── compat
│   │   ├── control
│   │   ├── copyright
│   │   ├── docs
│   │   ├── libcmuclmtk0.install
│   │   ├── libcmuclmtk-dev.install
│   │   ├── rules
│   │   └── watch
│   ├── doc
│   │   ├── change_log.html
│   │   ├── change_log.txt
│   │   ├── doxygen.cfg
│   │   ├── toolkit_documentation_no_tables.html
│   │   └── toolkit_framework.gif
│   ├── LICENSE
│   ├── Makefile.am
│   ├── NEWS
│   ├── perl
│   │   ├── class_tagger.pl
│   │   ├── cmu_build_vocab
│   │   ├── cmu_lm_train
│   │   ├── cmu_ngram_interp
│   │   ├── cmu_ngram_pronounce
│   │   ├── cmu_ngram_test
│   │   ├── cmu_ngram_train
│   │   ├── cmu_normalize_text
│   │   ├── InputFilter
│   │   │   ├── CMU.pm
│   │   │   ├── HUB5.pm
│   │   │   ├── ICSI.pm
│   │   │   ├── ISL.pm
│   │   │   ├── LETSGO.pm
│   │   │   ├── MS98.pm
│   │   │   ├── NIST.pm
│   │   │   └── SWB.pm
│   │   ├── InputFilter.pm
│   │   ├── lm_changecase.pl
│   │   ├── LMTraining.pm
│   │   ├── lrSegmenter.perl
│   │   ├── Makefile.PL
│   │   ├── NGramFactory.pm
│   │   ├── NGramModel
│   │   │   └── ARPA.pm
│   │   ├── NGramModel.pm
│   │   ├── simplified_chinese.wfreq
│   │   ├── Smoothing.pm
│   │   ├── t
│   │   │   ├── cmu2.test.lsn
│   │   │   ├── cmu3.test.trs
│   │   │   ├── cmu.files
│   │   │   ├── cmu.test.fillermap
│   │   │   ├── cmu.test.lsn
│   │   │   ├── cmu.test.trs
│   │   │   ├── cmu.test.vocab
│   │   │   ├── context.ccs
│   │   │   ├── if_cmu.t
│   │   │   ├── lminterp.t
│   │   │   ├── lmtrain.t
│   │   │   ├── ngram.t
│   │   │   ├── test_interp.xml
│   │   │   ├── test.xml
│   │   │   └── vocab.t
│   │   ├── unihan.dic
│   │   ├── unihan_to_sphinx.pl
│   │   └── Vocabulary.pm
│   ├── README
│   ├── src
│   │   ├── liblmest
│   │   │   ├── arpa_bo_ng_prob.c
│   │   │   ├── bo_ng_prob.c
│   │   │   ├── bo_ng_prob.h
│   │   │   ├── calc_mem_req.c
│   │   │   ├── calc_prob_of.c
│   │   │   ├── compute_back_off.c
│   │   │   ├── compute_discount.c
│   │   │   ├── compute_unigram.c
│   │   │   ├── counts.c
│   │   │   ├── decode_bo_case.c
│   │   │   ├── disc_meth_absolute.c
│   │   │   ├── disc_meth_absolute.h
│   │   │   ├── disc_meth.c
│   │   │   ├── disc_meth_good_turing.c
│   │   │   ├── disc_meth_good_turing.h
│   │   │   ├── disc_meth.h
│   │   │   ├── disc_meth_linear.c
│   │   │   ├── disc_meth_linear.h
│   │   │   ├── disc_method_linear.c
│   │   │   ├── disc_meth_witten_bell.c
│   │   │   ├── disc_meth_witten_bell.h
│   │   │   ├── evallm.h
│   │   │   ├── generate.c
│   │   │   ├── gen_fb_list.c
│   │   │   ├── genrand.c
│   │   │   ├── genrand.h
│   │   │   ├── get_ngram.c
│   │   │   ├── guess_mem.c
│   │   │   ├── idngram2lm.c
│   │   │   ├── idngram2lm.h
│   │   │   ├── increment_context.c
│   │   │   ├── load_lm.c
│   │   │   ├── lookup_index_of.c
│   │   │   ├── Makefile.am
│   │   │   ├── miscella.c
│   │   │   ├── miscella.h
│   │   │   ├── ngram.c
│   │   │   ├── ngram.h
│   │   │   ├── num_of_types.c
│   │   │   ├── parse_comline.c
│   │   │   ├── perplexity.c
│   │   │   ├── short_indices.c
│   │   │   ├── stats.c
│   │   │   ├── stats.h
│   │   │   ├── toolkit.h
│   │   │   ├── two_byte_alphas.c
│   │   │   ├── validate.c
│   │   │   └── write_lms.c
│   │   ├── libs
│   │   │   ├── ac_hash.c
│   │   │   ├── ac_hash.h
│   │   │   ├── ac_lmfunc_impl.c
│   │   │   ├── ac_lmfunc_impl.h
│   │   │   ├── ac_parsetext.c
│   │   │   ├── ac_parsetext.h
│   │   │   ├── general.h
│   │   │   ├── Makefile.am
│   │   │   ├── mips_swap.h
│   │   │   ├── parse_line.c
│   │   │   ├── pc_comline.c
│   │   │   ├── pc_general.h
│   │   │   ├── pc_message.c
│   │   │   ├── quit.c
│   │   │   ├── rd_wlist_arry.c
│   │   │   ├── read_voc.c
│   │   │   ├── read_wlist_si.c
│   │   │   ├── rr_calloc.c
│   │   │   ├── rr_feof.c
│   │   │   ├── rr_fexists.c
│   │   │   ├── rr_filesize.c
│   │   │   ├── rr_fopen.c
│   │   │   ├── rr_fread.c
│   │   │   ├── rr_fseek.c
│   │   │   ├── rr_fwrite.c
│   │   │   ├── rr_iopen.c
│   │   │   ├── rr_malloc.c
│   │   │   ├── rr_mkdtemp.c
│   │   │   ├── rr_oopen.c
│   │   │   ├── salloc.c
│   │   │   ├── sih.c
│   │   │   └── sih.h
│   │   ├── Makefile.am
│   │   ├── programs
│   │   │   ├── arpa2binlm.c
│   │   │   ├── binlm2arpa.c
│   │   │   ├── evallm.c
│   │   │   ├── idngram2lm.c
│   │   │   ├── idngram2stats.c
│   │   │   ├── lm_combine.c
│   │   │   ├── lm_interpolate.c
│   │   │   ├── Makefile.am
│   │   │   ├── mergeidngram.c
│   │   │   ├── ngram2mgram.c
│   │   │   ├── text2idngram.c
│   │   │   ├── text2wfreq.c
│   │   │   ├── text2wngram.c
│   │   │   ├── wfreq2vocab.c
│   │   │   └── wngram2idngram.c
│   │   └── win32
│   │   └── compat.h
│   ├── test
│   │   ├── English
│   │   │   ├── combine.idngram.32bits
│   │   │   ├── combine.idngram.txt
│   │   │   ├── emma11.arpa
│   │   │   ├── emma11.arpa.V3
│   │   │   ├── emma11.bin.32bits
│   │   │   ├── emma11.bin.perplexity
│   │   │   ├── emma11.bin.stats
│   │   │   ├── emma11.id1gram.32bits
│   │   │   ├── emma11.id1gram.txt
│   │   │   ├── emma11.id2gram.32bits
│   │   │   ├── emma11.id2gram.txt
│   │   │   ├── emma11.idngram.32bits
│   │   │   ├── emma11.idngram.txt
│   │   │   ├── emma11.stats
│   │   │   ├── emma11.txt
│   │   │   ├── emma11.txt.filtered
│   │   │   ├── emma11.txt.filtered.vocab
│   │   │   ├── emma11.txt.filtered.wfreq
│   │   │   ├── emma11.vocab
│   │   │   ├── emma11.wfreq
│   │   │   ├── filterlist
│   │   │   └── pandp12.txt.filtered
│   │   ├── Makefile.am
│   │   └── test.sh
│   ├── TODO
│   └── win32
│   ├── binlm2arpa.vcxproj
│   ├── binlm2arpa.vcxproj.filters
│   ├── binlm2arpa.vcxproj.user
│   ├── evallm.vcxproj
│   ├── evallm.vcxproj.filters
│   ├── evallm.vcxproj.user
│   ├── idngram2lm.vcxproj
│   ├── idngram2lm.vcxproj.filters
│   ├── idngram2lm.vcxproj.user
│   ├── idngram2stats.vcxproj
│   ├── idngram2stats.vcxproj.filters
│   ├── idngram2stats.vcxproj.user
│   ├── interpolate.vcxproj
│   ├── interpolate.vcxproj.filters
│   ├── interpolate.vcxproj.user
│   ├── mergeidngram.vcxproj
│   ├── mergeidngram.vcxproj.filters
│   ├── mergeidngram.vcxproj.user
│   ├── ngram2mgram.vcxproj
│   ├── ngram2mgram.vcxproj.filters
│   ├── ngram2mgram.vcxproj.user
│   ├── SLM.vcxproj
│   ├── SLM.vcxproj.filters
│   ├── SLM.vcxproj.user
│   ├── text2idngram.vcxproj
│   ├── text2idngram.vcxproj.filters
│   ├── text2idngram.vcxproj.user
│   ├── text2wfreq.vcxproj
│   ├── text2wfreq.vcxproj.filters
│   ├── text2wfreq.vcxproj.user
│   ├── text2wngram.vcxproj
│   ├── text2wngram.vcxproj.filters
│   ├── text2wngram.vcxproj.user
│   ├── wfreq2vocab.vcxproj
│   ├── wfreq2vocab.vcxproj.filters
│   ├── wfreq2vocab.vcxproj.user
│   ├── wngram2idngram.vcxproj
│   ├── wngram2idngram.vcxproj.filters
│   └── wngram2idngram.vcxproj.user
├── is2013-conversion
│   ├── bin
│   │   ├── phonetisaurus-calculateER
│   │   ├── phonetisaurus-calculateER-omega
│   │   ├── rand-train-dev.py
│   │   ├── run-tests.py
│   │   └── train-ngramlibrary.py
│   ├── check-reqs.sh
│   ├── is2013-conversion.pdf
│   ├── models
│   │   ├── g014a2.test
│   │   ├── g014a2.train
│   │   ├── g014b2b.test
│   │   ├── g014b2b.train
│   │   ├── run-g014a2.sh
│   │   ├── run-g014b2b-me-mix.sh
│   │   └── run-g014b2b.sh
│   ├── phonetisaurus
│   │   ├── README.txt
│   │   ├── script
│   │   │   ├── phonetisaurus-calculateER
│   │   │   ├── phonetisaurus-calculateER-omega
│   │   │   └── train-ngramlibrary.py
│   │   ├── src
│   │   │   ├── 3rdparty
│   │   │   │   ├── sparsehash
│   │   │   │   │   └── google
│   │   │   │   │   ├── dense_hash_map
│   │   │   │   │   ├── dense_hash_set
│   │   │   │   │   ├── sparsehash
│   │   │   │   │   │   ├── densehashtable.h
│   │   │   │   │   │   ├── hashtable-common.h
│   │   │   │   │   │   ├── libc_allocator_with_realloc.h
│   │   │   │   │   │   ├── sparseconfig.h
│   │   │   │   │   │   └── sparsehashtable.h
│   │   │   │   │   ├── sparse_hash_map
│   │   │   │   │   ├── sparse_hash_set
│   │   │   │   │   ├── sparsetable
│   │   │   │   │   └── type_traits.h
│   │   │   │   └── utfcpp
│   │   │   │   ├── utf8
│   │   │   │   │   ├── checked.h
│   │   │   │   │   ├── core.h
│   │   │   │   │   └── unchecked.h
│   │   │   │   └── utf8.h
│   │   │   ├── Arpa2Fst.cpp
│   │   │   ├── Arpa2Fst.hpp
│   │   │   ├── ARPA2WFST.cpp
│   │   │   ├── ARPA2WFST.hpp
│   │   │   ├── FstPathFinder.cpp
│   │   │   ├── FstPathFinder.hpp
│   │   │   ├── LatticePruner.cpp
│   │   │   ├── LatticePruner.hpp
│   │   │   ├── M2MFstAlignerB.cpp
│   │   │   ├── M2MFstAlignerB.hpp
│   │   │   ├── M2MFstAligner.cpp
│   │   │   ├── M2MFstAligner.hpp
│   │   │   ├── Makefile
│   │   │   ├── MBRDecoder.cpp
│   │   │   ├── MBRDecoder.hpp
│   │   │   ├── phonetisaurus-align.cpp
│   │   │   ├── phonetisaurus-arpa2fst.cpp
│   │   │   ├── phonetisaurus-arpa2wfst-omega.cpp
│   │   │   ├── Phonetisaurus.cpp
│   │   │   ├── PhonetisaurusE2F.cpp
│   │   │   ├── PhonetisaurusE2F.hpp
│   │   │   ├── phonetisaurus-g2p.cpp
│   │   │   ├── phonetisaurus-g2p-omega.cpp
│   │   │   ├── Phonetisaurus.hpp
│   │   │   ├── PhonetisaurusOmega.cpp
│   │   │   ├── PhonetisaurusOmega.hpp
│   │   │   ├── util.cpp
│   │   │   └── util.hpp
│   │   └── tests
│   │   ├── get-syms.cpp
│   │   ├── grm-perp.py
│   │   ├── Makefile
│   │   ├── phonetisaurus-e2f.cpp
│   │   ├── phonetisaurus-perp.cpp
│   │   └── README.md
│   └── README.txt
├── m2m-aligner-1.2
│   ├── COPYING
│   ├── makefile
│   ├── makefile.default
│   ├── makefile.stlport
│   ├── mmAligner.cpp
│   ├── mmEM.cpp
│   ├── mmEM.h
│   ├── param.h
│   ├── README
│   ├── tclap-1.2.1
│   │   ├── aclocal.m4
│   │   ├── AUTHORS
│   │   ├── ChangeLog
│   │   ├── config
│   │   │   ├── ac_cxx_have_long_long.m4
│   │   │   ├── ac_cxx_have_sstream.m4
│   │   │   ├── ac_cxx_have_strstream.m4
│   │   │   ├── ac_cxx_namespaces.m4
│   │   │   ├── ac_cxx_warn_effective_cxx.m4
│   │   │   ├── bb_enable_doxygen.m4
│   │   │   ├── config.h.in
│   │   │   ├── depcomp
│   │   │   ├── install-sh
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── missing
│   │   │   └── mkinstalldirs
│   │   ├── configure
│   │   ├── configure.in
│   │   ├── COPYING
│   │   ├── docs
│   │   │   ├── Doxyfile.in
│   │   │   ├── html
│   │   │   │   ├── annotated.html
│   │   │   │   ├── Arg_8h.html
│   │   │   │   ├── Arg_8h_source.html
│   │   │   │   ├── ArgException_8h.html
│   │   │   │   ├── ArgException_8h_source.html
│   │   │   │   ├── ArgTraits_8h.html
│   │   │   │   ├── ArgTraits_8h_source.html
│   │   │   │   ├── classes.html
│   │   │   │   ├── classTCLAP_1_1ArgException.gif
│   │   │   │   ├── classTCLAP_1_1ArgException.html
│   │   │   │   ├── classTCLAP_1_1ArgException-members.html
│   │   │   │   ├── classTCLAP_1_1Arg.gif
│   │   │   │   ├── classTCLAP_1_1Arg.html
│   │   │   │   ├── classTCLAP_1_1Arg-members.html
│   │   │   │   ├── classTCLAP_1_1ArgParseException.gif
│   │   │   │   ├── classTCLAP_1_1ArgParseException.html
│   │   │   │   ├── classTCLAP_1_1ArgParseException-members.html
│   │   │   │   ├── classTCLAP_1_1CmdLine.gif
│   │   │   │   ├── classTCLAP_1_1CmdLine.html
│   │   │   │   ├── classTCLAP_1_1CmdLineInterface.gif
│   │   │   │   ├── classTCLAP_1_1CmdLineInterface.html
│   │   │   │   ├── classTCLAP_1_1CmdLineInterface-members.html
│   │   │   │   ├── classTCLAP_1_1CmdLine-members.html
│   │   │   │   ├── classTCLAP_1_1CmdLineOutput.gif
│   │   │   │   ├── classTCLAP_1_1CmdLineOutput.html
│   │   │   │   ├── classTCLAP_1_1CmdLineOutput-members.html
│   │   │   │   ├── classTCLAP_1_1CmdLineParseException.gif
│   │   │   │   ├── classTCLAP_1_1CmdLineParseException.html
│   │   │   │   ├── classTCLAP_1_1CmdLineParseException-members.html
│   │   │   │   ├── classTCLAP_1_1Constraint.gif
│   │   │   │   ├── classTCLAP_1_1Constraint.html
│   │   │   │   ├── classTCLAP_1_1Constraint-members.html
│   │   │   │   ├── classTCLAP_1_1DocBookOutput.gif
│   │   │   │   ├── classTCLAP_1_1DocBookOutput.html
│   │   │   │   ├── classTCLAP_1_1DocBookOutput-members.html
│   │   │   │   ├── classTCLAP_1_1ExitException.html
│   │   │   │   ├── classTCLAP_1_1ExitException-members.html
│   │   │   │   ├── classTCLAP_1_1HelpVisitor.gif
│   │   │   │   ├── classTCLAP_1_1HelpVisitor.html
│   │   │   │   ├── classTCLAP_1_1HelpVisitor-members.html
│   │   │   │   ├── classTCLAP_1_1IgnoreRestVisitor.gif
│   │   │   │   ├── classTCLAP_1_1IgnoreRestVisitor.html
│   │   │   │   ├── classTCLAP_1_1IgnoreRestVisitor-members.html
│   │   │   │   ├── classTCLAP_1_1MultiArg.gif
│   │   │   │   ├── classTCLAP_1_1MultiArg.html
│   │   │   │   ├── classTCLAP_1_1MultiArg-members.html
│   │   │   │   ├── classTCLAP_1_1MultiSwitchArg.gif
│   │   │   │   ├── classTCLAP_1_1MultiSwitchArg.html
│   │   │   │   ├── classTCLAP_1_1MultiSwitchArg-members.html
│   │   │   │   ├── classTCLAP_1_1OptionalUnlabeledTracker.html
│   │   │   │   ├── classTCLAP_1_1OptionalUnlabeledTracker-members.html
│   │   │   │   ├── classTCLAP_1_1SpecificationException.gif
│   │   │   │   ├── classTCLAP_1_1SpecificationException.html
│   │   │   │   ├── classTCLAP_1_1SpecificationException-members.html
│   │   │   │   ├── classTCLAP_1_1StdOutput.gif
│   │   │   │   ├── classTCLAP_1_1StdOutput.html
│   │   │   │   ├── classTCLAP_1_1StdOutput-members.html
│   │   │   │   ├── classTCLAP_1_1SwitchArg.gif
│   │   │   │   ├── classTCLAP_1_1SwitchArg.html
│   │   │   │   ├── classTCLAP_1_1SwitchArg-members.html
│   │   │   │   ├── classTCLAP_1_1UnlabeledMultiArg.gif
│   │   │   │   ├── classTCLAP_1_1UnlabeledMultiArg.html
│   │   │   │   ├── classTCLAP_1_1UnlabeledMultiArg-members.html
│   │   │   │   ├── classTCLAP_1_1UnlabeledValueArg.gif
│   │   │   │   ├── classTCLAP_1_1UnlabeledValueArg.html
│   │   │   │   ├── classTCLAP_1_1UnlabeledValueArg-members.html
│   │   │   │   ├── classTCLAP_1_1ValueArg.gif
│   │   │   │   ├── classTCLAP_1_1ValueArg.html
│   │   │   │   ├── classTCLAP_1_1ValueArg-members.html
│   │   │   │   ├── classTCLAP_1_1ValuesConstraint.gif
│   │   │   │   ├── classTCLAP_1_1ValuesConstraint.html
│   │   │   │   ├── classTCLAP_1_1ValuesConstraint-members.html
│   │   │   │   ├── classTCLAP_1_1VersionVisitor.gif
│   │   │   │   ├── classTCLAP_1_1VersionVisitor.html
│   │   │   │   ├── classTCLAP_1_1VersionVisitor-members.html
│   │   │   │   ├── classTCLAP_1_1Visitor.gif
│   │   │   │   ├── classTCLAP_1_1Visitor.html
│   │   │   │   ├── classTCLAP_1_1Visitor-members.html
│   │   │   │   ├── classTCLAP_1_1XorHandler.html
│   │   │   │   ├── classTCLAP_1_1XorHandler-members.html
│   │   │   │   ├── classTCLAP_1_1ZshCompletionOutput.gif
│   │   │   │   ├── classTCLAP_1_1ZshCompletionOutput.html
│   │   │   │   ├── classTCLAP_1_1ZshCompletionOutput-members.html
│   │   │   │   ├── CmdLine_8h.html
│   │   │   │   ├── CmdLine_8h_source.html
│   │   │   │   ├── CmdLineInterface_8h.html
│   │   │   │   ├── CmdLineInterface_8h_source.html
│   │   │   │   ├── CmdLineOutput_8h.html
│   │   │   │   ├── CmdLineOutput_8h_source.html
│   │   │   │   ├── Constraint_8h.html
│   │   │   │   ├── Constraint_8h_source.html
│   │   │   │   ├── CVS
│   │   │   │   │   ├── Entries
│   │   │   │   │   ├── Repository
│   │   │   │   │   └── Root
│   │   │   │   ├── DocBookOutput_8h.html
│   │   │   │   ├── DocBookOutput_8h_source.html
│   │   │   │   ├── doxygen.css
│   │   │   │   ├── doxygen.png
│   │   │   │   ├── files.html
│   │   │   │   ├── functions_0x61.html
│   │   │   │   ├── functions_0x62.html
│   │   │   │   ├── functions_0x63.html
│   │   │   │   ├── functions_0x64.html
│   │   │   │   ├── functions_0x65.html
│   │   │   │   ├── functions_0x66.html
│   │   │   │   ├── functions_0x67.html
│   │   │   │   ├── functions_0x68.html
│   │   │   │   ├── functions_0x69.html
│   │   │   │   ├── functions_0x6c.html
│   │   │   │   ├── functions_0x6d.html
│   │   │   │   ├── functions_0x6e.html
│   │   │   │   ├── functions_0x6f.html
│   │   │   │   ├── functions_0x70.html
│   │   │   │   ├── functions_0x71.html
│   │   │   │   ├── functions_0x72.html
│   │   │   │   ├── functions_0x73.html
│   │   │   │   ├── functions_0x74.html
│   │   │   │   ├── functions_0x75.html
│   │   │   │   ├── functions_0x76.html
│   │   │   │   ├── functions_0x77.html
│   │   │   │   ├── functions_0x78.html
│   │   │   │   ├── functions_0x7a.html
│   │   │   │   ├── functions_0x7e.html
│   │   │   │   ├── functions_func_0x61.html
│   │   │   │   ├── functions_func_0x62.html
│   │   │   │   ├── functions_func_0x63.html
│   │   │   │   ├── functions_func_0x64.html
│   │   │   │   ├── functions_func_0x65.html
│   │   │   │   ├── functions_func_0x66.html
│   │   │   │   ├── functions_func_0x67.html
│   │   │   │   ├── functions_func_0x68.html
│   │   │   │   ├── functions_func_0x69.html
│   │   │   │   ├── functions_func_0x6c.html
│   │   │   │   ├── functions_func_0x6d.html
│   │   │   │   ├── functions_func_0x6e.html
│   │   │   │   ├── functions_func_0x6f.html
│   │   │   │   ├── functions_func_0x70.html
│   │   │   │   ├── functions_func_0x71.html
│   │   │   │   ├── functions_func_0x72.html
│   │   │   │   ├── functions_func_0x73.html
│   │   │   │   ├── functions_func_0x74.html
│   │   │   │   ├── functions_func_0x75.html
│   │   │   │   ├── functions_func_0x76.html
│   │   │   │   ├── functions_func_0x77.html
│   │   │   │   ├── functions_func_0x78.html
│   │   │   │   ├── functions_func_0x7a.html
│   │   │   │   ├── functions_func_0x7e.html
│   │   │   │   ├── functions_func.html
│   │   │   │   ├── functions.html
│   │   │   │   ├── functions_type.html
│   │   │   │   ├── functions_vars.html
│   │   │   │   ├── globals_defs.html
│   │   │   │   ├── globals.html
│   │   │   │   ├── globals_type.html
│   │   │   │   ├── HelpVisitor_8h.html
│   │   │   │   ├── HelpVisitor_8h_source.html
│   │   │   │   ├── hierarchy.html
│   │   │   │   ├── IgnoreRestVisitor_8h.html
│   │   │   │   ├── IgnoreRestVisitor_8h_source.html
│   │   │   │   ├── index.html
│   │   │   │   ├── MultiArg_8h.html
│   │   │   │   ├── MultiArg_8h_source.html
│   │   │   │   ├── MultiSwitchArg_8h.html
│   │   │   │   ├── MultiSwitchArg_8h_source.html
│   │   │   │   ├── namespacemembers_func.html
│   │   │   │   ├── namespacemembers.html
│   │   │   │   ├── namespacemembers_type.html
│   │   │   │   ├── namespaces.html
│   │   │   │   ├── namespaceTCLAP.html
│   │   │   │   ├── OptionalUnlabeledTracker_8h.html
│   │   │   │   ├── OptionalUnlabeledTracker_8h_source.html
│   │   │   │   ├── StandardTraits_8h.html
│   │   │   │   ├── StandardTraits_8h_source.html
│   │   │   │   ├── StdOutput_8h.html
│   │   │   │   ├── StdOutput_8h_source.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01bool_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01bool_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01char_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01char_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01double_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01double_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01float_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01float_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01int_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01int_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01long_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01long_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01short_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01short_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01std_1_1string_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01std_1_1string_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01unsigned_01char_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01unsigned_01char_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01unsigned_01int_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01unsigned_01int_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01unsigned_01long_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01unsigned_01long_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01unsigned_01short_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01unsigned_01short_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01wchar__t_01_4.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits_3_01wchar__t_01_4-members.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits.html
│   │   │   │   ├── structTCLAP_1_1ArgTraits-members.html
│   │   │   │   ├── structTCLAP_1_1StringLike.html
│   │   │   │   ├── structTCLAP_1_1StringLike-members.html
│   │   │   │   ├── structTCLAP_1_1StringLikeTrait.html
│   │   │   │   ├── structTCLAP_1_1StringLikeTrait-members.html
│   │   │   │   ├── structTCLAP_1_1ValueLike.html
│   │   │   │   ├── structTCLAP_1_1ValueLike-members.html
│   │   │   │   ├── structTCLAP_1_1ValueLikeTrait.html
│   │   │   │   ├── structTCLAP_1_1ValueLikeTrait-members.html
│   │   │   │   ├── SwitchArg_8h.html
│   │   │   │   ├── SwitchArg_8h_source.html
│   │   │   │   ├── tab_b.gif
│   │   │   │   ├── tab_l.gif
│   │   │   │   ├── tab_r.gif
│   │   │   │   ├── tabs.css
│   │   │   │   ├── UnlabeledMultiArg_8h.html
│   │   │   │   ├── UnlabeledMultiArg_8h_source.html
│   │   │   │   ├── UnlabeledValueArg_8h.html
│   │   │   │   ├── UnlabeledValueArg_8h_source.html
│   │   │   │   ├── ValueArg_8h.html
│   │   │   │   ├── ValueArg_8h_source.html
│   │   │   │   ├── ValuesConstraint_8h.html
│   │   │   │   ├── ValuesConstraint_8h_source.html
│   │   │   │   ├── VersionVisitor_8h.html
│   │   │   │   ├── VersionVisitor_8h_source.html
│   │   │   │   ├── Visitor_8h.html
│   │   │   │   ├── Visitor_8h_source.html
│   │   │   │   ├── XorHandler_8h.html
│   │   │   │   ├── XorHandler_8h_source.html
│   │   │   │   ├── ZshCompletionOutput_8h.html
│   │   │   │   └── ZshCompletionOutput_8h_source.html
│   │   │   ├── index.html
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── manual.html
│   │   │   ├── manual.xml
│   │   │   ├── README
│   │   │   └── style.css
│   │   ├── examples
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── test10.cpp
│   │   │   ├── test11.cpp
│   │   │   ├── test12.cpp
│   │   │   ├── test13.cpp
│   │   │   ├── test14.cpp
│   │   │   ├── test15.cpp
│   │   │   ├── test16.cpp
│   │   │   ├── test17-a.cpp
│   │   │   ├── test17.cpp
│   │   │   ├── test18.cpp
│   │   │   ├── test19.cpp
│   │   │   ├── test1.cpp
│   │   │   ├── test20.cpp
│   │   │   ├── test21.cpp
│   │   │   ├── test2.cpp
│   │   │   ├── test3.cpp
│   │   │   ├── test4.cpp
│   │   │   ├── test5.cpp
│   │   │   ├── test6.cpp
│   │   │   ├── test7.cpp
│   │   │   ├── test8.cpp
│   │   │   └── test9.cpp
│   │   ├── include
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   └── tclap
│   │   │   ├── ArgException.h
│   │   │   ├── Arg.h
│   │   │   ├── ArgTraits.h
│   │   │   ├── CmdLine.h
│   │   │   ├── CmdLineInterface.h
│   │   │   ├── CmdLineOutput.h
│   │   │   ├── Constraint.h
│   │   │   ├── DocBookOutput.h
│   │   │   ├── HelpVisitor.h
│   │   │   ├── IgnoreRestVisitor.h
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── MultiArg.h
│   │   │   ├── MultiSwitchArg.h
│   │   │   ├── OptionalUnlabeledTracker.h
│   │   │   ├── StandardTraits.h
│   │   │   ├── StdOutput.h
│   │   │   ├── SwitchArg.h
│   │   │   ├── UnlabeledMultiArg.h
│   │   │   ├── UnlabeledValueArg.h
│   │   │   ├── ValueArg.h
│   │   │   ├── ValuesConstraint.h
│   │   │   ├── VersionVisitor.h
│   │   │   ├── Visitor.h
│   │   │   ├── XorHandler.h
│   │   │   └── ZshCompletionOutput.h
│   │   ├── INSTALL
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── msc
│   │   │   ├── examples
│   │   │   │   ├── Makefile.am
│   │   │   │   ├── Makefile.in
│   │   │   │   ├── test1.vcproj
│   │   │   │   ├── test2.vcproj
│   │   │   │   ├── test3.vcproj
│   │   │   │   ├── test4.vcproj
│   │   │   │   ├── test5.vcproj
│   │   │   │   ├── test6.vcproj
│   │   │   │   ├── test7.vcproj
│   │   │   │   └── test8.vcproj
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── README
│   │   │   ├── tclap-beta.ncb
│   │   │   ├── tclap-beta.sln
│   │   │   ├── tclap-beta.suo
│   │   │   └── tclap-beta.vcproj
│   │   ├── NEWS
│   │   ├── README
│   │   ├── tclap.pc.in
│   │   └── tests
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test10.out
│   │   ├── test10.sh
│   │   ├── test11.out
│   │   ├── test11.sh
│   │   ├── test12.out
│   │   ├── test12.sh
│   │   ├── test13.out
│   │   ├── test13.sh
│   │   ├── test14.out
│   │   ├── test14.sh
│   │   ├── test15.out
│   │   ├── test15.sh
│   │   ├── test16.out
│   │   ├── test16.sh
│   │   ├── test17.out
│   │   ├── test17.sh
│   │   ├── test18.out
│   │   ├── test18.sh
│   │   ├── test19.out
│   │   ├── test19.sh
│   │   ├── test1.out
│   │   ├── test1.sh
│   │   ├── test20.out
│   │   ├── test20.sh
│   │   ├── test21.out
│   │   ├── test21.sh
│   │   ├── test22.out
│   │   ├── test22.sh
│   │   ├── test23.out
│   │   ├── test23.sh
│   │   ├── test24.out
│   │   ├── test24.sh
│   │   ├── test25.out
│   │   ├── test25.sh
│   │   ├── test26.out
│   │   ├── test26.sh
│   │   ├── test27.out
│   │   ├── test27.sh
│   │   ├── test28.out
│   │   ├── test28.sh
│   │   ├── test29.out
│   │   ├── test29.sh
│   │   ├── test2.out
│   │   ├── test2.sh
│   │   ├── test30.out
│   │   ├── test30.sh
│   │   ├── test31.out
│   │   ├── test31.sh
│   │   ├── test32.out
│   │   ├── test32.sh
│   │   ├── test33.out
│   │   ├── test33.sh
│   │   ├── test34.out
│   │   ├── test34.sh
│   │   ├── test35.out
│   │   ├── test35.sh
│   │   ├── test36.out
│   │   ├── test36.sh
│   │   ├── test37.out
│   │   ├── test37.sh
│   │   ├── test38.out
│   │   ├── test38.sh
│   │   ├── test39.out
│   │   ├── test39.sh
│   │   ├── test3.out
│   │   ├── test3.sh
│   │   ├── test40.out
│   │   ├── test40.sh
│   │   ├── test41.out
│   │   ├── test41.sh
│   │   ├── test42.out
│   │   ├── test42.sh
│   │   ├── test43.out
│   │   ├── test43.sh
│   │   ├── test44.out
│   │   ├── test44.sh
│   │   ├── test45.out
│   │   ├── test45.sh
│   │   ├── test46.out
│   │   ├── test46.sh
│   │   ├── test47.out
│   │   ├── test47.sh
│   │   ├── test48.out
│   │   ├── test48.sh
│   │   ├── test49.out
│   │   ├── test49.sh
│   │   ├── test4.out
│   │   ├── test4.sh
│   │   ├── test50.out
│   │   ├── test50.sh
│   │   ├── test51.out
│   │   ├── test51.sh
│   │   ├── test52.out
│   │   ├── test52.sh
│   │   ├── test53.out
│   │   ├── test53.sh
│   │   ├── test54.out
│   │   ├── test54.sh
│   │   ├── test55.out
│   │   ├── test55.sh
│   │   ├── test56.out
│   │   ├── test56.sh
│   │   ├── test57.out
│   │   ├── test57.sh
│   │   ├── test58.out
│   │   ├── test58.sh
│   │   ├── test59.out
│   │   ├── test59.sh
│   │   ├── test5.out
│   │   ├── test5.sh
│   │   ├── test60.out
│   │   ├── test60.sh
│   │   ├── test61.out
│   │   ├── test61.sh
│   │   ├── test62.out
│   │   ├── test62.sh
│   │   ├── test63.out
│   │   ├── test63.sh
│   │   ├── test64.out
│   │   ├── test64.sh
│   │   ├── test65.out
│   │   ├── test65.sh
│   │   ├── test66.out
│   │   ├── test66.sh
│   │   ├── test67.out
│   │   ├── test67.sh
│   │   ├── test68.out
│   │   ├── test68.sh
│   │   ├── test69.out
│   │   ├── test69.sh
│   │   ├── test6.out
│   │   ├── test6.sh
│   │   ├── test70.out
│   │   ├── test70.sh
│   │   ├── test71.out
│   │   ├── test71.sh
│   │   ├── test72.out
│   │   ├── test72.sh
│   │   ├── test73.out
│   │   ├── test73.sh
│   │   ├── test74.out
│   │   ├── test74.sh
│   │   ├── test75.out
│   │   ├── test75.sh
│   │   ├── test76.out
│   │   ├── test76.sh
│   │   ├── test77.out
│   │   ├── test77.sh
│   │   ├── test78.out
│   │   ├── test78.sh
│   │   ├── test7.out
│   │   ├── test7.sh
│   │   ├── test8.out
│   │   ├── test8.sh
│   │   ├── test9.out
│   │   └── test9.sh
│   ├── toAlignEx
│   └── util.h
├── mitlm-0.4.1
│   ├── aclocal.m4
│   ├── AUTHORS
│   ├── autogen.sh
│   ├── build-aux
│   │   ├── compile
│   │   ├── config.guess
│   │   ├── config.sub
│   │   ├── depcomp
│   │   ├── install-sh
│   │   ├── ltmain.sh
│   │   └── missing
│   ├── ChangeLog
│   ├── configure
│   ├── configure.ac
│   ├── COPYING
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── README
│   ├── src
│   │   ├── estimate-ngram.cpp
│   │   ├── evaluate-ngram.cpp
│   │   ├── InterpolatedNgramLM.cpp
│   │   ├── InterpolatedNgramLM.h
│   │   ├── interpolate-ngram.cpp
│   │   ├── KneserNeySmoothing.cpp
│   │   ├── KneserNeySmoothing.h
│   │   ├── Lattice.cpp
│   │   ├── Lattice.h
│   │   ├── Mask.h
│   │   ├── MaxLikelihoodSmoothing.cpp
│   │   ├── MaxLikelihoodSmoothing.h
│   │   ├── NgramLM.cpp
│   │   ├── NgramLM.h
│   │   ├── NgramModel.cpp
│   │   ├── NgramModel.h
│   │   ├── NgramVector.cpp
│   │   ├── NgramVector.h
│   │   ├── optimize
│   │   │   ├── fortran_wrapper.c
│   │   │   ├── lbfgsb.f
│   │   │   ├── LBFGSB.h
│   │   │   ├── lbfgs.f
│   │   │   ├── LBFGS.h
│   │   │   ├── Optimization.h
│   │   │   └── Powell.h
│   │   ├── PerplexityOptimizer.cpp
│   │   ├── PerplexityOptimizer.h
│   │   ├── Smoothing.cpp
│   │   ├── Smoothing.h
│   │   ├── Types.h
│   │   ├── util
│   │   │   ├── BitOps.h
│   │   │   ├── CommandOptions.cpp
│   │   │   ├── CommandOptions.h
│   │   │   ├── FastHash.h
│   │   │   ├── FastIO.h
│   │   │   ├── Logger.cpp
│   │   │   ├── Logger.h
│   │   │   ├── RefCounter.cpp
│   │   │   ├── RefCounter.h
│   │   │   ├── SharedPtr.h
│   │   │   └── ZFile.h
│   │   ├── vector
│   │   │   ├── DenseVector.h
│   │   │   ├── DenseVector.tcc
│   │   │   ├── Operations.h
│   │   │   ├── Range.h
│   │   │   ├── Scalar.h
│   │   │   ├── Traits.h
│   │   │   ├── VectorBuilder.h
│   │   │   ├── VectorClosures.h
│   │   │   ├── Vector.h
│   │   │   └── VectorOps.h
│   │   ├── Vocab.cpp
│   │   ├── Vocab.h
│   │   ├── WordErrorRateOptimizer.cpp
│   │   └── WordErrorRateOptimizer.h
│   └── tests
│   ├── data
│   │   ├── small.txt
│   │   ├── small.vocab
│   │   └── test1_ref
│   │   ├── wc.a.hyp
│   │   ├── wc.b.hyp
│   │   ├── wec.a.hyp
│   │   ├── wec.b.hyp
│   │   ├── wl.a.hyp
│   │   ├── wl.b.hyp
│   │   ├── wlc.a.hyp
│   │   ├── wlc.b.hyp
│   │   ├── wrc.a.hyp
│   │   └── wrc.b.hyp
│   └── test1.test.in
├── openfst-1.4.1
│   ├── aclocal.m4
│   ├── AUTHORS
│   ├── config.guess
│   ├── config.h.in
│   ├── config.sub
│   ├── configure
│   ├── configure.ac
│   ├── COPYING
│   ├── depcomp
│   ├── INSTALL
│   ├── install-sh
│   ├── ltmain.sh
│   ├── m4
│   │   ├── libtool.m4
│   │   ├── lt~obsolete.m4
│   │   ├── ltoptions.m4
│   │   ├── ltsugar.m4
│   │   └── ltversion.m4
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── missing
│   ├── NEWS
│   ├── README
│   └── src
│   ├── bin
│   │   ├── fstarcsort.cc
│   │   ├── fstclosure.cc
│   │   ├── fstcompile.cc
│   │   ├── fstcompose.cc
│   │   ├── fstconcat.cc
│   │   ├── fstconnect.cc
│   │   ├── fstconvert.cc
│   │   ├── fstdeterminize.cc
│   │   ├── fstdifference.cc
│   │   ├── fstdisambiguate.cc
│   │   ├── fstdraw.cc
│   │   ├── fstencode.cc
│   │   ├── fstepsnormalize.cc
│   │   ├── fstequal.cc
│   │   ├── fstequivalent.cc
│   │   ├── fstinfo.cc
│   │   ├── fstintersect.cc
│   │   ├── fstinvert.cc
│   │   ├── fstmap.cc
│   │   ├── fstminimize.cc
│   │   ├── fstprint.cc
│   │   ├── fstproject.cc
│   │   ├── fstprune.cc
│   │   ├── fstpush.cc
│   │   ├── fstrandgen.cc
│   │   ├── fstrelabel.cc
│   │   ├── fstreplace.cc
│   │   ├── fstreverse.cc
│   │   ├── fstreweight.cc
│   │   ├── fstrmepsilon.cc
│   │   ├── fstshortestdistance.cc
│   │   ├── fstshortestpath.cc
│   │   ├── fstsymbols.cc
│   │   ├── fstsynchronize.cc
│   │   ├── fsttopsort.cc
│   │   ├── fstunion.cc
│   │   ├── Makefile.am
│   │   └── Makefile.in
│   ├── extensions
│   │   ├── compact
│   │   │   ├── compact16_acceptor-fst.cc
│   │   │   ├── compact16_string-fst.cc
│   │   │   ├── compact16_unweighted_acceptor-fst.cc
│   │   │   ├── compact16_unweighted-fst.cc
│   │   │   ├── compact16_weighted_string-fst.cc
│   │   │   ├── compact64_acceptor-fst.cc
│   │   │   ├── compact64_string-fst.cc
│   │   │   ├── compact64_unweighted_acceptor-fst.cc
│   │   │   ├── compact64_unweighted-fst.cc
│   │   │   ├── compact64_weighted_string-fst.cc
│   │   │   ├── compact8_acceptor-fst.cc
│   │   │   ├── compact8_string-fst.cc
│   │   │   ├── compact8_unweighted_acceptor-fst.cc
│   │   │   ├── compact8_unweighted-fst.cc
│   │   │   ├── compact8_weighted_string-fst.cc
│   │   │   ├── Makefile.am
│   │   │   └── Makefile.in
│   │   ├── const
│   │   │   ├── const16-fst.cc
│   │   │   ├── const64-fst.cc
│   │   │   ├── const8-fst.cc
│   │   │   ├── Makefile.am
│   │   │   └── Makefile.in
│   │   ├── far
│   │   │   ├── farcompilestrings.cc
│   │   │   ├── farcreate.cc
│   │   │   ├── farequal.cc
│   │   │   ├── farextract.cc
│   │   │   ├── farinfo.cc
│   │   │   ├── farprintstrings.cc
│   │   │   ├── farscript.cc
│   │   │   ├── main.cc
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── stlist.cc
│   │   │   ├── strings.cc
│   │   │   └── sttable.cc
│   │   ├── linear
│   │   │   ├── fstlinear.cc
│   │   │   ├── fstloglinearapply.cc
│   │   │   ├── linear-classifier-fst.cc
│   │   │   ├── linearscript.cc
│   │   │   ├── linear-tagger-fst.cc
│   │   │   ├── Makefile.am
│   │   │   └── Makefile.in
│   │   ├── lookahead
│   │   │   ├── arc_lookahead-fst.cc
│   │   │   ├── ilabel_lookahead-fst.cc
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   └── olabel_lookahead-fst.cc
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── ngram
│   │   │   ├── bitmap-index.cc
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── ngram-fst.cc
│   │   │   └── nthbit.cc
│   │   └── pdt
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── pdtcompose.cc
│   │   ├── pdtexpand.cc
│   │   ├── pdtinfo.cc
│   │   ├── pdtreplace.cc
│   │   ├── pdtreverse.cc
│   │   ├── pdtscript.cc
│   │   └── pdtshortestpath.cc
│   ├── include
│   │   ├── fst
│   │   │   ├── accumulator.h
│   │   │   ├── add-on.h
│   │   │   ├── arcfilter.h
│   │   │   ├── arc.h
│   │   │   ├── arc-map.h
│   │   │   ├── arcsort.h
│   │   │   ├── bi-table.h
│   │   │   ├── cache.h
│   │   │   ├── closure.h
│   │   │   ├── compact-fst.h
│   │   │   ├── compat.h
│   │   │   ├── complement.h
│   │   │   ├── compose-filter.h
│   │   │   ├── compose.h
│   │   │   ├── concat.h
│   │   │   ├── config.h
│   │   │   ├── config.h.in
│   │   │   ├── connect.h
│   │   │   ├── const-fst.h
│   │   │   ├── determinize.h
│   │   │   ├── dfs-visit.h
│   │   │   ├── difference.h
│   │   │   ├── disambiguate.h
│   │   │   ├── edit-fst.h
│   │   │   ├── encode.h
│   │   │   ├── epsnormalize.h
│   │   │   ├── equal.h
│   │   │   ├── equivalent.h
│   │   │   ├── expanded-fst.h
│   │   │   ├── expectation-weight.h
│   │   │   ├── extensions
│   │   │   │   ├── far
│   │   │   │   │   ├── compile-strings.h
│   │   │   │   │   ├── create.h
│   │   │   │   │   ├── equal.h
│   │   │   │   │   ├── extract.h
│   │   │   │   │   ├── far.h
│   │   │   │   │   ├── farlib.h
│   │   │   │   │   ├── farscript.h
│   │   │   │   │   ├── info.h
│   │   │   │   │   ├── main.h
│   │   │   │   │   ├── print-strings.h
│   │   │   │   │   ├── stlist.h
│   │   │   │   │   └── sttable.h
│   │   │   │   ├── linear
│   │   │   │   │   ├── linear-fst-data-builder.h
│   │   │   │   │   ├── linear-fst-data.h
│   │   │   │   │   ├── linear-fst.h
│   │   │   │   │   ├── linearscript.h
│   │   │   │   │   ├── loglinear-apply.h
│   │   │   │   │   └── trie.h
│   │   │   │   ├── ngram
│   │   │   │   │   ├── bitmap-index.h
│   │   │   │   │   ├── ngram-fst.h
│   │   │   │   │   └── nthbit.h
│   │   │   │   └── pdt
│   │   │   │   ├── collection.h
│   │   │   │   ├── compose.h
│   │   │   │   ├── expand.h
│   │   │   │   ├── info.h
│   │   │   │   ├── paren.h
│   │   │   │   ├── pdt.h
│   │   │   │   ├── pdtlib.h
│   │   │   │   ├── pdtscript.h
│   │   │   │   ├── replace.h
│   │   │   │   ├── reverse.h
│   │   │   │   └── shortest-path.h
│   │   │   ├── factor-weight.h
│   │   │   ├── filter-state.h
│   │   │   ├── flags.h
│   │   │   ├── float-weight.h
│   │   │   ├── fst-decl.h
│   │   │   ├── fst.h
│   │   │   ├── fstlib.h
│   │   │   ├── generic-register.h
│   │   │   ├── heap.h
│   │   │   ├── icu.h
│   │   │   ├── intersect.h
│   │   │   ├── interval-set.h
│   │   │   ├── invert.h
│   │   │   ├── label-reachable.h
│   │   │   ├── lexicographic-weight.h
│   │   │   ├── lock.h
│   │   │   ├── log.h
│   │   │   ├── lookahead-filter.h
│   │   │   ├── lookahead-matcher.h
│   │   │   ├── map.h
│   │   │   ├── mapped-file.h
│   │   │   ├── matcher-fst.h
│   │   │   ├── matcher.h
│   │   │   ├── memory.h
│   │   │   ├── minimize.h
│   │   │   ├── mutable-fst.h
│   │   │   ├── pair-weight.h
│   │   │   ├── partition.h
│   │   │   ├── power-weight.h
│   │   │   ├── product-weight.h
│   │   │   ├── project.h
│   │   │   ├── properties.h
│   │   │   ├── prune.h
│   │   │   ├── push.h
│   │   │   ├── queue.h
│   │   │   ├── randequivalent.h
│   │   │   ├── randgen.h
│   │   │   ├── random-weight.h
│   │   │   ├── rational.h
│   │   │   ├── register.h
│   │   │   ├── relabel.h
│   │   │   ├── replace.h
│   │   │   ├── replace-util.h
│   │   │   ├── reverse.h
│   │   │   ├── reweight.h
│   │   │   ├── rmepsilon.h
│   │   │   ├── rmfinalepsilon.h
│   │   │   ├── script
│   │   │   │   ├── arcsort.h
│   │   │   │   ├── arg-packs.h
│   │   │   │   ├── closure.h
│   │   │   │   ├── compile.h
│   │   │   │   ├── compile-impl.h
│   │   │   │   ├── compose.h
│   │   │   │   ├── concat.h
│   │   │   │   ├── connect.h
│   │   │   │   ├── convert.h
│   │   │   │   ├── decode.h
│   │   │   │   ├── determinize.h
│   │   │   │   ├── difference.h
│   │   │   │   ├── disambiguate.h
│   │   │   │   ├── draw.h
│   │   │   │   ├── draw-impl.h
│   │   │   │   ├── encode.h
│   │   │   │   ├── epsnormalize.h
│   │   │   │   ├── equal.h
│   │   │   │   ├── equivalent.h
│   │   │   │   ├── fst-class.h
│   │   │   │   ├── fstscript-decl.h
│   │   │   │   ├── fstscript.h
│   │   │   │   ├── info.h
│   │   │   │   ├── info-impl.h
│   │   │   │   ├── intersect.h
│   │   │   │   ├── invert.h
│   │   │   │   ├── map.h
│   │   │   │   ├── minimize.h
│   │   │   │   ├── print.h
│   │   │   │   ├── print-impl.h
│   │   │   │   ├── project.h
│   │   │   │   ├── prune.h
│   │   │   │   ├── push.h
│   │   │   │   ├── randequivalent.h
│   │   │   │   ├── randgen.h
│   │   │   │   ├── register.h
│   │   │   │   ├── relabel.h
│   │   │   │   ├── replace.h
│   │   │   │   ├── reverse.h
│   │   │   │   ├── reweight.h
│   │   │   │   ├── rmepsilon.h
│   │   │   │   ├── script-impl.h
│   │   │   │   ├── shortest-distance.h
│   │   │   │   ├── shortest-path.h
│   │   │   │   ├── symbols.h
│   │   │   │   ├── synchronize.h
│   │   │   │   ├── text-io.h
│   │   │   │   ├── topsort.h
│   │   │   │   ├── union.h
│   │   │   │   ├── verify.h
│   │   │   │   └── weight-class.h
│   │   │   ├── shortest-distance.h
│   │   │   ├── shortest-path.h
│   │   │   ├── signed-log-weight.h
│   │   │   ├── sparse-power-weight.h
│   │   │   ├── sparse-tuple-weight.h
│   │   │   ├── state-map.h
│   │   │   ├── state-reachable.h
│   │   │   ├── statesort.h
│   │   │   ├── state-table.h
│   │   │   ├── string.h
│   │   │   ├── string-weight.h
│   │   │   ├── symbol-table.h
│   │   │   ├── symbol-table-ops.h
│   │   │   ├── synchronize.h
│   │   │   ├── test-properties.h
│   │   │   ├── topsort.h
│   │   │   ├── tuple-weight.h
│   │   │   ├── types.h
│   │   │   ├── union-find.h
│   │   │   ├── union.h
│   │   │   ├── util.h
│   │   │   ├── vector-fst.h
│   │   │   ├── verify.h
│   │   │   ├── visit.h
│   │   │   └── weight.h
│   │   ├── Makefile.am
│   │   └── Makefile.in
│   ├── lib
│   │   ├── compat.cc
│   │   ├── flags.cc
│   │   ├── fst.cc
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── mapped-file.cc
│   │   ├── properties.cc
│   │   ├── symbol-table.cc
│   │   ├── symbol-table-ops.cc
│   │   └── util.cc
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── script
│   │   ├── arcsort.cc
│   │   ├── closure.cc
│   │   ├── compile.cc
│   │   ├── compose.cc
│   │   ├── concat.cc
│   │   ├── connect.cc
│   │   ├── convert.cc
│   │   ├── decode.cc
│   │   ├── determinize.cc
│   │   ├── difference.cc
│   │   ├── disambiguate.cc
│   │   ├── draw.cc
│   │   ├── encode.cc
│   │   ├── epsnormalize.cc
│   │   ├── equal.cc
│   │   ├── equivalent.cc
│   │   ├── fst-class.cc
│   │   ├── info.cc
│   │   ├── intersect.cc
│   │   ├── invert.cc
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── map.cc
│   │   ├── minimize.cc
│   │   ├── print.cc
│   │   ├── project.cc
│   │   ├── prune.cc
│   │   ├── push.cc
│   │   ├── randequivalent.cc
│   │   ├── randgen.cc
│   │   ├── relabel.cc
│   │   ├── replace.cc
│   │   ├── reverse.cc
│   │   ├── reweight.cc
│   │   ├── rmepsilon.cc
│   │   ├── script-impl.cc
│   │   ├── shortest-distance.cc
│   │   ├── shortest-path.cc
│   │   ├── synchronize.cc
│   │   ├── text-io.cc
│   │   ├── topsort.cc
│   │   ├── union.cc
│   │   ├── verify.cc
│   │   └── weight-class.cc
│   └── test
│   ├── algo_test.cc
│   ├── algo_test.h
│   ├── fst_test.cc
│   ├── fst_test.h
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── weight_test.cc
│   └── weight-tester.h
├── pocketsphinx-0.8
│   ├── aclocal.m4
│   ├── AUTHORS
│   ├── autogen.sh
│   ├── ChangeLog
│   ├── config.guess
│   ├── config.sub
│   ├── configure
│   ├── configure.in
│   ├── COPYING
│   ├── depcomp
│   ├── doc
│   │   ├── args2man.pl
│   │   ├── doxyfile.in
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── pocketsphinx_batch.1
│   │   ├── pocketsphinx_continuous.1
│   │   └── pocketsphinx_mdef_convert.1
│   ├── group
│   │   ├── ABLD.BAT
│   │   ├── bld.inf
│   │   └── pocketsphinx.mmp
│   ├── include
│   │   ├── cmdln_macro.h
│   │   ├── fsg_set.h
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── pocketsphinx_export.h
│   │   ├── pocketsphinx.h
│   │   ├── ps_lattice.h
│   │   └── ps_mllr.h
│   ├── INSTALL
│   ├── install-sh
│   ├── ltmain.sh
│   ├── m4
│   │   ├── libtool.m4
│   │   ├── lt~obsolete.m4
│   │   ├── ltoptions.m4
│   │   ├── ltsugar.m4
│   │   ├── ltversion.m4
│   │   └── pkg.m4
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── missing
│   ├── model
│   │   ├── hmm
│   │   │   ├── en
│   │   │   │   └── tidigits
│   │   │   │   ├── feat.params
│   │   │   │   ├── mdef
│   │   │   │   ├── means
│   │   │   │   ├── sendump
│   │   │   │   ├── transition_matrices
│   │   │   │   └── variances
│   │   │   ├── en_US
│   │   │   │   └── hub4wsj_sc_8k
│   │   │   │   ├── feat.params
│   │   │   │   ├── mdef
│   │   │   │   ├── means
│   │   │   │   ├── noisedict
│   │   │   │   ├── sendump
│   │   │   │   ├── transition_matrices
│   │   │   │   └── variances
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   └── zh
│   │   │   └── tdt_sc_8k
│   │   │   ├── feat.params
│   │   │   ├── mdef
│   │   │   ├── means
│   │   │   ├── noisedict
│   │   │   ├── sendump
│   │   │   ├── transition_matrices
│   │   │   └── variances
│   │   ├── lm
│   │   │   ├── en
│   │   │   │   ├── tidigits.dic
│   │   │   │   ├── tidigits.DMP
│   │   │   │   ├── tidigits.fsg
│   │   │   │   ├── turtle.dic
│   │   │   │   └── turtle.DMP
│   │   │   ├── en_US
│   │   │   │   ├── cmu07a.dic
│   │   │   │   ├── hub4.5000.dic
│   │   │   │   ├── hub4.5000.DMP
│   │   │   │   └── wsj0vp.5000.DMP
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── zh_CN
│   │   │   │   ├── gigatdt.5000.DMP
│   │   │   │   └── mandarin_notone.dic
│   │   │   └── zh_TW
│   │   │   ├── gigatdt.5000.DMP
│   │   │   └── mandarin_notone.dic
│   │   ├── Makefile.am
│   │   └── Makefile.in
│   ├── NEWS
│   ├── pocketsphinx.pc.in
│   ├── pocketsphinx.sln
│   ├── python
│   │   ├── bogus_pygobject.h
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── pocketsphinx.c
│   │   ├── pocketsphinx.pxd
│   │   ├── pocketsphinx.pyx
│   │   ├── ps_test_lm.py
│   │   ├── ps_test.py
│   │   ├── ps_test_raw.py
│   │   ├── ps_test_seg.py
│   │   ├── setup.py.in
│   │   └── setup_win32.py
│   ├── README
│   ├── src
│   │   ├── gst-plugin
│   │   │   ├── fixsqrt.py
│   │   │   ├── gstpocketsphinx.c
│   │   │   ├── gstpocketsphinx.h
│   │   │   ├── gstvader.c
│   │   │   ├── gstvader.h
│   │   │   ├── livedemo.py
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── psmarshal.c
│   │   │   ├── psmarshal.h
│   │   │   └── psmarshal.list
│   │   ├── libpocketsphinx
│   │   │   ├── acmod.c
│   │   │   ├── acmod.h
│   │   │   ├── bin_mdef.c
│   │   │   ├── bin_mdef.h
│   │   │   ├── blkarray_list.c
│   │   │   ├── blkarray_list.h
│   │   │   ├── dict2pid.c
│   │   │   ├── dict2pid.h
│   │   │   ├── dict.c
│   │   │   ├── dict.h
│   │   │   ├── fsg_history.c
│   │   │   ├── fsg_history.h
│   │   │   ├── fsg_lextree.c
│   │   │   ├── fsg_lextree.h
│   │   │   ├── fsg_search.c
│   │   │   ├── fsg_search_internal.h
│   │   │   ├── hmm.c
│   │   │   ├── hmm.h
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── mdef.c
│   │   │   ├── mdef.h
│   │   │   ├── ms_gauden.c
│   │   │   ├── ms_gauden.h
│   │   │   ├── ms_mgau.c
│   │   │   ├── ms_mgau.h
│   │   │   ├── ms_senone.c
│   │   │   ├── ms_senone.h
│   │   │   ├── ngram_search.c
│   │   │   ├── ngram_search_fwdflat.c
│   │   │   ├── ngram_search_fwdflat.h
│   │   │   ├── ngram_search_fwdtree.c
│   │   │   ├── ngram_search_fwdtree.h
│   │   │   ├── ngram_search.h
│   │   │   ├── phone_loop_search.c
│   │   │   ├── phone_loop_search.h
│   │   │   ├── pocketsphinx.c
│   │   │   ├── pocketsphinx_internal.h
│   │   │   ├── ps_alignment.c
│   │   │   ├── ps_alignment.h
│   │   │   ├── ps_lattice.c
│   │   │   ├── ps_lattice_internal.h
│   │   │   ├── ps_mllr.c
│   │   │   ├── ptm_mgau.c
│   │   │   ├── ptm_mgau.h
│   │   │   ├── s2_semi_mgau.c
│   │   │   ├── s2_semi_mgau.h
│   │   │   ├── s3types.h
│   │   │   ├── state_align_search.c
│   │   │   ├── state_align_search.h
│   │   │   ├── tied_mgau_common.h
│   │   │   ├── tmat.c
│   │   │   ├── tmat.h
│   │   │   ├── vector.c
│   │   │   └── vector.h
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   └── programs
│   │   ├── batch.c
│   │   ├── continuous.c
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   └── mdef_convert.c
│   ├── swig
│   │   ├── Android.mk
│   │   ├── Makefile
│   │   └── pocketsphinx.i
│   ├── test
│   │   ├── compare_table.pl
│   │   ├── data
│   │   │   ├── an4_ci_cont
│   │   │   │   ├── feat.params
│   │   │   │   ├── mdef
│   │   │   │   ├── means
│   │   │   │   ├── mixture_weights
│   │   │   │   ├── noisedict
│   │   │   │   ├── transition_matrices
│   │   │   │   └── variances
│   │   │   ├── cards
│   │   │   │   ├── 001.wav
│   │   │   │   ├── 002.wav
│   │   │   │   ├── 003.wav
│   │   │   │   ├── 004.wav
│   │   │   │   ├── 005.wav
│   │   │   │   ├── cards.fileids
│   │   │   │   ├── cards.gram
│   │   │   │   ├── cards.hyp
│   │   │   │   └── cards.transcription
│   │   │   ├── defective.dic
│   │   │   ├── goforward.fsg
│   │   │   ├── goforward.gram
│   │   │   ├── goforward.raw
│   │   │   ├── mllr_matrices
│   │   │   ├── numbers.raw
│   │   │   ├── something.raw
│   │   │   ├── test.lmctl
│   │   │   ├── tidigits
│   │   │   │   ├── dhd.2934z.raw
│   │   │   │   ├── man.ah.111a.mfc
│   │   │   │   ├── man.ah.1b.mfc
│   │   │   │   ├── man.ah.2934za.mfc
│   │   │   │   ├── man.ah.35oa.mfc
│   │   │   │   ├── man.ah.3oa.mfc
│   │   │   │   ├── man.ah.4625a.mfc
│   │   │   │   ├── man.ah.588zza.mfc
│   │   │   │   ├── man.ah.63a.mfc
│   │   │   │   ├── man.ah.6o838a.mfc
│   │   │   │   ├── man.ah.75913a.mfc
│   │   │   │   ├── man.ah.844o1a.mfc
│   │   │   │   ├── man.ah.8b.mfc
│   │   │   │   ├── man.ah.9b.mfc
│   │   │   │   ├── man.ah.o789a.mfc
│   │   │   │   ├── man.ah.z4548a.mfc
│   │   │   │   ├── man.ah.zb.mfc
│   │   │   │   ├── test-tidigits-fsg.match
│   │   │   │   ├── test-tidigits-simple.match
│   │   │   │   ├── tidigits.ctl
│   │   │   │   ├── tidigits.lsn
│   │   │   │   ├── woman.ak.1b.mfc
│   │   │   │   ├── woman.ak.276317oa.mfc
│   │   │   │   ├── woman.ak.334a.mfc
│   │   │   │   ├── woman.ak.3z3z9a.mfc
│   │   │   │   ├── woman.ak.48z66zza.mfc
│   │   │   │   ├── woman.ak.532a.mfc
│   │   │   │   ├── woman.ak.5z874a.mfc
│   │   │   │   ├── woman.ak.6728za.mfc
│   │   │   │   ├── woman.ak.75a.mfc
│   │   │   │   ├── woman.ak.84983a.mfc
│   │   │   │   ├── woman.ak.8a.mfc
│   │   │   │   ├── woman.ak.99731a.mfc
│   │   │   │   ├── woman.ak.o69a.mfc
│   │   │   │   ├── woman.ak.ooa.mfc
│   │   │   │   └── woman.ak.za.mfc
│   │   │   ├── turtle.dic
│   │   │   ├── unreachable.lat
│   │   │   └── wsj
│   │   │   ├── 440c0201.mfc
│   │   │   ├── 441c0201.mfc
│   │   │   ├── 442c0201.mfc
│   │   │   ├── 443c0201.mfc
│   │   │   ├── 444c0201.mfc
│   │   │   ├── 446c0201.mfc
│   │   │   ├── 447c0201.mfc
│   │   │   ├── n800_440c0201.wav
│   │   │   ├── n800_440c0202.wav
│   │   │   ├── n800_440c0203.wav
│   │   │   ├── n800_440c0204.wav
│   │   │   ├── n800_440c0205.wav
│   │   │   ├── n800_440c0206.wav
│   │   │   ├── n800_440c0207.wav
│   │   │   ├── s1.mllr
│   │   │   ├── test5k.n800.ctl
│   │   │   ├── test5k.n800.lsn
│   │   │   ├── test5k.s1.ctl
│   │   │   ├── test5k.s1.lsn
│   │   │   ├── test-hub4-n800-fwdtree.match
│   │   │   ├── test-hub4-simple.match
│   │   │   └── test-hub4-simple-pl.match
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── regression
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── test-hub4-cards.sh
│   │   │   ├── test-hub4-n800-fwdtree.sh
│   │   │   ├── test-hub4-simple-pl.sh
│   │   │   ├── test-hub4-simple.sh
│   │   │   ├── test-tidigits-fsg.sh
│   │   │   └── test-tidigits-simple.sh
│   │   ├── testfuncs_cygwin.sh
│   │   ├── testfuncs.sh.in
│   │   ├── unit
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── ps_test.c
│   │   │   ├── test_acmod.c
│   │   │   ├── test_acmod_grow.c
│   │   │   ├── test_alignment.c
│   │   │   ├── test_dict2pid.c
│   │   │   ├── test_dict.c
│   │   │   ├── test_fsg2.c
│   │   │   ├── test_fsg3.c
│   │   │   ├── test_fsg.c
│   │   │   ├── test_fwdflat.c
│   │   │   ├── test_fwdtree_bestpath.c
│   │   │   ├── test_fwdtree.c
│   │   │   ├── test_fwdtree_fwdflat.c
│   │   │   ├── test_fwdtree_nbest.c
│   │   │   ├── test_gst.c
│   │   │   ├── test_jsgf.c
│   │   │   ├── test_lm_read.c
│   │   │   ├── test_macros.h
│   │   │   ├── test_mllr.c
│   │   │   ├── test_pl_fwdtree.c
│   │   │   ├── test_posterior.c
│   │   │   ├── test_ps_fwdflat_bestpath.c
│   │   │   ├── test_ps_fwdflat.c
│   │   │   ├── test_ps_fwdtree_bestpath.c
│   │   │   ├── test_ps_fwdtree.c
│   │   │   ├── test_ps_fwdtree_fwdflat.c
│   │   │   ├── test_ps_init.c
│   │   │   ├── test_ps_lattice.c
│   │   │   ├── test_ps_nbest.c
│   │   │   ├── test_ps_reinit.c
│   │   │   ├── test_ps_simple.c
│   │   │   ├── test_ps_update.c
│   │   │   ├── test_senfh.c
│   │   │   └── test_state_align.c
│   │   └── word_align.pl
│   └── win32
│   ├── pocketsphinx
│   │   ├── pocketsphinx.vcxproj
│   │   └── pocketsphinx.vcxproj.filters
│   ├── pocketsphinx_batch
│   │   └── pocketsphinx_batch.vcxproj
│   ├── pocketsphinx_continuous
│   │   └── pocketsphinx_continuous.vcxproj
│   └── pocketsphinx_mdef_convert
│   └── pocketsphinx_mdef_convert.vcxproj
└── sphinxbase-0.8
├── aclocal.m4
├── AUTHORS
├── autogen.sh
├── ChangeLog
├── config.guess
├── config.rpath
├── config.sub
├── configure
├── configure.in
├── COPYING
├── depcomp
├── doc
│   ├── args2man.pl
│   ├── doxyfile.in
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── sphinx_cepview.1.in
│   ├── sphinx_cont_adseg.1
│   ├── sphinx_cont_fileseg.1
│   ├── sphinx_fe.1.in
│   ├── sphinx_lm_sort.1
│   └── sphinx_pitch.1.in
├── group
│   ├── ABLD.BAT
│   ├── bld.inf
│   └── sphinxbase.mmp
├── include
│   ├── android
│   │   ├── config.h
│   │   └── sphinx_config.h
│   ├── config.h.in
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── s60
│   │   ├── config.h
│   │   └── sphinx_config.h
│   ├── sphinxbase
│   │   ├── ad.h
│   │   ├── agc.h
│   │   ├── bio.h
│   │   ├── bitvec.h
│   │   ├── byteorder.h
│   │   ├── case.h
│   │   ├── ckd_alloc.h
│   │   ├── clapack_lite.h
│   │   ├── cmd_ln.h
│   │   ├── cmn.h
│   │   ├── cont_ad.h
│   │   ├── err.h
│   │   ├── f2c.h
│   │   ├── feat.h
│   │   ├── fe.h
│   │   ├── filename.h
│   │   ├── fixpoint.h
│   │   ├── fsg_model.h
│   │   ├── genrand.h
│   │   ├── glist.h
│   │   ├── hash_table.h
│   │   ├── heap.h
│   │   ├── huff_code.h
│   │   ├── info.h
│   │   ├── jsgf.h
│   │   ├── listelem_alloc.h
│   │   ├── logmath.h
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── matrix.h
│   │   ├── mmio.h
│   │   ├── mulaw.h
│   │   ├── ngram_model.h
│   │   ├── pio.h
│   │   ├── prim_type.h
│   │   ├── profile.h
│   │   ├── sbthread.h
│   │   ├── sphinxbase_export.h
│   │   ├── strfuncs.h
│   │   ├── unlimit.h
│   │   └── yin.h
│   ├── sphinx_config.h
│   ├── sphinx_config.h.in
│   ├── win32
│   │   ├── config.h
│   │   └── sphinx_config.h
│   └── wince
│   ├── config.h
│   └── sphinx_config.h
├── INSTALL
├── install-sh
├── ltmain.sh
├── m4
│   ├── iconv.m4
│   ├── lib-ld.m4
│   ├── lib-link.m4
│   ├── lib-prefix.m4
│   ├── libtool.m4
│   ├── lt~obsolete.m4
│   ├── ltoptions.m4
│   ├── ltsugar.m4
│   ├── ltversion.m4
│   └── pkg.m4
├── Makefile.am
├── Makefile.in
├── missing
├── NEWS
├── python
│   ├── hufftest2.py
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── sb_test.py
│   ├── setup.py.in
│   ├── setup_win32.py
│   ├── sphinxbase.c
│   ├── sphinxbase.pxd
│   └── sphinxbase.pyx
├── README
├── sphinxbase.pc.in
├── sphinxbase.sln
├── src
│   ├── libsphinxad
│   │   ├── ad_alsa.c
│   │   ├── ad_base.c
│   │   ├── ad_jack.c
│   │   ├── ad_oss.c
│   │   ├── ad_pulse.c
│   │   ├── ad_s60.cpp
│   │   ├── cont_ad_base.c
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── play_win32.c
│   │   └── rec_win32.c
│   ├── libsphinxbase
│   │   ├── fe
│   │   │   ├── fe_interface.c
│   │   │   ├── fe_internal.h
│   │   │   ├── fe_sigproc.c
│   │   │   ├── fe_warp_affine.c
│   │   │   ├── fe_warp_affine.h
│   │   │   ├── fe_warp.c
│   │   │   ├── fe_warp.h
│   │   │   ├── fe_warp_inverse_linear.c
│   │   │   ├── fe_warp_inverse_linear.h
│   │   │   ├── fe_warp_piecewise_linear.c
│   │   │   ├── fe_warp_piecewise_linear.h
│   │   │   ├── fixlog.c
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   └── yin.c
│   │   ├── feat
│   │   │   ├── agc.c
│   │   │   ├── cmn.c
│   │   │   ├── cmn_prior.c
│   │   │   ├── feat.c
│   │   │   ├── lda.c
│   │   │   ├── Makefile.am
│   │   │   └── Makefile.in
│   │   ├── lm
│   │   │   ├── fsg_model.c
│   │   │   ├── jsgf.c
│   │   │   ├── jsgf_internal.h
│   │   │   ├── jsgf_parser.c
│   │   │   ├── jsgf_parser.h
│   │   │   ├── jsgf_parser.y
│   │   │   ├── jsgf_scanner.c
│   │   │   ├── jsgf_scanner.h
│   │   │   ├── _jsgf_scanner.l
│   │   │   ├── lm3g_model.c
│   │   │   ├── lm3g_model.h
│   │   │   ├── lm3g_templates.c
│   │   │   ├── Makefile.am
│   │   │   ├── Makefile.in
│   │   │   ├── ngram_model_arpa.c
│   │   │   ├── ngram_model_arpa.h
│   │   │   ├── ngram_model.c
│   │   │   ├── ngram_model_dmp32.c
│   │   │   ├── ngram_model_dmp.c
│   │   │   ├── ngram_model_dmp.h
│   │   │   ├── ngram_model_internal.h
│   │   │   ├── ngram_model_set.c
│   │   │   └── ngram_model_set.h
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   └── util
│   │   ├── bio.c
│   │   ├── bitvec.c
│   │   ├── blas_lite.c
│   │   ├── case.c
│   │   ├── ckd_alloc.c
│   │   ├── cmd_ln.c
│   │   ├── dtoa.c
│   │   ├── err.c
│   │   ├── errno.c
│   │   ├── err_wince.c
│   │   ├── f2c_lite.c
│   │   ├── filename.c
│   │   ├── genrand.c
│   │   ├── glist.c
│   │   ├── hash_table.c
│   │   ├── heap.c
│   │   ├── huff_code.c
│   │   ├── info.c
│   │   ├── listelem_alloc.c
│   │   ├── logmath.c
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── matrix.c
│   │   ├── mmio.c
│   │   ├── pio.c
│   │   ├── profile.c
│   │   ├── sbthread.c
│   │   ├── slamch.c
│   │   ├── slapack_lite.c
│   │   ├── strfuncs.c
│   │   ├── string_wce.c
│   │   ├── unlimit.c
│   │   └── utf8.c
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── sphinx_adtools
│   │   ├── cont_adseg.c
│   │   ├── cont_fileseg.c
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   └── sphinx_pitch.c
│   ├── sphinx_cepview
│   │   ├── main_cepview.c
│   │   ├── Makefile.am
│   │   └── Makefile.in
│   ├── sphinx_fe
│   │   ├── cmd_ln_defn.h
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── sphinx_fe.c
│   │   └── sphinx_wave2feat.h
│   ├── sphinx_jsgf2fsg
│   │   ├── fsg2dot.pl
│   │   ├── main.c
│   │   ├── Makefile.am
│   │   └── Makefile.in
│   └── sphinx_lmtools
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── sphinx_lm_convert.c
│   ├── sphinx_lm_eval.c
│   └── sphinx_lm_sort
├── test
│   ├── compare_table.pl
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── regression
│   │   ├── chan3.2chan.wav
│   │   ├── chan3.cepview
│   │   ├── chan3.ctl
│   │   ├── chan3-dither.cepview
│   │   ├── chan3.f0
│   │   ├── chan3.logspec
│   │   ├── chan3-logspec.cepview
│   │   ├── chan3.mfc
│   │   ├── chan3.raw
│   │   ├── chan3-smoothspec.cepview
│   │   ├── chan3.sph
│   │   ├── chan3.wav
│   │   ├── crontab
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── polite.gram
│   │   ├── test-cepview.sh
│   │   ├── test.command.fsg
│   │   ├── testfuncs_cygwin.sh
│   │   ├── testfuncs.sh.in
│   │   ├── test.gram
│   │   ├── test.kleene.fsg
│   │   ├── test.nestedRightRecursion.fsg
│   │   ├── test.nulltest.fsg
│   │   ├── test.rightRecursion.fsg
│   │   ├── test-sphinx_fe-ctl.sh
│   │   ├── test-sphinx_fe-dct.sh
│   │   ├── test-sphinx_fe-dither-seed.sh
│   │   ├── test-sphinx_fe-logspec2cep.sh
│   │   ├── test-sphinx_fe-logspec.sh
│   │   ├── test-sphinx_fe.sh
│   │   ├── test-sphinx_fe-smoothspec.sh
│   │   ├── test-sphinx_jsgf2fsg.sh
│   │   ├── test-sphinx_pitch.sh
│   │   └── tutorial-check.sh
│   └── unit
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── test_ad
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_ad_copy.c
│   │   ├── test_ad_read.c
│   │   └── test_macros.h
│   ├── test_alloc
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_ckd_alloc_abort.c
│   │   ├── test_ckd_alloc_abort.sh
│   │   ├── test_ckd_alloc.c
│   │   ├── test_ckd_alloc_catch.c
│   │   ├── test_ckd_alloc_fail.c
│   │   ├── test_ckd_alloc_fail.sh
│   │   ├── test_listelem_alloc.c
│   │   └── test_macros.h
│   ├── test_bitvec
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_bitvec.c
│   │   └── test_macros.h
│   ├── test_case
│   │   ├── chgCase.c
│   │   ├── _lcase1.test
│   │   ├── _lcase2.test
│   │   ├── _lcase3.test
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── _strcmp1.test
│   │   ├── _strcmp2.test
│   │   ├── _strcmp3.test
│   │   ├── _ucase1.test
│   │   ├── _ucase2.test
│   │   └── _ucase3.test
│   ├── test_cmdln
│   │   ├── cmdln_parse.c
│   │   ├── cmdln_parse_multiple.c
│   │   ├── cmdln_parse_r.c
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── _test_parse_badargs.res
│   │   ├── _test_parse_badargs.test
│   │   ├── _test_parse_defaults.res
│   │   ├── _test_parse_defaults_r.res
│   │   ├── _test_parse_defaults_r.test
│   │   ├── _test_parse_defaults.test
│   │   ├── _test_parse_goodargs.res
│   │   ├── _test_parse_goodargs.test
│   │   ├── _test_parse_multiple.res
│   │   └── _test_parse_multiple.test
│   ├── test_fe
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_fe.c
│   │   ├── test_macros.h
│   │   └── test_pitch.c
│   ├── test_feat
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_feat.c
│   │   ├── test_feat_fe.c
│   │   ├── test_feat_live.c
│   │   ├── _test_feat.res
│   │   ├── _test_feat.test
│   │   ├── test_macros.h
│   │   └── test_subvq.c
│   ├── test_fsg
│   │   ├── goforward.fsg
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── polite.gram
│   │   ├── public.gram
│   │   ├── test_fsg_jsgf.c
│   │   ├── test_fsg_read.c
│   │   ├── test_fsg_write_fsm.c
│   │   └── test_macros.h
│   ├── testfuncs.sh.in
│   ├── test_hash
│   │   ├── deletehash.c
│   │   ├── displayhash.c
│   │   ├── display.res
│   │   ├── _hash_delete1.res
│   │   ├── _hash_delete1.test
│   │   ├── _hash_delete2.res
│   │   ├── _hash_delete2.test
│   │   ├── _hash_delete3.res
│   │   ├── _hash_delete3.test
│   │   ├── _hash_delete4.res
│   │   ├── _hash_delete4.test
│   │   ├── _hash_delete5.res
│   │   ├── _hash_delete5.test
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_hash_iter.c
│   │   └── test_macros.h
│   ├── test_lineiter
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_lineiter.c
│   │   ├── test_macros.h
│   │   └── test.txt
│   ├── test_logmath
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_log_int16.c
│   │   ├── test_log_int8.c
│   │   ├── test_log_shifted.c
│   │   └── test_macros.h
│   ├── test_matrix
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_determinant.c
│   │   ├── _test_determinant.res
│   │   ├── _test_determinant.test
│   │   ├── test_invert.c
│   │   ├── _test_invert.res
│   │   ├── _test_invert.test
│   │   ├── test_solve.c
│   │   ├── _test_solve.res
│   │   └── _test_solve.test
│   ├── test_ngram
│   │   ├── 100_2.arpa.DMP
│   │   ├── 100_2.arpa.gz
│   │   ├── 100.arpa.bz2
│   │   ├── 100.arpa.DMP
│   │   ├── 100.arpa.gz
│   │   ├── 100.lmctl
│   │   ├── 100.probdef
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_lm_add.c
│   │   ├── test_lm_casefold.c
│   │   ├── test_lm_class.c
│   │   ├── test_lm_iter.c
│   │   ├── test_lm_mmap.c
│   │   ├── test_lm_read.c
│   │   ├── test_lm_recode.c
│   │   ├── test_lm_score.c
│   │   ├── test_lm_set.c
│   │   ├── test_lm_write.c
│   │   ├── test_macros.h
│   │   ├── turtle.lm
│   │   ├── turtle.lm.DMP
│   │   ├── turtle.ug.lm
│   │   └── turtle.ug.lm.DMP
│   ├── test_string
│   │   ├── _fread_line.test
│   │   ├── _fread_line.txt
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── _nextword.test
│   │   ├── _str2words.test
│   │   ├── _string_join.test
│   │   ├── _string_trim.test
│   │   ├── strtest.c
│   │   └── test_atof.c
│   ├── test_thread
│   │   ├── Makefile.am
│   │   ├── Makefile.in
│   │   ├── test_event.c
│   │   ├── test_macros.h
│   │   ├── test_msgq.c
│   │   ├── test_thread.c
│   │   └── test_tls_log.c
│   └── test_util
│   ├── Makefile.am
│   ├── Makefile.in
│   ├── test_bit_encode.c
│   ├── test_build_directory.c
│   ├── test_filename.c
│   ├── test_fopen.c
│   ├── test_heap.c
│   ├── test_huff_code.c
│   ├── test_macros.h
│   └── test_readfile.c
├── win32
│   ├── sphinxbase
│   │   ├── sphinxbase.vcxproj
│   │   └── sphinxbase.vcxproj.filters
│   ├── sphinx_cepview
│   │   ├── sphinx_cepview.vcxproj
│   │   └── sphinx_cepview.vcxproj.filters
│   ├── sphinx_fe
│   │   ├── sphinx_fe.vcxproj
│   │   └── sphinx_fe.vcxproj.filters
│   ├── sphinx_jsgf2fsg
│   │   ├── sphinx_jsgf2fsg.vcxproj
│   │   └── sphinx_jsgf2fsg.vcxproj.filters
│   ├── sphinx_lm_convert
│   │   ├── sphinx_lm_convert.vcxproj
│   │   └── sphinx_lm_convert.vcxproj.filters
│   └── sphinx_pitch
│   ├── sphinx_pitch.vcxproj
│   └── sphinx_pitch.vcxproj.filters
└── ylwrap

158 directories, 2005 files

标签:

实例下载地址

叮当 安装依赖 打包

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警