Pith. sign in

REVIEW 4 major objections 5 minor 3 cited by

Learning Sparsity for Effective and Efficient Music Performance Question Answering

T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read Sparsify, a sparse-learning pipeline for music performance question answering, reports state-of-the-art accuracy on two MUSIC-AVQA benchmarks while cutting training time by 28.32% and retaining 70–80% of full-data accuracy from a 25% key…

desk verdict Competent integration of three borrowed sparsification tricks with internally consistent numbers, but the SOTA accuracy claim is untestable without a dense Amuse baseline. read the letter →

arxiv 2506.01319 v1 pith:QHZLGHUC submitted 2025-06-02 cs.SD cs.CVcs.MMeess.AS

classification cs.SDcs.CVcs.MMeess.AS
keywords audio-visualquestionansweringmusicperformanceunderstandingsparselearningtokenpruningdatasubsetselectiontrainingefficiencyMUSIC-AVQAmultimodalreasoning
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Music performance videos pack dense continuous audio and tightly synchronized visuals, and most existing question-answering models ingest every token and every sample. Sparsify tries to show that deliberately discarding information—masking half the audio/visual tokens, merging redundant tokens, and training on a small hard-sample subset—makes the model both more accurate and faster. On MUSIC-AVQA and MUSIC-AVQA v2.0 it reports the best overall accuracy among the compared methods, 81.75% and 81.30%, and cuts training time from 173 to 124 hours. It also introduces a key-subset selection algorithm that picks roughly 10,819 samples (about 25% of the v2.0 training set) and keeps 70–80% of full-data accuracy across models. The intended payoff is that sparsity, not more data, is the path to efficient multimodal reasoning in dense audio-visual settings.

What carries the argument

The load-bearing mechanism is three cooperating sparsification modules wrapped around a universal audio-visual-language encoder. Sparse Masking randomly drops 50% of video patches and mel-spectrogram audio tokens during the first three epochs. Adaptive Sparse Merging ranks tokens by cross-modal attention scores, keeps the top-quartile tokens (selected by interquartile range), and merges the rest into the nearest key token by key-vector similarity. Sparse Subset Selection computes per-sample losses, splits samples into hard and easy groups, aggregates hard-sample scores across epochs with a decay ratio, and uses InfoBatch to rescale gradients and prune easy samples. Together they reduce token count and dataset size while preserving question-relevant information.

What would settle it

Run the same universal encoder with all three sparsification components disabled on both MUSIC-AVQA test sets and compare accuracy with and without sparsification; if the dense encoder reaches 81.75% or higher without masking, merging, or subset selection, then the reported state-of-the-art result is not caused by sparse learning.

Watch

Extended reading notes

Core claim

Sparsify is claimed to be the first Music AVQA method that explicitly builds sparsification into every stage of training. Its universal encoder—built on a Swin-V2 video backbone, an HTS-AT audio backbone, and a text transformer—is trained with random 50% masking of audio and visual patches, adaptive merging of low-salience tokens into nearby key tokens selected by cross-modal attention, and InfoBatch-guided pruning that keeps hard examples while rescaling gradients. The paper reports that this pipeline outperforms AVST, LAVisH, and DG-SCT on both MUSIC-AVQA (81.75 overall) and MUSIC-AVQA v2.0 (81.30 overall), with the largest margins on audio-visual question types. Training time for the v2.0 benchmark drops 28.32% compared to a dense variant with all three strategies disabled, and a selected 25% key subset still yields 60.17% accuracy for Sparsify and 55.21% for DG-SCT, about 74% of their full-data scores.

Load-bearing premise

The accuracy results assume the three sparsification strategies, not the underlying encoder, are what lifts Sparsify above the baselines; the paper never reports the dense encoder's test accuracy, so this attribution is unverified.

Editorial extensions

If this is right

  • If the reported numbers hold, a Music AVQA model can beat strong published baselines while training on 25% of the data at 72% of the wall-clock time, so dense audio-visual inputs are not a prerequisite for accuracy.
  • The key-subset selection transfers across at least two different model architectures, suggesting the selected samples carry dataset-level difficulty information rather than model-specific quirks.
  • Sparse Masking plus Adaptive Sparse Merging improves audio-visual QA by large margins (up to +11.24% over DG-SCT on audio-visual questions), indicating that aggressive token reduction is compatible with fine-grained reasoning.
  • Training time savings are additive: 50% masking in early epochs, token merging throughout, and gradient-rescaled sample pruning each contribute to the 28.32% reduction.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The authors leave untested whether the accuracy gains come from sparsification or from the stronger universal encoder; an ablation that runs the dense Amuse encoder on the same benchmarks would isolate the cause.
  • Because the key subset retains roughly the same fraction of performance for two different models, a promising extension is to use the algorithm to build a reusable coreset for other dense multimodal benchmarks, reusing the selected indices across architectures.
  • The fixed 50% masking rate and the 0.618 decay ratio are tuned on Music AVQA; a testable extension would sweep these hyperparameters on datasets with different redundancy levels to see whether the efficiency gains hold.
  • If sparse training truly improves accuracy by suppressing background clutter, the same masking and merging recipe could transfer to other dense continuous audio-visual tasks such as instrument counting in orchestras or action recognition in concerts.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper introduces Sparsify, a sparse learning framework for Music Performance Audio-Visual Question Answering (Music AVQA). Sparsify combines three sparsification strategies—random masking of audio/visual tokens, adaptive token merging based on cross-modal attention, and InfoBatch-style curriculum subset selection—integrated into the authors' Amuse universal encoder. The manuscript reports state-of-the-art accuracy on MUSIC-AVQA (81.75 overall) and MUSIC-AVQA v2.0 (81.30), a 28.32% training-time reduction versus a dense variant (124 vs. 173 hours), and a key-subset selection method that uses ~25% of the training data while retaining 70–80% of full-data accuracy across models.

