ArXiv: 2604.10905

🎯 Pitch

A 7B open audio model surpasses Gemini 2.5 Pro on long-form understanding by explicitly citing timestamps—like 'at 2:15 the speaker mentions…'—during reasoning. This temporal chain-of-thought, combined with over 1 million hours of training data, enables fine-grained grounding in 30-minute recordings and delivers state-of-the-art results across 20+ benchmarks, matching much larger closed models.


1. Executive Summary

This paper introduces Audio Flamingo Next (AF-Next), a fully open generalist large audio-language model that advances audio understanding and reasoning across speech, environmental sounds, and music. Built on a Qwen-2.5-7B backbone and trained with a four-stage curriculum spanning internet-scale data curation (over 1 million hours), mid-training, GRPO-based post-training, and chain-of-thought training, AF-Next establishes new state-of-the-art performance across 20+ benchmarks, substantially outperforming similarly sized open models while remaining competitive with or surpassing much larger open-weight and closed models—particularly on long-form audio (reaching 73.9 on LongAudioBench versus Gemini 2.5 Pro's 60.4). The paper introduces Temporal Audio Chain-of-Thought, a reasoning paradigm that explicitly grounds intermediate reasoning steps to timestamps in long audio (enabling the model to anchor evidence like "at 2:15, the speaker mentions..."), and demonstrates that test-time strategies—CoT reasoning and captioner-augmented pipelines—provide complementary gains: CoT reasoning improves multi-step inference accuracy (e.g., MMAU-Pro rises from 56.9 to 58.7 with AF-Next-Think), while captioner augmentation is especially effective when richer acoustic descriptions ground reasoning (e.g., MMAU rises from 74.20 to 75.76 with AF-Next-Captioner). The FLOPs-matched training-inference tradeoff reveals that scaling test-time compute through these strategies yields consistent improvements across difficulty levels, establishing that open LALMs can match or exceed closed-source frontier models on long and complex real-world audio understanding tasks when training data is scaled beyond academic benchmarks and inference-time reasoning is explicitly temporally grounded.

2. Context and Motivation

The Core Problem: Open Audio-Language Models Lag Behind Their Visual Counterparts

The fundamental problem this paper addresses is that progress in scaling open large audio-language models (LALMs) has been noticeably slower than in vision-language models (VLMs), limiting audio's role in general-purpose multimodal systems and downstream applications like audio generation and world modeling. This gap exists despite audio being central to human perception and interaction—spanning speech, environmental sounds, and music—and despite the clear practical demand for robust audio understanding in applications ranging from automatic speech recognition to conversational AI and music information retrieval.

The paper identifies a specific bottleneck driving this lag: much of open LALM development has been either closed-source or tightly coupled to a small set of academic benchmarks. While benchmarks like MMAU, Clotho, AudioCaps, and LibriSpeech are valuable for standardized evaluation, they suffer from three critical limitations that the paper explicitly flags:

1. Biases and incomplete coverage. Academic benchmarks encode systematic biases (Kumar et al., 2025b). They tend to feature clean audio, short durations, limited speaker diversity, and narrow acoustic conditions—none of which reflect the messy reality of real-world audio, which includes overlapping speech, background noise, music mixed with dialogue, variable recording quality, and long-form content spanning tens of minutes.

2. The audio benchmark landscape is still emerging. Unlike vision, where benchmarks like ImageNet, COCO, and VQA have matured over a decade, audio understanding benchmarks are relatively nascent and evolving. Relying on them as the primary training signal produces models that "perform well on curated test sets but generalize poorly to long, noisy, and diverse real-world audio," as the paper notes in Section 1.

3. Capabilities not captured by existing benchmarks. Recent frontier systems like Audio Flamingo and Qwen-Audio have introduced capabilities—long-form audio understanding, multi-turn audio dialogue, timestamped prediction, multi-talker ASR—that are not yet comprehensively evaluated by standardized benchmarks. This creates a disconnect where models can possess meaningful capabilities that existing evaluation suites cannot measure, and conversely, where benchmark-centric training may optimize for the wrong signal.

The consequence is a benchmark-training gap: training against academic datasets produces models that look strong on paper but fail in deployment, while truly useful capabilities go unevaluated.


Why This Problem Matters: Practical and Scientific Significance

The paper's framing of this problem carries both practical and scientific weight.

Practical significance. Audio understanding is not a niche capability—it is foundational to how humans interact with technology. Robust speech recognition enables accessibility for the hearing impaired and hands-free interfaces. Sound event understanding powers assistive devices for the visually impaired, smart home systems, and industrial monitoring. Music understanding underpins recommendation systems, music education tools, and creative workflows. Yet the current state of open LALMs means that building these applications requires either relying on closed-source models with usage restrictions and unknown training data, or accepting degraded performance from open models that break down on real-world audio. The paper's explicit commitment to "fully open" release—weights, data, and code with full methodological transparency—is a deliberate attempt to address this ecosystem gap, enabling researchers and developers to build on top of capable audio understanding without proprietary lock-in.

Scientific significance. The paper identifies two deeper scientific challenges that the benchmark gap obscures:

  • Temporal grounding in long audio: Understanding a 30-minute conversation, podcast, or movie soundtrack requires aggregating evidence distributed across time. A speaker may be introduced at minute 3, reference something said at minute 12, and reveal crucial context at minute 25. Standard audio QA models trained on short clips never learn this skill because their training data never requires it. The paper hypothesizes that explicitly grounding intermediate reasoning steps to timestamps is essential for faithful evidence aggregation in long audio—a hypothesis that prior LALM work has not systematically tested.

  • The pretraining-inference tradeoff for audio: Just as the vision and language communities have explored whether scaling test-time compute can substitute for scaling model size (a central question in the broader LLM literature), the audio community faces the same question with unique constraints. Audio data is expensive to process at scale due to its temporal density (a 30-minute audio clip at 50 Hz produces tens of thousands of tokens), making the compute-efficiency of inference-time strategies like chain-of-thought reasoning particularly consequential for audio models. The paper's exploration of complementary test-time strategies (CoT reasoning and captioner augmentation) contributes to this broader computational trade-off question.


Where Prior Approaches Fall Short

The paper identifies limitations in prior work along several axes:

Encoder-only ALMs learn joint embeddings but cannot reason. Models like CLAP (Elizalde et al., 2023), Wav2CLIP (Wu et al., 2022), and AudioCLIP (Guzhov et al., 2022) learn a shared embedding space for audio and text, enabling cross-modal retrieval and zero-shot classification. These models are fundamentally limited, however: they can answer "how similar is this audio to this description?" but cannot perform open-ended reasoning, multi-step inference, or dialogue. They are representation learners, not reasoning engines.

Encoder-decoder LALMs remain benchmark-centric and struggle with real-world audio. The second generation—models like Audio Flamingo (Kong et al., 2024), Audio Flamingo 2 (Ghosh et al., 2025b), Audio Flamingo 3 (Goel et al., 2025), Qwen-Audio (Chu et al., 2023a), Qwen2-Audio (Chu et al., 2024), SALMONN (Tang et al., 2023), and others—augments decoder-only LLMs with audio encoders, enabling open-ended question answering, captioning, and reasoning. While these models have "significantly improved performance on core audio understanding tasks" and "enabled new capabilities such as open-ended audio question answering requiring complex reasoning and external world knowledge" (Section 2), the paper identifies specific failure modes:

  • Limited exposure to long-form audio: Even in models that claim long-audio support, training data was typically limited to 5–10 minute clips often constructed by concatenating shorter segments, and long-audio data was primarily used during post-training as an alignment technique rather than being a core training component. This means models never learn to natively process long audio—they learn to stitch together short-clip understanding into a facsimile of long-form comprehension.

  • Gaps in core skill execution: The paper's systematic analysis of prior Audio Flamingo models reveals specific weaknesses: counting errors, speaker diarization failures, poor multilingual ASR, and inadequate handling of multi-speaker overlapping speech. These are not exotic capabilities—they are fundamental skills needed for understanding real-world audio containing multiple speakers, background noise, and music.

  • Distributional mismatch: Models trained predominantly on academic datasets like AudioSet encounter a severe distribution shift when deployed on internet audio, which features more complex acoustic scenes, longer durations, and higher variability in recording conditions.

Chain-of-thought reasoning in LALMs is underdeveloped. Recent work on CoT for audio QA (R1-AQA by Li et al., 2025a; Omni-R1 by Rouditchenko et al., 2025; Mellow by Deshmukh et al., 2025; Step-Audio-R1 by Tian et al., 2025) has demonstrated consistent gains across benchmarks, but the paper identifies two critical shortcomings:

  • Developed for short audio where evidence is easy to localize. All prior CoT LALM work focuses on short clips where relevant evidence is typically singular, directly verifiable, and easy to identify. In contrast, long-form audio reasoning requires aggregating and relating multiple temporally dispersed pieces of evidence—a fundamentally different reasoning challenge that existing CoT approaches do not address.

  • Excessive reasoning traces. The paper observes that models like Step-Audio-R1 "often generate excessively long reasoning traces for audio QA (e.g., >16K tokens on MMAU)," leading to substantial inference overhead. This is particularly problematic for audio models, where the input itself already consumes significant context length due to token expansion from dense temporal features. Long reasoning traces compound the quadratic memory cost of self-attention, making deployment inefficient. The paper hypothesizes that temporal grounding—anchoring reasoning steps to specific timestamps—can encourage more concise, evidence-focused reasoning by forcing the model to point to concrete evidence rather than engage in open-ended verbal exploration.

Scaling audio data remains difficult. The paper acknowledges that ASR has seen aggressive scaling (Peng et al., 2026; Radford et al., 2022), but notes that "measuring progress remains challenging, as many of these systems lack transparency around their training data." Fully open models like OWSM (Peng et al., 2024) offer greater transparency but are ASR-specific. For general audio understanding, "scaling remains difficult due to the scarcity of large-scale audio paired with clean, high-quality supervision." Unlike text, where internet-scale paired data is abundant, audio-caption pairs are rare and expensive to annotate, and audio-QA pairs are even rarer. This data scarcity has historically kept LALM training tied to whatever labeled academic datasets are available, reinforcing the benchmark-centric development cycle.


How This Paper Positions Itself

The paper frames AF-Next as a first step toward scaling fully open audio understanding beyond academic datasets and benchmarks—a deliberate departure from the benchmark-centric paradigm that has characterized prior LALM development. This positioning is supported by several key design choices that differentiate AF-Next from prior work:

From benchmark data to internet-scale data. Rather than relying primarily on academic datasets, AF-Next curates high-quality data from internet-scale sources, with a specific focus on "long, diverse, and acoustically challenging audio that better reflect real deployment conditions" (Section 1). The paper collects approximately 108 million training samples totaling over 1 million hours of audio—a scale that substantially exceeds prior open LALM training corpora. This data spans 10 axes (music understanding, multi-talker speech, long captioning for real-world audio, expanded real-world skills, multi-audio data, multi-turn chat, safety and instruction-following, multilingual ASR/AST, text-only data, and time-grounded CoT), each targeting a specific gap identified in prior models.

From post-hoc long-audio support to native long-audio training. Unlike prior work where long-audio was an afterthought (concatenated short clips used during post-training alignment), AF-Next makes long-audio understanding a core part of training from the mid-training stage onward, with clips spanning up to 30 minutes and context lengths extended to 128K tokens. This is a qualitative shift in training philosophy: the model learns to process long-form audio natively rather than learning to patch together short-clip inferences.

From generic CoT to temporally grounded reasoning. The paper introduces Temporal Audio Chain-of-Thought, a novel reasoning paradigm that explicitly grounds intermediate reasoning steps to timestamps. This is motivated by two hypotheses: (i) temporally grounded thoughts help the model navigate and reason over long, complex audio by providing explicit temporal anchors, and (ii) conditioning intermediate reasoning on timestamped events can improve recognition performance (drawing on Kumar et al., 2026). The curated AF-Think-Time dataset—43K question–answer–thinking-chain triplets from "challenging audio sources, including trailers, movie recaps, mystery stories, and long-form multi-party conversations"—reflects this philosophy: these are precisely the types of complex, temporally extended audio where generic CoT would struggle.

From single strategy to complementary test-time approaches. The paper's three model variants (AF-Next-Instruct, AF-Next-Think, and AF-Next-Captioner) represent different test-time computation strategies, and the paper explicitly analyzes their complementary strengths. This reflects an understanding that different reasoning challenges benefit from different inference-time approaches—a finding that parallels the lesson from the LLM literature that test-time compute should be allocated adaptively based on problem characteristics.

From opaque to fully open. The paper's commitment to releasing weights, training data, and code "with full transparency about the training methodology" represents a deliberate stance in the growing debate about openness in AI. By explicitly distinguishing "fully open" from "open-weights" and "closed," the paper positions AF-Next as a resource for the research community that goes beyond what proprietary or weights-only releases enable. This is particularly significant given the data scarcity problem: releasing the curated training data provides a foundation for future work that would otherwise require re-inventing the expensive data curation pipeline.

In essence, the paper's position is that the next generation of LALMs requires a fundamental shift in how we think about audio understanding: not as a collection of benchmark tasks to optimize against, but as a general capability that emerges from exposure to diverse, real-world audio at scale, combined with reasoning strategies that are explicitly designed for the temporal structure of audio. AF-Next is presented as the first model in the Audio Flamingo series to fully embrace this philosophy.

3. Technical Approach

3.1 Reader Orientation

Audio Flamingo Next is a system that takes an audio recording (speech, music, or environmental sounds) of up to 30 minutes and produces text answers, captions, or reasoning chains about its content — it can transcribe speech, identify instruments, describe acoustic scenes, answer questions requiring temporal reasoning, and ground its answers to specific timestamps in the audio. The core problem it solves is enabling robust, general audio understanding that works on real-world recordings, not just clean academic benchmarks, and the solution takes the shape of a large language model augmented with an audio encoder, trained on a carefully curated mixture of over 1 million hours of internet-scale audio data, with a novel temporally grounded chain-of-thought reasoning capability that explicitly anchors intermediate reasoning steps to timestamps.

3.2 Big-Picture Architecture (Diagram in Words)

The system has five major components connected in a pipeline:

  1. AF-Whisper Audio Encoder — a pre-trained Whisper-based model that ingests raw audio waveforms (resampled to 16 kHz mono) and outputs a sequence of hidden representations at 50 Hz (one feature vector every 20 ms, downsampled to 25 Hz after stride-2 pooling). It processes audio in non-overlapping 30-second chunks using sliding window feature extraction.

  2. Audio Adaptor (2-layer MLP) — a lightweight projection module that maps the 1280-dimensional AF-Whisper embeddings into the token embedding space of the downstream language model, producing "audio prompts" that the LLM can consume alongside text tokens.

  3. Qwen-2.5-7B Language Model with Rotary Time Embeddings (RoTE) — a 7-billion-parameter decoder-only transformer (36 layers, 16 attention heads) that serves as the reasoning engine. Its standard RoPE positional encoding is replaced with RoTE, where rotation angles are computed from each token's absolute timestamp (e.g., 2.5 seconds into the audio) rather than its discrete sequence index. This temporal grounding is critical for long-audio reasoning and the Temporal Audio Chain-of-Thought capability. The context length is extended from 32K to 128K tokens through long-context training.

  4. Streaming TTS Module — a decoder-only transformer that enables voice-to-voice interaction by predicting the next audio token conditioned on the LLM's subword text tokens and previously generated audio tokens. This is a secondary capability for interactive applications, not the focus of the paper's evaluation.

  5. Training Curriculum Controller — not a runtime component but a design element: the model is trained through four sequential stages (pre-training, mid-training, post-training, and CoT-training), each with its own data mixture, context length, and optimization settings, progressively building capabilities from recognition through reasoning.

Information flow at inference time: Raw audio → resampling and mel-spectrogram conversion → AF-Whisper sliding-window encoding → stride-2 pooling → Audio Adaptor projection → concatenation with text instruction tokens in the LLM's input sequence → autoregressive text generation by the LLM (optionally with temporally grounded reasoning traces for the Think variant, or preceded by caption generation for the Captioner variant) → output text response.

3.3 Roadmap for the Deep Dive

  • First, the AF-Whisper encoder and audio feature extraction pipeline — how raw audio becomes a sequence of embeddings the LLM can process, including the sliding window mechanism and temporal resolution. This is the foundation that everything else builds on.

  • Second, the Audio Adaptor and the pre-training alignment stage — how the audio embeddings are projected into the LLM's token space, why a separate alignment phase is necessary before full training, and what data is used during this phase.

  • Third, the Qwen-2.5-7B backbone and the Rotary Time Embeddings (RoTE) mechanism — how the LLM is modified to represent temporal position using absolute timestamps rather than sequence indices, why this matters for long audio, and how it connects to the Temporal Audio Chain-of-Thought capability.

  • Fourth, the data curation strategy — the systematic gap analysis that identified 10 axes of training data, how each axis addresses specific weaknesses in prior models, and the scale of the resulting corpus (~108M samples, ~1M hours). This is the intellectual core of the paper's "beyond benchmarks" philosophy.

  • Fifth, the four-stage training curriculum — how pre-training, mid-training, post-training, and CoT-training are sequenced, what data mixture and context length characterize each stage, and why different capabilities are hypothesized to emerge at different stages.

  • Sixth, the long-context training infrastructure — the sequence packing and hybrid sequence parallelism (Ulysses + Ring) techniques that make 128K-token context training feasible on 128 H100 GPUs, since this is a practical bottleneck that constrains what the model can learn.

  • Seventh, the three model variants (Instruct, Think, Captioner) and how they operationalize different test-time computation strategies — GRPO-based RL for instruction following, SFT + GRPO with temporally grounded CoT data for reasoning, and the captioner pipeline for augmenting QA with rich acoustic descriptions.

3.4 Detailed, Sentence-Based Technical Breakdown

This is primarily an empirical systems paper whose core idea is that scaling open LALMs beyond academic benchmarks — by curating internet-scale training data spanning diverse real-world audio, training with a staged curriculum that progressively builds capabilities, and introducing temporally grounded chain-of-thought reasoning — produces a model that substantially outperforms prior open LALMs and rivals much larger closed models, particularly on long and complex audio.


AF-Whisper Audio Encoder and Feature Extraction

The audio frontend of AF-Next follows the design established in Audio Flamingo 3 and Music Flamingo, with extensions to handle a larger and more diverse training corpus.

Encoder architecture and pretraining. The encoder is a Whisper-based model referred to as AF-Whisper, which has been further pre-trained on a "larger and more diverse corpus, including multilingual speech and multi-talker ASR data" beyond what was used in AF3. The paper does not detail the AF-Whisper architecture in this work, instead referring readers to Goel et al. (2025) for training details. AF-Whisper operates as a frozen feature extractor during the initial pre-training stages and is later fine-tuned during mid-training alongside the rest of the model.

Feature extraction pipeline. Given an audio input A, the processing chain proceeds as follows:

  1. Resampling: The audio is resampled to 16 kHz mono, regardless of its original sample rate or channel configuration. This standardizes the input for the mel-spectrogram conversion.

  2. Mel-spectrogram conversion: The waveform is converted into a 128-channel log mel-spectrogram using a 25 ms analysis window with a 10 ms hop size (stride). This produces a time-frequency representation with 128 frequency bins and one temporal frame every 10 ms.

  3. Sliding window encoding: The spectrogram is processed through AF-Whisper in non-overlapping 30-second chunks. Each 30-second chunk is encoded independently by the Whisper encoder, producing hidden representations. For audio shorter than 30 seconds, a single chunk is used; for longer audio, multiple 30-second chunks are concatenated along the temporal axis. The chunk size of 30 seconds is chosen to match the standard Whisper input length, allowing the pre-trained encoder to operate within its training distribution.

  4. Temporal resolution and pooling: AF-Whisper outputs features at 50 Hz (one feature vector every 20 ms). After the Whisper encoding, a stride-2 pooling layer is applied (following Chu et al., 2024), reducing the temporal resolution to 25 Hz (one feature vector every 40 ms). This stride-2 pooling reduces the sequence length by half, which is critical for managing the token budget in long audio — a 30-minute audio would otherwise produce 90,000 feature vectors at 50 Hz, already exceeding the standard 32K context window before any text tokens are added.

Output representation. The final output is denoted $h_a = f_a(A)$, where $h_a \in \mathbb{R}^{N \times d}$, with $N$ being the temporal length (number of frames after pooling, proportional to audio duration) and $d = 1280$ being the hidden dimension of AF-Whisper. For a T-second audio clip, $N \approx T \times 25$ (since the pooled output is at 25 Hz).

Why this design? The use of a Whisper-based encoder leverages the strong speech representations learned during Whisper's large-scale ASR pretraining, which transfer well to general audio understanding tasks due to the shared low-level acoustic features between speech and other sounds. The sliding window approach with non-overlapping 30-second chunks is a pragmatic choice: it allows processing arbitrarily long audio without architectural changes (the encoder sees at most 30 seconds at a time, staying within its training distribution), but it means the encoder itself has no cross-chunk context — temporal reasoning across chunk boundaries must be handled by the LLM downstream using the RoTE timestamps. The stride-2 pooling is an efficiency trade-off that halves the sequence length at the cost of temporal granularity, which is acceptable because audio events relevant to understanding (words, musical phrases, sound events) typically span hundreds of milliseconds, not 20 ms frames.


Audio Adaptor and Pre-Training Alignment

The alignment problem. The AF-Whisper encoder produces embeddings in its own representation space (1280-dimensional vectors), but the Qwen-2.5-7B LLM expects input tokens in its own embedding space (which has a different dimensionality, typically 3584 or 4096 for a 7B model). Directly feeding AF-Whisper outputs into the LLM would create a distribution mismatch — the LLM's attention and feedforward layers are optimized for its own embedding geometry, and foreign embeddings would be out-of-distribution.

Audio Adaptor architecture. The paper uses a 2-layer MLP (multi-layer perceptron) as the audio adaptor, denoted $A(\cdot)$. Concretely:

a=A(ha)a = A(h_a)

where $h_a \in \mathbb{R}^{N \times 1280}$ are the AF-Whisper outputs and $a \in \mathbb{R}^{N \times d_{\text{LLM}}}$ are the adapted embeddings projected into the LLM's token embedding space ($d_{\text{LLM}}$ is the LLM's hidden dimension). The 2-layer MLP processes each temporal position independently (it operates on individual frame vectors, not across the sequence). The paper does not specify the intermediate dimension or activation function, but a 2-layer MLP typically takes the form $W_2 \cdot \sigma(W_1 \cdot h_a + b_1) + b_2$, where $\sigma$ is a non-linear activation (commonly GELU for transformer-compatible architectures).

