AI News AI资讯 7d ago Updated 7d ago 更新于 7天前 50

Interfaze Ships diffusion-gemma-asr-small, an Open-Source Diffusion ASR Model Transcribing Six Languages via DiffusionGemma’s Parallel Denoising Decoder Interfaze发布diffusion-gemma-asr-small,一个通过DiffusionGemma并行去噪解码器转录六种语言的开源扩散ASR模型

Interfaze open-sources diffusion-gemma-asr-small, the first multilingual audio diffusion ASR model using a frozen 26B DiffusionGemma backbone and a lightweight 42M parameter adapter. The model utilizes uniform, random-token diffusion rather than absorbing mask schemes, enabling parallel transcription across six languages (English, German, French, Spanish, Hindi, Mandarin) via a single adapter. It achieves a 6.6% Word Error Rate (WER) on LibriSpeech test-clean, outperforming Whisfusion (8.3%) but Interfaze开源了首个多语言音频扩散ASR模型diffusion-gemma-asr-small,使用单一适配器处理六种语言。 该模型在冻结的26B DiffusionGemma骨干网络上仅训练约42M参数(占0.16%),采用离散扩散解码器而非自回归生成。 在LibriSpeech测试集上达到6.6%的WER,优于Whisfusion(8.3%),但落后于自回归的Whisper-small(~3.4%)。 转录成本取决于去噪步数而非文本长度,8步即可收敛,实现约14.9倍实时速度,适合批量并行处理。 训练关键突破在于使用CTC损失直接监督投影层,解决了梯度无法回传至音频嵌入的问题。

72
Hot 热度
75
Quality 质量
68
Impact 影响力

Analysis 深度分析

TL;DR

  • Interfaze open-sources diffusion-gemma-asr-small, the first multilingual audio diffusion ASR model using a frozen 26B DiffusionGemma backbone and a lightweight 42M parameter adapter.
  • The model utilizes uniform, random-token diffusion rather than absorbing mask schemes, enabling parallel transcription across six languages (English, German, French, Spanish, Hindi, Mandarin) via a single adapter.
  • It achieves a 6.6% Word Error Rate (WER) on LibriSpeech test-clean, outperforming Whisfusion (8.3%) but trailing autoregressive Whisper-small (~3.4%), with performance scaling determined by denoising steps rather than transcript length.
  • Training required overcoming initial gradient stagnation by supervising the audio projector with CTC loss, allowing the frozen backbone to effectively attend to audio features extracted by a frozen Whisper-small encoder.

Why It Matters

This development challenges the dominance of autoregressive models in speech recognition by demonstrating that diffusion-based parallel decoding can achieve competitive accuracy while offering distinct advantages in batch processing and multilingual handling. For researchers, it provides a reproducible baseline for integrating audio modalities into large language models without full fine-tuning, highlighting the potential of hybrid architectures that combine specialized encoders with generative diffusion decoders.

Technical Details

  • Architecture: Combines a frozen Whisper-small encoder (feature extractor) with a frozen DiffusionGemma-26B MoE backbone (activates 4B parameters). A trainable ~42M parameter adapter includes a projector that compresses 1500 acoustic frames into 188 audio tokens, which are scattered into the LLM's prompt slots.
  • Diffusion Mechanism: Uses discrete uniform random-token diffusion where a fixed-length canvas is filled with random vocabulary tokens. Each denoising step locks confident predictions and re-randomizes the rest, running bidirectionally over approximately 16 steps.
  • Training Strategy: Initial training failed due to gradient vanishing; the solution involved applying Connectionist Temporal Classification (CTC) loss directly to the audio tokens projected through the frozen language model head, stabilizing learning and reducing WER significantly.
  • Performance Metrics: On LibriSpeech test-clean, it scores 6.6% WER. Inference speed is highly dependent on denoising steps: 8 steps yield 14.9x real-time speed with 15.7% WER on FLEURS-en, while 16 steps offer 10.3x speed with 15.6% WER.

Industry Insight

The decoupling of transcription cost from transcript length suggests significant efficiency gains for batch processing pipelines, where long audio clips do not incur proportionally higher computational costs compared to autoregressive methods. Additionally, the ability to handle six languages with a single small adapter reduces infrastructure complexity and model management overhead for multilingual applications, though practitioners must weigh the slight accuracy deficit against autoregressive baselines like Whisper.

TL;DR

  • Interfaze开源了首个多语言音频扩散ASR模型diffusion-gemma-asr-small,使用单一适配器处理六种语言。
  • 该模型在冻结的26B DiffusionGemma骨干网络上仅训练约42M参数(占0.16%),采用离散扩散解码器而非自回归生成。
  • 在LibriSpeech测试集上达到6.6%的WER,优于Whisfusion(8.3%),但落后于自回归的Whisper-small(~3.4%)。
  • 转录成本取决于去噪步数而非文本长度,8步即可收敛,实现约14.9倍实时速度,适合批量并行处理。
  • 训练关键突破在于使用CTC损失直接监督投影层,解决了梯度无法回传至音频嵌入的问题。

为什么值得看

这篇文章展示了非自回归扩散模型在语音识别领域的最新进展,为降低多语言ASR部署成本提供了新范式。对于追求高吞吐量批量转录场景或希望探索LLM与音频模态融合的研究者而言,其轻量级适配器和开源实现具有极高的参考价值。

技术解析

  • 架构设计:模型由冻结的Whisper-small编码器提取声学特征,通过可训练的投影层压缩后注入到冻结的DiffusionGemma(26B MoE,激活4B参数)中。DiffusionGemma作为解码器,使用均匀随机令牌扩散方案,而非传统的吸收机制,并行细化所有令牌。
  • 训练策略:初始训练因梯度消失失败,团队引入CTC(连接时序分类)损失直接监督投影层输出,使音频嵌入线性可预测文本,迅速降低损失并提升WER表现。
  • 多语言支持:单个约42M参数的适配器覆盖英语、德语、法语、西班牙语、印地语和普通话,无需为每种语言加载独立模型。
  • 性能权衡:去噪步数从8增加到48,WER改善微乎其微(约0.1点),但延迟增加3倍。8步时达到最佳性价比,RTF约为14.9×。

行业启示

  • 并行处理优势:扩散模型的并行解码特性使其在长音频批量转录场景中具备显著的速度优势,成本不随文本长度线性增长,适合大规模数据处理流水线。
  • 轻量化微调范式:证明了对超大规模基础模型(如26B)进行极小参数适配器(LoRA/投影层)微调的有效性,降低了多模态大模型落地的硬件门槛。
  • 非自回归路线潜力:虽然目前精度略逊于顶级自回归模型,但在特定指标(如LibriSpeech)上已超越其他扩散基线,提示业界关注非自回归方法在特定场景下的优化空间。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Open Source 开源 Speech 语音 Multimodal 多模态