Quicksviewer is a Large Multimodal Model (LMM) that can efficiently understand videos with extensive frames as input. Quicksviewer adopts a new perceiving paradigm that partitions a video of nonuniform density into varying cubes using Gumbel
Softmax, followed by a unified resampling for each cube to achieve dynamic online compression. We train two versions of models (i.e., Quicksviewer, and Quicksviewer-Llama3.1) from language backbones through three progressive stages to build video LMMs, each stage incorporating lengthy videos on average of 420s/1fps thanks to the perceiving efficiency. Our models achieves remarkable performance on standard video understanding benchmarks, and the intermediate segmentations generated by our model can also help for analyzing continuous events in videos.
Quicksviewer also preserve the single/multi-image(s) understanding capabilities, as well as the in-context learning capabilities.
Prompt: Please describe the content of this video in detail.
Model: The video starts with a remote-controlled car being assembled by a person, who connects the wires to the car. After the assembly is complete, the car is shown driving on various terrains, including grass, dirt roads, and snowy fields. The car navigates through these different environments smoothly, showcasing its versatility. The camera then captures the car driving on a frozen lake, where it creates ripples and splashes in the water as it moves forward. The car continues to drive around the lake, demonstrating its ability to handle challenging conditions. The video ends with the person who assembled the car walking away from the scene, suggesting that the car has been successfully tested and is ready for use. Overall, the video showcases the remote-controlled car's capabilities, highlighting its ability to navigate different types of terrain and challenging conditions.
Single-image understanding
Prompt: Where is it located?
Model: This is the Longmen Grottoes, located in Luoyang, Henan, China.
Multi-image reasoning
Prompt: What are the species of the birds, and which one inhabits the red area marked in the first
map?
Model: The first bird is a South American ostrich, the second is an African ostrich, and
the third is a cassowary. The African ostrich inhabits the red area marked in the first map.
Install the necessary Python packages in the environment.
pip install -r requirements.txt
Using Docker
Using our provided Dockerfile to build a docker image.
Launch a containter using the docker image created in last step, which has all dependencies you may need.
Training
Quicksviewer training contains three steps, and we have provided standard implementations of the hyperparameters for reproducing our models. Please check out the scripts folder.
Step-1: Alignment
We utilize both interleaved and captioning image-text corpuses,
and video-text captioning corpus to train our models for multimodal alignment. The datasets consist of OBELICS, LCS558K, FineVideo, and ANetCaptions.
bash scripts/stage1.sh
and the trained models will be saved to output/quicksviewer-s1.
Step-2: Pre-training
We use large-scale image-text data with additional video-text data to pre-train our models, building fundamental visual understanding abilities. The data consist of a subset of 2.99M samples from LLaVA-OneVision-SingleImage, a sampled subset of 75K video QAs from FineVideo, and 38K captioning pairs from ShareGPT4Video.
bash scripts/stage2.sh
and the trained models will be saved to output/quicksviewer-s2.
Step-3: Supervised fine-tuning
We primarily leverage extensive video-text paired corpus to
train our models in this stage, enabling robust video understanding capabilities. We primarily utilize
a subset of 476K samples from VideoChat2-IT, and a subset of
79K samples from ShareGPTVideo . To enhance adaptation
to long video scenarios, we further integrate 5K samples from MovieChat, and
39K samples derived by LongVILA. The
image-text corpus incorporates a sampled subset of 100K
samples from LLaVA-OneVision-MultiImages.
bash scripts/stage3.sh
and the trained models will be saved to output/quicksviewer-s3.
Evaluations
We have implemented all evaluation benchmarks into one bash script, by using task-specific command for particular evaluation. See run_eval for details.
For example, run evaluation on the benchmark of Video-MME for the trained checkpoint checkpoints/quicksviewer-s3/checkpoint-10000, using 420 input frames and 1 FPS:
The service is a research preview, subject to the model License of Qwen or License of LLaMA. Please contact us if you find any potential violation.
Citations
@article{qi2025lmm,
title={Quicksviewer: An LMM for Efficient Video Understanding via Reinforced Compression of Video Cubes},
author={Qi, Ji and Yao, Yuan and Bai, Yushi and Xu, Bin and Li, Juanzi and Liu, Zhiyuan and Chua, Tat-Seng},
journal={arXiv preprint arXiv:2504.15270},
year={2025}
}
Acknowledgement
We are grateful for the following awesome projects our work arising from: