# gru-speech-command **Repository Path**: wangsy_thu/gru-speech-command ## Basic Information - **Project Name**: gru-speech-command - **Description**: 基于双向GRU的命令词识别项目,使用Pytorch构建、训练模型。 - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-10-27 - **Last Updated**: 2023-11-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: Python, RNN, PyTorch ## README # 基于双向GRU的命令词唤醒 ## 一、数据集下载 数据集是SpeechCommand,是torch audio包自带的数据集,可以通过运行data_download.py下载,也可以直接访问网址下载。 ```python URLS = [ "https://storage.googleapis.com/download.tensorflow.org/data/speech_commands_v0.01.tar.gz", "https://storage.googleapis.com/download.tensorflow.org/data/speech_commands_v0.02.tar.gz" ] ``` 整理后的数据集可以从百度网盘下载,下载后解压直接放到项目工程目录中即可。 链接: https://pan.baidu.com/s/1qiDiLjrU8lAzQzLnQM3r5Q 提取码:1234 ## 二、常见问题 ### 1,RuntimeError: No audio I/O backend is available. 命令行运行: ```commandline pip install SoundFile ```