Significance. If the claims are substantiated, Sparsify would offer a practical efficiency improvement for a challenging multimodal QA task, and the key-subset selection idea has potential value for data-efficient audio-visual learning. The paper's reported arithmetic is internally consistent (e.g., 60.17/0.7401 matches the 81.30 full-data accuracy), which lends some credibility. However, the experimental design currently does not isolate the contribution of sparsification from the choice of encoder, because the dense Amuse baseline is never evaluated for accuracy and no ablations are provided for the three proposed strategies. The key-subset experiment also lacks a random-subset control, leaving the selection algorithm's benefit unproven. These are load-bearing gaps in the current submission.

major comments (4)
  1. [§3.2, Table 1; §2.1] The state-of-the-art claim is not attributable to sparse learning because the paper never reports the accuracy of the dense Amuse variant (all three sparsification strategies disabled). The Universal Encoder in §2.1 is the authors' own Amuse model with Swin-V2 and HTS-AT backbones, while the baselines AVST, LAVisH, and DG-SCT use different backbones. Figure 5 reports only training time (124 vs. 173 hours), not accuracy. Without the dense-Amuse accuracy on both MUSIC-AVQA and MUSIC-AVQA v2.0, the gains in Table 1 could stem entirely from the encoder choice, making the abstract's 'maintaining accuracy' and the SOTA headline untestable. Please add the dense variant's accuracy on both datasets.
  2. [§2.2–2.4] No ablation isolates the contribution of Sparse Masking, Adaptive Sparse Merging, and InfoBatch. The three strategies are introduced as independent components, but all experiments combine them. To support the claim that each strategy contributes to accuracy or efficiency, report results for each strategy enabled individually and in pairs, in addition to the full combination and the dense baseline.
  3. [§3.3, Figure 4] The key-subset experiment does not demonstrate that the selection algorithm outperforms random subsetting. Comparing subset training to full-data training only shows that 25% of the data retains 74% of performance; a random 25% subset control is needed to show that the choice of samples matters. Moreover, the subset is trained for 1 warm-up + 15 epochs (Section 3.1) while the full-data training budget is not specified to be matched, so the reported retention ratio may reflect unequal compute rather than the selection algorithm's benefit.
  4. [Algorithm 1] Algorithm 1 is internally inconsistent. The variable t is described as a temporary count vector but is never reset between epochs, so EpochsList accumulates cumulative counts rather than per-epoch scores; the merge step then adds these cumulative vectors with weights w_g, which does not correspond to the text's description of 'scores aggregated by epoch.' As written, the algorithm is not reproducible. Please correct the pseudocode to match the implemented procedure and specify how scores are normalized across epochs.
minor comments (5)
  1. [Figure 1] The caption text 'QA with Dense AudiofromMUSIC-AVQA v2.0' has a missing space; 'Audiofrom' should be 'Audio from'.
  2. [§3.1 / §3.3] The text uses '10,819 samples' in Figure 4 and 'Num = 10,819 (i.e., the number of QA pairs)' in Section 3.1; please use consistent terminology, because QA pairs and samples may not be identical.
  3. [§2.3] The attention formula a = softmax(Q·K^T / sqrt(d)) V appears to define the full attention output, while the text says it evaluates token importance; clarify that a denotes the attention weights before the final multiplication by V.
  4. [Figure 4] The bar chart lacks axis labels; add both axis labels and numeric accuracy values to make the comparison readable.
  5. [Algorithm 1] The symbol N is used for the number of samples in Algorithm 1, while the later text uses Num for the key-subset size; rename one of these to avoid confusion.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the SOTA and efficiency claims are empirical measurements on external benchmarks; the missing dense-Amuse ablation is an experimental control gap, not a circular reduction.

full rationale

