Pith. sign in

REVIEW 3 major objections 4 minor 68 references

Engagement Prediction of Short Videos with Large Multimodal Models

T0 review · 3 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read Large multimodal models with audio input predict short-video engagement better than visual-only models and prior feature-based pipelines.

desk verdict Solid challenge report with a believable headline result, but the audio-attribution claim is not backed by an ablation. read the letter →

arxiv 2508.02516 v2 pith:PVEUD3G5 submitted 2025-08-04 cs.CV

classification cs.CV
keywords videoengagementpredictionlargemultimodalmodelsaudio-visualunderstandingcontinuationrateSnapUGCcold-startregressionshort-form
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

This paper sets out to show that general-purpose large multimodal models can predict the engagement continuation rate of short videos before any user-interaction data exists. On the SnapUGC benchmark, an audio-visual-language model (VideoLLaMA2) and a vision-language model (Qwen2.5-VL), both fed keyframes plus title and description, outperform a purpose-built two-stage feature pipeline, with VideoLLaMA2 additionally taking background audio. The authors attribute that lead to background audio, with VideoLLaMA2 reaching SROCC 0.691 versus Qwen2.5-VL's 0.665. If the result holds, cold-start engagement prediction can move away from handcrafted multimodal features and toward end-to-end multimodal models.

What carries the argument

The object that carries the argument is the multimodal prompt: keyframes are encoded into visual tokens, the audio track into spectrogram tokens, and title and description into text, all placed inside a natural-language instruction that asks for the engagement continuation rate. VideoLLaMA2 averages the final-layer hidden states of its decoder and maps that average to a scalar through a two-layer MLP with an MSE loss, while Qwen2.5-VL learns to generate the numeric score as tokens with a cross-entropy loss. The intended comparison between the audio-inclusive and audio-exclusive branches is what supports the paper's conclusion about sound.

What would settle it

Run VideoLLaMA2 on SnapUGC with the audio tokens masked or removed, and run Qwen2.5-VL with an added audio branch; if their scores stay unequal or reverse, audio is not the unique cause of the gap.

Watch

Extended reading notes

Core claim

On the SnapUGC test set, VideoLLaMA2, prompted with eight keyframes, title and description, and a spectrogram of the audio track, predicts ECR with SROCC 0.691 and PLCC 0.701, beating Qwen2.5-VL (0.665 and 0.662) and the prior two-stage baseline (0.657 and 0.665). The paper also reports that regressing the averaged hidden state through a two-layer MLP is better than generating the score as output tokens (Qwen2.5-VL feature-based 0.674/0.679 versus token-based 0.665/0.662), that eight frames outperform five, and that full training data outperform 60 percent. Ensembling four model variants produces a final score of 0.710 and first place in the EVQA-SnapUGC challenge.

Load-bearing premise

The paper treats VideoLLaMA2 and Qwen2.5-VL as identical except for audio, so the measured gap is credited to sound; no test in the paper removes audio from one model or adds it to the other.

Editorial extensions

If this is right

  • End-to-end large multimodal models can replace the two-stage extract-features-then-regress recipe for cold-start engagement prediction.
  • Including background audio is worth a measurable gain: the audio-visual branch leads the vision-language branch by roughly 0.03 in SROCC and 0.04 in PLCC.
  • For fine-grained score prediction, a lightweight regression head on hidden states beats having the model generate the number as text.
  • Using more keyframes and more training data both push engagement prediction upward.
  • Ensembling several LMM variants gives a further boost, lifting the final score from 0.695 to 0.710.

Reading between the lines

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

  • The paper's core comparison does not isolate audio: the two models differ in architecture, training procedure, and regression head, so the audio attribution is a hypothesis rather than a demonstrated mechanism.
  • If audio is the real driver, engagement prediction for music-heavy platforms should include a dedicated audio branch, while platforms with mostly speech-over-visuals may get less benefit.
  • The feature-based-versus-token regression result suggests a transferable recipe: keep the LMM's decoder lightly trained and fit a small MLP head, which is cheaper than full token-level fine-tuning.
  • A direct audio-masking ablation on the same backbone is the natural next experiment, and its outcome would decide whether the gap is modality or model.
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

3 major / 4 minor

Summary. The paper investigates the use of large multimodal models (LMMs) for cold-start short-video engagement prediction, specifically predicting Engagement Continuation Rate (ECR) on the SnapUGC dataset. Two LMMs are compared: VideoLLaMA2 (audio-visual-language) with a feature-based MLP regression head, and Qwen2.5-VL (visual-language) with token-based regression. The authors report that VideoLLaMA2 achieves SROCC 0.691 / PLCC 0.701, outperforming Qwen2.5-VL (0.665/0.662) and the prior two-stage baseline Li24 (0.657/0.665). Ablations on number of input frames, training data proportion, and regression strategy are presented, and an ensemble of four models is reported to achieve first place in the ICCV VQualA 2025 EVQA-SnapUGC Challenge. The paper concludes that audio features play a critical role in engagement prediction.

