├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── .idea └── vcs.xml ├── LICENSE ├── README.md ├── notebooks ├── HTKFeaturesExplained.ipynb └── ResamplingTest.ipynb ├── pyhtk └── HTKFeat.py ├── pyproject.toml └── tests ├── 8k ├── file.raw ├── file8k.htk ├── filter8k.csv ├── gen_filt8k.c ├── hcopy8k.conf └── test8k.py ├── HTK.py ├── diff.png ├── file.htk ├── file.raw ├── filter.csv ├── gen_filt.c ├── hcopy.conf └── test.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/HTKFeaturesExplained.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/notebooks/HTKFeaturesExplained.ipynb -------------------------------------------------------------------------------- /notebooks/ResamplingTest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/notebooks/ResamplingTest.ipynb -------------------------------------------------------------------------------- /pyhtk/HTKFeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/pyhtk/HTKFeat.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/8k/file.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/8k/file.raw -------------------------------------------------------------------------------- /tests/8k/file8k.htk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/8k/file8k.htk -------------------------------------------------------------------------------- /tests/8k/filter8k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/8k/filter8k.csv -------------------------------------------------------------------------------- /tests/8k/gen_filt8k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/8k/gen_filt8k.c -------------------------------------------------------------------------------- /tests/8k/hcopy8k.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/8k/hcopy8k.conf -------------------------------------------------------------------------------- /tests/8k/test8k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/8k/test8k.py -------------------------------------------------------------------------------- /tests/HTK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/HTK.py -------------------------------------------------------------------------------- /tests/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/diff.png -------------------------------------------------------------------------------- /tests/file.htk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/file.htk -------------------------------------------------------------------------------- /tests/file.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/file.raw -------------------------------------------------------------------------------- /tests/filter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/filter.csv -------------------------------------------------------------------------------- /tests/gen_filt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/gen_filt.c -------------------------------------------------------------------------------- /tests/hcopy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/hcopy.conf -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijel3/PyHTK/HEAD/tests/test.py --------------------------------------------------------------------------------