pocketsphinx 5.0.2__tar.gz → 5.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pocketsphinx-5.0.4/.github/dependabot.yml +6 -0
- pocketsphinx-5.0.4/.github/workflows/build_wheels.yml +40 -0
- pocketsphinx-5.0.4/.github/workflows/tests.yml +80 -0
- pocketsphinx-5.0.4/.gitignore +22 -0
- pocketsphinx-5.0.4/.readthedocs.yml +13 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/CMakeLists.txt +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/Dockerfile +2 -5
- pocketsphinx-5.0.4/MANIFEST.in +48 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/NEWS +6 -4
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/PKG-INFO +18 -14
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/README.md +17 -2
- pocketsphinx-5.0.4/TODO.md +12 -0
- pocketsphinx-5.0.4/cython/.gitignore +2 -0
- pocketsphinx-5.0.4/cython/CMakeLists.txt +29 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/README.md +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/_pocketsphinx.pyx +4 -4
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/pocketsphinx/__init__.py +7 -1
- pocketsphinx-5.0.4/cython/pocketsphinx/lm.py +383 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/pocketsphinx/segmenter.py +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/endpointer_test.py +8 -5
- pocketsphinx-5.0.4/docs/requirements.txt +5 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/source/conf.py +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/CMakeLists.txt +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx.1 +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx.1.in +1 -1
- pocketsphinx-5.0.4/examples/.gitignore +4 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/gstpocketsphinx.c +3 -3
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/alignment.h +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/err.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/model.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx.h +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_main.c +2 -0
- pocketsphinx-5.0.4/pyproject.toml +75 -0
- pocketsphinx-5.0.4/release-checklist.md +13 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/acmod.c +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/include/signal_processing_library.h +4 -4
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/min_max_operations.c +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_interface.c +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_noise.c +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/yin.c +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/yin.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/cmn.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/feat.c +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/feat.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_history.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/bitarr.h +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngrams_raw.h +4 -4
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/mdef.c +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_gauden.c +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_lattice.c +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/checks.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/README.python +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/bio.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/bitvec.h +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/clapack_scrub.py +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/cmd_ln.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/fortran.py +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/glist.h +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/listelem_alloc.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/matrix.c +2 -2
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/slapack_lite.c +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/strfuncs.h +1 -1
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/test_feat_fe.c +1 -1
- pocketsphinx-5.0.4/tox.ini +22 -0
- pocketsphinx-5.0.2/cython/CMakeLists.txt +0 -25
- pocketsphinx-5.0.2/cython/pocketsphinx.egg-info/SOURCES.txt +0 -618
- pocketsphinx-5.0.2/docs/Makefile +0 -20
- pocketsphinx-5.0.2/docs/requirements.txt +0 -5
- pocketsphinx-5.0.2/pyproject.toml +0 -24
- pocketsphinx-5.0.2/requirements.dev.txt +0 -6
- pocketsphinx-5.0.2/setup.cfg +0 -34
- pocketsphinx-5.0.2/setup.py +0 -9
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/.dockerignore +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/AUTHORS +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/LICENSE +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/config.h.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/_pocketsphinx.pxd +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/pypocketsphinx-examples.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/alignment_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/config_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/continuous_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/decoder_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/fsg_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/jsgf_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/kws_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/lattice_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/lm_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/logmath_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/phoneme_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/pypocketsphinx_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/cython/test/vad_test.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/gen_config.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/make.bat +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/source/config_params.rst +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/source/index.rst +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/docs/source/pocketsphinx.rst +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/args2man.pl +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx_batch.1 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx_batch.1.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/pocketsphinx_mdef_convert.1 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_cepview.1 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_cepview.1.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_cont_seg.1 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_cont_seg.1.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_fe.1 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_fe.1.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_convert.1 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_convert.1.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_eval.1 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_eval.1.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_lm_sort.1 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_pitch.1 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/doxygen/sphinx_pitch.1.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/README.md +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live_portaudio.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live_pulseaudio.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/live_win32.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/segment.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/simple.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/examples/simple.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/gstpocketsphinx.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/livedemo.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/gst/livedemo.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/endpointer.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/export.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/lattice.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/logmath.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/mllr.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/prim_type.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/search.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/include/pocketsphinx/vad.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/indent.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/cmudict-en-us.dict +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/README +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/feat.params +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/mdef +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/means +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/noisedict +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/sendump +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/transition_matrices +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us/variances +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us-phone.lm.bin +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/model/en-us/en-us.lm.bin +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/pocketsphinx.pc.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/fsg2dot.pl +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_batch.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_jsgf2fsg.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_lm_convert.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_lm_eval.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_mdef_convert.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/programs/pocketsphinx_pitch.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/sphinx_config.h.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/acmod.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/allphone_search.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/allphone_search.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/bin_mdef.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/bin_mdef.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/cross_correlation.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/division_operations.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/downsample_fast.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/energy.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/get_scaling_square.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/include/spl_inl.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample_48khz.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample_by_2_internal.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample_by_2_internal.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/resample_fractional.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/spl_inl.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/signal_processing/vector_scaling_operations.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/include/webrtc_vad.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_core.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_core.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_filterbank.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_filterbank.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_gmm.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_gmm.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_sp.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/vad_sp.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/common_audio/vad/webrtc_vad.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/config_macro.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/dict.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/dict.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/dict2pid.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/dict2pid.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fast_ptm.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_internal.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_noise.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_sigproc.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_type.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_affine.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_affine.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_inverse_linear.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_inverse_linear.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_piecewise_linear.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fe_warp_piecewise_linear.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fixlog.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/fixpoint.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/make_log_sub_table.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fe/make_log_table.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/agc.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/agc.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/cmn.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/cmn_live.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/feat/lda.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_history.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_lextree.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_lextree.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_search.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/fsg_search_internal.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/hmm.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/hmm.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/jsmn.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/kws_detections.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/kws_detections.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/kws_search.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/kws_search.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/_jsgf_scanner.l +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/bitarr.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/fsg_model.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/fsg_model.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_internal.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_parser.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_parser.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_parser.y +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_scanner.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/jsgf_scanner.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/lm_trie.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/lm_trie.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/lm_trie_quant.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/lm_trie_quant.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_internal.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_set.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_set.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_trie.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngram_model_trie.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/lm/ngrams_raw.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/mdef.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_gauden.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_mgau.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_mgau.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_senone.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ms_senone.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search_fwdflat.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search_fwdflat.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search_fwdtree.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ngram_search_fwdtree.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/phone_loop_search.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/phone_loop_search.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/pocketsphinx.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/pocketsphinx_internal.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_alignment.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_alignment_internal.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_config.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_endpointer.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_lattice_internal.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_mllr.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ps_vad.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ptm_mgau.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/ptm_mgau.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/compile_assert_c.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/sanitizer.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/system/arch.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/rtc_base/typedefs.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/s2_semi_mgau.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/s2_semi_mgau.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/s3types.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/state_align_search.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/state_align_search.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/tied_mgau_common.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/tmat.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/tmat.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/bio.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/bitvec.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/blas_lite.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/blkarray_list.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/blkarray_list.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/byteorder.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/case.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/case.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/ckd_alloc.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/ckd_alloc.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/clapack_lite.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/cmd_ln.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/dtoa.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/err.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/errno.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/f2c.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/f2c_lite.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/filename.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/filename.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/genrand.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/genrand.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/glist.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/hash_table.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/hash_table.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/heap.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/heap.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/listelem_alloc.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/logmath.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/make_lite.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/matrix.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/mmio.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/mmio.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/pio.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/pio.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/priority_queue.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/priority_queue.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/profile.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/profile.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/slamch.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/soundfiles.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/strfuncs.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/vector.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/vector.h +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/src/util/wrapped_routines +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/compare_table.pl +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/feat.params +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/mdef +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/means +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/mixture_weights +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/noisedict +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/transition_matrices +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/an4_ci_cont/variances +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/001.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/002.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/003.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/004.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/005.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/cards.fileids +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/cards.gram +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/cards.hyp +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/cards/cards.transcription +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/defective.dic +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/defective.gram +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/forever/input_2_16k.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/forever/input_4_16k.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.fsg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.gram +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.kws +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/goforward.raw +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/fileids +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/make_single_track.py +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.lab +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.phone.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.state.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0870.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.lab +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.phone.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.state.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0880.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.lab +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.phone.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.state.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0890.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.lab +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.phone.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.state.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0920.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.lab +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.phone.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.state.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/sense_and_sensibility_01_austen_64kb-0930.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-align.align +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-align.matchseg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-lm.match +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-main.fixed.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/test-main.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/librivox/transcription +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/mllr_matrices +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/null-align.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/null.json +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/null.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/numbers.raw +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/something.raw +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/test.lmctl +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/dhd.2934z.raw +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/feat.params +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/mdef +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/means +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/sendump +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/transition_matrices +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/hmm/variances +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/lm/tidigits.dic +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/lm/tidigits.fsg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/lm/tidigits.lm.bin +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.111a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.1b.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.2934za.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.35oa.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.3oa.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.4625a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.588zza.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.63a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.6o838a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.75913a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.844o1a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.8b.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.9b.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.o789a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.z4548a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/man.ah.zb.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/test-tidigits-fsg.match +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/test-tidigits-simple.match +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/tidigits.ctl +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/tidigits.lsn +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.1b.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.276317oa.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.334a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.3z3z9a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.48z66zza.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.532a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.5z874a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.6728za.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.75a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.84983a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.8a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.99731a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.o69a.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.ooa.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/tidigits/woman.ak.za.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/turtle.dic +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/turtle.lm.bin +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/unreachable.lat +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/vad/leak-test.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/data/vad/test-audio.raw +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3-dither.cepview +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3-logspec.cepview +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3-smoothspec.cepview +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.2chan.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.cepview +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.ctl +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.f0 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.logspec +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.mfc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.raw +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.sph +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/chan3.wav +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/polite.gram +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/right_recursion_53.fsg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/right_recursion_53.gram +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-align.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-cards.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-cepview.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-lm.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-main-align.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-main.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-ctl.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-dct.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-dither-seed.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-logspec.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-logspec2cep.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe-smoothspec.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_fe.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_jsgf2fsg.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-sphinx_pitch.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-tidigits-fsg.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test-tidigits-simple.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.command.fsg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.gram +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.kleene.fsg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.nestedRightRecursion.fsg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.nulltest.fsg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/regression/test.rightRecursion.fsg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/testfuncs.sh.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/testfuncs_cygwin.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_204.cc +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_acmod.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_acmod_grow.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alignment.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc_abort.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc_abort.sh +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc_catch.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_ckd_alloc_fail.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_alloc/test_listelem_alloc.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_allphone.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_bitvec.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_lcase1.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_lcase2.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_lcase3.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_strcmp1.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_strcmp2.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_strcmp3.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_ucase1.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_ucase2.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/_ucase3.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_case/chgCase.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_config.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_dict.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_dict2pid.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_endpointer.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fe.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/_test_feat.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/_test_feat.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/test_feat.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/test_feat_live.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_feat/test_subvq.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/goforward.fsg +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/polite.gram +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/public.gram +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg_accept.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg_jsgf.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg_read.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fsg/test_fsg_write_fsm.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fwdflat.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fwdtree.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_fwdtree_bestpath.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete1.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete1.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete2.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete2.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete3.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete3.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete4.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete4.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete5.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/_hash_delete5.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/deletehash.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/display.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/displayhash.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_hash/test_hash_iter.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_init.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_jsgf.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_keyphrase.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_lattice.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_lineiter/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_lineiter/test.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_lineiter/test_lineiter.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_log_int16.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_log_int8.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_log_shifted.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_macros.h.in +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_determinant.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_determinant.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_invert.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_invert.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_solve.res +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/_test_solve.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/test_determinant.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/test_invert.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_matrix/test_solve.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_mllr.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_nbest.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lm.bin +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lm.bz2 +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lm.dmp +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lm.gz +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.lmctl +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/100.probdef +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/102.lm.dmp +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/102.lm.gz +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/104.lm.gz +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/105.lm.gz +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/106.lm.gz +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/107.lm.gz +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_add.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_casefold.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_class.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_read.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_score.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_set.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/test_lm_write.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/turtle.lm +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/turtle.lm.dmp +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/turtle.ug.lm +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram/turtle.ug.lm.dmp +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ngram_model_read.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_pitch.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_posterior.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ps.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_ptm_mgau.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_reinit.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_senfh.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_set_search.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_simple.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_state_align.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_fread_line.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_fread_line.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_nextword.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_str2words.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_string_join.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/_string_trim.test +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/strtest.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_string/test_atof.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/CMakeLists.txt +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_bit_encode.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_bitarr.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_build_directory.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_filename.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_fopen.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_heap.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_util/test_readfile.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_vad.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/unit/test_word_align.c +0 -0
- {pocketsphinx-5.0.2 → pocketsphinx-5.0.4}/test/word_align.pl +0 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
name: Build
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches:
|
|
5
|
+
- master
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
make_sdist:
|
|
10
|
+
name: Build source distribution
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
|
|
16
|
+
- name: Build SDist
|
|
17
|
+
run: pipx run build --sdist
|
|
18
|
+
|
|
19
|
+
- uses: actions/upload-artifact@v3
|
|
20
|
+
with:
|
|
21
|
+
path: dist/*.tar.gz
|
|
22
|
+
|
|
23
|
+
build_wheels:
|
|
24
|
+
name: Build wheels on ${{ matrix.os }}
|
|
25
|
+
runs-on: ${{ matrix.os }}
|
|
26
|
+
strategy:
|
|
27
|
+
matrix:
|
|
28
|
+
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
29
|
+
|
|
30
|
+
steps:
|
|
31
|
+
- name: Checkout
|
|
32
|
+
uses: actions/checkout@v4
|
|
33
|
+
|
|
34
|
+
- name: Build wheels
|
|
35
|
+
uses: pypa/cibuildwheel@v2.22.0
|
|
36
|
+
|
|
37
|
+
- name: Upload
|
|
38
|
+
uses: actions/upload-artifact@v3
|
|
39
|
+
with:
|
|
40
|
+
path: ./wheelhouse/*.whl
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
name: Run Tests
|
|
2
|
+
on:
|
|
3
|
+
- push
|
|
4
|
+
- workflow_dispatch
|
|
5
|
+
jobs:
|
|
6
|
+
test:
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
steps:
|
|
9
|
+
- name: Checkout
|
|
10
|
+
uses: actions/checkout@v4
|
|
11
|
+
- name: Install
|
|
12
|
+
run: |
|
|
13
|
+
sudo apt-get install sox ninja-build
|
|
14
|
+
- name: Build
|
|
15
|
+
run: |
|
|
16
|
+
cmake -S. -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug
|
|
17
|
+
cmake --build build
|
|
18
|
+
- name: Run tests
|
|
19
|
+
run: |
|
|
20
|
+
cmake --build build --target check
|
|
21
|
+
test-fixed:
|
|
22
|
+
runs-on: ubuntu-latest
|
|
23
|
+
steps:
|
|
24
|
+
- name: Checkout
|
|
25
|
+
uses: actions/checkout@v4
|
|
26
|
+
- name: Install
|
|
27
|
+
run: |
|
|
28
|
+
sudo apt-get install sox ninja-build
|
|
29
|
+
- name: Build
|
|
30
|
+
run: |
|
|
31
|
+
cmake -S. -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DFIXED_POINT=ON
|
|
32
|
+
cmake --build build
|
|
33
|
+
- name: Run tests
|
|
34
|
+
run: |
|
|
35
|
+
cmake --build build --target check
|
|
36
|
+
python-tests:
|
|
37
|
+
name: test with ${{ matrix.py }} on ${{ matrix.os }}
|
|
38
|
+
runs-on: ${{ matrix.os }}
|
|
39
|
+
strategy:
|
|
40
|
+
fail-fast: true
|
|
41
|
+
matrix:
|
|
42
|
+
py:
|
|
43
|
+
- "3.13"
|
|
44
|
+
- "3.12"
|
|
45
|
+
- "3.11"
|
|
46
|
+
- "3.10"
|
|
47
|
+
- "3.9"
|
|
48
|
+
- "3.8"
|
|
49
|
+
os:
|
|
50
|
+
- ubuntu-latest
|
|
51
|
+
- macos-latest
|
|
52
|
+
- windows-latest
|
|
53
|
+
steps:
|
|
54
|
+
- uses: actions/checkout@v4
|
|
55
|
+
- name: Setup python for test ${{ matrix.py }}
|
|
56
|
+
uses: actions/setup-python@v5
|
|
57
|
+
with:
|
|
58
|
+
python-version: ${{ matrix.py }}
|
|
59
|
+
- name: Install sox
|
|
60
|
+
if: ${{ startsWith(matrix.os, 'ubuntu') }}
|
|
61
|
+
run: sudo apt-get install sox
|
|
62
|
+
- name: Install tox
|
|
63
|
+
run: python -m pip install tox-gh>=1.2
|
|
64
|
+
- name: Setup test suite
|
|
65
|
+
run: tox -vv --notest
|
|
66
|
+
- name: Run test suite
|
|
67
|
+
run: tox --skip-pkg-install
|
|
68
|
+
pytest-editable:
|
|
69
|
+
runs-on: ubuntu-latest
|
|
70
|
+
steps:
|
|
71
|
+
- name: Checkout
|
|
72
|
+
uses: actions/checkout@v4
|
|
73
|
+
- name: Install
|
|
74
|
+
run: |
|
|
75
|
+
sudo apt-get install sox
|
|
76
|
+
python -m pip install --upgrade pip
|
|
77
|
+
pip install pytest memory_profiler
|
|
78
|
+
pip install -e .
|
|
79
|
+
- name: Run tests
|
|
80
|
+
run: pytest
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
build/
|
|
2
|
+
*~
|
|
3
|
+
.vscode/settings.json
|
|
4
|
+
*.egg-info
|
|
5
|
+
_skbuild
|
|
6
|
+
dist
|
|
7
|
+
MANIFEST
|
|
8
|
+
__pycache__
|
|
9
|
+
jsbuild
|
|
10
|
+
CMakeCache.txt
|
|
11
|
+
CMakeFiles
|
|
12
|
+
CTestTestfile.cmake
|
|
13
|
+
DartConfiguration.tcl
|
|
14
|
+
cmake_install.cmake
|
|
15
|
+
venv/
|
|
16
|
+
.tox
|
|
17
|
+
Makefile
|
|
18
|
+
config.h
|
|
19
|
+
include/pocketsphinx/sphinx_config.h
|
|
20
|
+
pocketsphinx.pc
|
|
21
|
+
test/testfuncs.sh
|
|
22
|
+
test/unit/test_macros.h
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
FROM alpine:latest as runtime
|
|
2
|
-
RUN apk add --no-cache python3 py3-pip sox
|
|
2
|
+
RUN apk add --no-cache python3 py3-pip sox portaudio alsa-utils alsaconf
|
|
3
3
|
|
|
4
4
|
FROM runtime as build
|
|
5
5
|
RUN apk add --no-cache cmake ninja gcc musl-dev python3-dev pkgconfig
|
|
@@ -13,10 +13,7 @@ RUN CMAKE_ARGS="-DUSE_INSTALLED_POCKETSPHINX=ON" pip wheel -v .
|
|
|
13
13
|
FROM runtime
|
|
14
14
|
COPY --from=build /usr/local/ /usr/local/
|
|
15
15
|
COPY --from=build /pocketsphinx/*.whl /
|
|
16
|
-
RUN pip install /*.whl && rm /*.whl
|
|
16
|
+
RUN pip install --break-system-packages /*.whl && rm /*.whl
|
|
17
17
|
|
|
18
|
-
RUN adduser -u 1000 -DHD pocketsphinx && adduser pocketsphinx audio
|
|
19
18
|
COPY examples/ /work/examples/
|
|
20
|
-
RUN chown -R pocketsphinx:pocketsphinx /work
|
|
21
|
-
USER pocketsphinx
|
|
22
19
|
WORKDIR /work
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
include AUTHORS
|
|
2
|
+
include CMakeLists.txt
|
|
3
|
+
include LICENSE
|
|
4
|
+
include NEWS
|
|
5
|
+
include README.md
|
|
6
|
+
include Dockerfile
|
|
7
|
+
include .dockerignore
|
|
8
|
+
include build_wheels.sh
|
|
9
|
+
include config.h.in
|
|
10
|
+
include pocketsphinx.pc.in
|
|
11
|
+
include indent.sh
|
|
12
|
+
include pyproject.toml
|
|
13
|
+
include requirements.dev.txt
|
|
14
|
+
include setup.cfg
|
|
15
|
+
include setup.py
|
|
16
|
+
include sphinx_config.h.in
|
|
17
|
+
recursive-include cython *
|
|
18
|
+
recursive-include gst *
|
|
19
|
+
recursive-include docs *
|
|
20
|
+
recursive-include doxygen *
|
|
21
|
+
recursive-include examples *
|
|
22
|
+
recursive-include include *
|
|
23
|
+
recursive-include model *
|
|
24
|
+
recursive-include programs *
|
|
25
|
+
recursive-include src *
|
|
26
|
+
recursive-include test *
|
|
27
|
+
exclude MANIFEST.in
|
|
28
|
+
exclude .readthedocs.yml
|
|
29
|
+
exclude .travis.yml
|
|
30
|
+
exclude .gitignore
|
|
31
|
+
exclude examples/simple
|
|
32
|
+
exclude examples/live
|
|
33
|
+
exclude examples/vad
|
|
34
|
+
recursive-exclude .github *
|
|
35
|
+
recursive-exclude _skbuild *
|
|
36
|
+
recursive-exclude build *
|
|
37
|
+
recursive-exclude docs/build *
|
|
38
|
+
recursive-exclude cython/pocketsphinx/model *
|
|
39
|
+
recursive-exclude cython/pocketsphinx.egg-info *
|
|
40
|
+
recursive-exclude * .gitignore
|
|
41
|
+
recursive-exclude * *.py[co]
|
|
42
|
+
recursive-exclude * *~
|
|
43
|
+
recursive-exclude * *.orig
|
|
44
|
+
recursive-exclude * *.DS_Store
|
|
45
|
+
recursive-exclude * __pycache__
|
|
46
|
+
recursive-exclude * *.so
|
|
47
|
+
recursive-exclude * *.egg-info
|
|
48
|
+
recursive-exclude venv *
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
PocketSphinx 5.0.
|
|
1
|
+
PocketSphinx 5.0.3
|
|
2
2
|
^^^^^^^^^^^^^^^^^^
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
The NEWS file has not been updated for some time. See the GitHub
|
|
5
|
+
releases page at https://github.com/cmusphinx/pocketsphinx/releases
|
|
6
|
+
instead.
|
|
5
7
|
|
|
6
8
|
Pocketsphinx 0.8
|
|
7
9
|
^^^^^^^^^^^^^^^^
|
|
@@ -17,7 +19,7 @@ Improvements:
|
|
|
17
19
|
|
|
18
20
|
Fixes:
|
|
19
21
|
* Memory leaks, refcounting and other memory-related issues
|
|
20
|
-
* Use proper word
|
|
22
|
+
* Use proper word boundary senones for the words added on the fly
|
|
21
23
|
* Accurate FSG lextree construction
|
|
22
24
|
|
|
23
25
|
Pocketsphinx 0.7
|
|
@@ -46,7 +48,7 @@ Bug fixes:
|
|
|
46
48
|
* Fixes very important regression with NULL transitions in fsg search
|
|
47
49
|
* Proper acoustic score scaling during posterior calculation.
|
|
48
50
|
|
|
49
|
-
And many, many, many more
|
|
51
|
+
And many, many, many more interesting things!
|
|
50
52
|
|
|
51
53
|
Pocketsphinx pre
|
|
52
54
|
^^^^^^^^^^^^^^^^
|
|
@@ -1,26 +1,30 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pocketsphinx
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.4
|
|
4
4
|
Summary: Official Python bindings for PocketSphinx
|
|
5
|
-
Home-page: https://github.com/cmusphinx/pocketsphinx
|
|
6
|
-
Author: David Huggins-Daines
|
|
7
|
-
Author-email: dhdaines@gmail.com
|
|
8
|
-
License: MIT
|
|
9
|
-
Project-URL: Source, https://github.com/cmusphinx/pocketsphinx
|
|
10
|
-
Project-URL: Tracker, https://github.com/cmusphinx/pocketsphinx/issues
|
|
11
5
|
Keywords: asr,speech
|
|
12
|
-
|
|
13
|
-
Classifier: Development Status ::
|
|
6
|
+
Author-Email: David Huggins-Daines <dhdaines@gmail.com>
|
|
7
|
+
Classifier: Development Status :: 6 - Mature
|
|
14
8
|
Classifier: Programming Language :: C
|
|
9
|
+
Classifier: Programming Language :: Cython
|
|
15
10
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.
|
|
17
|
-
Classifier:
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
|
+
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
|
|
20
|
+
Project-URL: Homepage, https://github.com/cmusphinx/pocketsphinx
|
|
21
|
+
Project-URL: Documentation, https://pocketsphinx.readthedocs.io/en/latest/
|
|
22
|
+
Project-URL: Repository, https://github.com/cmusphinx/pocketsphinx.git
|
|
23
|
+
Project-URL: Issues, https://github.com/cmusphinx/pocketsphinx/issues
|
|
24
|
+
Requires-Dist: sounddevice
|
|
19
25
|
Description-Content-Type: text/markdown
|
|
20
|
-
License-File: LICENSE
|
|
21
|
-
License-File: AUTHORS
|
|
22
26
|
|
|
23
|
-
PocketSphinx 5.0.
|
|
27
|
+
PocketSphinx 5.0.4
|
|
24
28
|
==================
|
|
25
29
|
|
|
26
30
|
This is PocketSphinx, one of Carnegie Mellon University's open source large
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
PocketSphinx 5.0.
|
|
1
|
+
PocketSphinx 5.0.4
|
|
2
2
|
==================
|
|
3
3
|
|
|
4
4
|
This is PocketSphinx, one of Carnegie Mellon University's open source large
|
|
@@ -29,6 +29,21 @@ There is no longer any dependency on SphinxBase. There is no
|
|
|
29
29
|
SphinxBase anymore. This is not the SphinxBase you're looking for.
|
|
30
30
|
All your SphinxBase are belong to us.
|
|
31
31
|
|
|
32
|
+
There are some other dependencies that you may find useful in order to
|
|
33
|
+
use the example code (though they are not strictly necessary to build
|
|
34
|
+
and install). On Debian GNU/Linux and its derivatives (such as
|
|
35
|
+
Raspberry Pi OS, Ubuntu, etc), you can install them with:
|
|
36
|
+
|
|
37
|
+
sudo apt install \
|
|
38
|
+
ffmpeg \
|
|
39
|
+
libasound2-dev \
|
|
40
|
+
libportaudio2 \
|
|
41
|
+
libportaudiocpp0 \
|
|
42
|
+
libpulse-dev \
|
|
43
|
+
libsox-fmt-all \
|
|
44
|
+
portaudio19-dev \
|
|
45
|
+
sox
|
|
46
|
+
|
|
32
47
|
To install the Python module in a virtual environment (replace
|
|
33
48
|
`~/ve_pocketsphinx` with the virtual environment you wish to create),
|
|
34
49
|
from the top level directory:
|
|
@@ -53,7 +68,7 @@ Usage
|
|
|
53
68
|
-----
|
|
54
69
|
|
|
55
70
|
The `pocketsphinx` command-line program reads single-channel 16-bit
|
|
56
|
-
PCM audio from standard input or one or more files, and
|
|
71
|
+
PCM audio from standard input or one or more files, and attempts to
|
|
57
72
|
recognize speech in it using the default acoustic and language model.
|
|
58
73
|
It accepts a large number of options which you probably don't care
|
|
59
74
|
about, a *command* which defaults to `live`, and one or more inputs
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
- Documentation:
|
|
2
|
+
- Update tutorial
|
|
3
|
+
- LM tutorial use pocketsphinx_lm_convert, pocketsphinx
|
|
4
|
+
- Training tutorial use Docker
|
|
5
|
+
- Android tutorial add note that it's out of date
|
|
6
|
+
- FAQ update for new pocketsphinx program
|
|
7
|
+
- CLI quick start in README.md
|
|
8
|
+
- Python quick start in main page of Python docs
|
|
9
|
+
- C quick start in <pocketsphinx.h>
|
|
10
|
+
- Support NumPy arrays for input (see soundfile usage)
|
|
11
|
+
- Environment variable for model path
|
|
12
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
find_package(Python COMPONENTS Interpreter Development.Module REQUIRED)
|
|
2
|
+
find_program(CYTHON "cython")
|
|
3
|
+
|
|
4
|
+
if(NOT USE_INSTALLED_POCKETSPHINX)
|
|
5
|
+
set_property(TARGET pocketsphinx PROPERTY POSITION_INDEPENDENT_CODE on)
|
|
6
|
+
endif()
|
|
7
|
+
|
|
8
|
+
add_custom_command(
|
|
9
|
+
OUTPUT _pocketsphinx.c
|
|
10
|
+
DEPENDS _pocketsphinx.pyx
|
|
11
|
+
VERBATIM
|
|
12
|
+
COMMAND "${CYTHON}" "${CMAKE_CURRENT_SOURCE_DIR}/_pocketsphinx.pyx" --output-file
|
|
13
|
+
"${CMAKE_CURRENT_BINARY_DIR}/_pocketsphinx.c")
|
|
14
|
+
|
|
15
|
+
python_add_library(_pocketsphinx MODULE "${CMAKE_CURRENT_BINARY_DIR}/_pocketsphinx.c" WITH_SOABI)
|
|
16
|
+
target_link_libraries(_pocketsphinx PRIVATE pocketsphinx)
|
|
17
|
+
target_include_directories(
|
|
18
|
+
_pocketsphinx PRIVATE ${PYTHON_INCLUDE_DIR}
|
|
19
|
+
_pocketsphinx PRIVATE ${CMAKE_BINARY_DIR}
|
|
20
|
+
_pocketsphinx PRIVATE ${CMAKE_SOURCE_DIR}/src
|
|
21
|
+
_pocketsphinx PUBLIC ${CMAKE_SOURCE_DIR}/include
|
|
22
|
+
_pocketsphinx PUBLIC ${CMAKE_BINARY_DIR}/include
|
|
23
|
+
_pocketsphinx INTERFACE ${CMAKE_SOURCE_DIR}/include
|
|
24
|
+
_pocketsphinx INTERFACE ${CMAKE_BINARY_DIR}/include
|
|
25
|
+
)
|
|
26
|
+
install(TARGETS _pocketsphinx LIBRARY DESTINATION pocketsphinx)
|
|
27
|
+
if(NOT USE_INSTALLED_POCKETSPHINX)
|
|
28
|
+
install(DIRECTORY ${PROJECT_SOURCE_DIR}/model DESTINATION pocketsphinx)
|
|
29
|
+
endif()
|
|
@@ -610,7 +610,7 @@ cdef class NGramModel:
|
|
|
610
610
|
cdef const char **cwords
|
|
611
611
|
cdef int prob
|
|
612
612
|
bwords = [w.encode("utf-8") for w in words]
|
|
613
|
-
cwords = <const char **>malloc(len(bwords))
|
|
613
|
+
cwords = <const char **>malloc(len(bwords) * sizeof(char *))
|
|
614
614
|
for i, w in enumerate(bwords):
|
|
615
615
|
cwords[i] = w
|
|
616
616
|
prob = ngram_prob(self.lm, cwords, len(words))
|
|
@@ -1701,7 +1701,7 @@ cdef class Decoder:
|
|
|
1701
1701
|
for word in decoder.get_alignment():
|
|
1702
1702
|
for phone in word:
|
|
1703
1703
|
for state in phone:
|
|
1704
|
-
print(word, phone, state)
|
|
1704
|
+
print(word.name, phone.name, state.start)
|
|
1705
1705
|
|
|
1706
1706
|
That's a lot of code, so it may get simplified, either here or
|
|
1707
1707
|
in a derived class, before release.
|
|
@@ -1757,7 +1757,7 @@ cdef class Vad:
|
|
|
1757
1757
|
"""Voice activity detection class.
|
|
1758
1758
|
|
|
1759
1759
|
Args:
|
|
1760
|
-
mode(int): Aggressiveness of voice activity
|
|
1760
|
+
mode(int): Aggressiveness of voice activity detection (0-3)
|
|
1761
1761
|
sample_rate(int): Sampling rate of input, default is 16000.
|
|
1762
1762
|
Rates other than 8000, 16000, 32000, 48000
|
|
1763
1763
|
are only approximately supported, see note
|
|
@@ -1841,7 +1841,7 @@ cdef class Endpointer:
|
|
|
1841
1841
|
window(float): Length in seconds of window for decision.
|
|
1842
1842
|
ratio(float): Fraction of window that must be speech or
|
|
1843
1843
|
non-speech to make a transition.
|
|
1844
|
-
mode(int): Aggressiveness of voice activity
|
|
1844
|
+
mode(int): Aggressiveness of voice activity detection (0-3)
|
|
1845
1845
|
sample_rate(int): Sampling rate of input, default is 16000.
|
|
1846
1846
|
Rates other than 8000, 16000, 32000, 48000
|
|
1847
1847
|
are only approximately supported, see note
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
34
34
|
|
|
35
35
|
import collections
|
|
36
|
+
import importlib.util
|
|
36
37
|
import os
|
|
37
38
|
import signal
|
|
38
39
|
from contextlib import contextmanager
|
|
@@ -81,7 +82,10 @@ def get_model_path(subpath=None):
|
|
|
81
82
|
"""
|
|
82
83
|
model_path = pocketsphinx._ps_default_modeldir()
|
|
83
84
|
if model_path is None:
|
|
84
|
-
|
|
85
|
+
# Use importlib to find things (so editable installs work)
|
|
86
|
+
model_path = importlib.util.find_spec(
|
|
87
|
+
"pocketsphinx.model"
|
|
88
|
+
).submodule_search_locations[0]
|
|
85
89
|
if subpath is not None:
|
|
86
90
|
return os.path.join(model_path, subpath)
|
|
87
91
|
else:
|
|
@@ -181,6 +185,7 @@ class AudioFile(Pocketsphinx):
|
|
|
181
185
|
simple.
|
|
182
186
|
|
|
183
187
|
"""
|
|
188
|
+
|
|
184
189
|
def __init__(self, audio_file=None, **kwargs):
|
|
185
190
|
signal.signal(signal.SIGINT, self.stop)
|
|
186
191
|
|
|
@@ -239,6 +244,7 @@ class LiveSpeech(Pocketsphinx):
|
|
|
239
244
|
|
|
240
245
|
try:
|
|
241
246
|
import sounddevice
|
|
247
|
+
|
|
242
248
|
assert sounddevice
|
|
243
249
|
except Exception as e:
|
|
244
250
|
# In case PortAudio is not present, for instance
|