1
stars
10
commits
1
linked in READMEs
Jun 3, 2026
updated
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)
This repository includes the merged model checkpoint and GRACE-specific quantized weights:
model-00001-of-00003.safetensorsmodel-00002-of-00003.safetensorsmodel-00003-of-00003.safetensorsmodel.safetensors.index.jsonqat_quantized_weights.binconfig.jsongeneration_config.jsontokenizer.modeltokenizer_config.jsonspecial_tokens_map.jsonThis model is intended for research on efficient vision-language models, quantization-aware training, and multimodal model compression.
Potential use cases include:
Please use a LLaVA-compatible inference environment together with the GRACE quantization-aware loading code.
from transformers import AutoTokenizer, AutoModelForCausalLM
repo_id = "ForeverBlue/LLaVA-1.5-7B-GRACE-W4G128"
tokenizer = AutoTokenizer.from_pretrained(repo_id, use_fast=False)
model = AutoModelForCausalLM.from_pretrained(
repo_id,
trust_remote_code=True,
device_map="auto"
)
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:
https://github.com/ForeverBlue816/GRACE
If you use this model, please cite:
@article{chen2026gated,
title={Gated Relational Alignment via Confidence-based Distillation for Efficient VLMs},
author={Chen, Yanlong and Habibian, Amirhossein and Benini, Luca and Li, Yawei},
journal={arXiv preprint arXiv:2601.22709},
year={2026}
}
8 commits
2 commits
1
stars
10
commits
1
linked in READMEs
Jun 3, 2026
updated
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)
This repository includes the merged model checkpoint and GRACE-specific quantized weights:
model-00001-of-00003.safetensorsmodel-00002-of-00003.safetensorsmodel-00003-of-00003.safetensorsmodel.safetensors.index.jsonqat_quantized_weights.binconfig.jsongeneration_config.jsontokenizer.modeltokenizer_config.jsonspecial_tokens_map.jsonThis model is intended for research on efficient vision-language models, quantization-aware training, and multimodal model compression.
Potential use cases include:
Please use a LLaVA-compatible inference environment together with the GRACE quantization-aware loading code.
from transformers import AutoTokenizer, AutoModelForCausalLM
repo_id = "ForeverBlue/LLaVA-1.5-7B-GRACE-W4G128"
tokenizer = AutoTokenizer.from_pretrained(repo_id, use_fast=False)
model = AutoModelForCausalLM.from_pretrained(
repo_id,
trust_remote_code=True,
device_map="auto"
)
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:
https://github.com/ForeverBlue816/GRACE
If you use this model, please cite:
@article{chen2026gated,
title={Gated Relational Alignment via Confidence-based Distillation for Efficient VLMs},
author={Chen, Yanlong and Habibian, Amirhossein and Benini, Luca and Li, Yawei},
journal={arXiv preprint arXiv:2601.22709},
year={2026}
}
8 commits
2 commits