Research Papers 论文研究 6h ago Updated 2h ago 更新于 2小时前 43

Dual-Form ASR: Semantics-Aware Inverse Text Normalization for Chinese Speech Recognition 双形式ASR:语义感知中文语音识别逆文本规范化

Dual-Form ASR (DF-ASR) is a novel framework that unifies spoken-form ASR and semantics-aware written-form inverse text normalization (ITN) into a single model, eliminating the error-prone cascaded pipeline. The framework uses paired spoken-form and written-form supervision, with training data constructed via an LLM-driven generate-and-judge workflow. ITN-MWER, a sequence-level training objective, is introduced to assign higher penalty costs to errors on normalization-sensitive spans. A decision- 提出Dual-Form ASR(DF-ASR)框架,通过配对口语形式和书面形式监督实现语义感知的反向文本规范化(ITN) 解决传统级联ASR-ITN系统中规范化与声学上下文建模脱节的问题,尤其针对语义依赖型数值表达 引入LLM驱动的生成-判断工作流程构建双形式监督数据,并设计ITN-MWER序列级目标函数对规范化敏感跨度赋予更高错误成本 提出REQUIRE-ITN/FORBID-ITN评估协议,分别衡量必需规范化与禁止保留跨度 在SpeechIO中文子集上,DF-ASR持续优于开源ASR-ITN系统,与强闭源参考系统相当,同时保持提示级别的转录形式选择能力

55
Hot 热度
72
Quality 质量
62
Impact 影响力

Analysis 深度分析

TL;DR

  • Dual-Form ASR (DF-ASR) is a novel framework that unifies spoken-form ASR and semantics-aware written-form inverse text normalization (ITN) into a single model, eliminating the error-prone cascaded pipeline.
  • The framework uses paired spoken-form and written-form supervision, with training data constructed via an LLM-driven generate-and-judge workflow.
  • ITN-MWER, a sequence-level training objective, is introduced to assign higher penalty costs to errors on normalization-sensitive spans.
  • A decision-aware REQUIRE-ITN/FORBID-ITN evaluation protocol is proposed to separately measure required normalization accuracy and forbidden-span preservation.
  • On manually annotated Chinese subsets from SpeechIO, DF-ASR outperforms open-source ASR-ITN systems and remains competitive with strong closed-source baselines while preserving prompt-level control between output forms.

Why It Matters

This work addresses a fundamental limitation in modern ASR systems: the decoupling of acoustic modeling from text normalization, which has long been a bottleneck for producing accurate written-form transcripts—especially for semantically dependent numeric expressions in Chinese. By unifying spoken and written form generation within a single framework, DF-ASR offers a more robust and flexible architecture that practitioners can adopt to improve end-to-end speech-to-text pipelines without relying on fragile cascaded post-processing.

Technical Details

  • Dual-form supervision: The model is trained with paired spoken-form and written-form targets, enabling it to learn normalization patterns directly from acoustic features rather than relying on a separate rewrite module.
  • LLM-driven data construction: A generate-and-judge workflow powered by a large language model is used to construct high-quality dual-form training data, ensuring reliable supervision signals for ITN tasks.
  • ITN-MWER objective: A sequence-level minimum word error rate variant that imposes higher cost on errors occurring within normalization-sensitive spans, directly optimizing for ITN accuracy during training.
  • REQUIRE-ITN/FORBID-ITN protocol: A novel evaluation metric that separately quantifies (1) the model's ability to perform required normalizations and (2) its ability to preserve spans that should not be normalized, providing finer-grained diagnostic insight.
  • Prompt-level selection: Despite unified training, the framework retains the ability to selectively output either spoken-form or written-form transcripts via prompt conditioning, preserving flexibility for downstream applications.

Industry Insight

  • The cascaded ASR-ITN architecture remains the de facto standard in many production systems; DF-ASR's unified approach could drive a paradigm shift toward end-to-end dual-form models, reducing error propagation and simplifying system design.
  • The LLM-driven generate-and-judge workflow for training data construction offers a reusable recipe for other language-specific ITN challenges, particularly for languages with complex numeric and temporal expressions like Chinese.
  • The REQUIRE-ITN/FORBID-ITN evaluation protocol provides a more nuanced benchmarking framework that the community could adopt to better assess ITN quality beyond aggregate WER, encouraging more rigorous development of normalization-aware ASR systems.

TL;DR

  • 提出Dual-Form ASR(DF-ASR)框架,通过配对口语形式和书面形式监督实现语义感知的反向文本规范化(ITN)
  • 解决传统级联ASR-ITN系统中规范化与声学上下文建模脱节的问题,尤其针对语义依赖型数值表达
  • 引入LLM驱动的生成-判断工作流程构建双形式监督数据,并设计ITN-MWER序列级目标函数对规范化敏感跨度赋予更高错误成本
  • 提出REQUIRE-ITN/FORBID-ITN评估协议,分别衡量必需规范化与禁止保留跨度
  • 在SpeechIO中文子集上,DF-ASR持续优于开源ASR-ITN系统,与强闭源参考系统相当,同时保持提示级别的转录形式选择能力

为什么值得看

本文针对中文语音识别中口语转录与书面规范化脱节的核心痛点,提出端到端双形式学习框架,为ASR系统的文本规范化提供了新的技术路径。该方法结合LLM自动化数据构建与序列级优化目标,在保持口语忠实性的同时提升书面可读性,对工业界ASR产品优化具有重要参考价值。

技术解析

  • DF-ASR框架:扩展口语形式ASR能力至语义感知书面形式ITN,通过配对监督实现双形式输出,同时保留提示级别的转录形式选择机制
  • LLM驱动监督构建:采用生成-判断(generate-and-judge)工作流程,利用大语言模型自动生成并验证双形式标注数据
  • ITN-MWER目标函数:序列级最小错误率训练策略,对规范化敏感跨度(如数值、日期、时间等)的错误分配更高代价,强化关键区域的学习
  • 评估协议:引入决策感知的REQUIRE-ITN(必需规范化)和FORBID-ITN(禁止保留)指标,分别量化规范化正确率与不应规范化内容的保留能力
  • 实验验证:在SpeechIO手动标注的中文子集上测试,DF-ASR在开源系统中表现最优,与强闭源系统竞争力相当

行业启示

  • 语音识别系统正从单一口语转录向多形式输出演进,双形式(口语+书面)联合建模将成为提升用户体验的关键方向
  • LLM驱动的自动化数据构建与验证流程可显著降低高质量标注成本,为ASR领域的数据工程提供可复用范式
  • 规范化敏感区域的差异化优化策略(如ITN-MWER)提示业界:在通用ASR训练中引入领域特定的错误惩罚机制,可有效提升关键信息的识别准确率

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

Speech 语音 Research 科学研究 LLM 大模型 Fine-tuning 微调