Why 2 layers? A single linear projection (1 layer) could align the dimensionalities but cannot learn non-linear transformations, limiting its ability to adjust the representation geometry. A 2-layer MLP provides one non-linear transformation, giving the adaptor enough capacity to learn a meaningful mapping without introducing excessive parameters that might overfit during the limited alignment training data.

Stage 1 pre-training: adaptor-only alignment. The first stage of the training curriculum trains only the audio adaptor, keeping both AF-Whisper and the LLM frozen. The goal is to align audio representations with the language model embedding space before any joint training. During this stage, the maximum audio length is 30 seconds and the total context length is capped at 8K tokens. The data mixture focuses on "recognition-oriented data, including classification, captioning, and ASR" — tasks where the model needs to map audio to text but does not need complex reasoning. Training hyperparameters for this stage (from Table 3): global batch size 128, learning rate $1 \times 10^{-3}$, cosine decay schedule, warmup ratio 0.03, weight decay 0.0, 1 epoch, bf16 precision, gradient accumulation 8, Zero-3 parallelism, trained on 128 H100 GPUs.

Stage 2 pre-training: encoder + adaptor fine-tuning. In the second pre-training stage, both the audio encoder and adaptor are fine-tuned while the LLM remains frozen. The maximum audio length increases to 1 minute, and the context length remains at 8K tokens. The data mixture continues to focus on recognition tasks. Training hyperparameters are identical to Stage 1 except for the components being updated.

Why a two-stage pre-training? The paper's hypothesis is that different capabilities emerge at different stages of training. Separating adaptor-only training (Stage 1) from encoder fine-tuning (Stage 2) allows the adaptor to first learn a stable mapping from audio to text space before the encoder's representations begin to shift. If the encoder were fine-tuned simultaneously with the adaptor from the start, the adaptor would be chasing a moving target, potentially leading to training instability. The progressive increase in audio length (30s → 1 min) also follows a curriculum: easier short-audio alignment first, then slightly longer audio.


Qwen-2.5-7B Backbone and Rotary Time Embeddings (RoTE)

Base language model. AF-Next uses Qwen-2.5-7B (Team, 2024) as its backbone LLM — a decoder-only causal transformer with 7 billion parameters, 36 transformer layers, and 16 attention heads per layer. The standard context length for Qwen-2.5-7B is 32K tokens, which the paper extends to 128K tokens through additional long-context training during the mid-training stage (Section 3.2.2).

Context length extension. The extension from 32K to 128K tokens is not a simple architectural change — it requires training the model on longer sequences so that its positional encodings and attention patterns generalize to positions beyond those seen during Qwen-2.5's original pre-training. The paper accomplishes this during mid-training Stage 2, where the total context length is increased to 128K tokens and the model is trained on long-audio data with durations up to 30 minutes.

Rotary Time Embeddings (RoTE). A key architectural modification — and one of the paper's core technical contributions — is the replacement of standard Rotary Position Embeddings (RoPE) with Rotary Time Embeddings (RoTE) (Goel et al., 2024b).

In standard RoPE, the rotation angle for token at position $i$ is:

θi=i2π\theta_i = i \cdot 2\pi

where $i$ is the discrete token index (0, 1, 2, ...). This means position 0 gets angle 0, position 1 gets $2\pi$, position 2 gets $4\pi$, and so on. The rotation encodes sequence order — tokens that are close in the sequence have similar rotation angles, enabling the attention mechanism to learn relative positional relationships.

In RoTE, the rotation angle is instead computed from the token's absolute timestamp:

θi=τi2π\theta_i = \tau_i \cdot 2\pi

where $\tau_i$ is the absolute time (in seconds) corresponding to token $i$ in the audio. For audio tokens produced at a fixed 40 ms stride (the 25 Hz output of AF-Whisper after pooling), the paper "interpolates discrete time positions $\tau_i$ and feeds them into the RoTE module." For a token corresponding to audio at time 2.5 seconds, $\tau_i = 2.5$, regardless of how many text tokens precede it in the sequence.

What RoTE computes: the standard rotary position embedding, but with the rotation angle proportional to the audio timestamp rather than the sequence index. For an attention query at time $\tau_q$ and a key at time $\tau_k$, the relative rotation is proportional to $\tau_q - \tau_k$ (the time difference in seconds) rather than $i - j$ (the token index difference). The attention score between query and key includes a dot product of their rotated representations, making it sensitive to the temporal distance between the audio segments they represent.

