Bairong系统在MLC-SLM 2026中:用于多语言对话语音理解的动态问题感知证据路由

arXiv cs.CL 论文

摘要

Bairong系统提出了一种用于多语言对话语音问答的动态问题感知证据路由方法,在MLC-SLM 2026挑战赛中通过有效整合转录和音频证据实现了性能提升。

arXiv:2609.22214v1 Announce Type: new Abstract: Long multilingual conversational spoken question answering requires systems to balance long-range transcript semantics with sparse acoustic and speaker-sensitive cues. We present the Bairong system for the MLC-SLM 2026 Challenge, where a diarization-ASR front-end produces speaker-attributed transcripts and a dynamic evidence router constructs question-specific inputs for answer prediction. Instead of applying a fixed transcript-only or audio-only policy, the router infers the required evidence type and context scope from the question and answer options, and selects among full transcript context, local audio-text fusion, speaker-linked evidence, and compact global acoustic samples. This transcript-backbone design keeps discourse context available while activating audio only when it provides complementary evidence. Our Task 1 system achieves 25.70% and 18.44% tcpMER on the development and evaluation sets. For Task 2, the final system obtains 94.84% devel?opment accuracy, outperforming the full-transcript baseline by 1.68 points and the best audio-centric diagnostic system by 2.77 points. These results support dynamic question-aware routing as an effective evidence allocation strategy for conversational spoken QA.
查看原文
查看缓存全文

缓存时间: 2026/09/22 09:09

