arXivDaily arXiv每日学术速递 周一至周五更新

大厂专区

Amazon

2026-07-16 至 2026-07-16 收录 2
2607.13408 2026-07-16 eess.AS cs.AI cs.CL cs.LG cs.SD 新提交

Improving Text-to-Audio Instruction Following via Fine-Grained Feedback from Audio-Aware Large Language Models

通过音频感知大语言模型的细粒度反馈改进文本到音频的指令跟随

Chun-Yi Kuan, Siwon Kim, Byeonggeun Kim, Suyoun Kim, Bo-Ru Lu, Qinming Tang, Ankur Gandhe, Hung-yi Lee, Chieh-Chi Kao, Chao Wang

发表机构 * National Taiwan University(国立台湾大学) Amazon(亚马逊)

AI总结 研究文本到音频指令跟随问题,提出用音频感知大语言模型作细粒度评判器的框架,经验证后用其反馈构建偏好对优化,引入S3Bench基准,实验证明该方法能提升事件完整性、时间排序和指令跟随准确性,且保持音频质量。

Comments Accepted to the Long Paper Track at Interspeech 2026

详情
AI中文摘要

近期文本到音频模型能生成高质量音频,但在处理涉及多个声音事件和时间顺序的指令时常常失败。现有评估和训练信号主要强调全局相似性或感知质量,对指令级正确性监督有限。我们提出一个指令级框架,利用音频感知大语言模型作为细粒度评判器来验证生成音频中目标事件的存在和时间关系。在基准测试上验证大语言模型的判断并经人工验证后,利用其反馈构建偏好对进行直接偏好优化。我们还引入了S3Bench,一个用于评估多事件时间指令跟随的叙事基准。实验表明,我们的方法在保持音频质量的同时,提高了现有基准和S3Bench上的事件完整性、时间排序和联合指令跟随准确性。

英文摘要

Recent text-to-audio models generate high-quality audio, but often fail to follow instructions involving multiple sound events and temporal order. This gap arises because existing evaluation and training signals mainly emphasize global similarity or perceptual quality, with limited supervision on instruction-level correctness. We propose an instruction-level framework that uses audio-aware large language models (ALLMs) as fine-grained judges to verify target event presence and temporal relations in generated audio. After validating ALLM judgments on benchmarks and through human verification, we use their feedback to construct preference pairs for direct preference optimization. We further introduce S3Bench, a narrative benchmark for evaluating multi-event temporal instruction following. Experiments show that our method improves event completeness, temporal ordering, and joint instruction-following accuracy across existing benchmarks and S3Bench, while maintaining audio quality.

URL PDF HTML
2607.10057 2026-07-16 quant-ph cs.AI cs.CV cs.LG 交叉投稿

Quantum Circuit Vision: Cost-Aware Evaluation of Visual AI Agents for Quantum Code Generation

量子电路视觉:用于量子代码生成的视觉人工智能代理的成本感知评估

Dongping Liu, Aoyu Zhang, Luyao Zhang

发表机构 * Amazon Web Services(亚马逊网络服务) Duke Kunshan University(杜克昆山大学)

AI总结 研究人工智能代理对量子电路图的理解及代码生成成本,提出量子电路视觉评估框架,构建基准并评估模型,发现中级模型在成本-准确性上平衡最佳,电路深度是失败主因,提出级联路由策略并开源数据集及代码。

详情
AI中文摘要

人工智能代理能否直观理解量子电路图并生成经过验证的可执行代码,且成本如何?我们提出了量子电路视觉,这是一个用于多模态人工智能代理量子电路视觉理解的成本感知评估框架。我们构建了一个包含13个类别的132个电路的基准(1至10个量子比特),带有可执行的亚马逊Braket代码和酉保真度验证。通过对三个不同能力成本层级的前沿Claude系列模型进行n = 5次重复试验评估,我们发现中级模型(Sonnet 4.6,成本为最强模型Opus 4.6每次调用成本的18%)在成本-准确性前沿提供了最有利的平衡:核心子集的通过率为91%,最强模型的准确性优势在统计上不显著(配对t检验:p = 0.083)。逻辑回归证实电路深度而非量子比特数是失败的主要预测因素(p < 0.001)。思维链提示没有统计学上的显著效果(所有p > 0.18,n = 5),这表明对于结构耦合图,视觉模式识别比明确的推理策略更重要。我们提出了一种级联路由策略(从便宜到昂贵的模型),在单模型成本的38%时实现了84%的准确率,表明模型路由作为一种成本杠杆比提示工程更重要。我们在Hugging Face Hub上发布了QCV - 数据集(132个电路,5种模态,1931个文件)作为开放评估基础设施,带有结构化元数据以实现可发现性、互操作性和负责任的人工智能文档,并在GitHub上提供所有评估代码、成本日志和验证脚本以实现完全可重复性。

英文摘要

Can AI agents visually comprehend quantum circuit diagrams and generate verified executable code--and at what cost? We present Quantum Circuit Vision, a cost-aware evaluation framework for multimodal AI agents on quantum circuit visual understanding. We construct a 132-circuit benchmark spanning 13 categories ($1$--$10$ qubits) with executable Amazon Braket code and unitary-fidelity verification. Evaluating three frontier Claude-family models at different capability-cost tiers with $n=5$ repeated trials, we find that the mid-tier model (Sonnet 4.6, $1.30\times$ credits) offers the most favorable balance on the cost-accuracy frontier: 91% pass rate on the core subset at 18% of the per-call cost of the strongest model (Opus 4.6), whose accuracy advantage is not statistically significant (paired $t$: $p=0.083$). Logistic regression confirms that circuit depth--not qubit count--is the primary predictor of failure ($p<0.001$). Chain-of-thought prompting shows no statistically significant effect (all $p>0.18$, $n=5$), suggesting that visual pattern recognition outweighs explicit reasoning strategy for structurally coupled diagrams. We propose a cascade routing strategy (cheap $\rightarrow$ expensive models) that achieves 84% accuracy at 38% of single-model cost, demonstrating that model routing dominates prompt engineering as a cost lever. We release QCV-Dataset (132 circuits, 5 modalities, 1,931 files) on Hugging Face Hub as an open evaluation infrastructure with structured metadata for discoverability, interoperability, and responsible AI documentation, and all evaluation code, cost logs, and verification scripts on GitHub for full reproducibility.

URL PDF HTML