Why this form matters for audio: In standard RoPE, a 30-minute audio chunk encoded at 25 Hz produces ~45,000 audio tokens, and the model learns that tokens at positions 1,000 and 2,000 have a certain relative distance. But this relationship is scale-dependent — if the audio is sampled at a different rate or padded differently, the same 1,000-token gap might correspond to different temporal durations. RoTE decouples positional encoding from sequence length by tying it to physical time. This has several benefits:

  1. Temporal grounding: The model can learn that events at $\tau = 2.5$ (2.5 seconds) and $\tau = 120.0$ (2 minutes) are temporally distant, regardless of how many tokens separate them in the sequence. This is essential for long-audio reasoning, where evidence may be dispersed across minutes.

  2. Generalization across audio lengths: A model trained on 30-second clips can generalize to 30-minute clips without needing to learn new positional relationships, because the RoTE angles for the first 30 seconds are identical regardless of total audio length. With standard RoPE, a 30-minute clip would push the positional indices into extrapolation territory never seen during training.

  3. Temporal Audio Chain-of-Thought: When the model generates reasoning traces like "at 2:15, the speaker mentions running late; at 5:30, they reference the earlier mention," the $\tau_i$ values provide a continuous temporal coordinate system that aligns the model's internal representations with the timestamps it generates in text. This grounding is hypothesized to reduce hallucination and improve evidence aggregation.

  4. Audio-text alignment: Text tokens (the question and the model's response) do not have inherent timestamps. The paper does not explicitly describe how text tokens are handled in RoTE, but the standard approach (from Goel et al., 2024b) is to assign text tokens a special "no-time" embedding or a fixed position that separates them from the temporal audio stream. This prevents the model from incorrectly learning temporal relationships between text and audio tokens based on sequence order.

RoTE as a core component. The paper explicitly states that "RoTE is a core component of AF-Next and is particularly important for Temporal Audio Chain-of-Thought, enabling stronger temporal understanding, especially for long-form audio." This indicates that the temporal grounding provided by RoTE is not just a convenience — it is fundamental to the reasoning capabilities the paper demonstrates.


Data Curation: Systematic Gap Analysis and Internet-Scale Data Collection

The data curation strategy is the intellectual core of AF-Next's "beyond benchmarks" philosophy. Rather than collecting more data from the same academic datasets, the paper conducts a systematic gap analysis of prior Audio Flamingo models to identify specific weaknesses, then targets each weakness with purpose-built data collection. The resulting corpus spans 10 axes and totals approximately 108 million samples and approximately 1 million hours of audio.

Gap identification. The paper states: "As the first step in data curation, we identify the key limitations in the Audio Flamingo family of models. These include gaps in core skill execution (e.g., counting and speaker diarization, etc) as well as distributional gaps caused by limited exposure to certain data types during training (e.g., multilingual ASR, complex multi-speaker audio understanding, etc)." This gap analysis is conducted systematically on prior models (presumably AF2 and AF3), though the paper does not provide the detailed failure analysis methodology — it states the results (what the gaps are) and then describes how each new data axis addresses a specific gap.

Data sources. Training data is curated from two sources: (i) existing publicly released datasets (academic benchmarks and open data collections), and (ii) raw audio collected from the open internet, which is subsequently labeled synthetically using LLMs and audio processing pipelines. The use of synthetic labeling for internet audio is a key enabler: it bypasses the scarcity of human-annotated audio-caption and audio-QA pairs by having LLMs generate supervision from automatically extracted features and metadata.

Axis 1: Music Understanding. The paper incorporates data from Music Flamingo (Ghosh et al., 2025a), including captioning and QA data from MF-Skills, and expands music-to-lyrics data for non-English songs. Music datasets used include MusicBench, Mu-LLAMA, MusicAVQA (audio-only), MusicQA, LP-MusicCaps (MSD, MTT, MC variants), MusicCaps, NSynth, MusDB-HQ, FMA, Music4All Captions, Music4All QA, MSD Captions, and MSD QA. The total music data spans hundreds of thousands of hours and millions of QA pairs (see Table 4 for exact figures).

Axis 2: Multi-talker Speech Understanding. This axis targets the model's ability to "track speaker turns, resolve overlapping speech, and reason over conversational structure." The paper curates ASR and QA data for multi-speaker speech, with QA focusing on three core skills:

  • Speaker Identification: given an utterance, determine which speaker (ordered by first appearance) produced it.
  • Interruption Identification: identify interruptions in the audio.
  • Target Speaker ASR: transcribe speech corresponding to a specified speaker.

The paper adds 45K training samples to AudioSkills-XL from this axis, using data from multi-talker Switchboard and other multi-speaker sources. The paper notes that this data is "especially useful during pre-training, as it teaches the model fundamental turn-taking and speaker-sensitive skills that form the basis for understanding real-world long-form audio containing multiple speakers, background noise, and music."

Axis 3: Long Captioning for Real-World Audio. This is arguably the most important new data axis, representing the paper's shift from benchmark-centric training to real-world audio understanding. The curation proceeds as follows:

  1. Collection: The paper curates "more than approximately 200K long videos from the open internet, spanning durations of up to 5 to 30 minutes." These are discovered using "agentic web search to discover websites and channels across diverse topics and audio conditions," with selection guided by available metadata such as uploader information and viewer comments. The goal is diversity: different domains, recording qualities, speaker configurations, and acoustic environments.

  2. Segment-level annotation: For each video, the paper generates four forms of captions for 10-second segments: (i) video captions (describing visual content), (ii) audio captions (describing sounds and acoustic events), (iii) speech transcripts (ASR output), and (iv) spoken-language paralinguistic descriptions (tone, emotion, speaking style). The paper does not specify the models used for segment-level annotation, but these are presumably specialized ASR and captioning models.

  3. Coherent long-form caption synthesis: An LLM is prompted (Prompt 6, referenced in Appendix A) to "combine these segment-level annotations into a single coherent caption for the audio." The LLM synthesizes the four annotation streams across all 10-second segments into a unified description that captures the full audio's content, structure, and acoustic characteristics.

  4. QA synthesis: Using the same segment-level information, the paper synthesizes QA data focusing on three types: needle-in-the-haystack QA (finding specific events mentioned once in a long recording), temporal understanding QA (reasoning about the order and timing of events), and subscene QA (understanding segments within the larger context), following the AudioSkills-XL framework introduced in AF3. Other QA types are not synthesized for long audio because the paper "found our current pipeline less robust for those settings and more prone to hallucination."

The resulting long-audio datasets total approximately 128K hours of audio and 1.3M QA/caption pairs (from Table 4: Long Audio Captioning at 27K hours/290K pairs, Long Temporal QA at 39K hours/317K pairs, Long Needle QA at 34K hours/281K pairs, Long Subscene QA at 28K hours/256K pairs, Long Counting QA at 26K hours/170K pairs).

Axis 4: Expanding Existing Skills with Real-World Data. A key limitation of AudioSkills-XL is that much of it is derived from academic datasets like AudioSet, which limits robustness to real-world audio. To address this, the paper samples "informative 10-30 second segments" from the long-form audio collected in Axis 3 and generates QA data spanning the existing AudioSkills-XL skill set. Segment informativeness is scored by "prompting an LLM with the segment caption" — segments containing "a higher number of distinct and overlapping acoustic events are assigned higher informativeness scores and are preferentially selected." This yields 2M+ additional samples.

Axis 5: Multi-audio Data. To enable reasoning over multiple audio inputs, the paper incorporates datasets from Kumar et al. (2025a) and expands them for "interleaved audio-text instruction following." This yields approximately 1M training samples. Multi-audio reasoning (comparing two audio clips, identifying relationships between sound events across recordings) is an emerging capability that prior LALMs largely lack.

Axis 6: Multi-turn Chat Data. The paper expands "multi-turn, multi-audio conversational data with questions that require not only audio understanding, but also information extraction and world knowledge." This yields approximately 30K samples. The prompt used for generating multi-turn chat QA pairs from long audio is shown in Figure 4 (Appendix A).

Axis 7: Safety and Instruction-Following Data. Safety has been "largely overlooked in prior audio-language models." The paper synthesizes safety and instruction-following data by (i) identifying unsafe audio from real-world data, and (ii) generating corresponding QA pairs and refusal-style responses that "teach the model when and how to abstain appropriately." This yields approximately 386K samples. Examples in Figure 15 (Appendix A) show both benign queries and harmful queries with refusal responses.

Axis 8: Multilingual ASR and AST. Building on English ASR data from AF3, the paper adds multilingual ASR and automatic speech translation (AST) data from: Emilia (5000 hours, 1.7M samples), CoVoST (2880 hours, 5M samples), MUST (500 hours, 245K samples), Amazon-SIFT, ALI meeting (118.75 hours, 387K samples), aidatatang (139.39 hours, 165K samples), aishell (150.85 hours, 120K samples), and Granary. The multilingual focus addresses the English-centric bias of prior LALMs.

Axis 9: Text-only Data. To maintain the text-reasoning abilities of the LLM backbone (which might otherwise degrade as the model is fine-tuned primarily on audio tasks), the paper incorporates "text-only SFT datasets focusing on science, math, instruction following, and general knowledge domains," specifically using the dataset from Wang et al. (2025a). This is a form of catastrophic forgetting prevention — ensuring the model does not lose its general language understanding capabilities as it specializes in audio.

Axis 10: Time-Grounded Chain-of-Thought (AF-Think-Time). This is the novel dataset that enables Temporal Audio Chain-of-Thought. The paper's hypothesis is that prior CoT training for LALMs has shown "only modest gains, especially compared to domains such as coding and agentic reasoning" because existing audio CoT datasets (like AF-Think) are "largely limited to short clips and relatively simple QA, to which reasoning chains are then attached." For CoT to be genuinely useful in audio, it needs to target problems where extended reasoning is necessary — "complex problems that require deliberate evidence aggregation" from "long, real-world recordings with multiple, overlapping, and temporally dispersed events."

The AF-Think-Time dataset is constructed as follows:

  1. Source selection: Audio is curated from "challenging audio sources, including trailers, movie recaps, mystery stories, and long-form multi-party conversations." These are precisely the types of content where evidence is distributed across time and requires aggregation.

  2. Timestamped caption generation: The paper generates time-stamped captions for each audio using "a pipeline similar to Kumar et al. (2026)." This produces captions of the form "at 0:15, a door slams; at 1:23, a character says 'I didn't do it'; at 3:45, a gunshot is heard."

  3. Triplet synthesis: An LLM is prompted (Prompt 10, shown in Figure 10 of Appendix A) with the timestamped captions to synthesize question–answer–thinking-chain triplets. The thinking chains are designed to explicitly reference timestamps (e.g., "First, at 1:23, the suspect claims innocence. However, at 3:45, a gunshot is heard, which contradicts their later statement at 5:10 that they were alone.").

  4. Scale: AF-Think-Time consists of approximately 43K training samples, with an average of 446.3 words for thinking-chains. The total audio duration is 3954 hours (from Table 4). This is a substantial CoT dataset — the thinking chains are nearly 450 words on average, suggesting complex multi-step reasoning rather than simple one-sentence justifications.

The paper justifies temporal grounding in CoT for two reasons: "(i) temporally grounded thoughts help the model navigate, and reason over long, complex audio, and (ii) conditioning intermediate reasoning on timestamped events can improve recognition performance (Kumar et al., 2026)."


Four-Stage Training Curriculum

The paper trains AF-Next using a four-stage curriculum where "each stage uses a distinct data mixture designed to promote robust and balanced learning while gradually increasing context length." The central hypothesis is that "different capabilities emerge at different stages of training: some foundational skills are acquired early, whereas more complex skills and long-context abilities require later-stage specialization."

Data loading and blending. The paper designs a data loader that "samples from multiple datasets according to a predefined blending weight $\beta$ for each dataset. In each training epoch, the model is exposed to $\beta \times$ the size of that dataset." This means a dataset with $\beta = 2.0$ is effectively seen twice per epoch (oversampled), while $\beta = 1.0$ means one pass, and omitting a dataset entirely means $\beta = 0$. Within each stage, the paper "progressively down-weights lower-quality data and up-weights higher-quality or more challenging data based on validation performance." The full data mixing ratios are provided in Table 4 (Appendix E).

Stage 1 Pre-training (Adaptor only). Only the audio adaptor is trained; AF-Whisper and LLM are frozen. Data: recognition-oriented (classification, captioning, ASR). Max audio length: 30 seconds. Context length: 8K tokens. Hyperparameters: global batch size 128, learning rate $1 \times 10^{-3}$, cosine decay, warmup ratio 0.03, weight decay 0.0, 1 epoch, bf16 precision, Zero-3 parallelism, 128 H100 GPUs.

Stage 2 Pre-training (Encoder + Adaptor). AF-Whisper and adaptor are trained; LLM remains frozen. Data: same recognition-oriented mixture. Max audio length: 1 minute. Context length: 8K tokens. Hyperparameters: identical to Stage 1.

Stage 1 Mid-training (Full model, short-audio focus). Full fine-tuning of the entire model (encoder, adaptor, and LLM). The pre-training datasets are retained, and the newly curated datasets (Axes 1–10) are introduced alongside AudioSkills-XL. Since "skill-specific supervision remains easiest to scale on short audio, this stage continues to emphasize high-quality short-audio QA and foundational skill data, while increasing the maximum audio length to 10 minutes to accommodate long examples from AudioSkills." Context length is increased to 24K tokens. Hyperparameters: global batch size 128, learning rate $1 \times 10^{-5}$, cosine decay, warmup ratio 0.03, weight decay 0.0, 1 epoch, bf16 precision, Zero-3 + Sequence Parallelism, 128 H100 GPUs.

Stage 2 Mid-training (Full model, long-audio expansion). The data mixture is expanded with the newly collected long-audio captioning and QA datasets (Axis 3). To "promote learning of this data and distribution, the Stage 1 mixture is down-sampled to half of its original blend weights, while all long-audio datasets are assigned a blend weight of 1." This effectively doubles the relative exposure to long-audio data compared to the short-audio datasets from Stage 1. Max audio length: 30 minutes. Context length: 128K tokens. The paper notes that "during mid-training, we initialize the next stage from a checkpoint sampled at roughly the halfway point of the current stage and continue training from there." This checkpoint selection strategy — rather than training each stage from scratch or from the final checkpoint of the previous stage — is a practical choice that balances convergence with preventing overfitting to the current data mixture. The fully trained model from mid-training is referred to as AF-Next-Captioner.

Post-training (GRPO-based RL). Starting from the mid-training model, the paper performs GRPO (Group Relative Policy Optimization)-based reinforcement learning, with "all optimization settings following Ghosh et al. (2025a)." GRPO is a variant of policy gradient RL that has been used in recent LLM post-training to improve instruction following, safety, and alignment. The data focus shifts to multi-turn chat, safety, instruction following, and "selected skill-specific datasets from AudioSkills-XL, primarily focusing on skills where the model shows post mid-training" — meaning skills where the mid-training model still exhibits weaknesses that RL can address. Hyperparameters: global batch size 64, learning rate $1 \times 10^{-6}$, cosine decay, warmup ratio 0.03, weight decay 0.0, 1 epoch, bf16 precision, Zero-3 + Sequence Parallelism, 128 H100 GPUs. The resulting model is AF-Next-Instruct.

CoT-training (SFT + GRPO for reasoning). Starting from AF-Next-Instruct, the model is first fine-tuned with supervised fine-tuning (SFT) on AF-Think-Time (the 43K temporally grounded CoT samples), and then trained with GRPO using the post-training data mixture. This two-step approach (SFT to learn the CoT format, then RL to optimize the reasoning quality) follows the standard recipe for training reasoning models. Hyperparameters: global batch size 64, learning rate $2 \times 10^{-5}$, cosine decay, warmup ratio 0.03, weight decay 0.0, 2 epochs, bf16 precision, Zero-3 + Sequence Parallelism, 128 H100 GPUs. The resulting model is AF-Next-Think.

Why a four-stage curriculum? The staged approach is designed around the hypothesis that different capabilities have different learning dynamics. Recognition skills (mapping audio to text) are learned during pre-training with frozen LLM — this ensures the audio representations are well-aligned before the LLM's weights are modified. Short-audio reasoning and skill acquisition are learned during mid-training Stage 1, when the model has moderate context length and exposure to diverse QA data. Long-audio understanding is learned during mid-training Stage 2, after the model has acquired foundational reasoning skills and can handle the increased context length. Instruction following and safety are refined during post-training using RL, which can optimize for human preferences in a way that SFT alone cannot. Finally, CoT reasoning is added as a specialized capability on top of the instruct model, ensuring the base model's general capabilities are not compromised by the CoT training.


Long-Context Training Infrastructure

Training on 30-minute audio at 25 Hz with 128K token context windows introduces two significant engineering challenges that would make standard training infeasible on available hardware.

Challenge 1: Audio token expansion. Each audio placeholder token in the training data is replaced at encoding time by a variable number of actual audio embedding tokens, determined by the clip's duration. A 30-minute clip at 25 Hz produces 45,000 audio tokens. When combined with text tokens (instructions, captions, reasoning chains), the total sequence length can easily exceed standard context windows (Qwen-2.5-7B's default is 32K tokens). This token expansion means the model must process sequences 4× longer than its original design point.

Challenge 2: Quadratic memory footprint of self-attention. Self-attention's memory complexity is $O(L^2)$ in sequence length $L$. For $L = 128\text{K}$, the attention matrix requires $(128\text{K})^2 \times 2 \text{ bytes} = 32\text{ GB}$ per attention head in bf16, and with 16 heads and 36 layers, the total attention memory would exceed 18 TB — far beyond the memory of any single GPU.

Solution: Sequence Packing and Hybrid Sequence Parallelism. The paper addresses both challenges through a combination of data loading strategies and distributed training techniques.