# The Bairong System for MLC-SLM 2026: Dynamic Question-Aware Evidence Routing for Multilingual Conversational Speech Understanding
Source: [https://arxiv.org/html/2609.22214](https://arxiv.org/html/2609.22214)
Junchao HuHuan ShenGuoji WangYingao WangShaosai LiWei ZouYunzhang Chen

###### Abstract

Long multilingual conversational spoken question answering requires systems to balance long\-range transcript semantics with sparse acoustic and speaker\-sensitive cues\. We present the Bairong system for the MLC\-SLM 2026 Challenge, where a diarization\-ASR front\-end produces speaker\-attributed transcripts and a dynamic evidence router constructs question\-specific inputs for answer prediction\. Instead of applying a fixed transcript\-only or audio\-only policy, the router infers the required evidence type and context scope from the question and answer options, and selects among full transcript context, local audio\-text fusion, speaker\-linked evidence, and compact global acoustic samples\. This transcript\-backbone design keeps discourse context available while activating audio only when it provides complementary evidence\. Our Task 1 system achieves 25\.70% and 18\.44% tcpMER on the development and evaluation sets\. For Task 2, the final system obtains 94\.84% development accuracy, outperforming the full\-transcript baseline by 1\.68 points and the best audio\-centric diagnostic system by 2\.77 points\. These results support dynamic question\-aware routing as an effective evidence allocation strategy for conversational spoken QA\.

††address:BRVoice Team, Bairong, Inc\., China††email:\{shangkun\.huang,junchao\.hu,huan\.shen\}@brgroup\.comIndex Terms: multilingual conversational speech, speaker diarization, automatic speech recognition, spoken question answering, question\-aware evidence routing

## 1Introduction

Long conversational spoken question answering \(SQA\) is not merely an ASR problem or a generic audio\-understanding problem\[[1](https://arxiv.org/html/2609.22214#bib.bib1),[2](https://arxiv.org/html/2609.22214#bib.bib2),[3](https://arxiv.org/html/2609.22214#bib.bib3),[4](https://arxiv.org/html/2609.22214#bib.bib4),[5](https://arxiv.org/html/2609.22214#bib.bib5)\]\. In multilingual two\-speaker conversations, different questions depend on different evidence forms: some require long\-range discourse semantics, some require who\-said\-what speaker attribution, and others require prosody, laughter, pace, emphasis, or acoustically ambiguous words\[[9](https://arxiv.org/html/2609.22214#bib.bib9)\]\. The MLC\-SLM Challenge targets this setting under a no\-oracle inference condition, where systems must perform diarization, recognition, and question answering without oracle segmentation or speaker labels\[[6](https://arxiv.org/html/2609.22214#bib.bib6),[7](https://arxiv.org/html/2609.22214#bib.bib7)\]\.

Existing MLC\-SLM systems reflect two complementary directions\. End\-to\-end speech LLMs can model diarization and recognition jointly for long multilingual conversations\[[19](https://arxiv.org/html/2609.22214#bib.bib19),[12](https://arxiv.org/html/2609.22214#bib.bib12)\], while context\-aware and cascaded systems exploit multimodal history or speaker\-attributed transcripts\[[11](https://arxiv.org/html/2609.22214#bib.bib11),[7](https://arxiv.org/html/2609.22214#bib.bib7),[8](https://arxiv.org/html/2609.22214#bib.bib8)\]\. Recent models such as Qwen3\-Omni, Qwen3\.5\-Omni, Qwen3\-ASR, and Omni\-Captioner further strengthen acoustic, textual, and fine\-grained multimodal modeling\[[23](https://arxiv.org/html/2609.22214#bib.bib23),[13](https://arxiv.org/html/2609.22214#bib.bib13),[22](https://arxiv.org/html/2609.22214#bib.bib22),[14](https://arxiv.org/html/2609.22214#bib.bib14)\]\. However, these advances do not remove the evidence\-selection problem\. Transcript\-only input preserves long\-range semantics but loses prosody, laughter, speaker timbre, and information needed to resolve ASR ambiguity\[[10](https://arxiv.org/html/2609.22214#bib.bib10)\]\. Audio\-only input preserves those cues, but long recordings increase computation, introduce irrelevant regions, and can dilute the answer model’s attention\.

The central question is therefore not whether audio or transcripts are universally better, but which evidence should be exposed for each question\. A fixed input policy cannot simultaneously preserve global discourse context and isolate sparse acoustic cues\. The resulting research gap is question\-conditioned evidence selection: jointly deciding what evidence type is needed and whether that evidence is local or global\.

We address this gap with a hybrid question\-aware evidence routing framework\. It combines LLM\-based coarse evidence estimation with deterministic anchor and speaker\-cue parsing to construct question\-specific transcript, local audio\-text, speaker\-linked, or global acoustic evidence\.

Our contributions are threefold\. First, we propose this hybrid router, integrating coarse LLM estimates with deterministic anchor and speaker\-cue parsing\. Second, we instantiate it in a transcript\-backbone MLC\-SLM Task 2 system that allocates semantic, acoustic, and speaker\-linked evidence per question\. Third, transcript\-backed ablations and audio\-centric diagnostics show that hybrid routing outperforms static transcript routing, full\-transcript input, and audio\-centric alternatives; question\-conditioned allocation matters more than simply using more audio\.

## 2Proposed System

### 2\.1Overall Pipeline

Our submission is a single reproducible pipeline rather than a result\-level ensemble\. As shown in Fig\.[1](https://arxiv.org/html/2609.22214#S2.F1), raw conversations are first converted into timestamped speaker\-attributed transcripts\. The Task 1 branch performs VAD, diarization, multilingual ASR, and STM normalization\. The Task 2 branch then treats the STM as the textual backbone and uses the original waveform only when the routed question requires acoustic or speaker\-sensitive evidence\.

\\includegraphics\[width=0\.98\]tu\-final\.png

Figure 1:System overview for MLC\-SLM Tasks 1 and 2\. The front\-end produces speaker\-attributed transcripts, and the Task 2 router selects transcript, local audio\-text, or global acoustic evidence before answer prediction\.Fig\.[1](https://arxiv.org/html/2609.22214#S2.F1)highlights the two\-stage design of the system\. The diarization\-ASR stage converts raw multilingual two\-speaker audio into a structured transcript with speaker and time information\. The evidence\-routing stage combines this transcript, the waveform, and the question\-answer pair to build a question\-specific answer input\.

### 2\.2Diarization\-ASR Front\-end

The diarization\-ASR front\-end provides speaker\-attributed transcripts for both Task 1 evaluation and Task 2 evidence construction\. It follows a cascade design, which remains the dominant Task 2 approach in the MLC\-SLM summary\[[7](https://arxiv.org/html/2609.22214#bib.bib7)\]\. We use FSMN VAD to detect speech regions, RedimNet2 to extract speaker embeddings, and spectral clustering to estimate speaker turns\. Subsegments use a 1\.5 s duration and a 0\.75 s step, with a 0\.20 s minimum turn duration\. After diarization, adjacent turns from the same speaker are concatenated up to 20 seconds when the inter\-turn gap is at most 0\.3 seconds\. This post\-processing is motivated by the same observation reported in previous systems: very short diarization segments deprive ASR models of local linguistic context and can increase tcpMER\[[8](https://arxiv.org/html/2609.22214#bib.bib8),[7](https://arxiv.org/html/2609.22214#bib.bib7)\]\.

For Task 1, decoded hypotheses are sorted by timestamp and written in the official speaker\-attributed STM format\. Text normalization includes Unicode NFC normalization, invisible\-character removal, lowercasing, punctuation removal, whitespace cleanup, and character\-level tokenization for Japanese, Korean, and Thai\. This front\-end is important for Task 2 because the routing module relies on timestamps and speaker IDs to select local windows and speaker\-linked evidence\.

### 2\.3Evidence Routing Formulation

LetXXbe the waveform,TTthe diarized transcript,qqthe question, andCCthe answer options\. The system constructs a structured routing label

whereeeis the evidence type andssis the context scope\. In implementation,zzis obtained by combining coarse LLM predictions with deterministic timestamp and speaker\-cue parsing\. Givenzz, the system constructs routed evidenceE⁡\(q,C,X,T,z\)E\(q,C,X,T,z\), and the answer model predicts

c^=arg⁡maxc∈C⁡p⁡\(c∣q,C,E\)\.\\hat\{c\}=\\arg\\max\_\{c\\in C\}p\(c\\mid q,C,E\)\.\(2\)
The evidence type dimension specifies what information is needed to answer the question\. The scope dimension specifies where that information should be taken from\. We found this two\-dimensional label space to cover the dominant evidence patterns in the development set: questions typically ask about textual content, content plus acoustic realization, speaker\-sensitive information, or global acoustic properties, with evidence concentrated in a local region, multiple regions, speaker\-linked turns, or the whole conversation\.

Evidence typeee\.

\\topruleLabelRouted evidence\\midruletranscript\-semanticSemantic or discourse questions answered from full or local transcript context\.semantic\-acousticContent questions that require local acoustic cues; materialized as local transcript plus local audio\.speaker\-sensitiveSpeaker attribution, timbre, or role questions; materialized from speaker\-attributed transcript plus audio\.global\-acousticAnchorless acoustic questions; materialized as capped full transcript plus compact global audio\.\\bottomrule
Context scopess\.

\\topruleScopeTrigger and construction\\midrulelocal\-windowExplicit timestamp or local event; extract transcript and/or audio around the anchor\.multi\-windowMultiple timestamps or comparison questions; extract several local windows\.speaker\-linkingSpeaker attribution or who\-said\-what questions; collect speaker\-linked turns and audio\.global\-compactNo anchor or whole\-dialogue questions; keep long transcript context, capped when necessary, and attach sampled clips when acoustic\.\\bottomrule

### 2\.4Evidence Materialization

Givenz=\(e,s\)z=\(e,s\), the system materializes transcript and audio evidence\. STM turns are first merged into chronological speaker\-attributed blocks and serialized with timestamps and speaker IDs\. For transcript\-semantic questions with global\-compact scope, the router keeps a capped full transcript to preserve discourse context\. For local\-window and multi\-window scopes, it extracts transcript blocks overlapping each anchor in\[tstart−12​s,tend\+12​s\]\[t\_\{\\rm start\}\-12\\,\{\\rm s\},t\_\{\\rm end\}\+12\\,\{\\rm s\}\]\. This is a padded anchor span, rather than a fixed 24\-s window\. For speaker\-linking scope, deterministic parsing also extracts timestamp expressions from the answer options, allowing option\-local references to contribute evidence\.

Audio evidence is attached for semantic\-acoustic, speaker\-sensitive, and global\-acoustic labels\. For timestamped semantic\-acoustic or speaker\-sensitive questions, the system uses local audio\-text fusion: each routed span is padded by 0\.5 s on both sides, capped at 30 s, and paired with the wider transcript window above\. For anchorless global\-acoustic questions in M5–M6, the system keeps the capped full transcript and attaches compact global audio\. Timestamped STM blocks form the audio candidate pool; we sample without replacement using a fixed pseudorandom seed, retain at most 12 blocks, cap each clip at 30 s, and restore the selected clips to chronological order\. If no timed STM block is available, the fallback samples uniformly along the recording timeline\. The clips remain separateaudio\_urlblocks in one model request; they are neither concatenated nor answered by voting\.

This design makes the router question\-aware but not content\-searching: it exploits explicit timestamps, option\-local references, and speaker cues, but does not retrieve implicit evidence spans from the transcript or waveform\.

### 2\.5Hybrid Router Implementation

The hybrid router is implemented in three steps\. First, a Qwen3\-Omni\-30B\-A3B\-Captioner classifier predicts coarse evidence type and scope from only the question and answer options, without access to the transcript, waveform, gold answer, or correctness feedback\. Second, deterministic parsing extracts timestamps and speaker/role cues from the question and options\. Third, the coarse labels, anchors, and lexical cues are jointly mapped to executable routing labels: global semantic questions use transcript\-semantic/global\-compact evidence; local semantic questions use transcript\-semantic/local\-window evidence; local acoustic questions use semantic\-acoustic/local\-window or speaker\-sensitive/speaker\-linking evidence; and global acoustic questions use global\-acoustic/global\-compact evidence\. Invalid classifier outputs fall back to deterministic routing\.

### 2\.6Task 2 System Variants

The ablation systems are grouped by evidence policy\. M1–M3 isolate transcript routing: M1 uses the full diarized transcript for every question, M2 uses regex/time\-anchor transcript routing, and M3 uses offline\-label transcript routing\. These variants do not provide waveform audio to the answer model\. M4–M6 progressively add the proposed audio\-text routing\. M4 adds local audio\-text fusion for timestamped semantic\-acoustic and speaker\-sensitive questions\. M5 adds compact global\-acoustic sampling for acoustic or speaker questions without explicit timestamps\. M6 replaces offline labels with the hybrid router\.

The audio\-centric diagnostic systems in Table[3\.1](https://arxiv.org/html/2609.22214#S3.SS1)are not the final method\. They keep the question and answer options as text, intentionally avoid using ASR transcripts as conversation evidence, and vary the requested global sampled\-clip budget\. Their purpose is to test whether increasing waveform coverage can replace transcript\-backed routing\.

### 2\.7Training and Adaptation

For Task 1, supervised training and adaptation use the official timestamps, speaker labels, and transcripts\. Following the trend in recent MLC\-SLM systems toward parameter\-efficient adaptation and staged training\[[7](https://arxiv.org/html/2609.22214#bib.bib7),[15](https://arxiv.org/html/2609.22214#bib.bib15),[16](https://arxiv.org/html/2609.22214#bib.bib16)\], we fine\-tune Qwen3\-ASR 1\.7B for two epochs with LoRA on the official MLC\-SLM training data\. Recent LoRA extensions improve parameter utilization through dense low\-rank adaptation\[[17](https://arxiv.org/html/2609.22214#bib.bib17)\]and incorporate graph structure into low\-rank updates for recommendation\[[18](https://arxiv.org/html/2609.22214#bib.bib18)\], illustrating the broader flexibility of parameter\-efficient adaptation\. The goal of our LoRA setup is to adapt the recognizer to multilingual conversational speech while preserving the general recognition ability of the pretrained model\.

Table 1:External data and pretrained components used for diarization, ASR, routing, and QA\.\\topruleResourceRole in the system\\midruleOfficial MLC\-SLM data\[[6](https://arxiv.org/html/2609.22214#bib.bib6),[7](https://arxiv.org/html/2609.22214#bib.bib7)\]ASR fine\-tuning and evidence\-routing design\.FSMN VAD\[[20](https://arxiv.org/html/2609.22214#bib.bib20)\]Speech activity detection\.RedimNet2\[[21](https://arxiv.org/html/2609.22214#bib.bib21)\]Speaker embedding extraction\.Qwen3\-ASR 1\.7B\[[22](https://arxiv.org/html/2609.22214#bib.bib22)\]Segment transcription\.Qwen3\-Omni Captioner\[[23](https://arxiv.org/html/2609.22214#bib.bib23)\]QA inference and context labeling\.\\bottomruleFor Task 2, we do not train or fine\-tune Qwen3\-Omni for either routing or answer prediction\. System development concerns evidence selection rather than additional model adaptation\. Regex labels are deterministic and inexpensive, but only capture explicit timestamp and keyword patterns\. Offline labels provide structured labels for controlled development\-set ablations\. Dynamic labels are generated online by an LLM question analyzer and are used in the final M6 system\. The dynamic labeler only observes the question and answer options; it does not use gold answers, analysis buckets, or correctness feedback\.

Table 2:Task 1 tcpMER \(%\) on development and evaluation sets\.\\topruleSystemDevEval\\midruleOfficial baseline79\.15–Ours25\.7018\.44\\bottomrule

## 3Experiments and Analysis

### 3\.1Datasets, Metrics, and Setup

The MLC\-SLM 2026 training set contains about 2100 hours of multilingual two\-speaker conversational speech\. We use the development set for system design and ablation; its Task 2 subset contains 4,500 multiple\-choice questions\. The evaluation set is held out from training and tuning\.

\\captionoftableTask 2 development accuracy \(%\) for official baseline and transcript\-backed routing systems\. Delta columns are absolute points\.\\topruleIDSystemOverallΔ\\Deltavs\.M1Δ\\Deltavs\.prev\.No\-anchorTimestampedNo\-anchoracousticNo\-anchorsemantic\\midruleO0Official baseline35\.33––––––M1Full transcript93\.16\+0\.00\+0\.00–94\.1092\.6692\.0894\.39M2Regex text routing92\.89−0\.27\-0\.27−0\.27\-0\.2793\.9992\.2790\.8394\.45M3Offline\-label text routing92\.69−0\.47\-0\.47−0\.20\-0\.2093\.5292\.2390\.4293\.97M4M3 \+ local audio\-text fusion94\.22\+1\.06\+1\.06\+1\.53\+1\.5395\.6393\.3695\.4295\.66M5M4 \+ global audio94\.40\+1\.24\+1\.24\+0\.18\+0\.1895\.8493\.5196\.6795\.72M6M5 \+ hybrid router94\.84\+1\.68\\mathbf\{\+1\.68\}\+0\.44\\mathbf\{\+0\.44\}96\.3193\.9095\.8396\.38\\bottomrule\\captionoftableTask 2 audio\-centric diagnostic accuracy \(%\) by requested clip budget\.\\topruleIDRoutingClipsOverallNo\-anchorTimestampedNo\-anchoracousticNo\-anchorsemantic\\midruleB1Global audio only1084\.7180\.6187\.8877\.0881\.12B2Global audio only5092\.0792\.5291\.9683\.3393\.85B3Regex\-routed audio only1086\.6280\.8791\.0379\.1781\.12B4Regex\-routed audio only5091\.9692\.7891\.5384\.5893\.97B5Label\-routed audio only1087\.1181\.0391\.6977\.0881\.60B6Label\-routed audio only5091\.3191\.2091\.5382\.9292\.40\\bottomrule

### 3\.2Task 1 Results

Table[2](https://arxiv.org/html/2609.22214#S2.T2)reports Task 1 tcpMER results\. The official development baseline is 79\.15%, while our cascaded diarization\-ASR system obtains 25\.70% on the development set and 18\.44% on the evaluation set\. Because the development and evaluation splits differ, these numbers should not be read as a controlled split\-to\-split comparison\. They mainly show that the transcripts used by Task 2 are strong enough to form a competitive text baseline, but still imperfect; therefore, acoustic evidence is most likely to help when the question depends on cues not represented in the transcript or when ASR makes acoustically plausible errors\.
### 3\.3Main Task 2 Ablation

Table[3\.1](https://arxiv.org/html/2609.22214#S3.SS1)shows that the full\-transcript baseline is already strong at 93\.16%\. Static transcript routing does not improve it: M2 and M3 decrease by 0\.27 and 0\.47 points, suggesting that context reduction can remove useful discourse information\. Local audio\-text fusion gives the largest single\-step gain: M4 improves over M3 by 1\.53 points and over M1 by 1\.06 points\. Adding global audio in M5 yields a further 0\.18\-point gain and raises no\-anchor acoustic accuracy from 95\.42% to 96\.67%\.Replacing offline labels with dynamic labels provides a further 0\.44\-point gain: M6 reaches 94\.84%, improving over M1 by 1\.68 points \(about 76 questions\)\. Relative to M5, M6 improves no\-anchor semantic accuracy by 0\.66 points and timestamped accuracy by 0\.39 points, although no\-anchor acoustic accuracy decreases by 0\.84 points\. This pattern suggests that dynamic routing improves question\-conditioned evidence allocation rather than merely activating more audio\. However, predicted labels jointly determine scope and modality; without a matched dynamic\-text control, M5–M6 cannot isolate label quality from the induced evidence allocation\. The lack of paired significance tests further precludes strict causal attribution\.Fine\-grained offline buckets show the same trend\. Compared with M1, M6 improves no\-anchor/global questions from 94\.10% to 96\.31% and timestamped/local questions from 92\.66% to 93\.90%\. Within no\-anchor questions, both acoustic and semantic categories improve, from 92\.08% to 95\.83% and from 94\.39% to 96\.38%, respectively\. Since these buckets are used only for analysis and some subsets are small, the results are treated as supporting evidence rather than standalone claims\.
### 3\.4Audio\-budget Clip\-count and Routing Analysis

Table[3\.1](https://arxiv.org/html/2609.22214#S3.SS1)analyzes audio\-centric evidence under different requested sampled\-clip budgets and routing strategies\. Across all three routing modes, increasing the requested budget from 10 to 50 clips improves accuracy, indicating that very sparse audio sampling may under\-cover relevant evidence\. However, the best audio\-centric diagnostic configuration, B2 at 92\.07%, remains below both the full\-transcript baseline and the final routing system\. This supports question\-conditioned transcript\-backed routing over fixed audio\-centric inputs\.
## 4Conclusions

We presented the Bairong system for the MLC\-SLM 2026 Challenge\. Our Task 1 diarization\-ASR cascade obtains 25\.70% and 18\.44% tcpMER on the development and evaluation sets\. For Task 2, relative to the offline\-label text\-routing control, local audio\-text fusion gives the largest step gain \(\+1\.53\+1\.53\) and improves over the full\-transcript baseline by 1\.06 points\. Replacing offline labels with the hybrid question\-aware router adds a further 0\.44 points and yields the best overall result of 94\.84%\. Although the ablation does not fully separate label quality from its induced evidence allocation, the results support hybrid question\-aware routing: transcripts remain the backbone, audio supplies complementary acoustic evidence, and LLM estimates combined with deterministic cues refine which evidence is exposed for each question\.
## 5Acknowledgements

We thank the MLC\-SLM 2026 organizers for providing the multilingual conversational speech dataset, baseline systems, and evaluation platform\.

## References

- \[1\]C\.\-H\. Lee, S\.\-L\. Wu, C\.\-L\. Liu, and H\.\-Y\. Lee, “Spoken SQuAD: A study of mitigating the impact of speech recognition errors on listening comprehension,” inProc\. INTERSPEECH, 2018, pp\. 3459–3463, doi: 10\.21437/Interspeech\.2018\-1714\.
- \[2\]Y\. Wu, S\. Rallabandi, R\. Srinivasamurthy, P\. P\. Dakle, A\. Gon, and P\. Raghavan, “HeySQuAD: A spoken question answering dataset,” arXiv preprint arXiv:2304\.13689, 2023\.
- \[3\]Z\. Zhao, Y\. Jiang, H\. Liu, Y\. Wang, and Y\. Wang, “LibriSQA: A novel dataset and framework for spoken question answering with large language models,”IEEE Trans\. Artif\. Intell\., 2024\.
- \[4\]N\. B\. Shankar, A\. Johnson, C\. Chance, H\. Veeramani, and A\. Alwan, “CORAAL QA: A dataset and framework for open domain spontaneous speech question answering from long audio files,” inProc\. ICASSP, 2024, pp\. 13371–13375\.
- \[5\]D\. Wang, J\. Li, J\. Wu, D\. Yang, X\. Chen, T\. Zhang, and H\. Meng, “MMSU: A massive multi\-task spoken language understanding and reasoning benchmark,” arXiv preprint arXiv:2506\.04779, 2025\.
- \[6\]DataTang, “INTERSPEECH2026 Multilingual Conversational Speech Language Model Challenge and Workshop,” 2026\. \[Online\]\. Available: https://www\.datatang\.com/mcslm
- \[7\]B\. Mu, P\. Guo, Z\. Sun, S\. Wang, H\. Liu, M\. Shao, L\. Xie, E\. S\. Chng, L\. Xiao, Q\. Feng, and D\. Wang, “Summary on the Multilingual Conversational Speech Language Model Challenge: Datasets, Tasks, Baselines, and Methods,” arXiv preprint arXiv:2509\.13785, 2025\.
- \[8\]H\. Xue, K\. Huang, Z\. Zhou, S\. Huang, and S\. Shang, “The TEA\-ASLP system for multilingual conversational speech recognition and speech diarization in MLC\-SLM 2025 Challenge,” arXiv preprint arXiv:2507\.18051, 2025\.
- \[9\]H\. Shen, Y\. Wang, S\. Huang, W\. Zou, and Y\. Chen, “CoDeTT: A context\-aware decision benchmark for turn\-taking evaluation,” arXiv preprint arXiv:2603\.25434, 2026\.
- \[10\]S\. Huang, J\. Deng, J\. Kang, and R\. Zheng, “Leveraging LLM for stuttering speech: A unified architecture bridging recognition and event detection,” arXiv preprint arXiv:2505\.22005, 2025\.
- \[11\]B\. Mu, H\. Liu, H\. Xue, K\. Wei, and L\. Xie, “Hearing more with less: Multi\-modal retrieval\-and\-selection augmented conversational LLM\-based ASR,” inProc\. AAAI Conf\. Artif\. Intell\., vol\. 40, no\. 38, 2026, pp\. 32519–32527, doi: 10\.1609/aaai\.v40i38\.40528\.
- \[12\]Z\. Peng et al\., “VibeVoice\-ASR technical report,” arXiv preprint arXiv:2601\.18184, 2026\.
- \[13\]Qwen Team, “Qwen3\.5\-Omni technical report,” arXiv preprint arXiv:2604\.15804, 2026\.
- \[14\]Z\. Ma et al\., “Omni\-Captioner: Data pipeline, models, and benchmark for omni detailed perception,” arXiv preprint arXiv:2510\.12720, 2025\.
- \[15\]M\. Gao, X\. Xiang, and Y\. Guo, “Triple X: A LLM\-based multilingual speech recognition system for the INTERSPEECH2025 MLC\-SLM Challenge,” arXiv preprint arXiv:2507\.17288, 2025\.
- \[16\]Q\. Meng, H\. Wu, W\. Liang, et al\., “ILT\-Iterative LoRA training through focus\-feedback\-fix for multilingual speech recognition,” arXiv preprint arXiv:2507\.08477, 2025\.
- \[17\]L\. Mu, X\. Wang, L\. Ni, Y\. Li, Z\. Wu, P\. Jin, and Y\. Zhang, “DenseLoRA: Dense low\-rank adaptation of large language models,” inProc\. 63rd Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\), Vienna, Austria, 2025, pp\. 10198–10211, doi: 10\.18653/v1/2025\.acl\-long\.503\.
- \[18\]L\. Mu, G\. Wang, L\. Ni, L\. Sang, Z\. Wu, P\. Jin, and Y\. Zhang, “GraphLoRA: Structure\-aware low\-rank adaptation for large language model recommendation,” inFindings of the Association for Computational Linguistics: ACL 2026, San Diego, CA, USA, 2026, pp\. 13208–13218, doi: 10\.18653/v1/2026\.findings\-acl\.645\.
- \[19\]P\. Saengthong et al\., “A unified speech LLM for diarization and speech recognition in multilingual conversations,” arXiv preprint arXiv:2507\.02927, 2025\.
- \[20\]Z\. Gao, Z\. Li, J\. Wang, H\. Luo, X\. Shi, M\. Chen, Y\. Li, L\. Zuo, Z\. Du, Z\. Xiao, and S\. Zhang, “FunASR: A fundamental end\-to\-end speech recognition toolkit,” inProc\. INTERSPEECH, 2023\.
- \[21\]I\. Yakovlev and A\. Okhotnikov, “ReDimNet2: Scaling speaker verification via time\-pooled dimension reshaping,” arXiv preprint arXiv:2603\.11841, 2026\.
- \[22\]X\. Shi, X\. Wang, Z\. Guo, Y\. Wang, P\. Zhang, X\. Zhang, Z\. Guo, H\. Hao, Y\. Xi, B\. Yang, J\. Xu, J\. Zhou, and J\. Lin, “Qwen3\-ASR technical report,” arXiv preprint arXiv:2601\.21337, 2026\.
- \[23\]J\. Xu, Z\. Guo, H\. Hu, Y\. Chu, X\. Wang, J\. He, Y\. Wang, X\. Shi, T\. He, X\. Zhu, Y\. Lv, Y\. Wang, D\. Guo, H\. Wang, L\. Ma, P\. Zhang, X\. Zhang, H\. Hao, Z\. Guo, B\. Yang, B\. Zhang, Z\. Ma, X\. Wei, S\. Bai, K\. Chen, X\. Liu, P\. Wang, M\. Yang, D\. Liu, X\. Ren, B\. Zheng, R\. Men, F\. Zhou, B\. Yu, J\. Yang, L\. Yu, J\. Zhou, and J\. Lin, “Qwen3\-Omni technical report,” arXiv preprint arXiv:2509\.17765, 2025\.

相似文章