Significance. If the empirical findings are reliable, the paper provides a useful demonstration that end-to-end LMMs can be competitive with or superior to two-stage feature-based pipelines for short-video engagement prediction, and the ensembling result is an externally validated engineering achievement with code released. The ablations on frame count, training data, and regression head are valuable for practitioners. However, the central interpretive claim that audio is the cause of VideoLLaMA2's advantage is not supported by the experiments as designed, because the two compared LMMs differ in several other dimensions simultaneously. The paper's main positive contribution is the empirical comparison and the challenge result; the audio-attribution conclusion needs either supporting evidence or careful reframing.

major comments (3)
  1. [Section 4.5 and Conclusion] The claim that VideoLLaMA2's superiority over Qwen2.5-VL 'highlights the critical role of audio features' is not supported by the presented experiments. The two models differ not only in audio input but also in base LLM architecture, regression strategy (MLP head vs. token generation), training protocol (frozen vision encoder with 5e-5 LR vs. full fine-tuning with 2e-6/1e-5 LR), and input resolution. Table 4 shows that switching Qwen2.5-VL from token-based to feature-based regression changes its final score from 0.664 to 0.676, reducing the gap to VideoLLaMA2 (0.695) from 0.031 to 0.019. There is no ablation that removes audio from VideoLLaMA2 while holding everything else fixed, nor one that adds audio to Qwen2.5-VL. Please add such an ablation (e.g., VideoLLaMA2 without the audio track) or, failing that, weaken the conclusion to state that the audio-visual-language model outperformed the visual-language model without attributing the difference specifically to audio.
  2. [Tables 1-4] All results are reported as single-run point estimates with no error bars, multiple seeds, or significance tests. Differences such as SROCC 0.691 vs. 0.674 (VideoLLaMA2 vs. feature-based Qwen2.5-VL) or 0.691 vs. 0.686 (Table 2) may be within run-to-run variation, especially given the different training budgets and hyperparameters. Please report the mean and standard deviation over at least three training runs, or apply a significance test (e.g., bootstrap on the test set or paired test across seeds), so readers can judge whether the reported ordering is statistically reliable.
  3. [Section 4.7 and Table 5] There is an inconsistency between the text and the table: Section 4.7 states 'our method ... achieves the highest final score of 0.714', but Table 5 lists the final score as 0.710, with 0.714 being the PLCC value. Please correct this. In addition, the description 'ensembles four models, including three VideoLLaMA2 variants (from Table 2 and Table 3) and one Qwen2.5-VL model' is ambiguous, because the variants in Tables 2 and 3 differ in frame count and training proportion rather than being independently trained models; clarify whether the ensemble members are distinct trained checkpoints and how their predictions were combined.
minor comments (4)
  1. [Section 3.1] The phrase 'the i-the keyframe' in the definition of x_i appears to be a typo; it should read 'the i-th keyframe'.
  2. [Section 4.5] The statement that VideoLLaMA2 'significantly outperforms' Qwen2.5-VL uses 'significantly' without statistical evidence; consider using 'consistently outperforms' or providing significance tests.
  3. [Section 2.2] The related work section cites Li et al. [21] for the SnapUGC dataset, but the description of the cross-modal attention architecture is brief; adding one or two sentences on how the proposed LMM-based approach differs from or improves upon this two-stage method would help position the contribution.
  4. [Table 1] The baseline 'MinimalisticVQA' is described as being retrained on SnapUGC, but the table caption does not state whether the LMM results are also from models trained on SnapUGC; specify the training condition for each row for clarity.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the engagement predictions are direct held-out evaluations on the external SnapUGC dataset, and the audio-attribution claim is confounded but not definitionally circular.

full rationale

The derivation chain is entirely empirical and self-contained: both LMMs are trained on the external SnapUGC training split and scored on the held-out test split, with external baselines (MinimalisticVQA and Li24) retrained under the same protocol. The paper's central performance claim (VideoLLaMA2 SROCC 0.691/PLCC 0.701 versus Qwen2.5-VL 0.665/0.662) is a direct measurement, not a quantity reconstructed from fitted inputs. No equation defines the output in terms of the target, no parameter is fitted to the test labels, and no result is justified solely by a self-citation chain: VideoLLaMA2 and Qwen2.5-VL are external model families, and the SnapUGC labels and test split are external. The conclusion that audio is critical is confounded because the two models differ in base architecture, regression head, and training protocol, and no audio ablation is run; that is an attribution and correctness weakness, not a circular derivation. The ensemble's reported 0.714 in Section 4.7 versus 0.710 in Table 5 is also a consistency slip, not a circular step. Accordingly, the circularity score is 0.

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

The paper is purely empirical; it introduces no new entities or derived constants. The central claims rest on dataset quality, sampling choices, and the comparability of the two LMMs, which are listed above.