Sequence Packing (three-stage strategy):

  1. SP-Aware Sampling: The distributed sampler partitions data across data-parallel (DP) groups while ensuring all GPUs within a Sequence Parallel (SP) group receive identical sample indices. With SP degree $P$, the effective DP replica count reduces to $N_{\text{GPU}} / P$. This ensures that every GPU in an SP group processes the same batch, which is necessary because SP distributes the computation of a single sequence across multiple GPUs.

  2. Padding and Truncation: The data collator pads all sequences in a batch to the shorter of the longest sequence and the maximum context length (128K), constructs a binary attention mask over non-padding positions (so the model ignores padded tokens during attention), and pads labels with an ignore index (so padded positions don't contribute to the loss).

  3. Audio Token Expansion: During the audio encoding stage, each audio placeholder token is replaced by a variable number of audio embedding tokens determined by the clip's duration-based embedding mask. This means the sequence length varies per sample depending on audio duration, and the collator handles this heterogeneity through padding.

Hybrid Sequence Parallelism (USP): The paper distributes attention computation across $P$ GPUs using Unified Sequence Parallelism (USP) (Fang and Zhao, 2024), decomposed into a Ulysses degree $P_U$ (all-to-all based) and a Ring degree $P_R$ (point-to-point based), with $P = P_U \times P_R$. Separate NCCL process groups are constructed for each: a Ulysses group, a Ring group, and a Data-Parallel group.

  • Ulysses attention (Jacobs et al., 2023): Redistributes the sequence and head dimensions across GPUs via all-to-all collectives. Before the all-to-all, each GPU holds the full sequence but only a fraction of the attention heads. The all-to-all scatters heads and gathers sequence chunks: after the exchange, each GPU sees the full sequence but only a subset of heads. Flash attention is computed on the gathered sequence (each GPU computes attention for its assigned heads over the full sequence). A reverse all-to-all restores the original partitioning for the feedforward and layer norm layers, which operate locally without communication. Ulysses is efficient within high-bandwidth interconnects (e.g., NVLink within a node) but costly across nodes because all-to-all bandwidth drops sharply across node boundaries.

  • Ring attention (Liu et al., 2023): Circulates key-value (KV) blocks around a ring topology via point-to-point transfers. Each GPU holds a chunk of the sequence and passes its KV block to the next GPU in the ring, which computes attention between its query chunk and the received KV block, then passes the KV block along. After $P_R$ steps, each GPU has attended over the full sequence. Ring attention scales across nodes but introduces sequential latency proportional to the ring size.

  • Hybrid composition: Ulysses operates within nodes where all-to-all bandwidth is abundant; Ring spans across nodes, keeping communication efficient at both levels. This hybrid approach leverages the strengths of each method: Ulysses for low-latency high-bandwidth intra-node parallelism, Ring for bandwidth-efficient cross-node communication.

Why this design? The hybrid approach is necessary because neither Ulysses nor Ring alone is sufficient for 128K-context training on 128 GPUs. Pure Ulysses would require all-to-all communication across 128 GPUs, which is infeasible across nodes. Pure Ring with 128 GPUs would require 128 sequential communication steps per attention layer, making training prohibitively slow. The hybrid approach bounds the Ring size to the cross-node degree and the Ulysses degree to the intra-node degree, keeping both communication patterns within their efficient operating regimes.


Three Model Variants: Operationalizing Test-Time Computation Strategies

The paper produces three model checkpoints, each representing a different strategy for spending computation at inference time:

AF-Next-Instruct. The base post-trained model, optimized for general question answering with instruction following, safety awareness, and broad audio understanding capabilities. This model is trained with GRPO on multi-turn chat, safety, instruction following, and selected AudioSkills-XL data. At inference time, it processes the audio and question directly and generates an answer — no additional test-time computation beyond the standard forward pass.

AF-Next-Think. The CoT-trained model, which generates temporally grounded reasoning chains before producing its final answer. Trained with SFT on AF-Think-Time followed by GRPO. At inference time, the model is prompted to "think step by step" with temporal grounding, producing reasoning traces that reference specific timestamps (e.g., "At 2:15, the speaker says X. At 5:30, this is contradicted by Y. Therefore..."). The paper observes that prior CoT models like Step-Audio-R1 "often generate excessively long reasoning traces for audio QA (e.g., >16K tokens on MMAU)," and the temporal grounding in AF-Think-Time is designed to encourage more concise, evidence-focused reasoning by anchoring steps to concrete timestamps rather than open-ended verbal exploration. The CoT variant represents increased test-time computation (generating reasoning tokens in addition to the answer) in exchange for improved accuracy on complex multi-step reasoning tasks.

AF-Next-Captioner. The mid-training model (before post-training), used in a two-stage pipeline: first, the model generates a detailed audio caption (describing the acoustic content, speech, music, and events in the audio); second, the caption is fed to GPT-5.2 in text-only mode along with the question. GPT-5.2 (a powerful text-only LLM) reads the caption and answers the question. This offloads the reasoning to a stronger text model while using AF-Next primarily for perception (converting audio to descriptive text). The paper notes: "To evaluate AF-Next Captioner, we use the model to generate a caption for the audio and prompt GPT-5.2 in text-only mode with the caption and the associated question." This variant represents a functionally different test-time strategy: instead of the audio model doing both perception and reasoning, it specializes in perception (captioning) and delegates reasoning to a dedicated text model. The captioner variant achieves the strongest results on several benchmarks (e.g., MMAU: 75.76 vs. 74.20 for Instruct; MMAR: 63.0 vs. 59.7; MMSU: 63.3 vs. 59.4), suggesting that for tasks where rich acoustic description is valuable, decoupling perception and reasoning can be more effective than having a single model do both.

Complementary strengths. The paper's results demonstrate that these variants have complementary strengths: "CoT reasoning helps on tasks requiring multi-step inference, while captioner augmentation is particularly effective when richer acoustic descriptions can ground the model's reasoning." This mirrors findings from the broader LLM literature on test-time compute scaling, where different strategies (search, revision, chain-of-thought) are optimal for different problem types and difficulty levels. The paper does not claim that any single variant dominates — rather, the three variants represent different points on a test-time compute tradeoff curve, with Instruct being the most efficient (no extra tokens), Think using moderate extra computation for improved reasoning, and Captioner using the most indirect computation (caption generation + external LLM reasoning) for the strongest perception-grounded results.

4. Key Insights and Innovations

Innovation 1: Reframing LALM Development from Benchmark-Centric to Capability-Centric via Systematic Gap Analysis

The paper's most fundamental conceptual contribution is not any single architectural or training technique, but rather a diagnostic methodology for developing LALMs that breaks the cycle of benchmark-driven development. Prior LALM work — across both encoder-only models like CLAP and encoder-decoder models from the Audio Flamingo, Qwen-Audio, and SALMONN families — operated primarily by collecting available academic datasets (AudioSet, Clotho, AudioCaps, LibriSpeech), training on their union, and evaluating on their test splits. This creates a self-reinforcing loop: models are optimized for whatever benchmarks exist, benchmarks encode systematic biases (Kumar et al., 2025b), and genuinely useful capabilities that benchmarks don't measure — long-form comprehension, multi-speaker tracking, real-world acoustic robustness — are never developed because training data never demands them.

AF-Next breaks this loop with an explicit gap analysis step that precedes data collection. The paper states: "As the first step in data curation, we identify the key limitations in the Audio Flamingo family of models. These include gaps in core skill execution (e.g., counting and speaker diarization, etc) as well as distributional gaps caused by limited exposure to certain data types during training." This is a diagnostic move, not a data collection move — the authors don't assume they know what data to collect, they empirically probe what their prior models fail at, then design data to target those failures. The 10-axis data curation strategy (Section 3.2.1) is the consequence of this gap analysis, not the insight itself.

What makes this distinctive is that it inverts the development paradigm: rather than asking "what benchmarks can I train on?" it asks "what capabilities does my model lack, and what data would teach those capabilities?" This is a fundamental shift because it decouples capability acquisition from benchmark availability. The paper demonstrates the power of this approach through the long-audio understanding results — AF-Next achieves 73.9 on LongAudioBench versus Gemini 2.5 Pro's 60.4 (Table 1), and 81.2 on the speech-inclusive variant versus Gemini's 66.2. These massive gaps didn't come from optimizing against LongAudioBench (which didn't exist when data was collected); they came from identifying that prior models lacked native long-audio understanding and designing internet-scale training data (200K+ long videos, 128K hours) specifically to develop that capability.

The gap analysis methodology is fundamental rather than incremental because it changes how future LALM researchers should approach development. Instead of starting with available datasets and asking "what can I train?", they should start by probing model weaknesses and asking "what data do I need to create?" The paper validates this approach empirically but the idea — that capability gaps should drive data curation, not vice versa — is the real contribution.


Innovation 2: Temporal Grounding as a Principle for Audio Chain-of-Thought, Not Just a Feature

The introduction of Temporal Audio Chain-of-Thought is more than a new training dataset or prompting strategy — it represents a principled hypothesis about why standard CoT underperforms in audio reasoning and what structure is needed to fix it. Prior audio CoT work (R1-AQA by Li et al., 2025a; Omni-R1 by Rouditchenko et al., 2025; Mellow by Deshmukh et al., 2025; Step-Audio-R1 by Tian et al., 2025) applied essentially the same CoT recipe that works in text and vision: train the model to generate step-by-step reasoning before answering. These approaches showed "consistent gains across benchmarks" but the paper identifies a critical structural mismatch: audio CoT datasets were "largely limited to short clips and relatively simple QA, to which reasoning chains are then attached."

The paper's diagnostic insight is that short-audio CoT is solving a different problem than the one CoT is designed for. CoT reasoning is most valuable when evidence is dispersed, ambiguous, or requires multi-step aggregation — precisely the conditions of long-form audio, not short clips where relevant evidence is "typically easy to localize, directly verifiable, and often singular" (Section 2). By training CoT on short clips, prior work taught models to generate reasoning traces where none were genuinely needed, producing the symptom the paper observes: "models such as Step-Audio-R1 often generate excessively long reasoning traces for audio QA (e.g., >16K tokens on MMAU), leading to substantial inference overhead." The reasoning traces became performative rather than functional.

The temporal grounding hypothesis — that reasoning steps should be explicitly anchored to timestamps — addresses both problems simultaneously. For long-audio reasoning, timestamps provide explicit navigation coordinates that help the model "navigate, and reason over long, complex audio" by localizing evidence in time. For reasoning efficiency, grounding forces the model to point to concrete evidence rather than engage in open-ended verbal exploration, encouraging "concise, evidence-based reasoning." The paper supports this with AF-Think-Time's construction: reasoning chains average 446.3 words (substantial but not the 16K-token verbose traces of prior models), and the source material — "trailers, movie recaps, mystery stories, and long-form multi-party conversations" — is chosen specifically because it demands genuine temporal evidence aggregation.

This is fundamental rather than incremental because it establishes a design principle for future audio reasoning systems: CoT traces should be structured around the temporal coordinates of evidence, not just sequential verbal reasoning. The evidence for this principle's effectiveness is in the MMAU-Pro results (Table 1): AF-Next-Think achieves 58.7 versus AF-Next-Instruct's 56.9, and versus the closed-source Gemini-2.5-Pro's 57.4. The gain from CoT training is modest in absolute terms but significant given that this is a fundamentally different reasoning structure — the model is not just generating more tokens, it's generating differently structured tokens that decompose the task along temporal dimensions. The paper doesn't claim temporal grounding is universally optimal (the Captioner variant outperforms Think on several benchmarks), but establishes it as a principled approach for tasks where evidence is genuinely temporally distributed.


Innovation 3: Treating Test-Time Compute Strategies as Complementary Tools with Distinct Strengths, Not a Single "Best" Approach

The paper's production of three model variants — AF-Next-Instruct, AF-Next-Think, and AF-Next-Captioner — is not a scatter-shot release of multiple checkpoints but rather an empirical argument that different test-time computation strategies have complementary, task-dependent strengths for audio understanding. This insight parallels findings from the broader LLM literature on compute-optimal test-time scaling (where different strategies like search versus revision are optimal for different problem difficulties), but applies it to a domain — audio-language models — where the inference-time computation tradeoffs are qualitatively different due to audio's temporal density and the availability of strong text-only reasoning models.

Prior LALM work implicitly assumed a single "best" inference strategy: generate an answer directly. Some models explored CoT (R1-AQA, Step-Audio-R1), but these were presented as universal improvements — the CoT variant was simply "better" than the non-CoT variant. The paper's tripartite release challenges this by showing that no single variant dominates across all benchmarks. AF-Next-Captioner achieves the best results on MMAU (75.76 vs. 75.01 for Think and 74.20 for Instruct), MMAR (63.0 vs. 61.0 vs. 59.7), and MMSU (63.3 vs. 61.2 vs. 59.4). But AF-Next-Think achieves the best result on MMAU-Pro (58.7 vs. 56.9 for Instruct; Captioner not reported on Pro). AF-Next-Instruct is the direct model evaluated on ASR benchmarks, where Chain-of-Thought or external captioning would be inappropriate.

This pattern reveals a functional decomposition that the paper makes explicit: "CoT reasoning helps on tasks requiring multi-step inference, while captioner augmentation is particularly effective when richer acoustic descriptions can ground the model's reasoning." The Captioner variant works by offloading reasoning to a stronger text-only model (GPT-5.2), effectively specializing AF-Next for perception while delegating inference to a model better optimized for it. The Think variant works by having the audio model itself decompose the reasoning, which helps when the reasoning steps require tight coupling with the audio (e.g., verifying temporal order, checking consistency across timestamps). The Instruct variant works when the task is direct enough that neither decomposition is necessary — direct perception-to-answer is most efficient.

This is fundamental rather than incremental because it establishes a capability-space view of LALM deployment: rather than asking "which model is best?", practitioners should ask "which test-time strategy is appropriate for my task?" The paper doesn't provide a difficulty estimator or adaptive policy (unlike the compute-optimal test-time scaling work), but it provides the empirical evidence that such a policy would be valuable. The MMAU-Pro result is particularly instructive: on this most challenging reasoning benchmark, AF-Next-Think (trained specifically for temporal reasoning) surpasses both the instruct variant and the closed-source Gemini-2.5-Pro, demonstrating that when reasoning structure matches task structure, specialized test-time computation outperforms both generic instruction-tuned models and larger closed-source alternatives.


Innovation 4: Demonstrating That Open LALMs Can Compete with Closed Frontier Models Through Data and Training Design, Not Just Scale

While not a single technical innovation, the paper's empirical demonstration that a fully open 7B-parameter LALM can match or exceed substantially larger closed-source models — Gemini 2.5 Pro, GPT-4o-audio, Gemini 2.0 Flash — on challenging audio benchmarks represents a significant finding with implications for how the field thinks about the relationship between model scale, data scale, and openness. Prior to AF-Next, the dominant narrative (supported by the benchmark tables in prior LALM papers) was that closed-source models held a substantial and perhaps insurmountable lead on audio understanding, particularly on long-form and complex reasoning tasks.

