# speech-paraformer **Repository Path**: mazpy/speech-paraformer ## Basic Information - **Project Name**: speech-paraformer - **Description**: 【开发中】实现语音转文字 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2024-11-11 - **Last Updated**: 2025-12-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 模型信息 模型名称:iic/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-pytorch 模型地址:https://www.modelscope.cn/models/iic/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-pytorch ## 环境搭建 ``` conda create -n speech conda activate speech pip install modelscope addict datasets==2.16.0 oss2 -i https://pypi.tuna.tsinghua.edu.cn/simple ``` ## 克隆仓库 ``` git clone https://gitee.com/mazpy/speech-paraformer.git ``` ## 测试 demo.wav 的语音内容是 123 ``` cd speech-paraformer/ python speech.py ``` 示例输出: ``` $ python speech.py result : [{'key': 'demo', 'text': '一二三'}] text : 一二三 ``` ## 删除环境 ``` conda deactivate conda remove -n speech --all conda env list ```