MOSS-VL is an open vision-language model family from OpenMOSS, supporting image understanding, long-video understanding, and realtime streaming interaction. This repository provides the FP8-quantized checkpoint of MOSS-VL-Instruct-0708.
This is the 24 GiB quantized release of MOSS-VL-Instruct-0708. The same
checkpoint directory is supported by both the standard Transformers inference
path and the native SGLang MOSS-VL backend.
The FP8 weights are shared across both engines. Transformers reads the HQQ KV8
configuration from generation_config.json; SGLang loads the same weights with
model_impl=sglang and uses its own cache implementation.
Quantization benchmark
Across the selected benchmarks, the quantized models remain close to their
non-quantized BF16 counterparts, showing that overall model quality is largely
preserved after quantization.
MOSS-VL quantization benchmark comparison
Hardware requirements
The model is designed to run with the Transformers inference path on a single
NVIDIA GPU with 24 GB of VRAM. SGLang memory requirements depend on its server
configuration and KV cache allocation.
Transformers environment
Installation
Start from the standard MOSS-VL release environment, then install the FP8
checkpoint loader and HQQ cache backend:
The service listens on http://127.0.0.1:30000 by default. Keep
MODEL_IMPL=sglang; do not force the Transformers remote implementation.
SGLang intentionally uses its native BF16 KV cache rather than the HQQ cache in
generation_config.json.
Configuration files
config.json: model and FP8 weight/activation configuration.
1@misc{mossvl,
2 title = {MOSS-VL Technical Report},
3 author = {Wang, Pengyu and Tan, Chenkun and Zhou, Shaojun and Zhou, Qirui and Chen, Yanxin and He, Xingyang and Zeng, Huazheng and Cheng, Jijun and Wang, Chenghao and Qian, Xiaomeng and Wang, Pengfei and Huang, Zhan and Gao, Shanqing and Huang, Wei and Cao, Longjun and Ran, Wu and Liu, Jie and Zhu, Changtai and Wang, Hongkai and Tian, Yixian and Liu, Chenghao and Ye, Zhen and Wang, Xinghao and Jiang, Botian and Feng, Guoguo and Fei, Zhaoye and Li, Ruixiao and Chen, Mingshu and Gao, Yang and Cheng, Qinyuan and Li, Shimin and Qiu, Xipeng},
4 year = {2026},
5 eprint = {2608.15045},
6 archivePrefix = {arXiv},
7 primaryClass = {cs.CV},
8 url = {https://arxiv.org/abs/2608.15045}
9}
1011@misc{mossvideopreview,
12 title = {{MOSS-Video-Preview: Toward Real-Time Video Understanding via Cross-Attention}},
13 author = {Pengyu Wang and Chenkun Tan and Shaojun Zhou and Wei Huang and Qirui Zhou and Zhan Huang and Zhen Ye and Jijun Cheng and Xiaomeng Qian and Yanxin Chen and Xingyang He and Huazheng Zeng and Chenghao Wang and Pengfei Wang and Hongkai Wang and Shanqing Gao and Yixian Tian and Chenghao Liu and Xinghao Wang and Botian Jiang and Xipeng Qiu},
14 year = {2026},
15 eprint = {2606.07639},
16 archivePrefix = {arXiv},
17 primaryClass = {cs.CV},
18 url = {https://arxiv.org/abs/2606.07639}
19}