The paper's central claims are empirical results measured on the fixed external benchmarks MUSIC-AVQA and MUSIC-AVQA v2.0, not quantities derived from their own definitions. Table 1 directly reports accuracies for Sparsify and three published baselines; Figure 5 reports training time for Sparsify against a dense variant that disables all three sparsification strategies, providing a controlled comparison for the 28.32% efficiency gain. The key-subset experiment (Figure 4) reports measured accuracies on the selected subset versus full-data training. Although the Universal Encoder is the authors' own Amuse framework (cited as Diao et al., 2024), the paper does not derive its results from that citation; it runs experiments. The absence of a reported dense-Amuse accuracy means that the attribution of accuracy gains specifically to sparsification is not isolated from the encoder choice, but this is a missing ablation, not a case where a prediction is equivalent to an input by construction or where a load-bearing argument reduces to a self-citation. No equation equates a fitted or selected quantity with the reported outcome, and no claimed result is defined in terms of the target conclusion. The paper is self-contained against external benchmarks, so the appropriate circularity score is 0.

Assumptions & free parameters 8 free parameters · 5 assumptions · 0 invented entities

The central claim rests on hand-set hyperparameters (masking ratio and schedule, InfoBatch constants, Algorithm 1's k and r, the 10,819-sample subset size, and the 16-epoch subset budget) and on domain assumptions inherited from prior methods (attention as importance, InfoBatch's unbiased pruning, comparability of published baselines, pretrained encoder transfer). No new physical or conceptual entities are introduced; all components are adaptations of published methods (Amuse, PruMerge, InfoBatch, masking).

free parameters (8)
  • Sparse masking ratio = 50%
    Randomly masks 50% of visual image patches and audio mel-spectrogram patches; hand-set with no sweep reported (Sections 2.2, 3.1).
  • Masking schedule = first 3 epochs only
    Sparse Masking is disabled after epoch 3 in the full dataset configuration; the choice is not motivated or swept (Section 3.1).
  • InfoBatch ratio = 0.5
    Pruning ratio for InfoBatch, taken from Qin et al. (2024); affects gradient rescaling and effective data volume (Section 3.1).
  • InfoBatch delta = 0.875
    Gradient rescaling constant, taken from Qin et al. (2024); controls easy-sample gradient weights (Section 3.1).
  • Key-subset decay ratio r = 0.618
    Weights epoch groups in Algorithm 1 as r^(g-1); hand-set to the golden-ratio conjugate, no sensitivity analysis (Algorithm 1, Section 3.1).
  • Merge group size k = 3
    Number of epochs grouped when aggregating loss counts in Algorithm 1; hand-set (Algorithm 1, Section 3.1).
  • Key-subset size Num = 10,819 QA pairs (~25% of training data)
    Top-n selection count for the key-subset; determines the 25% data-efficiency claim (Algorithm 1, Section 3.1).
  • Key-subset training budget = 1 warm-up + 15 epochs
    Epoch schedule for subset experiments; differs from the full-data schedule, confounding the 70-80% retention comparison (Sections 3.1, 3.3).
assumptions (5)
  • domain assumption Cross-modal attention scores a = softmax(QK^T/sqrt(d))V identify task-relevant tokens
    Token importance for pruning and merging is defined by cross-modal attention in Section 2.3, following PruMerge; if attention is not a faithful importance signal, the merging step discards useful tokens.
  • domain assumption InfoBatch loss-based difficulty scoring preserves training distribution statistics after pruning
    Section 2.4 adopts InfoBatch's unbiased pruning claim (Qin et al., 2024), i.e., gradient rescaling on easy samples keeps the reduced data statistically similar to the full set.
  • domain assumption Published baseline accuracies (AVST, LAVisH, DG-SCT) are directly comparable to Sparsify's numbers
    Table 1 compares against numbers from prior papers using different base encoders and training protocols; the paper does not re-run baselines under a shared protocol.
  • domain assumption Pretrained encoder backbones (Swin-V2, HTS-AT, standard question transformer) transfer to Music AVQA
    The Universal Encoder in Section 2.1 relies on these pretrained models as inputs from prior literature.
  • ad hoc to paper The three sparsification methods remain effective when combined with unchanged default hyperparameters
    PruMerge, InfoBatch, and random masking are applied with their original hyperparameters (IQR top quartile, ratio 0.5, delta 0.875), not re-tuned for music data; no ablation isolates each component's contribution.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Learning Sparsity for Effective and Efficient Music Performance Question Answering." pith.science (2026). https://pith.science/paper/QHZLGHUC

@misc{pith2026250601319,
  author       = {Pith},
  title        = {Pith review of: Learning Sparsity for Effective and Efficient Music Performance Question Answering},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/QHZLGHUC}},
  note         = {Machine review of arXiv:2506.01319}
}
read the original abstract

