├── .gitignore ├── README.md ├── conf └── conf.ini ├── config.py ├── doc.rar ├── model.py ├── test.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestpower/Speech_Recognition_Test/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestpower/Speech_Recognition_Test/HEAD/README.md -------------------------------------------------------------------------------- /conf/conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestpower/Speech_Recognition_Test/HEAD/conf/conf.ini -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestpower/Speech_Recognition_Test/HEAD/config.py -------------------------------------------------------------------------------- /doc.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestpower/Speech_Recognition_Test/HEAD/doc.rar -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestpower/Speech_Recognition_Test/HEAD/model.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestpower/Speech_Recognition_Test/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestpower/Speech_Recognition_Test/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestpower/Speech_Recognition_Test/HEAD/utils.py --------------------------------------------------------------------------------