LLaVA-1.5-7B-GRACE-W4G128
This repository contains a GRACE-trained LLaVA-1.5-7B checkpoint with quantization-aware training (QAT), W4G128 group-wise INT4 quantization, and learned scales.
This model is associated with our ICML 2026 paper:
Gated Relational Alignment via Confidence-based Distillation for Efficient VLMs
Yanlong Chen, Amirhossein Habibian, Luca Benini, Yawei Li
Accepted to the International Conference on Machine Learning (ICML 2026)
Model Details
- Base model: liuhaotian/llava-v1.5-7b
- Model family: LLaVA-1.5
- Method: GRACE
- Quantization: W4G128 group-wise INT4 QAT
- Scale setting: learned scales
- Repository: ForeverBlue/LLaVA-1.5-7B-GRACE-W4G128
Files
This repository includes the merged model checkpoint and GRACE-specific quantized weights:
model-00001-of-00003.safetensors
model-00002-of-00003.safetensors
model-00003-of-00003.safetensors
model.safetensors.index.json
qat_quantized_weights.bin
config.json
generation_config.json
tokenizer.model
tokenizer_config.json
special_tokens_map.json
Intended Use
This model is intended for research on efficient vision-language models, quantization-aware training, and multimodal model compression.
Potential use cases include:
- evaluating INT4 quantized vision-language models;
- studying quantization-aware training for multimodal models;
- reproducing or extending GRACE-style efficient VLM experiments;
- comparing quantized LLaVA-1.5 variants under multimodal benchmarks.
Loading
Please use a LLaVA-compatible inference environment together with the GRACE quantization-aware loading code.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3repo_id = "ForeverBlue/LLaVA-1.5-7B-GRACE-W4G128"
4
5tokenizer = AutoTokenizer.from_pretrained(repo_id, use_fast=False)
6model = AutoModelForCausalLM.from_pretrained(
7 repo_id,
8 trust_remote_code=True,
9 device_map="auto"
10)
Important Notes
This checkpoint includes QAT-specific quantized weights in qat_quantized_weights.bin. Depending on the inference codebase, additional GRACE-specific quantization-aware loading logic may be required.
The standard from_pretrained call may load the model configuration and checkpoint files, but fully reproducing the intended INT4 QAT behavior may require the GRACE repository:
Limitations
- This model is released for research purposes.
- The quantized checkpoint may require custom loading logic for QAT-specific weights.
- Performance may vary depending on the evaluation codebase, preprocessing, generation parameters, and multimodal benchmark implementation.
- Users should follow the license and usage restrictions of the original LLaVA-1.5 base model.
Citation
If you use this model, please cite:
1@article{chen2026gated,
2 title={Gated Relational Alignment via Confidence-based Distillation for Efficient VLMs},
3 author={Chen, Yanlong and Habibian, Amirhossein and Benini, Luca and Li, Yawei},
4 journal={arXiv preprint arXiv:2601.22709},
5 year={2026}
6}