free parameters (5)
  • Number of input keyframes N = 8
    Chosen by hand in Section 3.1; ablation in Table 2 shows 8 frames gives 0.695 vs 0.690 for 5 frames, a small difference that the paper interprets as supporting more frames.
  • Training epochs = 1 for both models
    Implementation details in Section 4.1; no epoch search reported, and results may depend on this choice.
  • Learning rates = 5e-5 (VideoLLaMA2); 2e-6 vision / 1e-5 other (Qwen2.5-VL)
    Chosen in Section 4.1; not tuned systematically in the paper.
  • Batch sizes = 12 (VideoLLaMA2), 16 (Qwen2.5-VL)
    Section 4.1; chosen by hardware constraints.
  • Ensemble composition = Four models: three VideoLLaMA2 variants and one Qwen2.5-VL; weighting unspecified
    Section 4.7 reports the ensemble result but does not state how predictions were combined; the challenge score depends on this choice.
assumptions (4)
  • domain assumption SnapUGC ECR labels are reliable ground-truth engagement scores
    The paper trains and evaluates against ECR from SnapUGC (Section 4.2) without auditing label noise or bias.
  • domain assumption Eight uniformly sampled keyframes from the video start capture enough visual content for ECR prediction
    Section 3.1 fixes N=8; the 5 vs 8 ablation (Table 2) only tests frame count, not sampling strategy.
  • ad hoc to paper The two LMMs differ only in audio modality for the purpose of attributing the performance gap
    Section 4.5 attributes the gap to audio, but base models, regression heads, and training protocols differ; this comparability assumption is unstated and load-bearing.
  • ad hoc to paper Freezing the vision encoder in VideoLLaMA2 while fully fine-tuning Qwen2.5-VL does not disadvantage either model unfairly
    Section 4.1 uses different training strategies; the paper does not justify that this choice is neutral for the comparison.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Engagement Prediction of Short Videos with Large Multimodal Models." pith.science (2026). https://pith.science/paper/PVEUD3G5

@misc{pith2026250802516,
  author       = {Pith},
  title        = {Pith review of: Engagement Prediction of Short Videos with Large Multimodal Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/PVEUD3G5}},
  note         = {Machine review of arXiv:2508.02516}
}
read the original abstract

The rapid proliferation of user-generated content (UGC) on short-form video platforms has made video engagement prediction increasingly important for optimizing recommendation systems and guiding content creation. However, this task remains challenging due to the complex interplay of factors such as semantic content, visual quality, audio characteristics, and user background. Prior studies have leveraged various types of features from different modalities, such as visual quality, semantic content, background sound, etc., but often struggle to effectively model their cross-feature and cross-modality interactions. In this work, we empirically investigate the potential of large multimodal models (LMMs) for video engagement prediction. We adopt two representative LMMs: VideoLLaMA2, which integrates audio, visual, and language modalities, and Qwen2.5-VL, which models only visual and language modalities. Specifically, VideoLLaMA2 jointly processes key video frames, text-based metadata, and background sound, while Qwen2.5-VL utilizes only key video frames and text-based metadata. Trained on the SnapUGC dataset, both models demonstrate competitive performance against state-of-the-art baselines, showcasing the effectiveness of LMMs in engagement prediction. Notably, VideoLLaMA2 consistently outperforms Qwen2.5-VL, highlighting the importance of audio features in engagement prediction. By ensembling two types of models, our method achieves first place in the ICCV VQualA 2025 EVQA-SnapUGC Challenge on short-form video engagement prediction. The code is available at https://github.com/sunwei925/LMM-EVQA.git.

Figures

Figures reproduced from arXiv: 2508.02516 by the authors.

