Wenet--离线语音识别 快速上手体验

  • 操作系统:Linux
  • GPU与CUDA:NVIDIA GeForce RTX 4090 D,CUDA 12.5

1. 新建python环境

bash 复制代码
conda create -n wenet_offline python=3.10 -y
conda activate wenet_offline

2. 安装 Wenet

WeNet 提供了封装好的 Python 包,安装极其简单。这只是一个运行时库,包含了预训练模型和推理接口,非常适合快速使用。它会自动安装核心依赖,如 PyTorch。如果想进行模型训练或深度定制,则需要克隆其源码仓库,但对于"仅使用"来说,这就够了

bash 复制代码
pip install git+https://gitcode.com/gh_mirrors/we/wenet

上面命令自动安装的 PyTorch /Numpy等版本兼容性有问题,重装下:

bash 复制代码
pip install torch==2.2.2+cu121 torchaudio==2.2.2+cu121 -f https://download.pytorch.org/whl/torch_stable.html

pip uninstall numpy -y
pip install "numpy<2"

3. 离线语音识别

python 复制代码
import wenet

model = wenet.load_model('paraformer')
result = model.transcribe('test_cn.wav')
print(result.text)

result = model.transcribe('test_en.wav')
print(result.text)

result = model.transcribe('test_mix.wav')
print(result.text)
python 复制代码
今天天气怎么样明天天气怎么样
what's your name hello who are you
hello你叫什么名字呀今天的天气怎么样ok bye

4. 多模型对比

python 复制代码
import wenet
import time

def test_models_compact():
    """紧凑格式测试模型"""
    
    audio_files = ['test_cn.wav', 'test_en.wav', 'test_mix.wav']
    models = ['paraformer', 'firered', 'whisper-large-v3', 'wenetspeech']
    
    print("模型对比测试 (格式: 模型-文件-时间-结果)")
    print("="*80)
    
    for model_name in models:
        try:
            model = wenet.load_model(model_name)
            
            for audio_file in audio_files:
                start = time.time()
                result = model.transcribe(audio_file)
                elapsed = time.time() - start
                
                result_text = result.text if hasattr(result, 'text') else str(result)
                # 单行输出
                print(f"{model_name:20} | {audio_file:15} | {elapsed:6.3f}s | {result_text}")
                
        except Exception as e:
            print(f"{model_name:20} | 失败: {e}")

if __name__ == "__main__":
    test_models_compact()
python 复制代码
模型对比测试 (格式: 模型-文件-时间-结果)
================================================================================
paraformer           | test_cn.wav     |  0.129s | 今天天气怎么样明天天气怎么样
paraformer           | test_en.wav     |  0.111s | what's your name hello who are you
paraformer           | test_mix.wav    |  0.222s | hello你叫什么名字呀今天的天气怎么样ok bye
firered              | test_cn.wav     |  0.913s | 今天天气怎么样明天天气怎么样
firered              | test_en.wav     |  0.784s | WHAT'S YOUR NAME HELLO WHO ARE YOU
firered              | test_mix.wav    |  1.747s | 哈喽你叫什么名字呀今天的天气怎么样 OK拜
whisper-large-v3     | test_cn.wav     |  2.057s |  How is the weather today? How is the weather tomorrow?
whisper-large-v3     | test_en.wav     |  1.454s |  What's your name? Hello, who are you?
whisper-large-v3     | test_mix.wav    |  2.786s |  Hello 你叫什么名字呀? 今天的天气怎么样? OK, bye.
wenetspeech          | test_cn.wav     |  0.067s | 今天天气怎么样明天天气怎么样
wenetspeech          | test_en.wav     |  0.066s | 我叫要耐姆你好胡油
wenetspeech          | test_mix.wav    |  0.130s | 你好你叫什么名字今天的天气怎么样好拜
相关推荐
AI服务老曹2 小时前
源码级解耦:基于 Spring Boot/Vue 的 AI 视频平台二次开发指南与私有化部署实践
vue.js·人工智能·spring boot
Struart_R2 小时前
StreamVGGT、Stream3R、InfiniteVGGT论文解读
人工智能·计算机视觉·3d·视频·多模态
格林威2 小时前
工业相机图像采集处理:从 RAW 数据到 AI 可读图像,堡盟相机 C#实战代码深度解析
c++·人工智能·数码相机·opencv·算法·计算机视觉·c#
User_芊芊君子3 小时前
文科生封神!Python+AI 零门槛变现:3 天造 App,指令即收入(附脉脉 AI 沙龙干货)
开发语言·人工智能·python
MeowNeko3 小时前
为什么说程序员重命名时电脑不要带中文?记一次python manage.py runserver时UnicodeDecodeError的原因与解决方案
人工智能·python·chatgpt·中间件·django·utf8
宇擎智脑科技4 小时前
我用游戏引擎的思想,重新设计了 AI Agent 的记忆系统
人工智能·智能体·记忆系统
智算菩萨10 小时前
【实战讲解】ChatGPT 5.4深度文献检索完全指南:提示词工程与学术实战策略
论文阅读·人工智能·gpt·搜索引擎·chatgpt·提示词·论文笔记
gutsyang10 小时前
Google Stitch:最佳实践
人工智能·google·gemini·stitch