├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.rst ├── docs ├── gender_piwho.rst ├── jasper.rst ├── recognition.rst └── trainingmodel.rst ├── examples ├── batch_train.py ├── blink.py └── jasper │ ├── devgender.py │ ├── devrecog.py │ ├── devtrain.py │ ├── mgenderdetect.py │ ├── mrecog.py │ ├── mtrain.py │ └── shutdown.py ├── piwho ├── __init__.py ├── config.py ├── marf │ ├── Speaker.jar │ └── marf.jar ├── recognition.py └── vad.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── data ├── arctic_a0001.wav ├── arctic_a0002.wav └── arctic_a0003.wav ├── test_gd.py ├── test_sprecog.py └── test_spservice.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/README.rst -------------------------------------------------------------------------------- /docs/gender_piwho.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/docs/gender_piwho.rst -------------------------------------------------------------------------------- /docs/jasper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/docs/jasper.rst -------------------------------------------------------------------------------- /docs/recognition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/docs/recognition.rst -------------------------------------------------------------------------------- /docs/trainingmodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/docs/trainingmodel.rst -------------------------------------------------------------------------------- /examples/batch_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/examples/batch_train.py -------------------------------------------------------------------------------- /examples/blink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/examples/blink.py -------------------------------------------------------------------------------- /examples/jasper/devgender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/examples/jasper/devgender.py -------------------------------------------------------------------------------- /examples/jasper/devrecog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/examples/jasper/devrecog.py -------------------------------------------------------------------------------- /examples/jasper/devtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/examples/jasper/devtrain.py -------------------------------------------------------------------------------- /examples/jasper/mgenderdetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/examples/jasper/mgenderdetect.py -------------------------------------------------------------------------------- /examples/jasper/mrecog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/examples/jasper/mrecog.py -------------------------------------------------------------------------------- /examples/jasper/mtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/examples/jasper/mtrain.py -------------------------------------------------------------------------------- /examples/jasper/shutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/examples/jasper/shutdown.py -------------------------------------------------------------------------------- /piwho/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8-*- 2 | -------------------------------------------------------------------------------- /piwho/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/piwho/config.py -------------------------------------------------------------------------------- /piwho/marf/Speaker.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/piwho/marf/Speaker.jar -------------------------------------------------------------------------------- /piwho/marf/marf.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/piwho/marf/marf.jar -------------------------------------------------------------------------------- /piwho/recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/piwho/recognition.py -------------------------------------------------------------------------------- /piwho/vad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/piwho/vad.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | watchdog==0.8.3 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8-*- 2 | -------------------------------------------------------------------------------- /tests/data/arctic_a0001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/tests/data/arctic_a0001.wav -------------------------------------------------------------------------------- /tests/data/arctic_a0002.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/tests/data/arctic_a0002.wav -------------------------------------------------------------------------------- /tests/data/arctic_a0003.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/tests/data/arctic_a0003.wav -------------------------------------------------------------------------------- /tests/test_gd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/tests/test_gd.py -------------------------------------------------------------------------------- /tests/test_sprecog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/tests/test_sprecog.py -------------------------------------------------------------------------------- /tests/test_spservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adirockzz95/Piwho/HEAD/tests/test_spservice.py --------------------------------------------------------------------------------