2018-06-19 16:10:56 +08:00
# A Deep-Learning-Based Chinese Speech Recognition System
2018-11-16 16:39:19 +08:00
基于深度学习的中文语音识别系统,如果您觉得喜欢,请点一个 ** "Star"** 吧~
2018-06-19 16:10:56 +08:00
2018-08-09 23:44:22 +08:00
[![GPL-3.0 Licensed ](https://img.shields.io/badge/License-GPL3.0-blue.svg?style=flat )](https://opensource.org/licenses/GPL-3.0) [![TensorFlow Version ](https://img.shields.io/badge/Tensorflow-1.4+-blue.svg )](https://www.tensorflow.org/) [![Keras Version ](https://img.shields.io/badge/Keras-2.0+-blue.svg )](https://keras.io/) [![Python Version ](https://img.shields.io/badge/Python-3.x-blue.svg )](https://www.python.org/)
2018-07-26 10:41:00 +08:00
2018-11-16 16:39:19 +08:00
**ReadMe Language** | 中文版 | [English ](https://github.com/nl8590687/ASRT_SpeechRecognition/blob/master/README_EN.md ) |
2018-07-26 10:41:00 +08:00
2019-01-25 22:48:54 +08:00
[**查看本项目的Wiki文档** ](https://github.com/nl8590687/ASRT_SpeechRecognition/wiki )
2018-03-30 23:04:11 +08:00
2018-11-16 16:39:19 +08:00
如果程序运行期间或使用中有什么问题, 可以及时在issue中提出来, 我将尽快做出答复。本项目作者交流QQ群: **867888133**
2018-09-08 15:13:05 +08:00
2018-11-16 16:39:19 +08:00
提问前可以先 [查看常见问题 ](https://github.com/nl8590687/ASRT_SpeechRecognition/wiki/issues ) 避免重复提问
ASRT的原理请查看本文:
* [ASRT: 一个中文语音识别系统 ](https://blog.ailemon.me/2018/08/29/asrt-a-chinese-speech-recognition-system/ )
关于经常被问到的统计语言模型原理的问题,请看:
* [统计语言模型:从中文拼音到文本 ](https://blog.ailemon.me/2017/04/27/statistical-language-model-chinese-pinyin-to-words/ )
* [无需中文分词算法的简单词频统计 ](https://blog.ailemon.me/2017/02/20/simple-words-frequency-statistic-without-segmentation-algorithm/ )
2018-09-27 17:29:18 +08:00
2018-03-30 23:04:11 +08:00
## Introduction 简介
2018-06-30 13:11:14 +08:00
本项目使用Keras、TensorFlow基于深度卷积神经网络和长短时记忆神经网络、注意力机制以及CTC实现。
2018-03-30 23:04:11 +08:00
2018-06-30 13:11:14 +08:00
This project uses Keras, TensorFlow based on deep convolutional neural network and long-short memory neural network, attention mechanism and CTC to implement.
2018-03-30 23:04:11 +08:00
2018-11-16 16:39:19 +08:00
* **操作步骤**
首先通过Git将本项目克隆到您的计算机上, 然后下载本项目训练所需要的数据集, 下载链接详见[文档末尾部分](https://github.com/nl8590687/ASRT_SpeechRecognition#data-sets-%E6%95%B0%E6%8D%AE%E9%9B%86)。
```shell
$ git clone https://github.com/nl8590687/ASRT_SpeechRecognition.git
```
或者您也可以通过 "Fork" 按钮, 将本项目Copy一份副本, 然后通过您自己的SSH密钥克隆到本地。
2018-03-30 23:04:11 +08:00
2018-11-16 16:39:19 +08:00
通过git克隆仓库以后, 进入项目根目录; 并创建子目录 `dataset/` (可使用软链接代替),然后将下载好的数据集直接解压进去
```shell
$ cd ASRT_SpeechRecognition
$ mkdir dataset
$ tar zxf < 数据集压缩文件名 > -C dataset/
```
然后需要将datalist目录下的文件全部拷贝到 `dataset/` 目录下,也就是将其跟数据集放在一起。
2018-05-11 18:42:58 +08:00
```shell
$ cp -rf datalist/* dataset/
```
2018-05-02 11:51:44 +08:00
2018-07-26 10:41:00 +08:00
目前可用的模型有24、25和251
2018-05-02 11:51:44 +08:00
2018-11-16 16:39:19 +08:00
运行本项目之前,请安装必要的[Python3版依赖库](https://github.com/nl8590687/ASRT_SpeechRecognition#python-import)
2018-05-11 18:42:58 +08:00
本项目开始训练请执行:
```shell
$ python3 train_mspeech.py
```
本项目开始测试请执行:
2018-03-30 23:04:11 +08:00
```shell
2018-05-11 18:42:58 +08:00
$ python3 test_mspeech.py
2018-03-30 23:04:11 +08:00
```
2018-05-11 18:42:58 +08:00
测试之前,请确保代码中填写的模型文件路径存在。
2018-05-15 21:43:11 +08:00
ASRT API服务器启动请执行:
```shell
$ python3 asrserver.py
```
2019-01-25 22:48:54 +08:00
请注意, 开启API服务器之后, 需要使用本ASRT项目对应的客户端软件来进行语音识别, 详见Wiki文档[ASRT客户端Demo](https://github.com/nl8590687/ASRT_SpeechRecognition/wiki/ClientDemo)。
2018-07-06 13:57:53 +08:00
如果要训练和使用模型251, 请在代码中 `import SpeechModel` 的相应位置做修改。
2018-05-21 19:11:22 +08:00
2018-03-30 23:04:11 +08:00
## Model 模型
### Speech Model 语音模型
2018-05-02 11:51:44 +08:00
CNN + LSTM/GRU + CTC
2018-03-30 23:04:11 +08:00
2018-12-24 14:01:40 +08:00
其中, 输入的音频的最大时间长度为16秒, 输出为对应的汉语拼音序列
2018-05-25 14:26:03 +08:00
* 关于下载已经训练好的模型的问题
2019-03-18 14:28:54 +08:00
可以在Github本仓库下[releases](https://github.com/nl8590687/ASRT_SpeechRecognition/releases)里面的查看发布的各个版本软件的压缩包里获得包含已经训练好模型参数的完整源程序。
2018-05-25 14:26:03 +08:00
2018-03-30 23:04:11 +08:00
### Language Model 语言模型
2018-06-25 20:22:23 +08:00
基于概率图的最大熵隐马尔可夫模型
2018-03-30 23:04:11 +08:00
2018-12-24 14:01:40 +08:00
输入为汉语拼音序列,输出为对应的汉字文本
2018-05-11 18:42:58 +08:00
## About Accuracy 关于准确率
2018-06-30 13:11:14 +08:00
当前, 最好的模型在测试集上基本能达到80%的汉语拼音正确率
2018-05-11 18:42:58 +08:00
2018-12-24 14:01:40 +08:00
不过由于目前国际和国内的部分团队能做到98%,所以正确率仍有待于进一步提高
2018-05-11 18:42:58 +08:00
2018-03-30 23:04:11 +08:00
## Python Import
Python的依赖库
* python_speech_features
* TensorFlow
* Keras
* Numpy
* wave
* matplotlib
* math
* Scipy
* h5py
2018-12-24 14:01:40 +08:00
* http
* urllib
2018-03-30 23:04:11 +08:00
## Data Sets 数据集
2018-11-16 16:39:19 +08:00
* **清华大学THCHS30中文语音数据集**
2018-03-30 23:06:43 +08:00
2018-12-24 14:01:40 +08:00
data_thchs30.tgz
2018-11-16 16:39:19 +08:00
[OpenSLR国内镜像 ](<http://cn-mirror.openslr.org/resources/18/data_thchs30.tgz> )
[OpenSLR国外镜像 ](<http://www.openslr.org/resources/18/data_thchs30.tgz> )
2018-03-30 23:06:43 +08:00
2018-12-24 14:01:40 +08:00
test-noise.tgz
2018-11-16 16:39:19 +08:00
[OpenSLR国内镜像 ](<http://cn-mirror.openslr.org/resources/18/test-noise.tgz> )
[OpenSLR国外镜像 ](<http://www.openslr.org/resources/18/test-noise.tgz> )
2018-03-30 23:06:43 +08:00
2018-12-24 14:01:40 +08:00
resource.tgz
2018-11-16 16:39:19 +08:00
[OpenSLR国内镜像 ](<http://cn-mirror.openslr.org/resources/18/resource.tgz> )
[OpenSLR国外镜像 ](<http://www.openslr.org/resources/18/resource.tgz> )
* **Free ST Chinese Mandarin Corpus**
2018-04-25 21:18:28 +08:00
2018-12-24 14:01:40 +08:00
ST-CMDS-20170001_1-OS.tar.gz
2018-11-16 16:39:19 +08:00
[OpenSLR国内镜像 ](<http://cn-mirror.openslr.org/resources/38/ST-CMDS-20170001_1-OS.tar.gz> )
[OpenSLR国外镜像 ](<http://www.openslr.org/resources/38/ST-CMDS-20170001_1-OS.tar.gz> )
2019-01-15 16:46:48 +08:00
* **AIShell-1 开源版数据集**
2018-11-16 16:39:19 +08:00
2018-12-24 14:01:40 +08:00
data_aishell.tgz
2018-11-16 16:39:19 +08:00
[OpenSLR国内镜像 ](<http://cn-mirror.openslr.org/resources/33/data_aishell.tgz> )
[OpenSLR国外镜像 ](<http://www.openslr.org/resources/33/data_aishell.tgz> )
2019-03-16 13:22:59 +08:00
注:数据集解压方法
2019-01-25 22:48:54 +08:00
2019-03-16 13:22:59 +08:00
```
$ tar xzf data_aishell.tgz
$ cd data_aishell/wav
$ for tar in *.tar.gz; do tar xvf $tar; done
```
2019-01-25 22:48:54 +08:00
2019-01-15 16:46:48 +08:00
* **Primewords Chinese Corpus Set 1**
2018-11-16 16:39:19 +08:00
2018-12-24 14:01:40 +08:00
primewords_md_2018_set1.tar.gz
2018-11-16 16:39:19 +08:00
[OpenSLR国内镜像 ](<http://cn-mirror.openslr.org/resources/47/primewords_md_2018_set1.tar.gz> )
[OpenSLR国外镜像 ](<http://www.openslr.org/resources/47/primewords_md_2018_set1.tar.gz> )
2018-03-30 23:06:43 +08:00
2019-04-13 17:18:54 +08:00
* **aidatatang_200zh**
200.zip
[OpenSLR国内镜像 ](<http://cn-mirror.openslr.org/resources/62/200.zip> )
[OpenSLR国外镜像 ](<http://www.openslr.org/resources/62/200.zip> )
2018-03-30 23:04:11 +08:00
特别鸣谢!感谢前辈们的公开语音数据集
2018-06-19 16:10:56 +08:00
如果提供的数据集链接无法打开和下载,请点击该链接 [OpenSLR ](http://www.openslr.org )
2018-03-30 23:04:11 +08:00
## Log
2018-11-16 16:39:19 +08:00
日志链接:[进展日志](https://github.com/nl8590687/ASRT_SpeechRecognition/blob/master/log.md)
2018-05-23 17:14:32 +08:00
## Contributors 贡献者们
2019-03-16 13:22:59 +08:00
[@zw76859420 ](https://github.com/zw76859420 )
@madeirak @ZJUGuoShuai @williamchenwl
2018-05-23 17:14:32 +08:00
2018-07-26 10:41:00 +08:00
@nl8590687 (repo owner)
2018-11-16 16:39:19 +08:00
[**打赏作者** ](https://github.com/nl8590687/ASRT_SpeechRecognition/wiki/donate )