The paper systematically challenges this narrative on multiple fronts. On LongAudioBench, AF-Next-Instruct achieves 73.9 versus Gemini 2.5 Pro's 60.4 — a 13.5-point gap — and 81.2 on the speech-inclusive variant versus 66.2, a 15-point gap. On MMAU-Pro, AF-Next-Think achieves 58.7 versus Gemini 2.5 Pro's 57.4. On MMAU, AF-Next-Captioner achieves 75.76 (while Gemini is not directly compared, AF-Next's results substantially exceed prior open SOTA of 72.42 from AF3). On ASR benchmarks, AF-Next-Instruct sets new lows among LALMs on LibriSpeech (1.54/2.76 test-clean/test-other) and achieves the best reported WERs on Common Voice 15 (7.2), VoxPopuli (5.4), and GigaSpeech (9.8), outperforming open-weight models like Phi-4-mm and Qwen2.5-Omni.

What makes this finding significant — beyond the raw numbers — is that it demonstrates a different path to capability: rather than scaling model parameters (Gemini models are estimated to be orders of magnitude larger than 7B) or keeping training data proprietary, the paper achieves competitive or superior performance through (i) systematic capability-gap-driven data curation at internet scale (~1M hours), (ii) staged curriculum training that progressively builds capabilities, and (iii) test-time computation strategies (CoT, captioner pipelines) that amplify the base model's effectiveness. This is an existence proof that thoughtful data and training design can substitute for both model scale and data access restrictions — a finding with significant implications for the open-source AI ecosystem.

The evidence is particularly compelling because it spans diverse capabilities: long-audio understanding (LongAudioBench), complex reasoning (MMAU-Pro), music understanding (MuchoMusic, NSynth, Medley-Solos-DB), general audio QA (MMAU, MMAR, MMSU), and ASR (7 English benchmarks). The consistency of the gains across these disparate tasks — rather than excellence in one area at the expense of others — suggests that the capability improvements come from genuinely better audio understanding rather than benchmark-specific optimization. The speech translation results in Table 2 further reinforce this, showing dramatic improvements on underrepresented language pairs like Arabic (21.9 BLEU versus Phi-4-mm's 9.9 for EN→AR; 29.4 versus 5.5 for AR→EN), suggesting the multilingual data curation (Axis 8) successfully addressed distributional gaps that even strong open-weight models exhibit.

5. Experimental Analysis

Evaluation Methodology

  • Dataset. The paper evaluates on 20+ benchmarks spanning audio understanding, reasoning, classification, captioning, and speech recognition. Key benchmarks include: MMAU-v05.15.25 (test split; sound, music, and speech subcategories), MMAU-Pro (Kumar et al., 2025b), MMAR (Ma et al., 2025), MMSU (Wang et al., 2025b), LongAudioBench (Ghosh et al., 2025b) with a +Speech variant, Clotho-v2 and AudioCaps for audio captioning, NonSpeech7k for sound classification (Rashid et al., 2023), NSynth (source and instrument; Engel et al., 2017), Medley-Solos-DB for instrument recognition, MuchoMusic (perceptual version; Zang et al., 2025; Weck et al., 2024), SongCaps (Ghosh et al., 2025a), CMM Hallucination (Leng et al., 2024), CompA-R-test (Ghosh et al.), LibriSQA (Zhao et al., 2023), VoiceBench (with AdvBench, AlpacaEval, CommonEval, OpenBookQA subtasks), CoVoST2 for speech translation, and ASR benchmarks: LibriSpeech (test-clean/test-other; Panayotov et al., 2015), SPGISpeech (O'Neill et al., 2021), TEDLIUM (Rousseau et al., 2012; Hernandez et al., 2018), GigaSpeech, Common Voice 15 (en), and VoxPopuli (Wang et al., 2021). The paper also reports audio entailment accuracy on Clotho and AudioCaps.

  • Base model(s). All three AF-Next variants (Instruct, Think, Captioner) are built on Qwen-2.5-7B (Team, 2024) with AF-Whisper as the audio encoder, trained with the described four-stage curriculum on approximately 1 million hours of audio. The paper states: "We run all the mentioned baselines, and we report reproduced scores," meaning baseline results in Table 1 were obtained by the authors running those models themselves rather than quoting published numbers, which ensures fair comparison under consistent evaluation protocols.

  • Metrics. The paper uses task-appropriate metrics: WER ↓ (Word Error Rate) for ASR benchmarks, ACC ↑ (Accuracy) for classification and multiple-choice QA, CIDEr ↑ for audio captioning quality on Clotho-v2 and AudioCaps, GPT ↑ for open-ended evaluation (GPT4o score on LibriSQA and LongAudioBench; GPT5 score on SongCaps with Coverage and Correctness dimensions), and BLEU ↑ for speech translation on CoVoST2. For accuracy calculation, the paper uses "either exact string matching with the ground truth or CLAP-based retrieval following (Deshmukh et al., 2023), implemented with open-source AF-CLAP (Ghosh et al., 2025b)." For MCQ benchmarks where AF-Next outputs only the selected option (Instruct variant), direct matching is used; for more verbose outputs (Think variant), "multiple regex patterns to extract the chosen option" are applied. The paper notes in Appendix F that "all results reported in Table 1 are averaged over 3 independent runs."

  • Baselines. For prior SOTA LALMs, the paper reports results from their own reproduction (not published numbers), including: GAMA (Ghosh et al., 2024), Audio Flamingo (Kong et al., 2024), Audio Flamingo 2 (Ghosh et al., 2025b), Audio Flamingo 3 (Goel et al., 2025), Qwen-A(udio) (Chu et al., 2023b), Qwen2-A(udio) (Chu et al., 2024), Qwen2-A(udio)-(Inst)ruct, Qwen2.5-O(mni) (Xu et al., 2025a), Qwen3-O(mni) (Xu et al., 2025b), R1-AQA (Li et al., 2025a), Pengi (Deshmukh et al., 2023), Phi-4-mm (Abouelenin et al., 2025), Baichun Audio (Li et al., 2025b), Step-Audio-Chat (Huang et al., 2025), LTU (Gong et al., 2023b), LTU-AS (Gong et al., 2023a), SALMONN (Tang et al., 2023), AudioGPT (Huang et al., 2023), and Gemini models (2.0 Flash, 1.5 Pro, 2.5 Flash, 2.5 Pro; Team et al., 2023), as well as GPT-4o-audio (Hurst et al., 2024). Gemini is not evaluated on ASR benchmarks "due to low rate limits." For LongAudioBench, "for models that do not support longer audio, we follow the cascaded approach for evaluation proposed by Ghosh et al. (2025b)," which involves processing audio in segments and aggregating results.

  • Generation budget / compute accounting. The paper does not use a formalized generation budget concept or FLOPs-matched comparison between variants. Instead, each variant represents a qualitatively different inference-time strategy: AF-Next-Instruct performs direct answer generation (standard forward pass, no extra computation beyond the base model), AF-Next-Think generates additional reasoning tokens before answering (increased inference compute proportional to the length of the CoT trace, with the paper noting that prior models like Step-Audio-R1 generated >16K tokens on MMAU, while AF-Think-Time's chains average 446.3 words — a more concise but still non-trivial overhead), and AF-Next-Captioner generates a full audio caption using AF-Next and then feeds it to GPT-5.2 in text-only mode (incurring the cost of both the caption generation and the external LLM call). The paper does not quantify the relative compute costs of these inference strategies in FLOPs or wall-clock time.

  • Cross-validation / statistical protocol. The paper states in Appendix F that "all results reported in Table 1 are averaged over 3 independent runs. For accuracy-based metrics, we report mean accuracy. For ASR benchmarks, we report mean Word Error Rate (WER)." There is no mention of cross-validation for strategy selection (unlike the compute-optimal scaling framework in the reference example), which is appropriate since the paper does not perform adaptive strategy selection — each variant is evaluated directly against all baselines on all benchmarks. The "3 independent runs" provide basic statistical reliability but the paper does not report standard deviations, confidence intervals, or statistical significance tests, making it difficult to assess whether small differences (e.g., AF-Next-Instruct at 74.20 vs. AF3 at 72.42 on MMAU) are reliable or within sampling variance.

Main Quantitative Results

Audio Understanding and Reasoning Benchmarks

The headline result on MMAU-v05.15.25 (Table 1) shows AF-Next variants substantially outperforming the prior open SOTA (Audio Flamingo 3). AF-Next-Instruct achieves an average accuracy of 74.20 across all three subcategories (sound 78.80, music 74.23, speech 69.57), compared to AF3's 72.42 (sound 75.83, music 74.47, speech 66.97) — a 1.78-point absolute improvement. AF-Next-Think further improves to 75.01 (sound 78.70, music 74.73, speech 71.50), and AF-Next-Captioner achieves the best result at 75.76 (sound 79.87, music 75.30, speech 72.13), representing a 3.34-point gain over AF3. The gains are spread across all three subcategories, with the largest improvements in sound (+4.04 points from AF3 to AF-Next-Captioner) and speech (+5.16 points). The paper notes that "CoT reasoning helps on tasks requiring multi-step inference, while captioner augmentation is particularly effective when richer acoustic descriptions can ground the model's reasoning," consistent with the inter-variant pattern: Think and Captioner improve over Instruct, but Captioner provides larger gains in the sound and speech domains where rich acoustic description (ambient sounds, speaker characteristics, overlapping events) is most valuable.

On MMAR (Table 1), a reasoning-focused benchmark, AF-Next-Instruct achieves 59.7 versus AF3's 58.5 — a 1.2-point gain. The improvements are more substantial with test-time strategies: AF-Next-Think reaches 61.0, and AF-Next-Captioner achieves 63.0, a 4.5-point absolute improvement over AF3. The Captioner variant's particularly strong performance on MMAR is consistent with the hypothesis that reasoning over complex audio benefits from decoupling perception (what sounds are present, when they occur) from inference (what they mean), with a stronger text-only model (GPT-5.2) handling the latter.

On MMSU (Table 1), a benchmark where the closed-source Gemini-2.5-Flash leads at 66.1, AF-Next variants progressively close the gap: AF-Next-Instruct at 59.4, AF-Next-Think at 61.2, AF-Next-Captioner at 63.3. While none of the open variants surpasses Gemini-2.5-Flash, the Captioner variant reduces the gap from 6.7 points (Instruct vs. Gemini) to 2.8 points, and the paper notes this as substantively narrowing a substantial lead held by a closed-source model with unknown (and likely much larger) architecture and training data.

On MMAU-Pro (Table 1), the paper's most challenging reasoning benchmark, the results show a reversal of the typical closed-source advantage: AF-Next-Instruct achieves 56.9, which the paper claims "surpasses the closed-source Gemini-2.5-Pro (57.4)" — though this appears to be a reporting error, as 56.9 is less than 57.4. The text likely intends to say that AF-Next-Think surpasses Gemini-2.5-Pro: "AF-Next-Think extends this lead to 58.7," which does exceed the closed-source model's 57.4. This is a significant finding: on the hardest reasoning benchmark, a 7B fully open model with temporally grounded CoT training outperforms a much larger proprietary Gemini model. The Captioner variant is not evaluated on MMAU-Pro, which is a notable gap — given its strong performance on MMAU and MMAR, it might have pushed performance further.

Audio Captioning, Entailment, and Classification

On audio captioning (Table 1), AF-Next-Instruct improves CIDEr scores on both benchmarks relative to AF3: Clotho-v2 rises from 0.50 to 0.52, and AudioCaps from 0.70 to 0.74. These are modest but consistent improvements, suggesting the expanded training data (particularly the real-world audio and long-captioning datasets) improved the model's ability to generate precise acoustic descriptions. The paper does not report captioning results for the Think or Captioner variants, which is a notable omission — the Captioner variant would presumably excel at captioning by design, and reporting its CIDEr scores would validate the captioner pipeline's first stage.

On audio entailment (Table 1), AF-Next-Instruct achieves 94.2 on Clotho and 96.0 on AudioCaps, improving upon AF3's already strong results of 93.3 and 95.0. These are near-ceiling results (entailment tasks with binary decisions are inherently saturable), so the improvements, while consistent, are practically small.

On NonSpeech7k classification (Table 1), AF-Next-Instruct reaches 86.2 versus AF3's 85.7 — a 0.5-point gain. On CMM Hallucination, it achieves 87.0 versus 86.5 — a 0.5-point gain. On CompA-R-test, it reaches 98.7 versus 98.0. On LibriSQA, it achieves a GPT4o score of 9.3 versus AF3's 8.7. All of these are small, consistent improvements that collectively suggest broad but modest capability gains over AF3 across perception-oriented tasks, with the more substantial gains concentrated in the reasoning benchmarks where test-time strategies (Think, Captioner) provide additional benefit.

Music Understanding

AF-Next shows particularly strong improvements on music benchmarks (Table 1). On NSynth source classification, AF-Next-Instruct achieves 66.7, substantially outperforming the prior best open-source model (Pengi at 62.0) and representing a 4.7-point gain. On NSynth instrument classification, it achieves 81.7 versus Qwen-Audio's 78.8. On Medley-Solos-DB instrument recognition, AF-Next reaches 92.13, a notable improvement over Audio Flamingo 2's 85.80 — a 6.33-point gain. On MuchoMusic (perceptual version), AF-Next scores 75.6 compared to Music Flamingo's 74.5, a 1.1-point gain.

On SongCaps music captioning, AF-Next-Instruct achieves GPT5 coverage and correctness scores of 8.8 and 8.9, respectively, representing large absolute improvements over AF3's 6.7 and 6.2 — gains of 2.1 and 2.7 points on what appears to be a 10-point scale (the paper does not specify the scale range, but given the numbers, it is likely 0-10 with higher being better). These substantial music improvements are attributed to the incorporation of Music Flamingo data (Axis 1 of data curation) and the expansion of music-to-lyrics data for non-English songs. The paper does not evaluate the Think or Captioner variants on music benchmarks, so the complementarity findings are limited to general audio understanding.

Long Audio Understanding

The long-audio understanding results (Table 1) represent AF-Next's most dramatic improvements over both prior open models and closed-source alternatives. On LongAudioBench, AF-Next-Instruct achieves 73.9, which the paper reports as outperforming both AF3 (68.6) and the closed-source Gemini 2.5 Pro (60.4) — a 13.5-point gap over the closed-source model and a 5.3-point gain over the prior open SOTA. The gap is even larger on the speech-inclusive variant (+Speech): AF-Next reaches 81.2 compared to AF3's 72.9 and Gemini 2.5 Pro's 66.2 — a 15-point gap over the closed-source model and an 8.3-point gain over AF3.

These results are particularly significant because they validate the paper's central thesis: that making long-audio understanding a core training component (rather than a post-hoc alignment technique) and scaling to internet-scale real-world audio data produces capabilities that even much larger closed-source models lack. The paper states that these results "highlight AF-Next's strength in long-context audio and speech reasoning." However, the paper does not evaluate the Think variant on LongAudioBench, which is a notable omission — given that Temporal Audio Chain-of-Thought is explicitly designed for long-audio reasoning, the Think variant's performance on this benchmark would be a direct test of the temporal grounding hypothesis. The Captioner variant is also not evaluated on LongAudioBench.

Automatic Speech Recognition

On ASR benchmarks (Table 1), AF-Next-Instruct achieves competitive or state-of-the-art performance among LALMs across seven English benchmarks. On LibriSpeech test-clean, it achieves a WER of 1.54, improving over AF3's 1.57 and the prior best open-weight model Phi-4-mm at 1.67. On test-other, it achieves 2.76 versus AF3's 3.13 and Qwen2.5-O's 3.4 — a substantial 0.37-point improvement over AF3 on the more challenging noisy condition. The paper claims this "sets new lows among LALMs," though the comparison class (LALMs rather than dedicated ASR systems) is important — specialized ASR models trained on millions of hours achieve substantially lower WERs (e.g., sub-2.0 on test-other), but those are not generalist audio-language models.

On Common Voice 15, AF-Next achieves 7.2 WER (best), versus Phi-4-mm's 7.6 and AF3's 7.4. On VoxPopuli, it achieves 5.4 (best), versus Phi-4-mm's 5.9 and AF3's 5.6. On GigaSpeech, it achieves 9.8 (tied with Phi-4-mm), versus AF3's 10.2. On SPGISpeech, it achieves 1.91, slightly below AF3's 1.86 but competitive with the prior SOTA of Qwen2-A-Inst at 3.0 (note: the paper's Prior SOTA column shows Qwen2-A-Inst at 3.0 for SPGISpeech, suggesting AF-Next's 1.91 is substantially better than that prior SOTA even though slightly worse than AF3). On TEDLIUM, it achieves 3.3, below Phi-4-mm's 2.9 but competitive with AF3's 3.5.

The ASR results show consistent but not universal improvements over AF3, with gains concentrated in noisy and diverse conditions (test-other, Common Voice, VoxPopuli) and slight regressions on cleaner, domain-specific data (SPGISpeech, TEDLIUM). This pattern is consistent with the data curation strategy: adding diverse internet-scale audio and multilingual data improves robustness to acoustic variation, but slightly dilutes the model's specialization on any single domain.

Voice Understanding and Speech Translation

On VoiceBench (Table 2), AF-Next-Instruct achieves the highest scores on AlpacaEval (4.43), CommonEval (3.96), and OpenBookQA (80.9), outperforming both the open-weight Qwen2.5-Omni and the open-source AF3 across these subtasks. On OpenBookQA, AF-Next surpasses AF3 by over 14 points (80.9 vs. 66.81) and edges out Qwen2.5-Omni (79.12), while maintaining a strong AdvBench safety score of 98.84 (slightly below Qwen2.5-Omni's 99.62 but above AF3's 98.26). The OpenBookQA result is particularly striking — a 14-point gain over the prior model suggests the text-only data incorporation (Axis 9) successfully maintained or improved the model's general knowledge reasoning abilities even as it specialized in audio.

On CoVoST2 speech translation (Table 2), AF-Next demonstrates competitive multilingual capabilities against Phi-4-mm. For EN→X translation, AF-Next achieves the best BLEU scores on Chinese (38.2 vs. 38.0) and Arabic (21.9 vs. 9.9) — the Arabic result representing a "dramatic improvement" of 12 points over Phi-4-mm — while remaining competitive on Japanese (29.6 vs. 31.9) and German (31.4 vs. 35.3). For X→EN translation, AF-Next leads on Chinese (25.6 vs. 24.9) and Arabic (29.4 vs. 5.5), with the Arabic result again showing a 23.9-point improvement, while being competitive on Japanese (27.2 vs. 33.3) and German (33.0 vs. 37.9). The paper interprets this as: "AF-Next's multilingual speech understanding is particularly strong for underrepresented language pairs such as Arabic, while maintaining competitive performance on higher-resource languages." This is a meaningful finding because it suggests the multilingual data curation (Axis 8, with Emilia, CoVoST, MUST, and Granary) successfully addressed distributional gaps that even strong open-weight models like Phi-4-mm exhibit — Arabic speech translation performance more than doubling compared to the prior best model is strong evidence that targeted data curation for underrepresented languages was effective.

Ablation Studies and Robustness Checks

Three independent runs for all results (Appendix F): The paper states that "all results reported in Table 1 are averaged over 3 independent runs. For accuracy-based metrics, we report mean accuracy. For ASR benchmarks, we report mean Word Error Rate (WER)." This provides basic statistical reliability but the paper does not report variance (standard deviation, confidence intervals), making it impossible to assess whether the reported improvements (e.g., 74.20 vs. 72.42 on MMAU) are statistically significant or within noise. For a paper making claims about state-of-the-art performance across 20+ benchmarks, the absence of any variance reporting is a notable weakness.

Test-time strategy complementarity (Table 1, reported qualitatively): The paper demonstrates through its three-variant release that different test-time computation strategies are optimal for different tasks: AF-Next-Captioner leads on MMAU (75.76), MMAR (63.0), and MMSU (63.3); AF-Next-Think leads on MMAU-Pro (58.7); AF-Next-Instruct is the direct evaluation model for ASR, captioning, entailment, and classification tasks. This is presented as an empirical finding about complementarity rather than a formal ablation (the variants represent different training recipes, not just inference-time changes), but it effectively demonstrates that no single strategy dominates. A formal ablation isolating the effect of CoT training from the effect of the base SFT+RL training would require comparing AF-Next-Instruct with and without CoT prompting at inference time, which the paper does not report.

Captioner variant evaluation methodology (Section 4): The paper specifies that "To evaluate AF-Next Captioner, we use the model to generate a caption for the audio and prompt GPT-5.2 in text-only mode with the caption and the associated question." This means the Captioner results are not directly comparable to the Instruct and Think results in a controlled way — they involve a different reasoning model (GPT-5.2 vs. Qwen-2.5-7B) in addition to a different AF-Next checkpoint. The Captioner results demonstrate the value of decoupling perception and reasoning, but they do not isolate whether the gains come from the captioning quality, the external LLM's reasoning capability, or both. An ablation comparing AF-Next-Captioner with GPT-5.2 versus AF-Next-Captioner with Qwen-2.5-7B-as-reasoner would disentangle these factors but is not reported.

LongAudioBench cascaded evaluation for short-context models (Section 4): For baselines that do not support longer audio, the paper follows "the cascaded approach for evaluation proposed by Ghosh et al. (2025b)." This is a potentially significant confound for the LongAudioBench results: models evaluated via cascaded processing (segmenting audio and aggregating) are at a systematic disadvantage compared to models that process the full audio natively. AF-Next's large margin over baselines on LongAudioBench (73.9 vs. 68.6 for AF3, 60.4 for Gemini 2.5 Pro) may partially reflect this evaluation gap rather than purely superior long-audio understanding, though the paper's statement that AF3 also uses cascaded evaluation suggests the comparison to AF3 controls for this factor.

Baseline reproduction rather than quoted numbers (Section 4): The paper states: "We run all the mentioned baselines, and we report reproduced scores." This is a methodological strength — it ensures all models are evaluated under identical conditions (same prompts, same grading functions, same hardware constraints). However, it also means the reported baseline scores may differ from published numbers, and the paper does not provide a comparison table showing how their reproduced scores differ from originally published numbers for each baseline. This makes it difficult to assess whether any baseline underperformed due to reproduction issues.

No evaluation of multi-talker ASR, speaker diarization, or timestamped captioning: The paper explicitly states in Section 4: "Although AF-Next supports a broader range of capabilities, including multi-talker ASR, speaker diarization, timestamped captioning, and voice-to-voice interaction, etc, we restrict this submission to the most widely used benchmarks and leave evaluation on these additional tasks to future work." This is a significant limitation: several of the novel data axes (multi-talker speech, long captioning with timestamps, multi-audio data) are explicitly designed to enable capabilities that are never directly evaluated. The long-audio benchmarks (LongAudioBench) likely require some of these skills implicitly, but a direct evaluation of speaker diarization accuracy or timestamp precision would validate whether the targeted data curation actually produced the intended capabilities.

No evaluation of safety or instruction-following beyond VoiceBench: The paper includes 386K safety and instruction-following fine-tuning samples (Axis 7) and evaluates on AdvBench (a safety benchmark within VoiceBench), achieving 98.84. However, there is no systematic evaluation of refusal behavior, safety across harmful query types, or instruction-following accuracy beyond the VoiceBench subtasks. Given the paper's emphasis on safety as an overlooked capability ("largely overlooked in prior audio-language models"), the absence of a dedicated safety evaluation is a notable gap.

No comparison to the base Qwen-2.5-7B on text-only tasks: The paper incorporates text-only SFT data (Axis 9) "to maintain the text-reasoning abilities of the model" and prevent catastrophic forgetting. However, there is no evaluation of the model on standard text-only benchmarks (MMLU, GSM8K, HumanEval, etc.) to validate that text reasoning abilities were actually preserved relative to the base Qwen-2.5-7B or relative to AF3. The OpenBookQA result on VoiceBench (80.9, a 14-point gain over AF3) provides indirect evidence of preserved text reasoning, but a direct text-only benchmark evaluation would strengthen this claim.

No variance reporting for any result: As noted above, the paper reports means over 3 runs but provides no standard deviations, confidence intervals, or statistical tests. For a paper making empirical claims about state-of-the-art performance, this is a significant omission. The differences between AF-Next variants on some benchmarks are small (e.g., MMAU: 74.20 vs. 75.01 vs. 75.76), and without variance estimates it is impossible to determine whether these differences are reliable or consistent with sampling error.

Critical Assessment

The experiments demonstrate that AF-Next substantially outperforms the prior open SOTA (Audio Flamingo 3) across a broad range of audio understanding benchmarks, and that the three model variants exhibit complementary strengths consistent with their different training objectives. However, the experiments demonstrate something narrower than the paper's central narrative of "scaling beyond academic benchmarks" — they demonstrate that internet-scale data curation and multi-stage training improve benchmark performance, but the connection between benchmark improvements and real-world robustness is asserted rather than tested.

The paper's strongest and most convincing experimental finding is the long-audio understanding performance. The 73.9 on LongAudioBench (versus 68.6 for AF3 and 60.4 for Gemini 2.5 Pro) and 81.2 on the +Speech variant (versus 72.9 and 66.2) are large, interpretable margins that directly support the claim that native long-audio training — rather than post-hoc alignment on concatenated short clips — produces qualitatively better long-form comprehension. The gap to Gemini 2.5 Pro (a model with unknown but certainly much larger architecture and training data) is particularly compelling because it demonstrates that targeted data design can overcome scale disadvantages for specific capabilities. However, the cascaded evaluation protocol for short-context baselines (which may disadvantage them relative to AF-Next's native long-context processing) is a potential confound that the paper does not fully address.

The Temporal Audio Chain-of-Thought results are suggestive but incomplete. AF-Next-Think achieves 58.7 on MMAU-Pro versus AF-Next-Instruct's 56.9 — a 1.8-point gain — and the paper presents this as evidence for the value of temporally grounded reasoning. However, (1) the paper does not evaluate AF-Next-Think on LongAudioBench, which is the most direct test of whether temporal grounding improves long-audio reasoning specifically; (2) the paper does not compare AF-Next-Think to an ablation where the model is trained on CoT data without temporal grounding (i.e., generic audio CoT vs. temporally grounded CoT), which would isolate the contribution of the temporal grounding itself from the contribution of CoT training in general; (3) the paper does not report whether AF-Next-Think's reasoning traces are actually more concise than prior CoT models' (the claim that Step-Audio-R1 generates >16K tokens while AF-Think-Time chains average 446.3 words is about training data, not inference behavior — the inference-time trace length of AF-Next-Think is never reported). The temporal grounding hypothesis — that anchoring reasoning to timestamps improves faithfulness and reduces hallucination — is plausible and well-motivated, but the experimental evidence for it is weak. The MMAU-Pro result is consistent with the hypothesis but does not distinguish it from the alternative hypothesis that any CoT training would produce similar gains.

The complementary test-time strategies finding is empirically demonstrated but theoretically underdeveloped. The paper shows that Captioner performs best on MMAU, MMAR, and MMSU; Think performs best on MMAU-Pro; and Instruct is the direct evaluation model for perception tasks. This pattern is interpreted as "CoT reasoning helps on tasks requiring multi-step inference, while captioner augmentation is particularly effective when richer acoustic descriptions can ground the model's reasoning." However, the Captioner variant involves two confounded changes: it uses a different AF-Next checkpoint (mid-training rather than post-trained) AND a different reasoning model (GPT-5.2 rather than Qwen-2.5-7B). The Captioner's superior performance could be entirely attributable to GPT-5.2 being a stronger reasoning model, not to the decoupling of perception and reasoning. An ablation comparing AF-Next-Instruct + caption-then-answer pipeline (using GPT-5.2) versus AF-Next-Captioner + GPT-5.2 would help isolate the effect of the captioner training from the effect of the external reasoning model.

The open-vs-closed comparison is a genuine contribution but requires careful interpretation. AF-Next matches or exceeds Gemini 2.5 Pro on several benchmarks (LongAudioBench, MMAU-Pro), but Gemini is evaluated only where the authors could run it under rate limits, and the Gemini results for LongAudioBench (60.4) are surprisingly low — much lower than AF3's 68.6. This raises the question of whether the Gemini evaluation was conducted optimally (prompt engineering, output parsing, cascaded vs. native processing). The paper's commitment to reproducing all baselines is methodologically sound, but without reporting how their reproduced baseline scores compare to published numbers, it is difficult to assess whether any baselines underperformed. The paper is transparent about not evaluating Gemini on ASR "due to low rate limits," but the absence of Gemini results on music benchmarks (where Gemini might be stronger) and captioning tasks is an unavoidable limitation of evaluating closed models.

Missing evaluations weaken several claims: (1) Multi-talker ASR, speaker diarization, timestamped captioning, and voice-to-voice interaction are never evaluated despite being central to the data curation narrative (Axes 2 and 3); (2) Safety is evaluated only on AdvBench within VoiceBench, not on a dedicated audio safety benchmark; (3) Text-only reasoning abilities are not directly evaluated to validate the catastrophic forgetting prevention claim; (4) Inference-time compute costs (token counts for CoT traces, caption lengths) are never quantified, making it impossible to assess the efficiency tradeoffs of the different variants; (5) The Captioner variant is not evaluated on several benchmarks where it might excel (LongAudioBench, music tasks) or where the Think variant was evaluated (MMAU-Pro), creating an incomplete picture of complementarity.

The difficulty-dependence of different strategies — a central theme in contemporary LLM research on test-time compute — is not systematically explored. The paper does not break down results by question difficulty, audio duration, or acoustic complexity, which would reveal whether (for example) CoT helps only on long or complex examples while the Instruct variant suffices for simple ones. This is a missed opportunity to connect AF-Next to the broader literature on adaptive test-time compute allocation.

Despite these limitations, the experiments successfully demonstrate the paper's core empirical claim: that a 7B fully open LALM, trained with systematic gap-driven data curation at internet scale and equipped with multiple test-time reasoning strategies, can match or exceed much larger closed-source models on a broad range of audio understanding benchmarks, with particularly dramatic gains in long-audio understanding. The experiments are thorough in breadth (20+ benchmarks spanning diverse capabilities) but shallow in depth (limited ablations, no variance reporting, missing evaluations for several claimed capabilities), leaving open questions about which specific design choices are responsible for the gains and whether the benchmark improvements translate to the real-world robustness the paper's narrative emphasizes.

6. Limitations and Trade-offs

The Gap Between Claimed and Evaluated Capabilities

The assumption or constraint. The paper's data curation strategy is built around targeting specific capability gaps identified in prior Audio Flamingo models, and several of the 10 data axes are explicitly designed to enable capabilities that the paper promotes as central contributions. Section 1 lists "multi-talker ASR, timestamped prediction, long-form audio captioning, and instruction following" as new capabilities, and Axes 2–3 of data curation (multi-talker speech understanding, long captioning for real-world audio) are designed to teach these skills. However, the paper explicitly defers evaluation on these capabilities: "Although AF-Next supports a broader range of capabilities, including multi-talker ASR, speaker diarization, timestamped captioning, and voice-to-voice interaction, etc, we restrict this submission to the most widely used benchmarks and leave evaluation on these additional tasks to future work" (Section 4).

The consequence. A practitioner deciding whether to adopt AF-Next for multi-speaker transcription, speaker-attributed conversation analysis, or timestamped event localization has no empirical evidence that the model actually performs these tasks competently. The data curation narrative (45K multi-talker QA samples, 200K+ long videos with timestamped captioning) establishes that the model was trained on these capabilities, but training exposure does not guarantee acquisition — the paper provides no WER for multi-talker ASR, no diarization error rate, no timestamp precision metrics. A model could be exposed to multi-speaker data yet still conflate speakers or hallucinate timestamps, and the evaluation suite provides zero signal about whether this occurs. The paper's strongest results (LongAudioBench, ASR) show that some long-context and speech capabilities improved, but LongAudioBench evaluates understanding, not attribution or diarization, and the ASR benchmarks are single-speaker. The gap between the claimed capability envelope and the evaluated capability envelope means a deployer would need to conduct their own evaluation of these core features from scratch, which is a significant practical barrier.

What evidence exists in the paper. None. Multi-talker ASR, speaker diarization, timestamped captioning, and voice-to-voice interaction are never measured. The paper provides qualitative examples of training data (Figures 12–13 in Appendix A show timestamped captioning and multi-speaker ASR training examples), but no quantitative evaluation of the resulting model behavior. The absence is explicitly acknowledged in the paper as a scope limitation.

Mitigation status. The paper explicitly defers evaluation to future work. No partial evaluation or proxy metric is provided. This is a transparent but significant gap, particularly given that these capabilities are central to the paper's narrative of building a generalist LALM that handles real-world audio. For a practitioner, the takeaway is that AF-Next's competence on these tasks is unproven — the model might perform well (the data curation was targeted and scaled), but there is no evidence either way.


Benchmark-Centric Evaluation Undermines the "Beyond Benchmarks" Narrative

The assumption or constraint. The paper's central thesis is that AF-Next represents a shift away from benchmark-centric LALM development toward training on internet-scale real-world audio data to produce genuine real-world robustness. Section 1 states that "benchmark-centric training can yield models that perform well on curated test sets but generalize poorly to long, noisy, and diverse real-world audio," and positions AF-Next as an alternative. Yet the paper's entire evaluation (Tables 1–2) consists exclusively of standardized academic benchmarks — MMAU, MMAR, MMSU, LongAudioBench, AudioCaps, Clotho, LibriSpeech, etc. — the very type of evaluation the paper argues is insufficient for measuring real-world capability.

The consequence. This creates a fundamental tension: the paper critiques benchmark-centric development but validates its approach using benchmarks, making it impossible to determine whether AF-Next actually achieves the real-world robustness it claims. A model trained on internet-scale data might genuinely understand messy real-world audio better (the LongAudioBench results are consistent with this), or it might simply transfer better to benchmark test distributions because the training data happened to cover those distributions. Without evaluating on out-of-distribution, genuinely uncurated real-world audio (e.g., random YouTube videos, podcast episodes, meeting recordings with no benchmark-style QA annotations), the central claim of improved real-world robustness remains an assertion supported by proxy metrics. The benchmarks themselves may suffer from the very biases the paper identifies in Kumar et al. (2025b) — clean audio, limited speaker diversity, narrow acoustic conditions — and improvements on these benchmarks do not guarantee the claimed generalization. A practitioner deploying AF-Next for podcast transcription, call center analytics, or multimedia search cannot assume the benchmark gains translate to their domain.

What evidence exists in the paper. The LongAudioBench results (73.9 vs. Gemini 2.5 Pro's 60.4) and the speech translation results showing dramatic gains on under-resourced languages like Arabic (21.9 BLEU vs. Phi-4-mm's 9.9 for EN→AR) provide suggestive evidence that the data curation strategy improves performance on tasks that prior models struggled with. However, LongAudioBench is still a constructed benchmark with specific question types (needle-in-the-haystack, temporal understanding, subscene QA), and the paper does not report results on genuinely uncurated long-form audio understanding tasks. The CoVoST2 speech translation results are the strongest evidence of improved robustness to distributional shift (Arabic is a genuinely under-resourced language pair where prior models failed dramatically), but this is one data point across a 20-benchmark suite.

Mitigation status. Not addressed. The paper does not include any out-of-distribution or real-world deployment evaluation, and does not acknowledge this as a limitation of the experimental design. The tension between the "beyond benchmarks" narrative and the benchmark-only evaluation is a significant limitation that a practitioner should weigh heavily when deciding whether AF-Next will actually perform well on their specific real-world audio domain.


The Captioner Variant's Gains Are Confounded With an External Reasoning Model

The assumption or constraint. AF-Next-Captioner is evaluated using a pipeline where AF-Next generates a caption and GPT-5.2 (a powerful text-only LLM) answers the question based on that caption (Section 4: "To evaluate AF-Next Captioner, we use the model to generate a caption for the audio and prompt GPT-5.2 in text-only mode with the caption and the associated question"). The Captioner variant achieves the strongest results on several benchmarks: MMAU (75.76 vs. 74.20 for Instruct), MMAR (63.0 vs. 59.7), MMSU (63.3 vs. 59.4). The paper interprets this as evidence that "captioner augmentation is particularly effective when richer acoustic descriptions can ground the model's reasoning" (Section 5).

The consequence. The Captioner results are fundamentally confounded: the gains could be entirely attributable to GPT-5.2 being a stronger reasoning model than Qwen-2.5-7B, not to the decoupling of perception and reasoning that the paper claims as the insight. A practitioner considering the Captioner approach cannot determine whether the caption quality, the external reasoning model, or their combination is responsible for the performance. If the gains come primarily from GPT-5.2, then any LALM with decent captioning ability — even a weaker one — could achieve similar results when paired with GPT-5.2, making AF-Next-Captioner's specific training (mid-training checkpoint, long-captioning data) unnecessary. Conversely, if the gains come from AF-Next-Captioner's specifically improved captioning, then pairing it with a weaker reasoning model might not show benefits. The paper provides no experiment that isolates these factors: no test of AF-Next-Instruct + GPT-5.2, no test of AF-Next-Captioner + Qwen-2.5-7B-as-reasoner, no test of a weaker captioning model paired with GPT-5.2. This makes the Captioner results uninterpretable as evidence for the claimed insight about decoupling perception and reasoning.

What evidence exists in the paper. The paper reports the Captioner's end-to-end pipeline results (Table 1) and states the evaluation methodology, but provides no ablation or control experiment. There is no comparison of AF-Next-Captioner's caption quality to AF-Next-Instruct's caption quality (CIDEr scores are reported only for Instruct, not for Captioner), and no evaluation using the same reasoning model across different caption sources. The Captioner variant also uses a different checkpoint (mid-training rather than post-trained), adding a second confound: differences could arise from the training stage rather than the inference strategy.

Mitigation status. Not addressed or acknowledged. The paper presents the Captioner variant's results as evidence for the value of captioner augmentation without controlling for the external reasoning model or the training checkpoint. A practitioner adopting the Captioner approach would need to conduct their own ablation to determine whether the pipeline benefits come from AF-Next's captioning specifically or from GPT-5.2's reasoning, and whether the additional complexity and cost of the two-stage pipeline is warranted compared to simply using AF-Next-Instruct (or another captioning model) with GPT-5.2.


No Quantification of Inference-Time Compute Costs for the Three Variants

The assumption or constraint. The paper presents three model variants as complementary test-time computation strategies — Instruct (direct answer), Think (generates reasoning traces before answering), and Captioner (generates caption, then queries external LLM) — and interprets their performance differences in the language of test-time compute tradeoffs (Section 5: "CoT reasoning helps on tasks requiring multi-step inference, while captioner augmentation is particularly effective when richer acoustic descriptions can ground the model's reasoning"). However, the paper provides zero quantification of the inference-time compute costs: no token counts for CoT traces at inference time, no caption lengths, no FLOPs estimates, no wall-clock latency measurements, and no comparison of the total compute (AF-Next forward pass + optional GPT-5.2 API call) across variants.

The consequence. A practitioner cannot make an informed cost-benefit decision between variants. The Think variant gains 1.8 points on MMAU-Pro (58.7 vs. 56.9 for Instruct) — is this worth the additional CoT tokens? The paper observes that prior models like Step-Audio-R1 generate >16K tokens on MMAU, and while AF-Think-Time's training chains average 446.3 words (~600–900 tokens depending on tokenizer), the inference-time trace length is never reported. If AF-Next-Think generates 5K tokens of reasoning for a 1.8-point gain on a 500-question test set, that represents 2.5M additional tokens — a potentially substantial compute cost per unit of accuracy improvement. The Captioner variant's cost is even more opaque: it involves generating a caption (unknown length), then making an API call to GPT-5.2 (unknown cost, latency, and reliability). For latency-sensitive applications (voice assistants, real-time transcription), the Captioner's two-stage pipeline with an external API call may be completely infeasible regardless of accuracy gains. For cost-sensitive batch processing, the GPT-5.2 API costs could dominate the total expense. Without any quantification, the paper's narrative of "complementary strategies" is missing the dimension that matters most for deployment: efficiency.

What evidence exists in the paper. The paper states that AF-Think-Time training chains average 446.3 words (Section 3.2.1), which provides a rough lower bound on CoT trace length but does not reflect inference-time behavior (the model may generate shorter or longer traces depending on the prompt and difficulty). No inference-time token counts, latency measurements, or cost estimates are provided for any variant. The paper notes the inference cost of prior models ("Step-Audio-R1 often generate excessively long reasoning traces for audio QA (e.g., >16K tokens on MMAU)") as a motivation for temporal grounding, but does not provide the corresponding metric for its own model to validate that temporal grounding actually reduces trace length.

Mitigation status. Not addressed. The paper implies efficiency benefits (temporal grounding is hypothesized to produce "concise, evidence-based reasoning") but never measures them. A practitioner adopting AF-Next would need to run their own profiling to determine the latency, token cost, and (for Captioner) API cost of each variant on their specific workload, and would need to establish their own cost-accuracy Pareto frontier since the paper provides none of this information.


The Temporal Chain-of-Thought Contribution Cannot Be Isolated From Overall CoT Training

The assumption or constraint. The paper introduces Temporal Audio Chain-of-Thought as a key innovation: reasoning traces that explicitly ground intermediate steps to timestamps, trained on the AF-Think-Time dataset (43K samples from "challenging audio sources, including trailers, movie recaps, mystery stories, and long-form multi-party conversations," Section 3.2.1). The AF-Next-Think variant is produced by SFT on AF-Think-Time followed by GRPO (Section 3.2.2). The paper claims that temporally grounded CoT is valuable because (i) it helps the model navigate long audio, (ii) conditioning on timestamped events improves recognition, and (iii) it encourages concise, evidence-based reasoning (Section 2).

The consequence. The experimental design provides no way to determine whether the temporal grounding specifically — as opposed to CoT training in general — is responsible for AF-Next-Think's improvements. The comparison is AF-Next-Think (trained with temporally grounded CoT) versus AF-Next-Instruct (trained without any CoT). The 1.8-point gain on MMAU-Pro (58.7 vs. 56.9) could be entirely explained by the model learning to do multi-step reasoning at all, regardless of whether timestamps are involved. To isolate the temporal grounding contribution, the paper would need an ablation: AF-Next trained on generic audio CoT data (reasoning traces without timestamps, matched in difficulty and domain to AF-Think-Time) versus AF-Next-Think. Without this ablation, the temporal grounding hypothesis — which is presented as a principled contribution — is empirically indistinguishable from the null hypothesis that any CoT training on challenging long-form audio would produce similar gains. The paper's claim that temporal grounding "encourages concise, evidence-based reasoning" also cannot be evaluated without comparing trace lengths between temporally grounded and ungrounded CoT variants.

What evidence exists in the paper. AF-Next-Think outperforms AF-Next-Instruct on MMAU-Pro (58.7 vs. 56.9) and MMAU (75.01 vs. 74.20). These results are consistent with the temporal grounding hypothesis but also consistent with any CoT training hypothesis. The paper reports qualitative differences in the training data (AF-Think-Time uses timestamped captions, challenging long-form sources) but no controlled ablation. The MMAU-Pro result is the strongest evidence for AF-Next-Think's capability, but since MMAU-Pro questions may require reasoning over longer audio with temporally dispersed evidence, the Think variant's advantage could be due to the model learning to process longer contexts with more complex evidence (a property of the AF-Think-Time domain) rather than learning to anchor reasoning to timestamps (the specific mechanism).

Mitigation status. Not addressed. The paper presents Temporal Audio Chain-of-Thought as a novel reasoning paradigm and attributes AF-Next-Think's gains to temporal grounding without an experimental design that isolates this factor. A practitioner deciding whether to invest in temporally grounded CoT training for their own LALM cannot determine from this paper whether the temporal grounding is necessary, or whether training on challenging long-form CoT data without timestamps would yield equivalent benefits at lower annotation cost. The paper's ablation gap is particularly consequential because generating timestamped CoT data (requiring timestamped captions as input to the LLM synthesis pipeline) is substantially more expensive than generating untimestamped CoT data — if temporal grounding provides no marginal benefit, practitioners are wasting annotation budget on timestamp precision that doesn't improve model behavior.


Safety and Instruction-Following Evaluation Is Insufficient for the Claims Made

The assumption or constraint. The paper emphasizes safety as a core contribution, stating that safety and instruction-following have been "largely overlooked in prior audio-language models" (Section 3.2.1, Axis 7). The paper curates 386K safety fine-tuning samples, including "refusal-style responses that teach the model when and how to abstain appropriately" (Section 3.2.1), and includes qualitative examples in Figure 15 (Appendix A) showing the model refusing harmful queries. The paper's safety claims are central to its positioning as a responsibly deployed open model: Appendix B discusses potential risks (bias, hallucination, toxic outputs) and states that the 386K safety samples are intended to "mitigate these risks."

The consequence. The paper's safety evaluation is limited to a single benchmark: AdvBench within VoiceBench (Table 2), where AF-Next-Instruct achieves 98.84. AdvBench tests adversarial robustness in a narrow sense (whether the model can be prompted to produce harmful outputs), but does not evaluate the broader safety dimensions the paper's own risk discussion highlights: accent and dialect bias in ASR, hallucination rates on long audio where "evidence must be aggregated across extended temporal spans" (Appendix B), or the model's tendency to generate "plausible but factually incorrect responses." A practitioner deploying AF-Next in a safety-critical context (healthcare transcription, legal evidence review, accessibility tools) has no evidence about the model's failure modes along these dimensions. The 98.84 AdvBench score tells them the model can refuse explicitly harmful prompts, but not whether it exhibits racial bias in transcription accuracy, hallucinates medical information in long recordings, or fails to recognize when it should abstain on ambiguous audio. The paper provides no breakdown of ASR performance by speaker demographic (accent, dialect, gender), no hallucination rate on long audio, and no evaluation of refusal boundary calibration (does the model refuse appropriate requests? Does it comply with subtly harmful ones?).

What evidence exists in the paper. Only the AdvBench score in Table 2 and the qualitative examples in Figure 15. The paper provides no bias evaluation, no hallucination rate quantification, no safety-specific benchmark beyond AdvBench, and no analysis of whether the safety fine-tuning introduced over-refusal (declining benign requests) or under-refusal (complying with edge-case harmful requests). The VoiceBench results show strong performance on OpenBookQA (80.9), which suggests general instruction-following ability is intact, but instruction-following and safety are distinct dimensions.

Mitigation status. The paper acknowledges general risks in Appendix B but does not provide evaluation to quantify them. The authors state that the 386K safety samples "teach the model appropriate refusal and abstention behavior," but the evidence for whether this teaching was successful is limited to a single benchmark score. For a fully open model that the authors explicitly position as a resource for the research community and downstream applications, the absence of thorough safety evaluation is a significant gap — practitioners in regulated or high-stakes domains would need to conduct extensive red-teaming and bias auditing before deployment, with no guidance from the paper on what failure modes to expect.

7. Implications and Future Directions

How This Work Changes the Landscape

Audio Flamingo Next represents a methodological reframing rather than a paradigm shift — it does not introduce a new architecture or training algorithm, but it fundamentally changes how LALM researchers should think about the relationship between data curation, capability acquisition, and evaluation. The paper's central contribution is not any single technical innovation but rather a diagnostic-driven development methodology that inverts the standard benchmark-centric LALM pipeline. Prior LALM development followed a predictable pattern: assemble available academic datasets (AudioSet, Clotho, AudioCaps, LibriSpeech), train on their union, and evaluate on their test splits. This created a self-reinforcing cycle where models were optimized for whatever benchmarks happened to exist, and capabilities that benchmarks didn't measure — long-form comprehension, multi-speaker tracking, real-world acoustic robustness — were systematically underdeveloped because training data never required them.

AF-Next breaks this cycle by inserting an explicit gap analysis step before data collection: the authors empirically probe what their prior models fail at (counting, speaker diarization, multilingual ASR, multi-speaker overlapping speech), then design 10 targeted data axes to address each failure. This reframing matters because it decouples capability acquisition from benchmark availability. The strongest evidence that this methodological shift is genuine rather than superficial is the LongAudioBench result: AF-Next-Instruct achieves 73.9 versus Gemini 2.5 Pro's 60.4 — a 13.5-point gap — on a benchmark that did not guide data curation (the long-audio data was collected to address an identified capability gap, not to optimize for LongAudioBench). This demonstrates that diagnostic-driven data curation can produce capabilities that even much larger closed-source models, trained on presumably massive proprietary data, lack when their training was not explicitly designed around those capabilities. The speech translation results reinforce this: AF-Next achieves 21.9 BLEU on EN→AR (Arabic) versus Phi-4-mm's 9.9 — a 12-point improvement — because the multilingual data axis (Axis 8) targeted an identified distributional gap for under-resourced languages.

The paper also provides a reconciling explanation for conflicting findings in the audio CoT literature. Prior work on CoT for audio QA showed "only modest gains, especially compared to domains such as coding and agentic reasoning" (Section 3.2.1). The paper's diagnosis is that prior audio CoT datasets were built on short clips with simple QA, where multi-step reasoning was unnecessary — the CoT traces were performative rather than functional, leading to the verbose but unhelpful reasoning (>16K tokens on MMAU) the paper observes in models like Step-Audio-R1. By constructing AF-Think-Time from genuinely temporally complex sources (trailers, mystery stories, multi-party conversations) and grounding reasoning to timestamps, the paper demonstrates that CoT can help in audio — but only when the training data demands genuine evidence aggregation. This reframes the audio CoT research question from "does CoT help?" to "what structure must CoT traces have to be useful for a given reasoning type?" — a more productive framing that parallels how the text CoT literature distinguishes between different reasoning structures (chain-of-thought, tree-of-thought, program-of-thought) for different problem types.

The paper also shifts the burden of proof for open-vs-closed comparisons in LALMs. Prior to AF-Next, the dominant narrative was that closed-source models held a substantial lead on audio understanding — a claim that was difficult to evaluate because closed models' training data, architecture, and scale are unknown. AF-Next demonstrates that a 7B fully open model can match or exceed Gemini 2.5 Pro (estimated to be orders of magnitude larger) on long-audio understanding and complex reasoning benchmarks. This does not prove that open models will always equal closed ones, but it establishes that scale and proprietary data are not intrinsically necessary for strong audio understanding — thoughtful data design and targeted capability training can compensate. This finding makes the research direction of capability-driven data curation substantially more attractive (it demonstrably works) and the direction of scale-for-scale's-sake pretraining somewhat less attractive (AF-Next outperforms much larger models on specific capabilities through data design alone). Researchers considering whether to invest in scaling model parameters or in curating better training data now have empirical evidence that the latter can produce larger gains per unit of engineering effort, particularly for capability niches that large-scale generic pretraining overlooks.

However, the paper's benchmark-only evaluation limits the strength of its reframing. The core thesis — that training on internet-scale real-world audio produces genuine real-world robustness that benchmarks don't capture — is asserted rather than demonstrated. The benchmarks that show AF-Next's improvements (MMAU, LongAudioBench, ASR) are the same type of evaluation the paper critiques. This leaves open the possibility that AF-Next's gains are partially benchmark-transfer effects rather than genuine capability improvements. The paper's methodological reframing is compelling, but its validation is incomplete — and that incompleteness itself becomes a research direction (see below).

Follow-Up Research This Work Enables

Direct evaluation of real-world robustness using uncurated deployment audio. The paper's central claim — that internet-scale data curation produces better real-world audio understanding than benchmark-centric training — is never directly tested. A strong follow-up would evaluate AF-Next and baseline LALMs on genuinely uncurated, out-of-distribution audio: random YouTube videos stratified by genre (vlogs, lectures, music performances, news broadcasts), podcast episodes with naturalistic overlapping speech and background noise, meeting recordings with multiple speakers and poor acoustics, and call center recordings with diverse accents and audio quality. The evaluation would need task-specific metrics (transcription WER against human references, factual accuracy of QA responses, hallucination rate for long-form summarization) collected on a dataset that has no overlap with any training distribution. The key question is whether AF-Next's benchmark improvements translate to deployment conditions, or whether they represent a form of benchmark overfitting that happens to involve a larger and more diverse benchmark-like training set. This experiment is newly tractable because AF-Next is fully open (weights, data, and code are released), allowing researchers to run controlled comparisons against other open models and to analyze failure modes on real-world data. A negative result — AF-Next performing comparably to AF3 on uncurated audio despite large benchmark gains — would indicate that internet-scale data curation improves generalization within the benchmark manifold but not beyond it, refining our understanding of what "scaling beyond benchmarks" actually achieves.

Isolating the temporal grounding contribution from generic CoT training through controlled ablation. The paper claims that Temporal Audio Chain-of-Thought — reasoning traces explicitly anchored to timestamps — improves long-audio reasoning, but the experimental design cannot distinguish this from the effect of any CoT training on challenging long-form data. A controlled ablation would train three model variants from the same AF-Next-Instruct base: (1) SFT on AF-Think-Time as in the paper (temporally grounded CoT), (2) SFT on a version of AF-Think-Time where timestamp references are removed but reasoning structure is preserved (e.g., "the speaker first claims X, then later contradicts this" rather than "at 2:15, the speaker claims X; at 5:30, they contradict this"), and (3) SFT on generic audio CoT data from short clips (similar to prior CoT datasets like AF-Think). All three would then be evaluated on LongAudioBench, MMAU-Pro, and a custom benchmark of long-audio reasoning questions stratified by whether temporal precision is required (e.g., "what happened after the interruption?" requires temporal ordering; "what is the speaker's opinion?" does not). The key comparison is between variants (1) and (2): if temporally grounded CoT provides no benefit over temporally ungrounded CoT on temporal-precision questions, the paper's hypothesis about timestamp anchoring is disconfirmed, and the gains are attributable to general CoT training on challenging long-form data. If variant (1) substantially outperforms (2) on temporal-precision questions but not on non-temporal questions, the paper's hypothesis is supported and the finding has practical implications for data annotation strategy (timestamped captions are more expensive to generate than untimestamped ones). This ablation is tractable because the AF-Think-Time construction pipeline — timestamped caption generation followed by LLM triplet synthesis — can be modified to produce the ungrounded variant with identical question-answer pairs but timestamp-stripped reasoning chains.

Characterizing the inference-time compute efficiency of the three variants to establish a cost-accuracy Pareto frontier. The paper presents AF-Next-Instruct, AF-Next-Think, and AF-Next-Captioner as complementary test-time strategies but provides zero quantification of their relative compute costs. A follow-up study would measure for each variant, across all benchmarks evaluated in Table 1: (1) average output token count (including CoT traces for Think, caption tokens for Captioner), (2) wall-clock latency on fixed hardware (e.g., a single H100 GPU), (3) total FLOPs for the forward pass, and (4) for Captioner, the GPT-5.2 API latency and cost. The results would be plotted as accuracy-vs-cost curves for each benchmark, revealing the Pareto frontier: on what tasks is the Instruct variant already optimal (no extra compute needed), where does Think provide favorable cost-accuracy tradeoffs, and where does Captioner's two-stage pipeline with external API calls become justified? This study is directly enabled by AF-Next's open release — researchers can instrument the model to measure token counts and latency, and can compare against other open LALMs to establish whether AF-Next's cost-accuracy frontier is competitive. The paper's observation that prior models generate >16K-token CoT traces on MMAU while AF-Think-Time training chains average 446.3 words sets up a specific hypothesis: that temporally grounded CoT produces more concise traces at inference time. Measuring actual trace lengths would test this. A finding that AF-Next-Think's traces are comparable in length to prior CoT models (despite the training data being more concise) would suggest that conciseness at training time does not transfer to inference, and that additional mechanisms (length penalties, explicit stopping criteria) are needed.

Extending the capability-gap-driven methodology to video-language models and other modalities. The paper's diagnostic approach — systematically probe model failures, then curate targeted data to address each failure — is not specific to audio. A natural extension would apply the same methodology to video-language models (VLMs), where the temporal structure of video (events distributed across time, multi-speaker dialogue, overlapping visual and auditory cues) creates analogous challenges to long-audio understanding. A follow-up would: (1) identify failure modes in current open VLMs (e.g., poor temporal grounding, inability to track characters across scenes, conflation of visually similar events at different timestamps), (2) curate internet-scale video data targeting each failure (e.g., movie clips with character re-identification, instructional videos with procedural temporal reasoning, multi-camera sports footage with event localization), (3) incorporate Rotational Time Embeddings or an analogous visual-temporal positional encoding that grounds video frames to absolute timestamps, and (4) evaluate on both standard VLM benchmarks and out-of-distribution long-form video understanding tasks. This extension is enabled by AF-Next's demonstration that RoTE provides effective temporal grounding for audio — the analogous visual mechanism (replacing positional indices with frame timestamps in the video encoder's positional encoding) is a direct architectural transplant. The key open question is whether the temporal reasoning challenges that make grounded CoT valuable for audio (dispersed evidence requiring aggregation) transfer to video, or whether video's additional spatial and object-permanence cues make temporal grounding less critical.

Developing adaptive test-time strategy selection for LALMs. The paper demonstrates that different test-time strategies (Instruct, Think, Captioner) are optimal for different benchmarks — Captioner leads on MMAU, MMAR, and MMSU; Think leads on MMAU-Pro; Instruct is appropriate for ASR. But the paper provides no mechanism for selecting which strategy to use on a given input. A follow-up would develop a difficulty estimator or task classifier that, given an audio input and question, predicts which strategy will yield the highest accuracy. This could be implemented as a lightweight model trained on the paper's existing results: for each sample in the evaluation benchmarks, the ground-truth "best strategy" is known (the variant that scored highest on that benchmark), and features could include audio duration, question type (extracted via LLM classification), acoustic complexity proxies (number of detected sound events, speaker count estimate), and language. The policy could be evaluated in a cross-validation setup where strategy selection is optimized on one benchmark split and evaluated on another. This research direction is directly motivated by the paper's finding of strategy complementarity, and AF-Next's open release makes it feasible (researchers can run all three variants on new inputs to collect training data for the policy). A positive result — even a simple heuristic policy substantially outperforms any single variant — would establish that the next step beyond AF-Next is not a better single model but a meta-reasoning layer that routes inputs to appropriate inference strategies. This would connect the LALM literature to the broader test-time compute scaling literature in LLMs, where adaptive allocation policies are a central research thrust.

Stress-testing AF-Next on adversarial and edge-case audio to bound its robustness claims. The paper claims improved real-world robustness but evaluates only on standard benchmarks. A stress-test suite would probe AF-Next's limits: (1) audio with deliberately degraded quality (additive noise at varying SNR, compression artifacts, reverberation, clipped speech), (2) code-switched and heavily accented speech in the multilingual ASR settings where AF-Next showed strong Arabic performance — does this generalize to other under-resourced language pairs, or was the Arabic gain specific to the training data distribution?, (3) adversarial audio constructed to fool the AF-Whisper encoder (e.g., imperceptible perturbations that change ASR output, following the adversarial attack literature for speech models), (4) long-context stress tests where relevant information is placed at progressively later positions in a 30-minute audio (a "needle-in-the-haystack" with varying haystack size), measuring whether the RoTE temporal grounding actually prevents the lost-in-the-middle phenomenon observed in long-context LLMs, and (5) multi-speaker scenarios with increasing numbers of speakers (2, 4, 8, 16) to determine where AF-Next's speaker tracking breaks down. These stress tests are valuable precisely because they might produce negative results — if AF-Next degrades sharply on Arabic-accented English despite strong Arabic speech translation, that reveals a specificity to the training data rather than a general multilingual robustness. If the model loses track of speakers beyond 4–5 simultaneous speakers despite multi-talker training data, that bounds the practical utility of the multi-speaker data axis. The stress-test suite would transform the paper's qualitative robustness claims into quantitative capability boundaries, providing practitioners with concrete expectations about deployment conditions where AF-Next will and will not work.

Practical Applications and Downstream Use Cases

Long-form podcast and meeting transcription with speaker attribution. AF-Next's combination of strong ASR performance (WER of 2.76 on LibriSpeech test-other, 5.4 on VoxPopuli) and native long-audio processing up to 30 minutes makes it immediately applicable to transcription of long-form spoken content — podcasts, earnings calls, academic lectures, and business meetings. The key advantage over dedicated ASR systems is that AF-Next can simultaneously transcribe, attribute speakers (via the multi-talker training in Axis 2), and answer content questions (via the Instruct or Think variants). A podcast analytics platform could deploy AF-Next to: (1) produce timestamped transcripts with speaker labels, (2) answer user queries like "what did the guest say about the merger at the 15-minute mark?", and (3) generate structured summaries with temporal grounding ("the first 10 minutes covered quarterly results; the discussion shifted to regulatory concerns at 12:30"). The 81.2 score on LongAudioBench +Speech (versus Gemini 2.5 Pro's 66.2) suggests AF-Next would substantially outperform closed-source alternatives on these tasks, and the fully open release means the platform can self-host without API dependencies or usage restrictions. The key deployment risk is the unevaluated multi-talker ASR and speaker diarization accuracy — a practitioner would need to validate these specific capabilities on their domain before deployment, since the paper provides no metrics.

Multilingual content indexing and search for under-resourced languages. The speech translation results — particularly the dramatic gains on Arabic (21.9 BLEU for EN→AR versus Phi-4-mm's 9.9, 29.4 for AR→EN versus 5.5) — position AF-Next as a uniquely capable model for multilingual audio processing in languages that major commercial ASR systems under-serve. A media monitoring organization tracking Arabic-language news broadcasts, podcasts, and social media audio could use AF-Next to: (1) transcribe Arabic speech with competitive accuracy, (2) translate Arabic content to English for cross-lingual search, and (3) answer content questions directly in either language. The 12-point BLEU improvement for EN→AR and 24-point improvement for AR→EN over the prior best open-weight model mean that for Arabic — and potentially for other under-resourced languages included in the multilingual training data (Emilia covers multiple European languages, Granary covers 25 languages) — AF-Next's accuracy is in a different qualitative regime than prior open models. The open release is critical here: organizations working with under-resourced languages often cannot use commercial APIs that don't support their language, or cannot afford per-character API pricing for high-volume monitoring. Self-hosting AF-Next with no usage restrictions enables continuous processing of large audio streams. The key unknown is whether the Arabic gains generalize to other under-resourced languages in the training data (e.g., languages in Granary, CoVoST beyond Arabic and Chinese), or whether there is something specific about Arabic that the data curation pipeline happened to capture well.

Accessibility tools with long-form audio comprehension. AF-Next's native long-audio understanding and strong ASR performance enable assistive technology applications that require processing extended audio content — lectures, audiobooks, live events — for users who are deaf, hard of hearing, or have auditory processing disorders. A lecture assistance tool could process a 90-minute university lecture (split into three 30-minute AF-Next chunks) to: (1) generate real-time captions with high accuracy (LibriSpeech test-clean WER of 1.54 suggests near-perfect transcription in clean conditions), (2) produce a structured summary with timestamped section boundaries, and (3) enable question-answering during review ("what formula did the professor derive at 45 minutes?"). The LongAudioBench +Speech score of 81.2 is directly relevant here — it measures exactly the kind of long-form speech understanding this application requires. The 73.9 on LongAudioBench (general audio) further suggests the tool could handle multimedia lectures with mixed speech, environmental sounds, and music. AF-Next's fully open release is essential for accessibility applications, which often require customization for specific domains (medical terminology, legal proceedings, STEM notation) and cannot depend on proprietary APIs that may change pricing, discontinue services, or impose usage limits. The key practical limitation is that the paper does not evaluate AF-Next on audio longer than 30 minutes (the maximum training length), so processing a 90-minute lecture would require chunking with unknown degradation at chunk boundaries — a practitioner would need to evaluate whether temporal coherence is maintained across chunk boundaries, and whether the RoTE timestamps correctly handle the chunk transition.

Music education and analysis tools with instrument recognition and lyrical understanding. AF-Next's strong music understanding results — 66.7 on NSynth source classification (versus Pengi's 62.0), 81.7 on NSynth instrument classification (versus Qwen-Audio's 78.8), 92.13 on Medley-Solos-DB instrument recognition (versus Audio Flamingo 2's 85.80) — combined with the expanded music-to-lyrics data for non-English songs (Axis 1) make it suitable for music education and analysis applications. A music tutoring platform could deploy AF-Next to: (1) identify instruments in a student's recording and provide feedback on technique ("the guitar strumming pattern is inconsistent at 0:45"), (2) transcribe and translate lyrics for language learning through music, and (3) answer analytical questions about musical structure ("what key change occurs in the bridge?" — capabilities likely present from the Music Flamingo data incorporation). The SongCaps captioning scores (GPT5 coverage: 8.8, correctness: 8.9 versus AF3's 6.7 and 6.2) indicate AF-Next can generate rich, accurate music descriptions that could power search ("find songs with a saxophone solo in the bridge") and recommendation features. The MuchoMusic perceptual score of 75.6 versus Music Flamingo's 74.5 provides additional validation of music understanding breadth. The key advantage over specialized MIR tools is AF-Next's generality: the same model handles instrument recognition, lyric transcription in multiple languages, musical structure analysis, and open-ended QA, reducing the integration complexity of building a comprehensive music education platform. The known limitation is that the paper does not evaluate AF-Next on music-specific tasks beyond the reported benchmarks — tempo estimation, key detection, chord recognition, and beat tracking accuracy are unknown, and a music education tool would need to validate these capabilities independently.