CoolFace
Modelpublic

kkkkkklinhan/llava_qwen_slowfast_w2s_stage3

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
Model Card

Generalizable Video Quality Assessment via Weak-to-Strong Learning

This repository contains the model weights for the paper Generalizable Video Quality Assessment via Weak-to-Strong Learning.

Video quality assessment (VQA) seeks to predict the perceptual quality of a video in alignment with human visual perception. This work explores weak-to-strong (W2S) learning as a new paradigm for advancing VQA without reliance on human-labeled datasets, achieving state-of-the-art results across both in-domain and out-of-distribution benchmarks.

Installation

bash
pip install transformers==4.44.0 pytorchvideo

Usage

To use this model, follow the feature extraction and inference steps provided in the official repository.

1. Extract SlowFast features

Navigate to the slowfast_feature directory and run:

bash
python extract_slowfast_feature.py --feature_save_folder path/to/save_features --videos_dir path/to/videos

2. Run Inference

Ensure your test JSON file follows the format specified in the GitHub README, then run:

bash
python infer_pair.py

Citation

bibtex
@article{cao2025breaking,
  title={Breaking annotation barriers: Generalized video quality assessment via ranking-based self-supervision},
  author={Cao, Linhan and Sun, Wei and Zhang, Kaiwei and Peng, Yicong and Zhai, Guangtao and Min, Xiongkuo},
  journal={arXiv e-prints},
  pages={arXiv--2505},
  year={2025}
}

@article{cao2025towards,
  title={Towards Generalized Video Quality Assessment: A Weak-to-Strong Learning Paradigm},
  author={Cao, Linhan and Sun, Wei and Zhu, Xiangyang and Zhang, Kaiwei and Jia, Jun and Peng, Yicong and Zhu, Dandan and Zhai, Guangtao and Min, Xiongkuo},
  journal={arXiv preprint arXiv:2505.03631},
  year={2025}
}