├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ ├── build_wheels.yml │ └── tests.yml ├── .gitignore ├── .readthedocs.yml ├── AUTHORS ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── NEWS ├── README.md ├── TODO.md ├── config.h.in ├── cython ├── .gitignore ├── CMakeLists.txt ├── README.md ├── _pocketsphinx.pxd ├── _pocketsphinx.pyx ├── pocketsphinx │ ├── __init__.py │ ├── lm.py │ └── segmenter.py ├── pypocketsphinx-examples.py └── test │ ├── alignment_test.py │ ├── config_test.py │ ├── continuous_test.py │ ├── decoder_test.py │ ├── endpointer_test.py │ ├── fsg_test.py │ ├── jsgf_test.py │ ├── kws_test.py │ ├── lattice_test.py │ ├── lm_test.py │ ├── logmath_test.py │ ├── phoneme_test.py │ ├── pypocketsphinx_test.py │ └── vad_test.py ├── docs ├── Makefile ├── gen_config.py ├── make.bat ├── requirements.txt ├── source │ ├── conf.py │ ├── config_params.rst │ ├── index.rst │ └── pocketsphinx.rst └── thread_safety.md ├── doxygen ├── CMakeLists.txt ├── args2man.pl ├── pocketsphinx.1 ├── pocketsphinx.1.in ├── pocketsphinx_batch.1 ├── pocketsphinx_batch.1.in ├── pocketsphinx_mdef_convert.1 ├── sphinx_cepview.1 ├── sphinx_cepview.1.in ├── sphinx_cont_seg.1 ├── sphinx_cont_seg.1.in ├── sphinx_fe.1 ├── sphinx_fe.1.in ├── sphinx_lm_convert.1 ├── sphinx_lm_convert.1.in ├── sphinx_lm_eval.1 ├── sphinx_lm_eval.1.in ├── sphinx_lm_sort.1 ├── sphinx_pitch.1 └── sphinx_pitch.1.in ├── examples ├── .gitignore ├── CMakeLists.txt ├── README.md ├── endpointer_timestamp_example.c ├── live.c ├── live.py ├── live_portaudio.c ├── live_pulseaudio.c ├── live_win32.c ├── segment.py ├── simple.c └── simple.py ├── gst ├── CMakeLists.txt ├── gstpocketsphinx.c ├── gstpocketsphinx.h ├── livedemo.c └── livedemo.py ├── include ├── pocketsphinx.h └── pocketsphinx │ ├── alignment.h │ ├── endpointer.h │ ├── err.h │ ├── export.h │ ├── lattice.h │ ├── logmath.h │ ├── mllr.h │ ├── model.h │ ├── prim_type.h │ ├── search.h │ └── vad.h ├── indent.sh ├── model ├── CMakeLists.txt └── en-us │ ├── cmudict-en-us.dict │ ├── en-us-phone.lm.bin │ ├── en-us.lm.bin │ └── en-us │ ├── README │ ├── feat.params │ ├── mdef │ ├── means │ ├── noisedict │ ├── sendump │ ├── transition_matrices │ └── variances ├── pocketsphinx.pc.in ├── programs ├── CMakeLists.txt ├── fsg2dot.pl ├── pocketsphinx_batch.c ├── pocketsphinx_jsgf2fsg.c ├── pocketsphinx_lm_convert.c ├── pocketsphinx_lm_eval.c ├── pocketsphinx_main.c ├── pocketsphinx_mdef_convert.c └── pocketsphinx_pitch.c ├── pyproject.toml ├── release-checklist.md ├── sphinx_config.h.in ├── src ├── CMakeLists.txt ├── acmod.c ├── acmod.h ├── allphone_search.c ├── allphone_search.h ├── bin_mdef.c ├── bin_mdef.h ├── common_audio │ ├── signal_processing │ │ ├── cross_correlation.c │ │ ├── division_operations.c │ │ ├── downsample_fast.c │ │ ├── energy.c │ │ ├── get_scaling_square.c │ │ ├── include │ │ │ ├── signal_processing_library.h │ │ │ └── spl_inl.h │ │ ├── min_max_operations.c │ │ ├── resample.c │ │ ├── resample_48khz.c │ │ ├── resample_by_2_internal.c │ │ ├── resample_by_2_internal.h │ │ ├── resample_fractional.c │ │ ├── spl_inl.c │ │ └── vector_scaling_operations.c │ └── vad │ │ ├── include │ │ └── webrtc_vad.h │ │ ├── vad_core.c │ │ ├── vad_core.h │ │ ├── vad_filterbank.c │ │ ├── vad_filterbank.h │ │ ├── vad_gmm.c │ │ ├── vad_gmm.h │ │ ├── vad_sp.c │ │ ├── vad_sp.h │ │ └── webrtc_vad.c ├── config_macro.h ├── dict.c ├── dict.h ├── dict2pid.c ├── dict2pid.h ├── fast_ptm.txt ├── fe │ ├── fe.h │ ├── fe_interface.c │ ├── fe_internal.h │ ├── fe_noise.c │ ├── fe_noise.h │ ├── fe_sigproc.c │ ├── fe_type.h │ ├── fe_warp.c │ ├── fe_warp.h │ ├── fe_warp_affine.c │ ├── fe_warp_affine.h │ ├── fe_warp_inverse_linear.c │ ├── fe_warp_inverse_linear.h │ ├── fe_warp_piecewise_linear.c │ ├── fe_warp_piecewise_linear.h │ ├── fixlog.c │ ├── fixpoint.h │ ├── make_log_sub_table.py │ ├── make_log_table.py │ ├── yin.c │ └── yin.h ├── feat │ ├── agc.c │ ├── agc.h │ ├── cmn.c │ ├── cmn.h │ ├── cmn_live.c │ ├── feat.c │ ├── feat.h │ └── lda.c ├── fsg_history.c ├── fsg_history.h ├── fsg_lextree.c ├── fsg_lextree.h ├── fsg_search.c ├── fsg_search_internal.h ├── hmm.c ├── hmm.h ├── jsmn.h ├── kws_detections.c ├── kws_detections.h ├── kws_search.c ├── kws_search.h ├── lm │ ├── _jsgf_scanner.l │ ├── bitarr.c │ ├── bitarr.h │ ├── fsg_model.c │ ├── fsg_model.h │ ├── jsgf.c │ ├── jsgf.h │ ├── jsgf_internal.h │ ├── jsgf_parser.c │ ├── jsgf_parser.h │ ├── jsgf_parser.y │ ├── jsgf_scanner.c │ ├── jsgf_scanner.h │ ├── lm_trie.c │ ├── lm_trie.h │ ├── lm_trie_quant.c │ ├── lm_trie_quant.h │ ├── ngram_model.c │ ├── ngram_model.h │ ├── ngram_model_internal.h │ ├── ngram_model_set.c │ ├── ngram_model_set.h │ ├── ngram_model_trie.c │ ├── ngram_model_trie.h │ ├── ngrams_raw.c │ └── ngrams_raw.h ├── 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.h ├── ngram_search_fwdflat.c ├── ngram_search_fwdflat.h ├── ngram_search_fwdtree.c ├── ngram_search_fwdtree.h ├── phone_loop_search.c ├── phone_loop_search.h ├── pocketsphinx.c ├── pocketsphinx_internal.h ├── ps_alignment.c ├── ps_alignment_internal.h ├── ps_config.c ├── ps_endpointer.c ├── ps_lattice.c ├── ps_lattice_internal.h ├── ps_mllr.c ├── ps_vad.c ├── ptm_mgau.c ├── ptm_mgau.h ├── rtc_base │ ├── checks.h │ ├── compile_assert_c.h │ ├── sanitizer.h │ ├── system │ │ └── arch.h │ └── typedefs.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 └── util │ ├── README.python │ ├── bio.c │ ├── bio.h │ ├── bitvec.c │ ├── bitvec.h │ ├── blas_lite.c │ ├── blkarray_list.c │ ├── blkarray_list.h │ ├── byteorder.h │ ├── case.c │ ├── case.h │ ├── ckd_alloc.c │ ├── ckd_alloc.h │ ├── clapack_lite.h │ ├── clapack_scrub.py │ ├── cmd_ln.c │ ├── cmd_ln.h │ ├── dtoa.c │ ├── err.c │ ├── errno.c │ ├── f2c.h │ ├── f2c_lite.c │ ├── filename.c │ ├── filename.h │ ├── fortran.py │ ├── genrand.c │ ├── genrand.h │ ├── glist.c │ ├── glist.h │ ├── hash_table.c │ ├── hash_table.h │ ├── heap.c │ ├── heap.h │ ├── listelem_alloc.c │ ├── listelem_alloc.h │ ├── logmath.c │ ├── make_lite.py │ ├── matrix.c │ ├── matrix.h │ ├── mmio.c │ ├── mmio.h │ ├── pio.c │ ├── pio.h │ ├── priority_queue.c │ ├── priority_queue.h │ ├── profile.c │ ├── profile.h │ ├── slamch.c │ ├── slapack_lite.c │ ├── soundfiles.c │ ├── strfuncs.c │ ├── strfuncs.h │ ├── thread_local.h │ ├── vector.c │ ├── vector.h │ └── wrapped_routines ├── test ├── CMakeLists.txt ├── 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 │ ├── defective.gram │ ├── forever │ │ ├── input_2_16k.wav │ │ └── input_4_16k.wav │ ├── goforward.fsg │ ├── goforward.gram │ ├── goforward.kws │ ├── goforward.mfc │ ├── goforward.raw │ ├── librivox │ │ ├── fileids │ │ ├── make_single_track.py │ │ ├── sense_and_sensibility_01_austen_64kb-0870.json │ │ ├── sense_and_sensibility_01_austen_64kb-0870.lab │ │ ├── sense_and_sensibility_01_austen_64kb-0870.phone.json │ │ ├── sense_and_sensibility_01_austen_64kb-0870.state.json │ │ ├── sense_and_sensibility_01_austen_64kb-0870.txt │ │ ├── sense_and_sensibility_01_austen_64kb-0870.wav │ │ ├── sense_and_sensibility_01_austen_64kb-0880.json │ │ ├── sense_and_sensibility_01_austen_64kb-0880.lab │ │ ├── sense_and_sensibility_01_austen_64kb-0880.phone.json │ │ ├── sense_and_sensibility_01_austen_64kb-0880.state.json │ │ ├── sense_and_sensibility_01_austen_64kb-0880.txt │ │ ├── sense_and_sensibility_01_austen_64kb-0880.wav │ │ ├── sense_and_sensibility_01_austen_64kb-0890.json │ │ ├── sense_and_sensibility_01_austen_64kb-0890.lab │ │ ├── sense_and_sensibility_01_austen_64kb-0890.phone.json │ │ ├── sense_and_sensibility_01_austen_64kb-0890.state.json │ │ ├── sense_and_sensibility_01_austen_64kb-0890.txt │ │ ├── sense_and_sensibility_01_austen_64kb-0890.wav │ │ ├── sense_and_sensibility_01_austen_64kb-0920.json │ │ ├── sense_and_sensibility_01_austen_64kb-0920.lab │ │ ├── sense_and_sensibility_01_austen_64kb-0920.phone.json │ │ ├── sense_and_sensibility_01_austen_64kb-0920.state.json │ │ ├── sense_and_sensibility_01_austen_64kb-0920.txt │ │ ├── sense_and_sensibility_01_austen_64kb-0920.wav │ │ ├── sense_and_sensibility_01_austen_64kb-0930.json │ │ ├── sense_and_sensibility_01_austen_64kb-0930.lab │ │ ├── sense_and_sensibility_01_austen_64kb-0930.phone.json │ │ ├── sense_and_sensibility_01_austen_64kb-0930.state.json │ │ ├── sense_and_sensibility_01_austen_64kb-0930.txt │ │ ├── sense_and_sensibility_01_austen_64kb-0930.wav │ │ ├── test-align.align │ │ ├── test-align.matchseg │ │ ├── test-lm.match │ │ ├── test-main.fixed.json │ │ ├── test-main.json │ │ └── transcription │ ├── mllr_matrices │ ├── null-align.json │ ├── null.json │ ├── null.wav │ ├── numbers.raw │ ├── something.raw │ ├── test.lmctl │ ├── tidigits │ │ ├── dhd.2934z.raw │ │ ├── hmm │ │ │ ├── feat.params │ │ │ ├── mdef │ │ │ ├── means │ │ │ ├── sendump │ │ │ ├── transition_matrices │ │ │ └── variances │ │ ├── lm │ │ │ ├── tidigits.dic │ │ │ ├── tidigits.fsg │ │ │ └── tidigits.lm.bin │ │ ├── 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 │ ├── turtle.lm.bin │ ├── unreachable.lat │ └── vad │ │ ├── leak-test.wav │ │ └── test-audio.raw ├── regression │ ├── CMakeLists.txt │ ├── chan3-dither.cepview │ ├── chan3-logspec.cepview │ ├── chan3-smoothspec.cepview │ ├── chan3.2chan.wav │ ├── chan3.cepview │ ├── chan3.ctl │ ├── chan3.f0 │ ├── chan3.logspec │ ├── chan3.mfc │ ├── chan3.raw │ ├── chan3.sph │ ├── chan3.wav │ ├── polite.gram │ ├── right_recursion_53.fsg │ ├── right_recursion_53.gram │ ├── test-align.sh │ ├── test-cards.sh │ ├── test-cepview.sh │ ├── test-lm.sh │ ├── test-main-align.sh │ ├── test-main.sh │ ├── test-sphinx_fe-ctl.sh │ ├── test-sphinx_fe-dct.sh │ ├── test-sphinx_fe-dither-seed.sh │ ├── test-sphinx_fe-logspec.sh │ ├── test-sphinx_fe-logspec2cep.sh │ ├── test-sphinx_fe-smoothspec.sh │ ├── test-sphinx_fe.sh │ ├── test-sphinx_jsgf2fsg.sh │ ├── test-sphinx_pitch.sh │ ├── test-tidigits-fsg.sh │ ├── test-tidigits-simple.sh │ ├── test.command.fsg │ ├── test.gram │ ├── test.kleene.fsg │ ├── test.nestedRightRecursion.fsg │ ├── test.nulltest.fsg │ └── test.rightRecursion.fsg ├── testfuncs.sh.in ├── testfuncs_cygwin.sh ├── unit │ ├── CMakeLists.txt │ ├── test_204.cc │ ├── test_acmod.c │ ├── test_acmod_grow.c │ ├── test_alignment.c │ ├── test_alloc │ │ ├── CMakeLists.txt │ │ ├── test_ckd_alloc.c │ │ ├── test_ckd_alloc_abort.c │ │ ├── test_ckd_alloc_abort.sh │ │ ├── test_ckd_alloc_catch.c │ │ ├── test_ckd_alloc_fail.c │ │ └── test_listelem_alloc.c │ ├── test_allphone.c │ ├── test_bitvec.c │ ├── test_case │ │ ├── CMakeLists.txt │ │ ├── _lcase1.test │ │ ├── _lcase2.test │ │ ├── _lcase3.test │ │ ├── _strcmp1.test │ │ ├── _strcmp2.test │ │ ├── _strcmp3.test │ │ ├── _ucase1.test │ │ ├── _ucase2.test │ │ ├── _ucase3.test │ │ └── chgCase.c │ ├── test_config.c │ ├── test_dict.c │ ├── test_dict2pid.c │ ├── test_dict_strcat.c │ ├── test_endpointer.c │ ├── test_endpointer_timestamp.c │ ├── test_fe.c │ ├── test_fe_warp_overflow.c │ ├── test_feat │ │ ├── CMakeLists.txt │ │ ├── _test_feat.res │ │ ├── _test_feat.test │ │ ├── test_feat.c │ │ ├── test_feat_fe.c │ │ ├── test_feat_live.c │ │ └── test_subvq.c │ ├── test_fsg │ │ ├── CMakeLists.txt │ │ ├── goforward.fsg │ │ ├── polite.gram │ │ ├── public.gram │ │ ├── test_fsg.c │ │ ├── test_fsg_accept.c │ │ ├── test_fsg_jsgf.c │ │ ├── test_fsg_read.c │ │ └── test_fsg_write_fsm.c │ ├── test_fwdflat.c │ ├── test_fwdtree.c │ ├── test_fwdtree_bestpath.c │ ├── test_genrand_baseline.c │ ├── test_genrand_thread.c │ ├── test_genrand_thread_tls.c │ ├── test_hash │ │ ├── CMakeLists.txt │ │ ├── _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 │ │ ├── deletehash.c │ │ ├── display.res │ │ ├── displayhash.c │ │ └── test_hash_iter.c │ ├── test_init.c │ ├── test_jsgf.c │ ├── test_keyphrase.c │ ├── test_lattice.c │ ├── test_lineiter │ │ ├── CMakeLists.txt │ │ ├── test.txt │ │ └── test_lineiter.c │ ├── test_lm_convert.c │ ├── test_log_int16.c │ ├── test_log_int8.c │ ├── test_log_shifted.c │ ├── test_macros.h.in │ ├── test_matrix │ │ ├── CMakeLists.txt │ │ ├── _test_determinant.res │ │ ├── _test_determinant.test │ │ ├── _test_invert.res │ │ ├── _test_invert.test │ │ ├── _test_solve.res │ │ ├── _test_solve.test │ │ ├── test_determinant.c │ │ ├── test_invert.c │ │ └── test_solve.c │ ├── test_mllr.c │ ├── test_nbest.c │ ├── test_ngram │ │ ├── 100.lm.bin │ │ ├── 100.lm.bz2 │ │ ├── 100.lm.dmp │ │ ├── 100.lm.gz │ │ ├── 100.lmctl │ │ ├── 100.probdef │ │ ├── 102.lm.dmp │ │ ├── 102.lm.gz │ │ ├── 104.lm.gz │ │ ├── 105.lm.gz │ │ ├── 106.lm.gz │ │ ├── 107.lm.gz │ │ ├── CMakeLists.txt │ │ ├── test_lm_add.c │ │ ├── test_lm_casefold.c │ │ ├── test_lm_class.c │ │ ├── test_lm_read.c │ │ ├── test_lm_score.c │ │ ├── test_lm_set.c │ │ ├── test_lm_write.c │ │ ├── turtle.lm │ │ ├── turtle.lm.dmp │ │ ├── turtle.ug.lm │ │ └── turtle.ug.lm.dmp │ ├── test_ngram_model_read.c │ ├── test_pitch.c │ ├── test_posterior.c │ ├── test_ps.c │ ├── test_ptm_mgau.c │ ├── test_reinit.c │ ├── test_senfh.c │ ├── test_set_search.c │ ├── test_simple.c │ ├── test_state_align.c │ ├── test_string │ │ ├── CMakeLists.txt │ │ ├── _fread_line.test │ │ ├── _fread_line.txt │ │ ├── _nextword.test │ │ ├── _str2words.test │ │ ├── _string_join.test │ │ ├── _string_trim.test │ │ ├── strtest.c │ │ └── test_atof.c │ ├── test_thread_local_basic.c │ ├── test_thread_local_compile.c │ ├── test_thread_utils.c │ ├── test_thread_utils.h │ ├── test_thread_utils_self.c │ ├── test_util │ │ ├── CMakeLists.txt │ │ ├── test_bit_encode.c │ │ ├── test_bitarr.c │ │ ├── test_build_directory.c │ │ ├── test_filename.c │ │ ├── test_fopen.c │ │ ├── test_heap.c │ │ └── test_readfile.c │ ├── test_vad.c │ ├── test_vad_alloc.c │ └── test_word_align.c └── word_align.pl └── tox.ini /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/.github/workflows/build_wheels.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/TODO.md -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/config.h.in -------------------------------------------------------------------------------- /cython/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | model 3 | -------------------------------------------------------------------------------- /cython/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/CMakeLists.txt -------------------------------------------------------------------------------- /cython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/README.md -------------------------------------------------------------------------------- /cython/_pocketsphinx.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/_pocketsphinx.pxd -------------------------------------------------------------------------------- /cython/_pocketsphinx.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/_pocketsphinx.pyx -------------------------------------------------------------------------------- /cython/pocketsphinx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/pocketsphinx/__init__.py -------------------------------------------------------------------------------- /cython/pocketsphinx/lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/pocketsphinx/lm.py -------------------------------------------------------------------------------- /cython/pocketsphinx/segmenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/pocketsphinx/segmenter.py -------------------------------------------------------------------------------- /cython/pypocketsphinx-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/pypocketsphinx-examples.py -------------------------------------------------------------------------------- /cython/test/alignment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/alignment_test.py -------------------------------------------------------------------------------- /cython/test/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/config_test.py -------------------------------------------------------------------------------- /cython/test/continuous_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/continuous_test.py -------------------------------------------------------------------------------- /cython/test/decoder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/decoder_test.py -------------------------------------------------------------------------------- /cython/test/endpointer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/endpointer_test.py -------------------------------------------------------------------------------- /cython/test/fsg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/fsg_test.py -------------------------------------------------------------------------------- /cython/test/jsgf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/jsgf_test.py -------------------------------------------------------------------------------- /cython/test/kws_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/kws_test.py -------------------------------------------------------------------------------- /cython/test/lattice_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/lattice_test.py -------------------------------------------------------------------------------- /cython/test/lm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/lm_test.py -------------------------------------------------------------------------------- /cython/test/logmath_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/logmath_test.py -------------------------------------------------------------------------------- /cython/test/phoneme_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/phoneme_test.py -------------------------------------------------------------------------------- /cython/test/pypocketsphinx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/pypocketsphinx_test.py -------------------------------------------------------------------------------- /cython/test/vad_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/cython/test/vad_test.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/gen_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/docs/gen_config.py -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/config_params.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/docs/source/config_params.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/pocketsphinx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/docs/source/pocketsphinx.rst -------------------------------------------------------------------------------- /docs/thread_safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/docs/thread_safety.md -------------------------------------------------------------------------------- /doxygen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/CMakeLists.txt -------------------------------------------------------------------------------- /doxygen/args2man.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/args2man.pl -------------------------------------------------------------------------------- /doxygen/pocketsphinx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/pocketsphinx.1 -------------------------------------------------------------------------------- /doxygen/pocketsphinx.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/pocketsphinx.1.in -------------------------------------------------------------------------------- /doxygen/pocketsphinx_batch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/pocketsphinx_batch.1 -------------------------------------------------------------------------------- /doxygen/pocketsphinx_batch.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/pocketsphinx_batch.1.in -------------------------------------------------------------------------------- /doxygen/pocketsphinx_mdef_convert.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/pocketsphinx_mdef_convert.1 -------------------------------------------------------------------------------- /doxygen/sphinx_cepview.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_cepview.1 -------------------------------------------------------------------------------- /doxygen/sphinx_cepview.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_cepview.1.in -------------------------------------------------------------------------------- /doxygen/sphinx_cont_seg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_cont_seg.1 -------------------------------------------------------------------------------- /doxygen/sphinx_cont_seg.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_cont_seg.1.in -------------------------------------------------------------------------------- /doxygen/sphinx_fe.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_fe.1 -------------------------------------------------------------------------------- /doxygen/sphinx_fe.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_fe.1.in -------------------------------------------------------------------------------- /doxygen/sphinx_lm_convert.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_lm_convert.1 -------------------------------------------------------------------------------- /doxygen/sphinx_lm_convert.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_lm_convert.1.in -------------------------------------------------------------------------------- /doxygen/sphinx_lm_eval.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_lm_eval.1 -------------------------------------------------------------------------------- /doxygen/sphinx_lm_eval.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_lm_eval.1.in -------------------------------------------------------------------------------- /doxygen/sphinx_lm_sort.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_lm_sort.1 -------------------------------------------------------------------------------- /doxygen/sphinx_pitch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_pitch.1 -------------------------------------------------------------------------------- /doxygen/sphinx_pitch.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/doxygen/sphinx_pitch.1.in -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | simple 2 | vad 3 | a.out 4 | live 5 | -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/endpointer_timestamp_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/endpointer_timestamp_example.c -------------------------------------------------------------------------------- /examples/live.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/live.c -------------------------------------------------------------------------------- /examples/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/live.py -------------------------------------------------------------------------------- /examples/live_portaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/live_portaudio.c -------------------------------------------------------------------------------- /examples/live_pulseaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/live_pulseaudio.c -------------------------------------------------------------------------------- /examples/live_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/live_win32.c -------------------------------------------------------------------------------- /examples/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/segment.py -------------------------------------------------------------------------------- /examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/simple.c -------------------------------------------------------------------------------- /examples/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/examples/simple.py -------------------------------------------------------------------------------- /gst/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/gst/CMakeLists.txt -------------------------------------------------------------------------------- /gst/gstpocketsphinx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/gst/gstpocketsphinx.c -------------------------------------------------------------------------------- /gst/gstpocketsphinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/gst/gstpocketsphinx.h -------------------------------------------------------------------------------- /gst/livedemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/gst/livedemo.c -------------------------------------------------------------------------------- /gst/livedemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/gst/livedemo.py -------------------------------------------------------------------------------- /include/pocketsphinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx.h -------------------------------------------------------------------------------- /include/pocketsphinx/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/alignment.h -------------------------------------------------------------------------------- /include/pocketsphinx/endpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/endpointer.h -------------------------------------------------------------------------------- /include/pocketsphinx/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/err.h -------------------------------------------------------------------------------- /include/pocketsphinx/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/export.h -------------------------------------------------------------------------------- /include/pocketsphinx/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/lattice.h -------------------------------------------------------------------------------- /include/pocketsphinx/logmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/logmath.h -------------------------------------------------------------------------------- /include/pocketsphinx/mllr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/mllr.h -------------------------------------------------------------------------------- /include/pocketsphinx/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/model.h -------------------------------------------------------------------------------- /include/pocketsphinx/prim_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/prim_type.h -------------------------------------------------------------------------------- /include/pocketsphinx/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/search.h -------------------------------------------------------------------------------- /include/pocketsphinx/vad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/include/pocketsphinx/vad.h -------------------------------------------------------------------------------- /indent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/indent.sh -------------------------------------------------------------------------------- /model/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/CMakeLists.txt -------------------------------------------------------------------------------- /model/en-us/cmudict-en-us.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/cmudict-en-us.dict -------------------------------------------------------------------------------- /model/en-us/en-us-phone.lm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us-phone.lm.bin -------------------------------------------------------------------------------- /model/en-us/en-us.lm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us.lm.bin -------------------------------------------------------------------------------- /model/en-us/en-us/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us/README -------------------------------------------------------------------------------- /model/en-us/en-us/feat.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us/feat.params -------------------------------------------------------------------------------- /model/en-us/en-us/mdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us/mdef -------------------------------------------------------------------------------- /model/en-us/en-us/means: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us/means -------------------------------------------------------------------------------- /model/en-us/en-us/noisedict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us/noisedict -------------------------------------------------------------------------------- /model/en-us/en-us/sendump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us/sendump -------------------------------------------------------------------------------- /model/en-us/en-us/transition_matrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us/transition_matrices -------------------------------------------------------------------------------- /model/en-us/en-us/variances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/model/en-us/en-us/variances -------------------------------------------------------------------------------- /pocketsphinx.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/pocketsphinx.pc.in -------------------------------------------------------------------------------- /programs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/programs/CMakeLists.txt -------------------------------------------------------------------------------- /programs/fsg2dot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/programs/fsg2dot.pl -------------------------------------------------------------------------------- /programs/pocketsphinx_batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/programs/pocketsphinx_batch.c -------------------------------------------------------------------------------- /programs/pocketsphinx_jsgf2fsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/programs/pocketsphinx_jsgf2fsg.c -------------------------------------------------------------------------------- /programs/pocketsphinx_lm_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/programs/pocketsphinx_lm_convert.c -------------------------------------------------------------------------------- /programs/pocketsphinx_lm_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/programs/pocketsphinx_lm_eval.c -------------------------------------------------------------------------------- /programs/pocketsphinx_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/programs/pocketsphinx_main.c -------------------------------------------------------------------------------- /programs/pocketsphinx_mdef_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/programs/pocketsphinx_mdef_convert.c -------------------------------------------------------------------------------- /programs/pocketsphinx_pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/programs/pocketsphinx_pitch.c -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/release-checklist.md -------------------------------------------------------------------------------- /sphinx_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/sphinx_config.h.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/acmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/acmod.c -------------------------------------------------------------------------------- /src/acmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/acmod.h -------------------------------------------------------------------------------- /src/allphone_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/allphone_search.c -------------------------------------------------------------------------------- /src/allphone_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/allphone_search.h -------------------------------------------------------------------------------- /src/bin_mdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/bin_mdef.c -------------------------------------------------------------------------------- /src/bin_mdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/bin_mdef.h -------------------------------------------------------------------------------- /src/common_audio/signal_processing/cross_correlation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/cross_correlation.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/division_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/division_operations.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/downsample_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/downsample_fast.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/energy.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/get_scaling_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/get_scaling_square.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/include/signal_processing_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/include/signal_processing_library.h -------------------------------------------------------------------------------- /src/common_audio/signal_processing/include/spl_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/include/spl_inl.h -------------------------------------------------------------------------------- /src/common_audio/signal_processing/min_max_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/min_max_operations.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/resample.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/resample_48khz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/resample_48khz.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/resample_by_2_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/resample_by_2_internal.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/resample_by_2_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/resample_by_2_internal.h -------------------------------------------------------------------------------- /src/common_audio/signal_processing/resample_fractional.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/resample_fractional.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/spl_inl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/spl_inl.c -------------------------------------------------------------------------------- /src/common_audio/signal_processing/vector_scaling_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/signal_processing/vector_scaling_operations.c -------------------------------------------------------------------------------- /src/common_audio/vad/include/webrtc_vad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/include/webrtc_vad.h -------------------------------------------------------------------------------- /src/common_audio/vad/vad_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/vad_core.c -------------------------------------------------------------------------------- /src/common_audio/vad/vad_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/vad_core.h -------------------------------------------------------------------------------- /src/common_audio/vad/vad_filterbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/vad_filterbank.c -------------------------------------------------------------------------------- /src/common_audio/vad/vad_filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/vad_filterbank.h -------------------------------------------------------------------------------- /src/common_audio/vad/vad_gmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/vad_gmm.c -------------------------------------------------------------------------------- /src/common_audio/vad/vad_gmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/vad_gmm.h -------------------------------------------------------------------------------- /src/common_audio/vad/vad_sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/vad_sp.c -------------------------------------------------------------------------------- /src/common_audio/vad/vad_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/vad_sp.h -------------------------------------------------------------------------------- /src/common_audio/vad/webrtc_vad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/common_audio/vad/webrtc_vad.c -------------------------------------------------------------------------------- /src/config_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/config_macro.h -------------------------------------------------------------------------------- /src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/dict.c -------------------------------------------------------------------------------- /src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/dict.h -------------------------------------------------------------------------------- /src/dict2pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/dict2pid.c -------------------------------------------------------------------------------- /src/dict2pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/dict2pid.h -------------------------------------------------------------------------------- /src/fast_ptm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fast_ptm.txt -------------------------------------------------------------------------------- /src/fe/fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe.h -------------------------------------------------------------------------------- /src/fe/fe_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_interface.c -------------------------------------------------------------------------------- /src/fe/fe_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_internal.h -------------------------------------------------------------------------------- /src/fe/fe_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_noise.c -------------------------------------------------------------------------------- /src/fe/fe_noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_noise.h -------------------------------------------------------------------------------- /src/fe/fe_sigproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_sigproc.c -------------------------------------------------------------------------------- /src/fe/fe_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_type.h -------------------------------------------------------------------------------- /src/fe/fe_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_warp.c -------------------------------------------------------------------------------- /src/fe/fe_warp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_warp.h -------------------------------------------------------------------------------- /src/fe/fe_warp_affine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_warp_affine.c -------------------------------------------------------------------------------- /src/fe/fe_warp_affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_warp_affine.h -------------------------------------------------------------------------------- /src/fe/fe_warp_inverse_linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_warp_inverse_linear.c -------------------------------------------------------------------------------- /src/fe/fe_warp_inverse_linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_warp_inverse_linear.h -------------------------------------------------------------------------------- /src/fe/fe_warp_piecewise_linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_warp_piecewise_linear.c -------------------------------------------------------------------------------- /src/fe/fe_warp_piecewise_linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fe_warp_piecewise_linear.h -------------------------------------------------------------------------------- /src/fe/fixlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fixlog.c -------------------------------------------------------------------------------- /src/fe/fixpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/fixpoint.h -------------------------------------------------------------------------------- /src/fe/make_log_sub_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/make_log_sub_table.py -------------------------------------------------------------------------------- /src/fe/make_log_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/make_log_table.py -------------------------------------------------------------------------------- /src/fe/yin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/yin.c -------------------------------------------------------------------------------- /src/fe/yin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fe/yin.h -------------------------------------------------------------------------------- /src/feat/agc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/feat/agc.c -------------------------------------------------------------------------------- /src/feat/agc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/feat/agc.h -------------------------------------------------------------------------------- /src/feat/cmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/feat/cmn.c -------------------------------------------------------------------------------- /src/feat/cmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/feat/cmn.h -------------------------------------------------------------------------------- /src/feat/cmn_live.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/feat/cmn_live.c -------------------------------------------------------------------------------- /src/feat/feat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/feat/feat.c -------------------------------------------------------------------------------- /src/feat/feat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/feat/feat.h -------------------------------------------------------------------------------- /src/feat/lda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/feat/lda.c -------------------------------------------------------------------------------- /src/fsg_history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fsg_history.c -------------------------------------------------------------------------------- /src/fsg_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fsg_history.h -------------------------------------------------------------------------------- /src/fsg_lextree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fsg_lextree.c -------------------------------------------------------------------------------- /src/fsg_lextree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fsg_lextree.h -------------------------------------------------------------------------------- /src/fsg_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fsg_search.c -------------------------------------------------------------------------------- /src/fsg_search_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/fsg_search_internal.h -------------------------------------------------------------------------------- /src/hmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/hmm.c -------------------------------------------------------------------------------- /src/hmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/hmm.h -------------------------------------------------------------------------------- /src/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/jsmn.h -------------------------------------------------------------------------------- /src/kws_detections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/kws_detections.c -------------------------------------------------------------------------------- /src/kws_detections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/kws_detections.h -------------------------------------------------------------------------------- /src/kws_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/kws_search.c -------------------------------------------------------------------------------- /src/kws_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/kws_search.h -------------------------------------------------------------------------------- /src/lm/_jsgf_scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/_jsgf_scanner.l -------------------------------------------------------------------------------- /src/lm/bitarr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/bitarr.c -------------------------------------------------------------------------------- /src/lm/bitarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/bitarr.h -------------------------------------------------------------------------------- /src/lm/fsg_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/fsg_model.c -------------------------------------------------------------------------------- /src/lm/fsg_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/fsg_model.h -------------------------------------------------------------------------------- /src/lm/jsgf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/jsgf.c -------------------------------------------------------------------------------- /src/lm/jsgf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/jsgf.h -------------------------------------------------------------------------------- /src/lm/jsgf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/jsgf_internal.h -------------------------------------------------------------------------------- /src/lm/jsgf_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/jsgf_parser.c -------------------------------------------------------------------------------- /src/lm/jsgf_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/jsgf_parser.h -------------------------------------------------------------------------------- /src/lm/jsgf_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/jsgf_parser.y -------------------------------------------------------------------------------- /src/lm/jsgf_scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/jsgf_scanner.c -------------------------------------------------------------------------------- /src/lm/jsgf_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/jsgf_scanner.h -------------------------------------------------------------------------------- /src/lm/lm_trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/lm_trie.c -------------------------------------------------------------------------------- /src/lm/lm_trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/lm_trie.h -------------------------------------------------------------------------------- /src/lm/lm_trie_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/lm_trie_quant.c -------------------------------------------------------------------------------- /src/lm/lm_trie_quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/lm_trie_quant.h -------------------------------------------------------------------------------- /src/lm/ngram_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/ngram_model.c -------------------------------------------------------------------------------- /src/lm/ngram_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/ngram_model.h -------------------------------------------------------------------------------- /src/lm/ngram_model_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/ngram_model_internal.h -------------------------------------------------------------------------------- /src/lm/ngram_model_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/ngram_model_set.c -------------------------------------------------------------------------------- /src/lm/ngram_model_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/ngram_model_set.h -------------------------------------------------------------------------------- /src/lm/ngram_model_trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/ngram_model_trie.c -------------------------------------------------------------------------------- /src/lm/ngram_model_trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/ngram_model_trie.h -------------------------------------------------------------------------------- /src/lm/ngrams_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/ngrams_raw.c -------------------------------------------------------------------------------- /src/lm/ngrams_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/lm/ngrams_raw.h -------------------------------------------------------------------------------- /src/mdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/mdef.c -------------------------------------------------------------------------------- /src/mdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/mdef.h -------------------------------------------------------------------------------- /src/ms_gauden.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ms_gauden.c -------------------------------------------------------------------------------- /src/ms_gauden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ms_gauden.h -------------------------------------------------------------------------------- /src/ms_mgau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ms_mgau.c -------------------------------------------------------------------------------- /src/ms_mgau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ms_mgau.h -------------------------------------------------------------------------------- /src/ms_senone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ms_senone.c -------------------------------------------------------------------------------- /src/ms_senone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ms_senone.h -------------------------------------------------------------------------------- /src/ngram_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ngram_search.c -------------------------------------------------------------------------------- /src/ngram_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ngram_search.h -------------------------------------------------------------------------------- /src/ngram_search_fwdflat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ngram_search_fwdflat.c -------------------------------------------------------------------------------- /src/ngram_search_fwdflat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ngram_search_fwdflat.h -------------------------------------------------------------------------------- /src/ngram_search_fwdtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ngram_search_fwdtree.c -------------------------------------------------------------------------------- /src/ngram_search_fwdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ngram_search_fwdtree.h -------------------------------------------------------------------------------- /src/phone_loop_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/phone_loop_search.c -------------------------------------------------------------------------------- /src/phone_loop_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/phone_loop_search.h -------------------------------------------------------------------------------- /src/pocketsphinx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/pocketsphinx.c -------------------------------------------------------------------------------- /src/pocketsphinx_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/pocketsphinx_internal.h -------------------------------------------------------------------------------- /src/ps_alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ps_alignment.c -------------------------------------------------------------------------------- /src/ps_alignment_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ps_alignment_internal.h -------------------------------------------------------------------------------- /src/ps_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ps_config.c -------------------------------------------------------------------------------- /src/ps_endpointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ps_endpointer.c -------------------------------------------------------------------------------- /src/ps_lattice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ps_lattice.c -------------------------------------------------------------------------------- /src/ps_lattice_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ps_lattice_internal.h -------------------------------------------------------------------------------- /src/ps_mllr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ps_mllr.c -------------------------------------------------------------------------------- /src/ps_vad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ps_vad.c -------------------------------------------------------------------------------- /src/ptm_mgau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ptm_mgau.c -------------------------------------------------------------------------------- /src/ptm_mgau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/ptm_mgau.h -------------------------------------------------------------------------------- /src/rtc_base/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/rtc_base/checks.h -------------------------------------------------------------------------------- /src/rtc_base/compile_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/rtc_base/compile_assert_c.h -------------------------------------------------------------------------------- /src/rtc_base/sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/rtc_base/sanitizer.h -------------------------------------------------------------------------------- /src/rtc_base/system/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/rtc_base/system/arch.h -------------------------------------------------------------------------------- /src/rtc_base/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/rtc_base/typedefs.h -------------------------------------------------------------------------------- /src/s2_semi_mgau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/s2_semi_mgau.c -------------------------------------------------------------------------------- /src/s2_semi_mgau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/s2_semi_mgau.h -------------------------------------------------------------------------------- /src/s3types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/s3types.h -------------------------------------------------------------------------------- /src/state_align_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/state_align_search.c -------------------------------------------------------------------------------- /src/state_align_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/state_align_search.h -------------------------------------------------------------------------------- /src/tied_mgau_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/tied_mgau_common.h -------------------------------------------------------------------------------- /src/tmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/tmat.c -------------------------------------------------------------------------------- /src/tmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/tmat.h -------------------------------------------------------------------------------- /src/util/README.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/README.python -------------------------------------------------------------------------------- /src/util/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/bio.c -------------------------------------------------------------------------------- /src/util/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/bio.h -------------------------------------------------------------------------------- /src/util/bitvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/bitvec.c -------------------------------------------------------------------------------- /src/util/bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/bitvec.h -------------------------------------------------------------------------------- /src/util/blas_lite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/blas_lite.c -------------------------------------------------------------------------------- /src/util/blkarray_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/blkarray_list.c -------------------------------------------------------------------------------- /src/util/blkarray_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/blkarray_list.h -------------------------------------------------------------------------------- /src/util/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/byteorder.h -------------------------------------------------------------------------------- /src/util/case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/case.c -------------------------------------------------------------------------------- /src/util/case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/case.h -------------------------------------------------------------------------------- /src/util/ckd_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/ckd_alloc.c -------------------------------------------------------------------------------- /src/util/ckd_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/ckd_alloc.h -------------------------------------------------------------------------------- /src/util/clapack_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/clapack_lite.h -------------------------------------------------------------------------------- /src/util/clapack_scrub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/clapack_scrub.py -------------------------------------------------------------------------------- /src/util/cmd_ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/cmd_ln.c -------------------------------------------------------------------------------- /src/util/cmd_ln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/cmd_ln.h -------------------------------------------------------------------------------- /src/util/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/dtoa.c -------------------------------------------------------------------------------- /src/util/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/err.c -------------------------------------------------------------------------------- /src/util/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/errno.c -------------------------------------------------------------------------------- /src/util/f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/f2c.h -------------------------------------------------------------------------------- /src/util/f2c_lite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/f2c_lite.c -------------------------------------------------------------------------------- /src/util/filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/filename.c -------------------------------------------------------------------------------- /src/util/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/filename.h -------------------------------------------------------------------------------- /src/util/fortran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/fortran.py -------------------------------------------------------------------------------- /src/util/genrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/genrand.c -------------------------------------------------------------------------------- /src/util/genrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/genrand.h -------------------------------------------------------------------------------- /src/util/glist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/glist.c -------------------------------------------------------------------------------- /src/util/glist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/glist.h -------------------------------------------------------------------------------- /src/util/hash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/hash_table.c -------------------------------------------------------------------------------- /src/util/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/hash_table.h -------------------------------------------------------------------------------- /src/util/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/heap.c -------------------------------------------------------------------------------- /src/util/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/heap.h -------------------------------------------------------------------------------- /src/util/listelem_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/listelem_alloc.c -------------------------------------------------------------------------------- /src/util/listelem_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/listelem_alloc.h -------------------------------------------------------------------------------- /src/util/logmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/logmath.c -------------------------------------------------------------------------------- /src/util/make_lite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/make_lite.py -------------------------------------------------------------------------------- /src/util/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/matrix.c -------------------------------------------------------------------------------- /src/util/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/matrix.h -------------------------------------------------------------------------------- /src/util/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/mmio.c -------------------------------------------------------------------------------- /src/util/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/mmio.h -------------------------------------------------------------------------------- /src/util/pio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/pio.c -------------------------------------------------------------------------------- /src/util/pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/pio.h -------------------------------------------------------------------------------- /src/util/priority_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/priority_queue.c -------------------------------------------------------------------------------- /src/util/priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/priority_queue.h -------------------------------------------------------------------------------- /src/util/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/profile.c -------------------------------------------------------------------------------- /src/util/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/profile.h -------------------------------------------------------------------------------- /src/util/slamch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/slamch.c -------------------------------------------------------------------------------- /src/util/slapack_lite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/slapack_lite.c -------------------------------------------------------------------------------- /src/util/soundfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/soundfiles.c -------------------------------------------------------------------------------- /src/util/strfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/strfuncs.c -------------------------------------------------------------------------------- /src/util/strfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/strfuncs.h -------------------------------------------------------------------------------- /src/util/thread_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/thread_local.h -------------------------------------------------------------------------------- /src/util/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/vector.c -------------------------------------------------------------------------------- /src/util/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/vector.h -------------------------------------------------------------------------------- /src/util/wrapped_routines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/src/util/wrapped_routines -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/compare_table.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/compare_table.pl -------------------------------------------------------------------------------- /test/data/an4_ci_cont/feat.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/an4_ci_cont/feat.params -------------------------------------------------------------------------------- /test/data/an4_ci_cont/mdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/an4_ci_cont/mdef -------------------------------------------------------------------------------- /test/data/an4_ci_cont/means: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/an4_ci_cont/means -------------------------------------------------------------------------------- /test/data/an4_ci_cont/mixture_weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/an4_ci_cont/mixture_weights -------------------------------------------------------------------------------- /test/data/an4_ci_cont/noisedict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/an4_ci_cont/noisedict -------------------------------------------------------------------------------- /test/data/an4_ci_cont/transition_matrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/an4_ci_cont/transition_matrices -------------------------------------------------------------------------------- /test/data/an4_ci_cont/variances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/an4_ci_cont/variances -------------------------------------------------------------------------------- /test/data/cards/001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/cards/001.wav -------------------------------------------------------------------------------- /test/data/cards/002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/cards/002.wav -------------------------------------------------------------------------------- /test/data/cards/003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/cards/003.wav -------------------------------------------------------------------------------- /test/data/cards/004.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/cards/004.wav -------------------------------------------------------------------------------- /test/data/cards/005.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/cards/005.wav -------------------------------------------------------------------------------- /test/data/cards/cards.fileids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/cards/cards.fileids -------------------------------------------------------------------------------- /test/data/cards/cards.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/cards/cards.gram -------------------------------------------------------------------------------- /test/data/cards/cards.hyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/cards/cards.hyp -------------------------------------------------------------------------------- /test/data/cards/cards.transcription: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/cards/cards.transcription -------------------------------------------------------------------------------- /test/data/defective.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/defective.dic -------------------------------------------------------------------------------- /test/data/defective.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/defective.gram -------------------------------------------------------------------------------- /test/data/forever/input_2_16k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/forever/input_2_16k.wav -------------------------------------------------------------------------------- /test/data/forever/input_4_16k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/forever/input_4_16k.wav -------------------------------------------------------------------------------- /test/data/goforward.fsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/goforward.fsg -------------------------------------------------------------------------------- /test/data/goforward.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/goforward.gram -------------------------------------------------------------------------------- /test/data/goforward.kws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/goforward.kws -------------------------------------------------------------------------------- /test/data/goforward.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/goforward.mfc -------------------------------------------------------------------------------- /test/data/goforward.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/goforward.raw -------------------------------------------------------------------------------- /test/data/librivox/fileids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/fileids -------------------------------------------------------------------------------- /test/data/librivox/make_single_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/make_single_track.py -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.lab -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.phone.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.state.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.txt -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.wav -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.lab -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.phone.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.state.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.txt: -------------------------------------------------------------------------------- 1 | he was not an ill disposed young man 2 | -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.wav -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.lab -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.phone.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.state.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.txt -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.wav -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.lab -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.phone.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.state.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.txt -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.wav -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.lab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.lab -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.phone.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.state.json -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.txt: -------------------------------------------------------------------------------- 1 | he might even have been made amiable himself 2 | -------------------------------------------------------------------------------- /test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.wav -------------------------------------------------------------------------------- /test/data/librivox/test-align.align: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/test-align.align -------------------------------------------------------------------------------- /test/data/librivox/test-align.matchseg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/test-align.matchseg -------------------------------------------------------------------------------- /test/data/librivox/test-lm.match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/test-lm.match -------------------------------------------------------------------------------- /test/data/librivox/test-main.fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/test-main.fixed.json -------------------------------------------------------------------------------- /test/data/librivox/test-main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/test-main.json -------------------------------------------------------------------------------- /test/data/librivox/transcription: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/librivox/transcription -------------------------------------------------------------------------------- /test/data/mllr_matrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/mllr_matrices -------------------------------------------------------------------------------- /test/data/null-align.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/null-align.json -------------------------------------------------------------------------------- /test/data/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/null.json -------------------------------------------------------------------------------- /test/data/null.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/null.wav -------------------------------------------------------------------------------- /test/data/numbers.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/numbers.raw -------------------------------------------------------------------------------- /test/data/something.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/something.raw -------------------------------------------------------------------------------- /test/data/test.lmctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/test.lmctl -------------------------------------------------------------------------------- /test/data/tidigits/dhd.2934z.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/dhd.2934z.raw -------------------------------------------------------------------------------- /test/data/tidigits/hmm/feat.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/hmm/feat.params -------------------------------------------------------------------------------- /test/data/tidigits/hmm/mdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/hmm/mdef -------------------------------------------------------------------------------- /test/data/tidigits/hmm/means: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/hmm/means -------------------------------------------------------------------------------- /test/data/tidigits/hmm/sendump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/hmm/sendump -------------------------------------------------------------------------------- /test/data/tidigits/hmm/transition_matrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/hmm/transition_matrices -------------------------------------------------------------------------------- /test/data/tidigits/hmm/variances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/hmm/variances -------------------------------------------------------------------------------- /test/data/tidigits/lm/tidigits.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/lm/tidigits.dic -------------------------------------------------------------------------------- /test/data/tidigits/lm/tidigits.fsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/lm/tidigits.fsg -------------------------------------------------------------------------------- /test/data/tidigits/lm/tidigits.lm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/lm/tidigits.lm.bin -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.111a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.111a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.1b.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.1b.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.2934za.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.2934za.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.35oa.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.35oa.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.3oa.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.3oa.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.4625a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.4625a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.588zza.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.588zza.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.63a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.63a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.6o838a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.6o838a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.75913a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.75913a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.844o1a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.844o1a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.8b.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.8b.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.9b.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.9b.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.o789a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.o789a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.z4548a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.z4548a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/man.ah.zb.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/man.ah.zb.mfc -------------------------------------------------------------------------------- /test/data/tidigits/test-tidigits-fsg.match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/test-tidigits-fsg.match -------------------------------------------------------------------------------- /test/data/tidigits/test-tidigits-simple.match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/test-tidigits-simple.match -------------------------------------------------------------------------------- /test/data/tidigits/tidigits.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/tidigits.ctl -------------------------------------------------------------------------------- /test/data/tidigits/tidigits.lsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/tidigits.lsn -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.1b.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.1b.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.276317oa.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.276317oa.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.334a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.334a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.3z3z9a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.3z3z9a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.48z66zza.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.48z66zza.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.532a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.532a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.5z874a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.5z874a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.6728za.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.6728za.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.75a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.75a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.84983a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.84983a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.8a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.8a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.99731a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.99731a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.o69a.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.o69a.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.ooa.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.ooa.mfc -------------------------------------------------------------------------------- /test/data/tidigits/woman.ak.za.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/tidigits/woman.ak.za.mfc -------------------------------------------------------------------------------- /test/data/turtle.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/turtle.dic -------------------------------------------------------------------------------- /test/data/turtle.lm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/turtle.lm.bin -------------------------------------------------------------------------------- /test/data/unreachable.lat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/unreachable.lat -------------------------------------------------------------------------------- /test/data/vad/leak-test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/vad/leak-test.wav -------------------------------------------------------------------------------- /test/data/vad/test-audio.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/data/vad/test-audio.raw -------------------------------------------------------------------------------- /test/regression/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/CMakeLists.txt -------------------------------------------------------------------------------- /test/regression/chan3-dither.cepview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3-dither.cepview -------------------------------------------------------------------------------- /test/regression/chan3-logspec.cepview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3-logspec.cepview -------------------------------------------------------------------------------- /test/regression/chan3-smoothspec.cepview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3-smoothspec.cepview -------------------------------------------------------------------------------- /test/regression/chan3.2chan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3.2chan.wav -------------------------------------------------------------------------------- /test/regression/chan3.cepview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3.cepview -------------------------------------------------------------------------------- /test/regression/chan3.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3.ctl -------------------------------------------------------------------------------- /test/regression/chan3.f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3.f0 -------------------------------------------------------------------------------- /test/regression/chan3.logspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3.logspec -------------------------------------------------------------------------------- /test/regression/chan3.mfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3.mfc -------------------------------------------------------------------------------- /test/regression/chan3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3.raw -------------------------------------------------------------------------------- /test/regression/chan3.sph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3.sph -------------------------------------------------------------------------------- /test/regression/chan3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/chan3.wav -------------------------------------------------------------------------------- /test/regression/polite.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/polite.gram -------------------------------------------------------------------------------- /test/regression/right_recursion_53.fsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/right_recursion_53.fsg -------------------------------------------------------------------------------- /test/regression/right_recursion_53.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/right_recursion_53.gram -------------------------------------------------------------------------------- /test/regression/test-align.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-align.sh -------------------------------------------------------------------------------- /test/regression/test-cards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-cards.sh -------------------------------------------------------------------------------- /test/regression/test-cepview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-cepview.sh -------------------------------------------------------------------------------- /test/regression/test-lm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-lm.sh -------------------------------------------------------------------------------- /test/regression/test-main-align.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-main-align.sh -------------------------------------------------------------------------------- /test/regression/test-main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-main.sh -------------------------------------------------------------------------------- /test/regression/test-sphinx_fe-ctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-sphinx_fe-ctl.sh -------------------------------------------------------------------------------- /test/regression/test-sphinx_fe-dct.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-sphinx_fe-dct.sh -------------------------------------------------------------------------------- /test/regression/test-sphinx_fe-dither-seed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-sphinx_fe-dither-seed.sh -------------------------------------------------------------------------------- /test/regression/test-sphinx_fe-logspec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-sphinx_fe-logspec.sh -------------------------------------------------------------------------------- /test/regression/test-sphinx_fe-logspec2cep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-sphinx_fe-logspec2cep.sh -------------------------------------------------------------------------------- /test/regression/test-sphinx_fe-smoothspec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-sphinx_fe-smoothspec.sh -------------------------------------------------------------------------------- /test/regression/test-sphinx_fe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-sphinx_fe.sh -------------------------------------------------------------------------------- /test/regression/test-sphinx_jsgf2fsg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-sphinx_jsgf2fsg.sh -------------------------------------------------------------------------------- /test/regression/test-sphinx_pitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-sphinx_pitch.sh -------------------------------------------------------------------------------- /test/regression/test-tidigits-fsg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-tidigits-fsg.sh -------------------------------------------------------------------------------- /test/regression/test-tidigits-simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test-tidigits-simple.sh -------------------------------------------------------------------------------- /test/regression/test.command.fsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test.command.fsg -------------------------------------------------------------------------------- /test/regression/test.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test.gram -------------------------------------------------------------------------------- /test/regression/test.kleene.fsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test.kleene.fsg -------------------------------------------------------------------------------- /test/regression/test.nestedRightRecursion.fsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test.nestedRightRecursion.fsg -------------------------------------------------------------------------------- /test/regression/test.nulltest.fsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test.nulltest.fsg -------------------------------------------------------------------------------- /test/regression/test.rightRecursion.fsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/regression/test.rightRecursion.fsg -------------------------------------------------------------------------------- /test/testfuncs.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/testfuncs.sh.in -------------------------------------------------------------------------------- /test/testfuncs_cygwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/testfuncs_cygwin.sh -------------------------------------------------------------------------------- /test/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_204.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_204.cc -------------------------------------------------------------------------------- /test/unit/test_acmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_acmod.c -------------------------------------------------------------------------------- /test/unit/test_acmod_grow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_acmod_grow.c -------------------------------------------------------------------------------- /test/unit/test_alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_alignment.c -------------------------------------------------------------------------------- /test/unit/test_alloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_alloc/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_alloc/test_ckd_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_alloc/test_ckd_alloc.c -------------------------------------------------------------------------------- /test/unit/test_alloc/test_ckd_alloc_abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_alloc/test_ckd_alloc_abort.c -------------------------------------------------------------------------------- /test/unit/test_alloc/test_ckd_alloc_abort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_alloc/test_ckd_alloc_abort.sh -------------------------------------------------------------------------------- /test/unit/test_alloc/test_ckd_alloc_catch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_alloc/test_ckd_alloc_catch.c -------------------------------------------------------------------------------- /test/unit/test_alloc/test_ckd_alloc_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_alloc/test_ckd_alloc_fail.c -------------------------------------------------------------------------------- /test/unit/test_alloc/test_listelem_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_alloc/test_listelem_alloc.c -------------------------------------------------------------------------------- /test/unit/test_allphone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_allphone.c -------------------------------------------------------------------------------- /test/unit/test_bitvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_bitvec.c -------------------------------------------------------------------------------- /test/unit/test_case/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_case/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_case/_lcase1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_case/_lcase1.test -------------------------------------------------------------------------------- /test/unit/test_case/_lcase2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_case/_lcase2.test -------------------------------------------------------------------------------- /test/unit/test_case/_lcase3.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./chgCase lcase -------------------------------------------------------------------------------- /test/unit/test_case/_strcmp1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_case/_strcmp1.test -------------------------------------------------------------------------------- /test/unit/test_case/_strcmp2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_case/_strcmp2.test -------------------------------------------------------------------------------- /test/unit/test_case/_strcmp3.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./chgCase strcmp_nocase -------------------------------------------------------------------------------- /test/unit/test_case/_ucase1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_case/_ucase1.test -------------------------------------------------------------------------------- /test/unit/test_case/_ucase2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_case/_ucase2.test -------------------------------------------------------------------------------- /test/unit/test_case/_ucase3.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./chgCase ucase -------------------------------------------------------------------------------- /test/unit/test_case/chgCase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_case/chgCase.c -------------------------------------------------------------------------------- /test/unit/test_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_config.c -------------------------------------------------------------------------------- /test/unit/test_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_dict.c -------------------------------------------------------------------------------- /test/unit/test_dict2pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_dict2pid.c -------------------------------------------------------------------------------- /test/unit/test_dict_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_dict_strcat.c -------------------------------------------------------------------------------- /test/unit/test_endpointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_endpointer.c -------------------------------------------------------------------------------- /test/unit/test_endpointer_timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_endpointer_timestamp.c -------------------------------------------------------------------------------- /test/unit/test_fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fe.c -------------------------------------------------------------------------------- /test/unit/test_fe_warp_overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fe_warp_overflow.c -------------------------------------------------------------------------------- /test/unit/test_feat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_feat/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_feat/_test_feat.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_feat/_test_feat.res -------------------------------------------------------------------------------- /test/unit/test_feat/_test_feat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_feat/_test_feat.test -------------------------------------------------------------------------------- /test/unit/test_feat/test_feat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_feat/test_feat.c -------------------------------------------------------------------------------- /test/unit/test_feat/test_feat_fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_feat/test_feat_fe.c -------------------------------------------------------------------------------- /test/unit/test_feat/test_feat_live.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_feat/test_feat_live.c -------------------------------------------------------------------------------- /test/unit/test_feat/test_subvq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_feat/test_subvq.c -------------------------------------------------------------------------------- /test/unit/test_fsg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fsg/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_fsg/goforward.fsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fsg/goforward.fsg -------------------------------------------------------------------------------- /test/unit/test_fsg/polite.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fsg/polite.gram -------------------------------------------------------------------------------- /test/unit/test_fsg/public.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fsg/public.gram -------------------------------------------------------------------------------- /test/unit/test_fsg/test_fsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fsg/test_fsg.c -------------------------------------------------------------------------------- /test/unit/test_fsg/test_fsg_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fsg/test_fsg_accept.c -------------------------------------------------------------------------------- /test/unit/test_fsg/test_fsg_jsgf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fsg/test_fsg_jsgf.c -------------------------------------------------------------------------------- /test/unit/test_fsg/test_fsg_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fsg/test_fsg_read.c -------------------------------------------------------------------------------- /test/unit/test_fsg/test_fsg_write_fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fsg/test_fsg_write_fsm.c -------------------------------------------------------------------------------- /test/unit/test_fwdflat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fwdflat.c -------------------------------------------------------------------------------- /test/unit/test_fwdtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fwdtree.c -------------------------------------------------------------------------------- /test/unit/test_fwdtree_bestpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_fwdtree_bestpath.c -------------------------------------------------------------------------------- /test/unit/test_genrand_baseline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_genrand_baseline.c -------------------------------------------------------------------------------- /test/unit/test_genrand_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_genrand_thread.c -------------------------------------------------------------------------------- /test/unit/test_genrand_thread_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_genrand_thread_tls.c -------------------------------------------------------------------------------- /test/unit/test_hash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/_hash_delete1.res -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/_hash_delete1.test -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/_hash_delete2.res -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/_hash_delete2.test -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/_hash_delete3.res -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/_hash_delete3.test -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/_hash_delete4.res -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/_hash_delete4.test -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete5.res: -------------------------------------------------------------------------------- 1 | Failed as expected 2 | -------------------------------------------------------------------------------- /test/unit/test_hash/_hash_delete5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/_hash_delete5.test -------------------------------------------------------------------------------- /test/unit/test_hash/deletehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/deletehash.c -------------------------------------------------------------------------------- /test/unit/test_hash/display.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/display.res -------------------------------------------------------------------------------- /test/unit/test_hash/displayhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/displayhash.c -------------------------------------------------------------------------------- /test/unit/test_hash/test_hash_iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_hash/test_hash_iter.c -------------------------------------------------------------------------------- /test/unit/test_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_init.c -------------------------------------------------------------------------------- /test/unit/test_jsgf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_jsgf.c -------------------------------------------------------------------------------- /test/unit/test_keyphrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_keyphrase.c -------------------------------------------------------------------------------- /test/unit/test_lattice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_lattice.c -------------------------------------------------------------------------------- /test/unit/test_lineiter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_lineiter/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_lineiter/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_lineiter/test.txt -------------------------------------------------------------------------------- /test/unit/test_lineiter/test_lineiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_lineiter/test_lineiter.c -------------------------------------------------------------------------------- /test/unit/test_lm_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_lm_convert.c -------------------------------------------------------------------------------- /test/unit/test_log_int16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_log_int16.c -------------------------------------------------------------------------------- /test/unit/test_log_int8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_log_int8.c -------------------------------------------------------------------------------- /test/unit/test_log_shifted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_log_shifted.c -------------------------------------------------------------------------------- /test/unit/test_macros.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_macros.h.in -------------------------------------------------------------------------------- /test/unit/test_matrix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_matrix/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_matrix/_test_determinant.res: -------------------------------------------------------------------------------- 1 | 5.22 2 | -1.00 3 | -------------------------------------------------------------------------------- /test/unit/test_matrix/_test_determinant.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_matrix/_test_determinant.test -------------------------------------------------------------------------------- /test/unit/test_matrix/_test_invert.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_matrix/_test_invert.res -------------------------------------------------------------------------------- /test/unit/test_matrix/_test_invert.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_matrix/_test_invert.test -------------------------------------------------------------------------------- /test/unit/test_matrix/_test_solve.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_matrix/_test_solve.res -------------------------------------------------------------------------------- /test/unit/test_matrix/_test_solve.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_matrix/_test_solve.test -------------------------------------------------------------------------------- /test/unit/test_matrix/test_determinant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_matrix/test_determinant.c -------------------------------------------------------------------------------- /test/unit/test_matrix/test_invert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_matrix/test_invert.c -------------------------------------------------------------------------------- /test/unit/test_matrix/test_solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_matrix/test_solve.c -------------------------------------------------------------------------------- /test/unit/test_mllr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_mllr.c -------------------------------------------------------------------------------- /test/unit/test_nbest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_nbest.c -------------------------------------------------------------------------------- /test/unit/test_ngram/100.lm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/100.lm.bin -------------------------------------------------------------------------------- /test/unit/test_ngram/100.lm.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/100.lm.bz2 -------------------------------------------------------------------------------- /test/unit/test_ngram/100.lm.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/100.lm.dmp -------------------------------------------------------------------------------- /test/unit/test_ngram/100.lm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/100.lm.gz -------------------------------------------------------------------------------- /test/unit/test_ngram/100.lmctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/100.lmctl -------------------------------------------------------------------------------- /test/unit/test_ngram/100.probdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/100.probdef -------------------------------------------------------------------------------- /test/unit/test_ngram/102.lm.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/102.lm.dmp -------------------------------------------------------------------------------- /test/unit/test_ngram/102.lm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/102.lm.gz -------------------------------------------------------------------------------- /test/unit/test_ngram/104.lm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/104.lm.gz -------------------------------------------------------------------------------- /test/unit/test_ngram/105.lm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/105.lm.gz -------------------------------------------------------------------------------- /test/unit/test_ngram/106.lm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/106.lm.gz -------------------------------------------------------------------------------- /test/unit/test_ngram/107.lm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/107.lm.gz -------------------------------------------------------------------------------- /test/unit/test_ngram/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_ngram/test_lm_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/test_lm_add.c -------------------------------------------------------------------------------- /test/unit/test_ngram/test_lm_casefold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/test_lm_casefold.c -------------------------------------------------------------------------------- /test/unit/test_ngram/test_lm_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/test_lm_class.c -------------------------------------------------------------------------------- /test/unit/test_ngram/test_lm_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/test_lm_read.c -------------------------------------------------------------------------------- /test/unit/test_ngram/test_lm_score.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/test_lm_score.c -------------------------------------------------------------------------------- /test/unit/test_ngram/test_lm_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/test_lm_set.c -------------------------------------------------------------------------------- /test/unit/test_ngram/test_lm_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/test_lm_write.c -------------------------------------------------------------------------------- /test/unit/test_ngram/turtle.lm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/turtle.lm -------------------------------------------------------------------------------- /test/unit/test_ngram/turtle.lm.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/turtle.lm.dmp -------------------------------------------------------------------------------- /test/unit/test_ngram/turtle.ug.lm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/turtle.ug.lm -------------------------------------------------------------------------------- /test/unit/test_ngram/turtle.ug.lm.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram/turtle.ug.lm.dmp -------------------------------------------------------------------------------- /test/unit/test_ngram_model_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ngram_model_read.c -------------------------------------------------------------------------------- /test/unit/test_pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_pitch.c -------------------------------------------------------------------------------- /test/unit/test_posterior.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_posterior.c -------------------------------------------------------------------------------- /test/unit/test_ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ps.c -------------------------------------------------------------------------------- /test/unit/test_ptm_mgau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_ptm_mgau.c -------------------------------------------------------------------------------- /test/unit/test_reinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_reinit.c -------------------------------------------------------------------------------- /test/unit/test_senfh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_senfh.c -------------------------------------------------------------------------------- /test/unit/test_set_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_set_search.c -------------------------------------------------------------------------------- /test/unit/test_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_simple.c -------------------------------------------------------------------------------- /test/unit/test_state_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_state_align.c -------------------------------------------------------------------------------- /test/unit/test_string/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_string/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_string/_fread_line.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec ./strtest fread_line 3 | -------------------------------------------------------------------------------- /test/unit/test_string/_fread_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_string/_fread_line.txt -------------------------------------------------------------------------------- /test/unit/test_string/_nextword.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec ./strtest nextword 3 | -------------------------------------------------------------------------------- /test/unit/test_string/_str2words.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec ./strtest str2words 3 | -------------------------------------------------------------------------------- /test/unit/test_string/_string_join.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec ./strtest string_join 3 | -------------------------------------------------------------------------------- /test/unit/test_string/_string_trim.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_string/_string_trim.test -------------------------------------------------------------------------------- /test/unit/test_string/strtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_string/strtest.c -------------------------------------------------------------------------------- /test/unit/test_string/test_atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_string/test_atof.c -------------------------------------------------------------------------------- /test/unit/test_thread_local_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_thread_local_basic.c -------------------------------------------------------------------------------- /test/unit/test_thread_local_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_thread_local_compile.c -------------------------------------------------------------------------------- /test/unit/test_thread_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_thread_utils.c -------------------------------------------------------------------------------- /test/unit/test_thread_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_thread_utils.h -------------------------------------------------------------------------------- /test/unit/test_thread_utils_self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_thread_utils_self.c -------------------------------------------------------------------------------- /test/unit/test_util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_util/CMakeLists.txt -------------------------------------------------------------------------------- /test/unit/test_util/test_bit_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_util/test_bit_encode.c -------------------------------------------------------------------------------- /test/unit/test_util/test_bitarr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_util/test_bitarr.c -------------------------------------------------------------------------------- /test/unit/test_util/test_build_directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_util/test_build_directory.c -------------------------------------------------------------------------------- /test/unit/test_util/test_filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_util/test_filename.c -------------------------------------------------------------------------------- /test/unit/test_util/test_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_util/test_fopen.c -------------------------------------------------------------------------------- /test/unit/test_util/test_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_util/test_heap.c -------------------------------------------------------------------------------- /test/unit/test_util/test_readfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_util/test_readfile.c -------------------------------------------------------------------------------- /test/unit/test_vad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_vad.c -------------------------------------------------------------------------------- /test/unit/test_vad_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_vad_alloc.c -------------------------------------------------------------------------------- /test/unit/test_word_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/unit/test_word_align.c -------------------------------------------------------------------------------- /test/word_align.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/test/word_align.pl -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmusphinx/pocketsphinx/HEAD/tox.ini --------------------------------------------------------------------------------