Music performances, characterized by dense and continuous audio as well as seamless audio-visual integration, present unique challenges for multimodal scene understanding and reasoning. Recent Music Performance Audio-Visual Question Answering (Music AVQA) datasets have been proposed to reflect these challenges, highlighting the continued need for more effective integration of audio-visual representations in complex question answering. However, existing Music AVQA methods often rely on dense and unoptimized representations, leading to inefficiencies in the isolation of key information, the reduction of redundancy, and the prioritization of critical samples. To address these challenges, we introduce Sparsify, a sparse learning framework specifically designed for Music AVQA. It integrates three sparsification strategies into an end-to-end pipeline and achieves state-of-the-art performance on the Music AVQA datasets. In addition, it reduces training time by 28.32% compared to its fully trained dense counterpart while maintaining accuracy, demonstrating clear efficiency gains. To further improve data efficiency, we propose a key-subset selection algorithm that selects and uses approximately 25% of MUSIC-AVQA v2.0 training data and retains 70-80% of full-data performance across models.

Figures

Figures reproduced from arXiv: 2506.01319 by the authors.

Figure 1
Figure 1. Dense Audio QA (Liu et al., 2024) vs. Sparse Audio QA (Chen et al., 2020). Music performances con￾tain dense and continuous audio signals with substantial inherent redundancy, much of which is irrelevant to the question being asked. Sparse learning has the poten￾tial to effectively filter out such redundancies, enabling more efficient and accurate reasoning. ample shown in [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Overview of the Sparsify framework. Sparsify integrates a (a) Universal Encoder and three sparsifi￾cation components: (b) Sparse Masking to reduce redundancy by masking audio and visual tokens; (c) Adaptive Sparse Merging to select and merge key multimodal tokens based on similarity; and (d) Sparse Subset Selection to prioritize impactful samples and reweight gradients with InfoBatch (Qin et al., 2024). To address t… view at source ↗
Figure 3
Figure 3. Radar charts comparing Sparsify with state￾of-the-art methods on MUSIC-AVQA and MUSIC￾AVQA v2.0, across various question types. 3.2 Comparison with State-of-the-Art [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Accuracy comparison of DG-SCT and Sparsify trained on the full dataset and the key-subset (∼25% of data) (Liu et al., 2024). Training on the key-subset maintains strong performance despite substantial data reduction. tion answering by jointly reducing modality￾specific…
Figure 5
Figure 5. Figure 5: illustrates the training efficiency gains of Sparsify, which reduces total training time from 173 hours to 124 hours—a 28.32% improve￾ment over its dense variant. These gains reflect the combined effect of three sparsification strate￾ [PITH_FULL_IMAGE:figures/full_fig…

Discussion (0). Sign in to comment.

Forward citations

Cited by 3 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. FakeSV-VLM: Taming VLM for Detecting Fake Short-Video News via Progressive Mixture-Of-Experts Adapter

    cs.MM 2025-08 reject novelty 5.0 of 10

    FakeSV-VLM reaches 90.22% and 89.30% accuracy on FakeSV and FakeTT by adding a two-stage MoE adapter and contrastive alignment to InternVL2.5-8B.

  2. A Multimodal Deep Learning Framework for Early Diagnosis of Liver Cancer via Optimized BiLSTM-AM-VMD Architecture

    cs.LG 2025-09 reject novelty 3.0 of 10

    The paper claims a BiLSTM-AM-VMD model achieves AUC 0.963 for early HCC diagnosis, but the evidence is undermined by contradictory dataset descriptions and missing artifacts.

  3. Multi-Modal Machine Learning Framework for Predicting Early Recurrence of Brain Tumors Using MRI and Clinical Biomarkers

    cs.LG 2025-09 reject novelty 3.0 of 10

    XGBoost combining MRI radiomics and clinical biomarkers reportedly reaches C-index 0.782 for early brain tumor recurrence, but the paper's methods describe a liver-cancer cohort and no evaluation of its claimed tempor...

Reference graph

Works this paper leans on

82 extracted references · 64 canonical work pages · cited by 3 Pith papers

  1. [1]

    Asma Ben Abacha and Pierre Zweigenbaum. 2015. Means: A medical question-answering system combining nlp techniques and semantic web technologies. Information Processing & Management

  2. [2]

    Stanislaw Antol, Aishwarya Agrawal, Jiasen Lu, Margaret Mitchell, Dhruv Batra, C Lawrence Zitnick, and Devi Parikh. 2015. Vqa: Visual question answering. In International Conference on Computer Vision

  3. [3]

    Sagar S Arya, Sofia B Dias, Herbert F Jelinek, Leontios J Hadjileontiadis, and Anna-Maria Pappa. 2023. The convergence of traditional and digital biomarkers through ai-assisted biosensing: A new era in translational diagnostics? Biosensors and Bioelectronics

  4. [4]

    Alexandre Blanco-Gonzalez, Alfonso Cabezon, Alejandro Seco-Gonzalez, Daniel Conde-Torres, Paula Antelo-Riveiro, Angel Pineiro, and Rebeca Garcia-Fandino. 2023. The role of ai in drug discovery: challenges, opportunities, and strategies. Pharmaceuticals

  5. [5]

    Florian Bordes, Richard Yuanzhe Pang, Anurag Ajay, Alexander C Li, Adrien Bardes, Suzanne Petryk, Oscar Ma \ n as, Zhiqiu Lin, Anas Mahmoud, Bargav Jayaraman, et al. 2024. An introduction to vision-language modeling. arXiv preprint arXiv:2405.17247

  6. [6]

    Zal \'a n Borsos, Rapha \"e l Marinier, Damien Vincent, Eugene Kharitonov, Olivier Pietquin, Matt Sharifi, Dominik Roblek, Olivier Teboul, David Grangier, Marco Tagliasacchi, et al. 2023. Audiolm: a language modeling approach to audio generation. Transactions on Audio, Speech, and Language Processing

  7. [7]

    Honglie Chen, Weidi Xie, Andrea Vedaldi, and Andrew Zisserman. 2020. Vggsound: A large-scale audio-visual dataset. In International Conference on Acoustics, Speech and Signal Processing

  8. [8]

    Ke Chen, Xingjian Du, Bilei Zhu, Zejun Ma, Taylor Berg-Kirkpatrick, and Shlomo Dubnov. 2022 a . Hts-at: A hierarchical token-semantic audio transformer for sound classification and detection. In International Conference on Acoustics, Speech and Signal Processing

Show all 82 references
  1. [9]

    Zhiyu Chen, Shiyang Li, Charese Smiley, Zhiqiang Ma, Sameena Shah, and William Yang Wang. 2022 b . Convfinqa: Exploring the chain of numerical reasoning in conversational finance question answering. arXiv preprint arXiv:2210.03849

  2. [10]

    Suresh Dara, Swetha Dhamercherla, Surender Singh Jadav, CH Madhu Babu, and Mohamed Jawed Ahsan. 2022. Machine learning in drug discovery: a review. Artificial Intelligence Review

  3. [11]

    Soham Deshmukh, Benjamin Elizalde, Rita Singh, and Huaming Wang. 2023. Pengi: An audio language model for audio tasks. Advances in Neural Information Processing Systems

  4. [12]

    Xingjian Diao, Ming Cheng, and Shitong Cheng. 2023. Av-maskenhancer: Enhancing video representations through audio-visual masked autoencoder. In International Conference on Tools with Artificial Intelligence

  5. [13]

    Xingjian Diao, Chunhui Zhang, Tingxuan Wu, Ming Cheng, Zhongyu Ouyang, Weiyi Wu, and Jiang Gui. 2024. Learning musical representations for music performance question answering. In Findings of the Association for Computational Linguistics: EMNLP

  6. [14]

    Xingjian Diao, Chunhui Zhang, Weiyi Wu, Zhongyu Ouyang, Peijun Qing, Ming Cheng, Soroush Vosoughi, and Jiang Gui. 2025. Temporal working memory: Query-guided segment refinement for enhanced multimodal understanding. arXiv preprint arXiv:2502.06020

  7. [15]

    Haoyi Duan, Yan Xia, Zhou Mingze, Li Tang, Jieming Zhu, and Zhou Zhao. 2023. Cross-modal prompts: Adapting large pre-trained models for audio-visual downstream tasks. In Advances in Neural Information Processing Systems

  8. [16]

    Fayek and Justin Johnson

    Haytham M. Fayek and Justin Johnson. 2020. Temporal reasoning via audio question answering. Transactions on Audio, Speech, and Language Processing

  9. [17]

    Chongyang Gao, Yiren Jian, Natalia Denisenko, Soroush Vosoughi, and VS Subrahmanian. 2024. Gem: generating engaging multimodal content. In International Joint Conference on Artificial Intelligence

  10. [18]

    Kaixiong Gong, Kaituo Feng, Bohao Li, Yibing Wang, Mofan Cheng, Shijia Yang, Jiaming Han, Benyou Wang, Yutong Bai, Zhuoran Yang, et al. 2024. Av-odyssey bench: Can your multimodal llms really understand audio-visual information? arXiv preprint arXiv:2412.02611

  11. [19]

    Travis R Goodwin and Sanda M Harabagiu. 2016. Medical question answering for clinical decision support. In International on Conference on Information and Knowledge Management

  12. [20]

    Yangfan He, Sida Li, Jianhui Wang, Kun Li, Xinyuan Song, Xinhang Yuan, Keqin Li, Kuan Lu, Menghao Huo, Jiaqi Chen, et al. 2025 a . Enhancing low-cost video editing with lightweight adaptors and temporal-aware inversion. arXiv preprint arXiv:2501.04606

  13. [21]

    Yangfan He, Jianhui Wang, Kun Li, Yijin Wang, Li Sun, Jun Yin, Miao Zhang, and Xueqian Wang. 2025 b . Enhancing intent understanding for ambiguous prompts through human-machine co-adaptation. arXiv preprint arXiv:2501.15167

  14. [22]

    Panwen Hu, Nan Xiao, Feifei Li, Yongquan Chen, and Rui Huang. 2023. A reinforcement learning-based automatic video editing method using pre-trained vision-language model. In International Conference on Multimedia

  15. [23]

    Allen H Huang, Hui Wang, and Yi Yang. 2023. Finbert: A large language model for extracting information from financial text. Contemporary Accounting Research

  16. [24]

    Vladimir Iashin, Weidi Xie, Esa Rahtu, and Andrew Zisserman. 2022. Sparse in space and time: Audio-visual synchronisation with trainable selectors. arXiv preprint arXiv:2210.07055

  17. [25]

    Vladimir Iashin, Weidi Xie, Esa Rahtu, and Andrew Zisserman. 2024. Synchformer: Efficient synchronization from sparse cues. In International Conference on Acoustics, Speech and Signal Processing

  18. [26]

    Yiren Jian, Chongyang Gao, and Soroush Vosoughi. 2023. Bootstrapping vision-language learning with decoupled language pre-training. In Advances in Neural Information Processing Systems

  19. [27]

    Yiren Jian, Tingkai Liu, Yunzhe Tao, Chunhui Zhang, Soroush Vosoughi, and Hongxia Yang. 2024. Expedited training of visual conditioned language generation via redundancy reduction. In Annual Meeting of the Association for Computational Linguistics

  20. [28]

    Balaram Yadav Kasula. 2023. Harnessing machine learning for personalized patient care. Transactions on Latest Trends in Artificial Intelligence

  21. [29]

    Matthew Le, Apoorv Vyas, Bowen Shi, Brian Karrer, Leda Sari, Rashel Moritz, Mary Williamson, Vimal Manohar, Yossi Adi, Jay Mahadeokar, et al. 2023. Voicebox: Text-guided multilingual universal speech generation at scale. Advances in Neural Information Processing Systems

  22. [30]

    Jie Lei, Licheng Yu, Mohit Bansal, and Tamara L Berg. 2018. Tvqa: Localized, compositional video question answering. In Conference on Empirical Methods in Natural Language Processing

  23. [31]

    Bin Li and Hanjun Deng. 2023. Bilateral personalized dialogue generation with contrastive learning. Soft Computing

  24. [32]

    Bin Li, Bin Sun, Shutao Li, Encheng Chen, Hongru Liu, Yixuan Weng, Yongping Bai, and Meiling Hu. 2024 a . Distinct but correct: generating diversified and entity-revised medical response. Science China Information Sciences

  25. [33]

    Bowen Li, Xiaojuan Qi, Thomas Lukasiewicz, and Philip Torr. 2019. Controllable text-to-image generation. Advances in Neural Information Processing Systems

  26. [34]

    Guangyao Li, Yake Wei, Yapeng Tian, Chenliang Xu, Ji-Rong Wen, and Di Hu. 2022. Learning to answer questions in dynamic audio-visual scenarios. In Conference on Computer Vision and Pattern Recognition

  27. [35]

    Shutao Li, Bin Li, Bin Sun, and Yixuan Weng. 2024 b . Towards visual-prompt temporal answer grounding in instructional video. Transactions on Pattern Analysis and Machine Intelligence

  28. [36]

    Yanghao Li, Haoqi Fan, Ronghang Hu, Christoph Feichtenhofer, and Kaiming He. 2023 a . Scaling language-image pre-training via masking. In Conference on Computer Vision and Pattern Recognition

  29. [37]

    Yinheng Li, Shaofei Wang, Han Ding, and Hang Chen. 2023 b . Large language models in finance: A survey. In International Conference on AI in Finance

  30. [38]

    Jinhua Liang, Huan Zhang, Haohe Liu, Yin Cao, Qiuqiang Kong, Xubo Liu, Wenwu Wang, Mark D Plumbley, Huy Phan, and Emmanouil Benetos. 2024. Wavcraft: Audio editing and generation with large language models. arXiv preprint arXiv:2403.09527

  31. [39]

    Yan-Bo Lin, Yi-Lin Sung, Jie Lei, Mohit Bansal, and Gedas Bertasius. 2023. Vision transformers are parameter-efficient audio-visual learners. In Conference on Computer Vision and Pattern Recognition

  32. [40]

    Samuel Lipping, Parthasaarathy Sudarsanam, Konstantinos Drossos, and Tuomas Virtanen. 2022. Clotho-aqa: A crowdsourced dataset for audio question answering. In European Signal Processing Conference

  33. [41]

    Xiulong Liu, Zhikang Dong, and Peng Zhang. 2024. Tackling data bias in music-avqa: Crafting a balanced dataset for unbiased question-answering. In Winter Conference on Applications of Computer Vision

  34. [42]

    Yuan Liu, Haodong Duan, Yuanhan Zhang, Bo Li, Songyang Zhang, Wangbo Zhao, Yike Yuan, Jiaqi Wang, Conghui He, Ziwei Liu, et al. 2025. Mmbench: Is your multi-modal model an all-around player? In European Conference on Computer Vision

  35. [43]

    Ze Liu, Han Hu, Yutong Lin, Zhuliang Yao, Zhenda Xie, Yixuan Wei, Jia Ning, Yue Cao, Zheng Zhang, Li Dong, et al. 2022. Swin transformer v2: Scaling up capacity and resolution. In Conference on Computer Vision and Pattern Recognition

  36. [44]

    Dongchan Min, Dong Bok Lee, Eunho Yang, and Sung Ju Hwang. 2021. Meta-stylespeech: Multi-speaker adaptive text-to-speech generation. In International Conference on Machine Learning

  37. [45]

    Gianluca Monaci, Friedrich T Sommer, and Pierre Vandergheynst. 2008. Learning sparse generative models of audiovisual signals. In European Signal Processing Conference

  38. [46]

    Jiquan Ngiam, Aditya Khosla, Mingyu Kim, Juhan Nam, Honglak Lee, and Andrew Y Ng. 2011. Multimodal deep learning. In International Conference on Machine Learning

  39. [47]

    Yingwei Pan, Yehao Li, Jianjie Luo, Jun Xu, Ting Yao, and Tao Mei. 2022. Auto-captions on gif: A large-scale video-sentence dataset for vision-language pre-training. In International Conference on Multimedia

  40. [48]

    Qi Qian, Yuanhong Xu, and Juhua Hu. 2023. Intra-modal proxy learning for zero-shot visual categorization with clip. Advances in Neural Information Processing Systems

  41. [49]

    Ziheng Qin, Kai Wang, Zangwei Zheng, Jianyang Gu, Xiangyu Peng, Zhaopan Xu, Daquan Zhou, Lei Shang, Baigui Sun, Xuansong Xie, and Yang You. 2024. Infobatch: Lossless training speed up by unbiased dynamic data pruning. In International Conference on Learning Representations

  42. [50]

    Khyati Saini and Pardeep Singh. 2023. Evolution of financial question answering themes, challenges, and advances. In International Conference on Recent Innovations in Computing

  43. [51]

    Yuzhang Shang, Mu Cai, Bingxin Xu, Yong Jae Lee, and Yan Yan. 2024. Llava-prumerge: Adaptive token reduction for efficient large multimodal models. arXiv preprint arXiv:2403.15388

  44. [52]

    Peng Shen, Satoshi Tamura, and Satoru Hayamizu. 2013. Audio-visual interaction in sparse representation features for noise robust audio-visual speech recognition. In Auditory-Visual Speech Processing

  45. [53]

    Fangxun Shu, Lei Zhang, Hao Jiang, and Cihang Xie. 2023. Audio-visual llm for video understanding. arXiv preprint arXiv:2312.06720

  46. [54]

    Teotino Gomes Soares, Azhari Azhari, Nur Rokhman, and E Wonarko. 2021. Education question answering systems: a survey. In International MultiConference of Engineers and Computer Scientists

  47. [55]

    Salakhutdinov

    Nitish Srivastava and Russ R. Salakhutdinov. 2012. Multimodal learning with deep boltzmann machines. In Advances in Neural Information Processing Systems

  48. [56]

    Tim Steuer, Anna Filighera, and Thomas Tregel. 2022. Investigating educational and noneducational answer selection for educational question generation. IEEE Access

  49. [57]

    Yi Su, Jisheng Bai, Qisheng Xu, Kele Xu, and Yong Dou. 2025. Audio-language models for audio-centric tasks: A survey. arXiv preprint arXiv:2501.15177

  50. [58]

    Deeksha Varshney, Aizan Zafar, Niranshu Kumar Behera, and Asif Ekbal. 2023. Knowledge graph assisted end-to-end medical dialog generation. Artificial Intelligence in Medicine

  51. [59]

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, ukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need. In Advances in Neural Information Processing Systems

  52. [60]

    Shiru Wang, Yao Chen, Lesley A Jarvis, Yucheng Tang, David J Gladstone, Kimberley S Samkoe, Brian W Pogue, Petr Bruza, and Rongxiao Zhang. 2024. Robust real-time segmentation of bio-morphological features in human cherenkov imaging during radiotherapy via deep learning. arXiv ...

  53. [61]

    Yanbo J Wang, Yuming Li, Hui Qin, Yuhang Guan, and Sheng Chen. 2022. A novel deberta-based model for financial question answering task. arXiv preprint arXiv:2207.05875

  54. [62]

    Yuancheng Wang, Zeqian Ju, Xu Tan, Lei He, Zhizheng Wu, Jiang Bian, et al. 2023. Audit: Audio editing by following instructions with latent diffusion models. Advances in Neural Information Processing Systems

  55. [63]

    Yake Wei, Di Hu, Yapeng Tian, and Xuelong Li. 2022. Learning in audio-visual context: A review, analysis, and new perspective. arXiv preprint arXiv:2208.09579

  56. [64]

    Yuxiang Wei, Anees Abrol, and Vince D Calhoun. 2025. Hierarchical spatio-temporal state-space modeling for fmri analysis. In International Conference on Research in Computational Molecular Biology

  57. [65]

    Yuxiang Wei, Yuqian Chen, Tengfei Xue, Leo Zekelman, Nikos Makris, Yogesh Rathi, Weidong Cai, Fan Zhang, and Lauren J O’Donnell. 2023. A deep network for explainable prediction of non-imaging phenotypes using anatomical multi-view data. In International Workshop on Computation...

  58. [66]

    Haibin Wu, Xuanjun Chen, Yi-Cheng Lin, Kai-wei Chang, Ho-Lam Chung, Alexander H Liu, and Hung-yi Lee. 2024. Towards audio language modeling--an overview. arXiv preprint arXiv:2402.13236

  59. [67]

    Yongchao Wu, Aron Henriksson, Martin Duneld, and Jalal Nouri. 2023. Towards improving the reliability and transparency of chatgpt for educational question answering. In European Conference on Technology Enhanced Learning

  60. [68]

    Binzhu Xie, Sicheng Zhang, Zitang Zhou, Bo Li, Yuanhan Zhang, Jack Hessel, Jingkang Yang, and Ziwei Liu. 2024. Funqa: Towards surprising video comprehension. In European Conference on Computer Vision

  61. [69]

    Pinci Yang, Xin Wang, Xuguang Duan, Hong Chen, Runze Hou, Cong Jin, and Wenwu Zhu. 2022. Avqa: A dataset for audio-visual question answering on videos. In International Conference on Multimedia

  62. [70]

    Qian Yang, Jin Xu, Wenrui Liu, Yunfei Chu, Ziyue Jiang, Xiaohuan Zhou, Yichong Leng, Yuanjun Lv, Zhou Zhao, Chang Zhou, et al. 2024. Air-bench: Benchmarking large audio-language models via generative comprehension. arXiv preprint arXiv:2402.07729

  63. [71]

    Jiawei Yao, Qi Qian, and Juhua Hu. 2024 a . Customized multiple clustering via multi-modal subspace proxy learning. arXiv preprint arXiv:2411.03978

  64. [72]

    Jiawei Yao, Qi Qian, and Juhua Hu. 2024 b . Multi-modal proxy learning towards personalized visual multiple clustering. In Conference on Computer Vision and Pattern Recognition

  65. [73]

    Qilang Ye, Zitong Yu, and Xin Liu. 2024. Answering diverse questions via text attached with key audio-visual clues. arXiv preprint arXiv:2403.06679

  66. [74]

    Wenhao You, Xingjian Diao, Chunhui Zhang, Keyi Kong, Weiyi Wu, Zhongyu Ouyang, Chiyu Ma, Tingxuan Wu, Noah Wei, Zong Ke, Ming Cheng, Soroush Vosoughi, and Jiang Gui. 2025. Music's multimodal complexity in avqa: Why we need more than general multimodal llms. arXiv preprint arXi...

  67. [75]

    Xiang Yue, Yuansheng Ni, Kai Zhang, Tianyu Zheng, Ruoqi Liu, Ge Zhang, Samuel Stevens, Dongfu Jiang, Weiming Ren, Yuxuan Sun, et al. 2024. Mmmu: A massive multi-discipline multimodal understanding and reasoning benchmark for expert agi. In Conference on Computer Vision and Pat...

  68. [76]

    Heeseung Yun, Youngjae Yu, Wonsuk Yang, Kangil Lee, and Gunhee Kim. 2021. Pano-avqa: Grounded audio-visual question answering on 360deg videos. In International Conference on Computer Vision

  69. [77]

    Chunhui Zhang, Yiren Jian, Zhongyu Ouyang, and Soroush Vosoughi. 2025. Pretrained image-text models are secretly video captioners. arXiv preprint arXiv:2502.13363

  70. [78]

    Jingyi Zhang, Jiaxing Huang, Sheng Jin, and Shijian Lu. 2024. Vision-language models for vision tasks: A survey. Transactions on Pattern Analysis and Machine Intelligence

  71. [79]

    Hang Zhao, Chuang Gan, Wei-Chiu Ma, and Antonio Torralba. 2019. The sound of motions. In International Conference on Computer Vision

  72. [80]

    Hang Zhao, Chuang Gan, Andrew Rouditchenko, Carl Vondrick, Josh McDermott, and Antonio Torralba. 2018. The sound of pixels. In European Conference on Computer Vision

  73. [81]

    Ziyi Zhou, Ming Cheng, Xingjian Diao, Yanjun Cui, and Xiangling Li. 2024. Glumarker: A novel predictive modeling of glycemic control through digital biomarkers. In Annual International Conference of the IEEE Engineering in Medicine and Biology Society

  74. [82]

    Fengbin Zhu, Wenqiang Lei, Youcheng Huang, Chao Wang, Shuo Zhang, Jiancheng Lv, Fuli Feng, and Tat-Seng Chua. 2021. Tat-qa: A question answering benchmark on a hybrid of tabular and textual content in finance. arXiv preprint arXiv:2105.07624

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.