Figure 1
Figure 1. Overview of the proposed ensemble framework for engagement continuation rate prediction. The model integrates two large [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

68 extracted references · 54 canonical work pages

  1. [1]

    Shuai Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, Sibo Song, Kai Dang, Peng Wang, Shijie Wang, Jun Tang, et al. Qwen2. 5-vl technical report. arXiv preprint arXiv:2502.13923, 2025. 2, 3, 4, 6

  2. [2]

    Vlengagement: A dataset of scientific video lectures for evaluating population-based engagement

    Sahan Bulathwela, Maria Perez-Ortiz, Emine Yilmaz, and John Shawe-Taylor. Vlengagement: A dataset of scientific video lectures for evaluating population-based engagement. arXiv preprint arXiv:2011.02273, 2020. 1, 3

  3. [3]

    Generalizable Video Quality Assessment via Weak-to-Strong Learning

    Linhan Cao, Wei Sun, Kaiwei Zhang, Yicong Peng, Guang- tao Zhai, and Xiongkuo Min. Breaking annotation barriers: Generalized video quality assessment via ranking-based self- supervision. arXiv preprint arXiv:2505.03631, 2025. 3

  4. [4]

    AGAV-Rater: Adapting Large Multimodal Model for AI-Generated Audio-Visual Quality Assessment

    Yuqin Cao, Xiongkuo Min, Yixuan Gao, Wei Sun, and Guangtao Zhai. Agav-rater: Adapting large multimodal model for ai-generated audio-visual quality assessment. arXiv preprint arXiv:2501.18314, 2025. 1, 3

  5. [5]

    Vquala 2025 chal- lenge on genai-bench aigc video quality assessment: Meth- ods and results

    Ying Chen, Huasheng Wang, Pengxiang Xiao, Yukang Ding, Enpeng Liu, Chris Wei Zhou, and et al. Vquala 2025 chal- lenge on genai-bench aigc video quality assessment: Meth- ods and results. In Proceedings of the IEEE/CVF Conference on Computer Vision (ICCV) Workshops, pages 1–11, 2025. 2

  6. [6]

    Gaia: Rethinking action quality assessment for ai-generated videos

    Zijian Chen, Wei Sun, Yuan Tian, Jun Jia, Zicheng Zhang, Wang Jiarui, Ru Huang, Xiongkuo Min, Guangtao Zhai, and Wenjun Zhang. Gaia: Rethinking action quality assessment for ai-generated videos. Advances in Neural Information Processing Systems, 37:40111–40144, 2024. 2

  7. [7]

    Study of subjective and objective naturalness assess- ment of ai-generated images

    Zijian Chen, Wei Sun, Haoning Wu, Zicheng Zhang, Jun Jia, Ru Huang, Xiongkuo Min, Guangtao Zhai, and Wenjun Zhang. Study of subjective and objective naturalness assess- ment of ai-generated images. IEEE Transactions on Circuits and Systems for Video Technology, 2024. 2

  8. [8]

    Videollama 2: Advancing spatial- temporal modeling and audio understanding in video-llms

    Zesen Cheng, Sicong Leng, Hang Zhang, Yifei Xin, Xin Li, Guanzheng Chen, Yongxin Zhu, Wenqi Zhang, Ziyang Luo, Deli Zhao, et al. Videollama 2: Advancing spatial- temporal modeling and audio understanding in video-llms. arXiv preprint arXiv:2406.07476, 2024. 2, 4, 6

Show all 68 references
  1. [9]

    Francesca De Simone, Marco Tagliasacchi, Matteo Naccari, Stefano Tubaro, and Touradj Ebrahimi. A h. 264/avc video database for the evaluation of quality metrics. In 2010 IEEE International Conference on Acoustics, Speech and Signal Processing, pages 2430–2433. IEEE, 2010. 2

  2. [10]

    Chipqa: No-reference video quality prediction via space-time chips

    Joshua Peter Ebenezer, Zaixi Shang, Yongjun Wu, Hai Wei, Sriram Sethuraman, and Alan C Bovik. Chipqa: No-reference video quality prediction via space-time chips. IEEE Transactions on Image Processing , 30:8059–8074,

  3. [11]

    Lmm-vqa: Advancing video quality assessment with large multimodal models

    Qihang Ge, Wei Sun, Yu Zhang, Yunhao Li, Zhongpeng Ji, Fengyu Sun, Shangling Jui, Xiongkuo Min, and Guangtao Zhai. Lmm-vqa: Advancing video quality assessment with large multimodal models. arXiv preprint arXiv:2408.14008,

  4. [12]

    In- capture mobile video distortions: A study of subjective be- havior and objective algorithms

    Deepti Ghadiyaram, Janice Pan, Alan C Bovik, Anush Kr- ishna Moorthy, Prasanjit Panda, and Kai-Chieh Yang. In- capture mobile video distortions: A study of subjective be- havior and objective algorithms. IEEE Transactions on Cir- cuits and Systems for Video Technology , 28(9):...

  5. [13]

    The konstanz natural video database (konvid-1k)

    Vlad Hosu, Franz Hahn, Mohsen Jenadeleh, Hanhe Lin, Hui Men, Tam´as Szir ´anyi, Shujun Li, and Dietmar Saupe. The konstanz natural video database (konvid-1k). In 2017 Ninth international conference on quality of multimedia experience (QoMEX), pages 1–6. IEEE, 2017. 2

  6. [14]

    Vquala 2025 doc- ument image quality assessment challenge

    Fan Huang, Xiongkuo Min, Zhichao Ma, Xiaohong Liu, Chris Wei Zhou, Guangtao Zhai, and et al. Vquala 2025 doc- ument image quality assessment challenge. In Proceedings of the IEEE/CVF Conference on Computer Vision (ICCV) Workshops, pages 1–8, 2025. 2

  7. [15]

    Vqa 2: Visual question answering for video quality assessment

    Ziheng Jia, Zicheng Zhang, Jiaying Qian, Haoning Wu, Wei Sun, Chunyi Li, Xiaohong Liu, Weisi Lin, Guangtao Zhai, and Xiongkuo Min. Vqa 2: Visual question answering for video quality assessment. arXiv preprint arXiv:2411.03795,

  8. [16]

    Two-level approach for no-reference con- sumer video quality assessment

    Jari Korhonen. Two-level approach for no-reference con- sumer video quality assessment. IEEE Transactions on Im- age Processing, 28(12):5923–5938, 2019. 3

  9. [17]

    A subjective and objective study of space- time subsampled video quality

    Dae Yeol Lee, Somdyuti Paul, Christos G Bampis, Hyun- suk Ko, Jongho Kim, Se Yoon Jeong, Blake Homan, and Alan C Bovik. A subjective and objective study of space- time subsampled video quality. IEEE Transactions on Image Processing, 31:934–948, 2021. 2

  10. [18]

    Blindly assess quality of in-the-wild videos via quality-aware pre-training and motion perception

    Bowen Li, Weixia Zhang, Meng Tian, Guangtao Zhai, and Xianpei Wang. Blindly assess quality of in-the-wild videos via quality-aware pre-training and motion perception. IEEE Transactions on Circuits and Systems for Video Technology, 32(9):5944–5958, 2022. 3

  11. [19]

    Llava-onevision: Easy visual task transfer

    Bo Li, Yuanhan Zhang, Dong Guo, Renrui Zhang, Feng Li, Hao Zhang, Kaichen Zhang, Peiyuan Zhang, Yanwei Li, Zi- wei Liu, et al. Llava-onevision: Easy visual task transfer. arXiv preprint arXiv:2408.03326, 2024. 3

  12. [20]

    Quality as- sessment of in-the-wild videos

    Dingquan Li, Tingting Jiang, and Ming Jiang. Quality as- sessment of in-the-wild videos. In Proceedings of the 27th ACM international Conference on Multimedia, pages 2351– 2359, 2019. 3

  13. [21]

    Delving deep into engagement prediction of short videos

    Dasong Li, Wenjie Li, Baili Lu, Hongsheng Li, Sizhuo Ma, Gurunandan Krishnan, and Jian Wang. Delving deep into engagement prediction of short videos. In European Confer- ence on Computer Vision, pages 289–306, 2024. 1, 2, 3, 5, 6

  14. [22]

    Vquala 2025 challenge on engagement prediction for short videos: Methods and results

    Dasong Li, Sizhuo Ma, Hang Hua, Wenjie Li, Jian Wang, Chris Wei Zhou, Fengbin Guan, Xin Li, Zihao Yu, Yiting Lu, Ru-Ling Liao, Yan Ye, Zhibo Chen, Wei Sun, Linhan Cao, Yuqin Cao, Weixia Zhang, Wen Wen, Kaiwei Zhang, Zijian Chen, Fangfang Lu, Xiongkuo Min, Guangtao Zhai, Erjia ...

  15. [23]

    Vquala 2025 challenge on image super-resolution generated content qual- ity assessment: Methods and results

    Yixiao Li, Xin Li, Chris Wei Zhou, Shuo Xing, Hadi Amir- pour, Xiaoshuai Hao, Guanghui Yue, Baoquan Zhao, Weide Liu, Xiaoyuan Yang, Zhengzhong Tu, and et al. Vquala 2025 challenge on image super-resolution generated content qual- ity assessment: Methods and results. In Proceed...

  16. [24]

    Aghi-qa: A subjective-aligned dataset and metric for ai-generated human images

    Yunhao Li, Sijing Wu, Wei Sun, Zhichao Zhang, Yucheng Zhu, Zicheng Zhang, Huiyu Duan, Xiongkuo Min, and Guangtao Zhai. Aghi-qa: A subjective-aligned dataset and metric for ai-generated human images. arXiv preprint arXiv:2504.21308, 2025. 2

  17. [25]

    Avc, hevc, vp9, avs2 or av1?—a comparative study of state-of-the-art video encoders on 4k videos

    Zhuoran Li, Zhengfang Duanmu, Wentao Liu, and Zhou Wang. Avc, hevc, vp9, avs2 or av1?—a comparative study of state-of-the-art video encoders on 4k videos. In Image Anal- ysis and Recognition: 16th International Conference, ICIAR 2019, Waterloo, ON, Canada, August 27–29, 2019, ...

  18. [26]

    Ada-dqa: Adaptive diverse quality-aware feature acquisition for video quality assessment

    Hongbo Liu, Mingda Wu, Kun Yuan, Ming Sun, Yansong Tang, Chuanchuan Zheng, Xing Wen, and Xiu Li. Ada-dqa: Adaptive diverse quality-aware feature acquisition for video quality assessment. In Proceedings of the 31st ACM Interna- tional Conference on Multimedia , pages 6695–6704, 2023. 3

  19. [27]

    End- to-end blind quality assessment of compressed videos using deep neural networks

    Wentao Liu, Zhengfang Duanmu, and Zhou Wang. End- to-end blind quality assessment of compressed videos using deep neural networks. In ACM Multimedia, pages 546–554, 2018

  20. [28]

    Bh-vqa: blind high frame rate video quality assessment

    Wei Lu, Wei Sun, Zicheng Zhang, Danyang Tu, Xiongkuo Min, and Guangtao Zhai. Bh-vqa: blind high frame rate video quality assessment. In 2023 IEEE International Con- ference on Multimedia and Expo (ICME), pages 2501–2506. IEEE, 2023. 3

  21. [29]

    Vquala 2025 challenge on face image quality assessment: Methods and results

    Sizhuo Ma, Wei-Ting Chen, Qiang Gao, Jian Wang, Chris Wei Zhou, Wei Sun, Weixia Zhang, Linhan Cao, Jun Jia, Xiangyang Zhu, Dandan Zhu, Xiongkuo Min, Guang- tao Zhai, Baoying Chen, Xiongwei Xiao, Jishen Zeng, Wei Wu, Tiexuan Lou, Yuchen Tan, Chunyi Song, Zhiwei Xu, MohammadAli ...

  22. [30]

    A study of subjective video quality at various frame rates

    Alex Mackin, Fan Zhang, and David R Bull. A study of subjective video quality at various frame rates. In2015 IEEE International Conference on Image Processing (ICIP), pages 3407–3411. IEEE, 2015. 2

  23. [31]

    Subjective and objective quality assessment of high frame rate videos.IEEE Access, 9:108069–108082, 2021

    Pavan C Madhusudana, Xiangxu Yu, Neil Birkbeck, Yilin Wang, Balu Adsumilli, and Alan C Bovik. Subjective and objective quality assessment of high frame rate videos.IEEE Access, 9:108069–108082, 2021. 2

  24. [32]

    Perceptual video quality assessment: A sur- vey

    Xiongkuo Min, Huiyu Duan, Wei Sun, Yucheng Zhu, and Guangtao Zhai. Perceptual video quality assessment: A sur- vey. Science China Information Sciences , 67(11):211301,

  25. [33]

    A com- pletely blind video integrity oracle

    Anish Mittal, Michele A Saad, and Alan C Bovik. A com- pletely blind video integrity oracle. IEEE Transactions on Image Processing, 25(1):289–300, 2015. 3

  26. [34]

    Perceptual quality assessment of high frame rate video

    Rasoul Mohammadi Nasiri, Jiheng Wang, Abdul Rehman, Shiqi Wang, and Zhou Wang. Perceptual quality assessment of high frame rate video. In 2015 IEEE 17th International Workshop on Multimedia Signal Processing (MMSP), pages 1–6. IEEE, 2015. 2

  27. [35]

    Cvd2014—a database for evaluating no-reference video quality assess- ment algorithms

    Mikko Nuutinen, Toni Virtanen, Mikko Vaahteranoksa, Tero Vuori, Pirkko Oittinen, and Jukka H ¨akkinen. Cvd2014—a database for evaluating no-reference video quality assess- ment algorithms. IEEE Transactions on Image Processing , 25(7):3073–3086, 2016. 2

  28. [36]

    Blind prediction of natural video quality

    Michele A Saad, Alan C Bovik, and Christophe Charrier. Blind prediction of natural video quality. IEEE Transactions on image Processing, 23(3):1352–1365, 2014. 3

  29. [37]

    Study of subjective and objective quality assessment of video

    Kalpana Seshadrinathan, Rajiv Soundararajan, Alan Conrad Bovik, and Lawrence K Cormack. Study of subjective and objective quality assessment of video. IEEE transactions on Image Processing, 19(6):1427–1441, 2010. 2

  30. [38]

    Large-scale study of perceptual video quality

    Zeina Sinno and Alan Conrad Bovik. Large-scale study of perceptual video quality. IEEE Transactions on Image Pro- cessing, 28(2):612–627, 2018. 2

  31. [39]

    Deep learning based full-reference and no-reference quality assessment models for compressed ugc videos

    Wei Sun, Tao Wang, Xiongkuo Min, Fuwang Yi, and Guangtao Zhai. Deep learning based full-reference and no-reference quality assessment models for compressed ugc videos. In 2021 IEEE International Conference on Multime- dia & Expo Workshops (ICMEW) , pages 1–6. IEEE, 2021. 3

  32. [40]

    A deep learning based no-reference quality assessment model for ugc videos

    Wei Sun, Xiongkuo Min, Wei Lu, and Guangtao Zhai. A deep learning based no-reference quality assessment model for ugc videos. In Proceedings of the 30th ACM Interna- tional Conference on Multimedia, pages 856–865, 2022. 3

  33. [41]

    Blind quality assessment for in-the-wild images via hierarchical feature fusion and iterative mixed database training

    Wei Sun, Xiongkuo Min, Danyang Tu, Siwei Ma, and Guangtao Zhai. Blind quality assessment for in-the-wild images via hierarchical feature fusion and iterative mixed database training. IEEE Journal of Selected Topics in Sig- nal Processing, 17(6):1178–1192, 2023

  34. [42]

    Analysis of video quality datasets via design of minimalistic video quality models

    Wei Sun, Wen Wen, Xiongkuo Min, Long Lan, Guangtao Zhai, and Kede Ma. Analysis of video quality datasets via design of minimalistic video quality models. IEEE Transac- tions on Pattern Analysis and Machine Intelligence, 2024. 3, 6

  35. [43]

    Enhancing blind video quality as- sessment with rich quality-aware features

    Wei Sun, Haoning Wu, Zicheng Zhang, Jun Jia, Zhichao Zhang, Linhan Cao, Qiubo Chen, Xiongkuo Min, Weisi Lin, and Guangtao Zhai. Enhancing blind video quality as- sessment with rich quality-aware features. arXiv preprint arXiv:2405.08745, 2024. 3

  36. [44]

    Assessing uhd image quality from aesthetics, distor- tions, and saliency

    Wei Sun, Weixia Zhang, Yuqin Cao, Linhan Cao, Jun Jia, Zijian Chen, Zicheng Zhang, Xiongkuo Min, and Guangtao Zhai. Assessing uhd image quality from aesthetics, distor- tions, and saliency. In European Conference on Computer Vision, pages 109–126. Springer, 2024. 1

  37. [45]

    Compressedvqa-hdr: Generalized full-reference and no- reference quality assessment models for compressed high dynamic range videos

    Wei Sun, Linhan Cao, Kang Fu, Dandan Zhu, Jun Jia, Menghan Hu, Xiongkuo Min, and Guangtao Zhai. Compressedvqa-hdr: Generalized full-reference and no- reference quality assessment models for compressed high dynamic range videos. arXiv preprint arXiv:2506.22790 ,

  38. [46]

    An empirical study for efficient video quality assessment

    Wei Sun, Kang Fu, Linhan Cao, Dandan Zhu, Kaiwei Zhang, Yucheng Zhu, Zicheng Zhang, Menghan Hu, Xiongkuo Min, and Guangtao Zhai. An empirical study for efficient video quality assessment. In Proceedings of the Computer Vi- sion and Pattern Recognition Conference, pages 1403–1413,

  39. [47]

    Ugc-vqa: Benchmarking blind video quality assessment for user generated content

    Zhengzhong Tu, Yilin Wang, Neil Birkbeck, Balu Adsumilli, and Alan C Bovik. Ugc-vqa: Benchmarking blind video quality assessment for user generated content. IEEE Trans- actions on Image Processing, 30:4449–4464, 2021. 3

  40. [48]

    Rapique: Rapid and accurate video quality prediction of user generated content

    Zhengzhong Tu, Xiangxu Yu, Yilin Wang, Neil Birkbeck, Balu Adsumilli, and Alan C Bovik. Rapique: Rapid and accurate video quality prediction of user generated content. IEEE Open Journal of Signal Processing, 2:425–440, 2021. 3

  41. [49]

    Vis 3: An algorithm for video quality assessment via analysis of spatial and spa- tiotemporal slices

    Phong V Vu and Damon M Chandler. Vis 3: An algorithm for video quality assessment via analysis of spatial and spa- tiotemporal slices. Journal of Electronic Imaging , 23(1): 013016–013016, 2014. 2

  42. [50]

    Large multi-modality model assisted ai-generated image quality as- sessment

    Puyi Wang, Wei Sun, Zicheng Zhang, Jun Jia, Yanwei Jiang, Zhichao Zhang, Xiongkuo Min, and Guangtao Zhai. Large multi-modality model assisted ai-generated image quality as- sessment. In Proceedings of the 32nd ACM International Conference on Multimedia, pages 7803–7812, 2024. 3

  43. [51]

    Fast- vqa: Efficient end-to-end video quality assessment with frag- ment sampling

    Haoning Wu, Chaofeng Chen, Jingwen Hou, Liang Liao, Annan Wang, Wenxiu Sun, Qiong Yan, and Weisi Lin. Fast- vqa: Efficient end-to-end video quality assessment with frag- ment sampling. In European Conference on Computer Vi- sion, pages 538–554. Springer, 2022. 3

  44. [52]

    Exploring video quality assessment on user gener- ated contents from aesthetic and technical perspectives

    Haoning Wu, Erli Zhang, Liang Liao, Chaofeng Chen, Jing- wen Hou, Annan Wang, Wenxiu Sun, Qiong Yan, and Weisi Lin. Exploring video quality assessment on user gener- ated contents from aesthetic and technical perspectives. In Proceedings of the IEEE/CVF International Conferenc...

  45. [53]

    Q-align: Teaching lmms for visual scoring via discrete text-defined levels

    Haoning Wu, Zicheng Zhang, Weixia Zhang, Chaofeng Chen, Liang Liao, Chunyi Li, Yixuan Gao, Annan Wang, Erli Zhang, Wenxiu Sun, et al. Q-align: Teaching lmms for visual scoring via discrete text-defined levels. arXiv preprint arXiv:2312.17090, 2023. 3, 5

  46. [54]

    Q-instruct: Improving low-level visual abilities for multi-modality foundation models

    Haoning Wu, Zicheng Zhang, Erli Zhang, Chaofeng Chen, Liang Liao, Annan Wang, Kaixin Xu, Chunyi Li, Jingwen Hou, Guangtao Zhai, et al. Q-instruct: Improving low-level visual abilities for multi-modality foundation models. In Proceedings of the IEEE/CVF conference on computer v...

  47. [55]

    Be- yond views: Measuring and predicting engagement in online videos

    Siqi Wu, Marian-Andrei Rizoiu, and Lexing Xie. Be- yond views: Measuring and predicting engagement in online videos. In Proceedings of the International AAAI Conference on Web and Social Media, 2018. 1, 3

  48. [56]

    Fvq: A large-scale dataset and a lmm-based method for face video quality assessment

    Sijing Wu, Yunhao Li, Ziwen Xu, Yixuan Gao, Huiyu Duan, Wei Sun, and Guangtao Zhai. Fvq: A large-scale dataset and a lmm-based method for face video quality assessment. arXiv preprint arXiv:2504.09255, 2025. 3

  49. [57]

    Attention based network for no- reference ugc video quality assessment

    Fuwang Yi, Mianyi Chen, Wei Sun, Xiongkuo Min, Yuan Tian, and Guangtao Zhai. Attention based network for no- reference ugc video quality assessment. In 2021 IEEE in- ternational conference on image processing (ICIP) , pages 1414–1418. IEEE, 2021. 3

  50. [58]

    Subjective quality assessment for youtube ugc dataset

    Joong Gon Yim, Yilin Wang, Neil Birkbeck, and Balu Adsumilli. Subjective quality assessment for youtube ugc dataset. In 2020 IEEE International Conference on Image Processing (ICIP), pages 131–135. IEEE, 2020. 2

  51. [59]

    Patch-vq:’patching up’the video qual- ity problem

    Zhenqiang Ying, Maniratnam Mandal, Deepti Ghadiyaram, and Alan Bovik. Patch-vq:’patching up’the video qual- ity problem. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages 14019– 14029, 2021. 2, 3

  52. [60]

    Deconfounding duration bias in watch-time predic- tion for video recommendation

    Ruohan Zhan, Changhua Pei, Qiang Su, Jianfeng Wen, Xueliang Wang, Guanyu Mu, Dong Zheng, Peng Jiang, and Kun Gai. Deconfounding duration bias in watch-time predic- tion for video recommendation. In Proceedings of the 28th ACM SIGKDD conference on knowledge discovery and data m...

  53. [61]

    Md-vqa: Multi-dimensional quality assessment for ugc live videos

    Zicheng Zhang, Wei Wu, Wei Sun, Danyang Tu, Wei Lu, Xiongkuo Min, Ying Chen, and Guangtao Zhai. Md-vqa: Multi-dimensional quality assessment for ugc live videos. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 1746–1755, 2023. 3

  54. [62]

    Benchmarking multi-dimensional aigc video qual- ity assessment: A dataset and unified model

    Zhichao Zhang, Wei Sun, Xinyue Li, Jun Jia, Xiongkuo Min, Zicheng Zhang, Chunyi Li, Zijian Chen, Puyi Wang, Fengyu Sun, et al. Benchmarking multi-dimensional aigc video qual- ity assessment: A dataset and unified model. arXiv preprint arXiv:2407.21408, 2024. 2

  55. [63]

    Human-activity agv quality assess- ment: A benchmark dataset and an objective evaluation met- ric

    Zhichao Zhang, Wei Sun, Xinyue Li, Yunhao Li, Qihang Ge, Jun Jia, Zicheng Zhang, Zhongpeng Ji, Fengyu Sun, Shangling Jui, et al. Human-activity agv quality assess- ment: A benchmark dataset and an objective evaluation met- ric. arXiv preprint arXiv:2411.16619, 2024. 2

  56. [64]

    Lmm-pcqa: Assisting point cloud quality assessment with lmm

    Zicheng Zhang, Haoning Wu, Yingjie Zhou, Chunyi Li, Wei Sun, Chaofeng Chen, Xiongkuo Min, Xiaohong Liu, Weisi Lin, and Guangtao Zhai. Lmm-pcqa: Assisting point cloud quality assessment with lmm. In Proceedings of the 32nd ACM International Conference on Multimedia, pages 7783–...

  57. [65]

    Q-eval-100k: Evaluating visual quality and alignment level for text-to-vision content

    Zicheng Zhang, Tengchuan Kou, Shushi Wang, Chunyi Li, Wei Sun, Wei Wang, Xiaoyu Li, Zongyu Wang, Xuezhi Cao, Xiongkuo Min, et al. Q-eval-100k: Evaluating visual quality and alignment level for text-to-vision content. In Proceed- ings of the Computer Vision and Pattern Recognit...

  58. [66]

    Leveraging mul- timodal large language models for joint discrete and contin- uous evaluation in text-to-image alignment

    Zhichao Zhang, Xinyue Li, Wei Sun, Zicheng Zhang, Yun- hao Li, Xiaohong Liu, and Guangtao Zhai. Leveraging mul- timodal large language models for joint discrete and contin- uous evaluation in text-to-image alignment. In Proceedings of the Computer Vision and Pattern Recognitio...

  59. [67]

    Vquala 2025 challenge on visual quality comparison for large multimodal models: Methods and results

    Hanwei Zhu, Haoning Wu, Zicheng Zhang, Lingyu Zhu, Yixuan Li, Peilin Chen, Shiqi Wang, Chris Wei Zhou, Lin- han Cao, Wei Sun, Xiangyang Zhu, Weixia Zhang, Yucheng Zhu, Jing Liu, Dandan Zhu, Guantao Zhai, Xiongkuo Min, Zhichao Zhang, Xinyue Li, Shubo Xu, Anh Dao, Yifan Li, Hong...

  60. [68]

    Internvl3: Exploring advanced training and test-time recipes for open-source multimodal models

    Jinguo Zhu, Weiyun Wang, Zhe Chen, Zhaoyang Liu, Shen- glong Ye, Lixin Gu, Hao Tian, Yuchen Duan, Weijie Su, Jie Shao, et al. Internvl3: Exploring advanced training and test-time recipes for open-source multimodal models. arXiv preprint arXiv:2504.10479, 2025. 3

Pith tools

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