CoolFace
Modelpublic

fudan-generative-ai/Bard-VL-B4-Mask-2B-Instruct

sourceHugging Facemitupdated 5mo agoView on Hugging Face
3likes53downloads
Model Card

<h1 align="center">BARD: Bridging AutoRegressive and Diffusion Vision-Language Models Via Highly Efficient Progressive Block Merging and Stage-Wise Distillation</h1>

<p align="center"> <a href="https://github.com/cbyzju">Baoyou Chen</a><sup>1,3</sup> · <a href="https://github.com/1ring2rta">Hanchen Xia</a><sup>1</sup> · <a href="https://github.com/yhpengtu-rgb">Peng Tu</a><sup>1</sup> · <a href="https://github.com/Theseus-427">Haojun Shi</a><sup>1</sup> · <a href="https://github.com/AricGamma">Liwei Zhang</a><sup>1</sup> · <a href="https://github.com/weihaosky">Weihao Yuan</a><sup>4</sup> · <a href="https://sites.google.com/site/zhusiyucs/home">Siyu Zhu</a><sup>1,2,3,†</sup> </p>

<p align="center"> <sup>1</sup>Shanghai Academy of AI for Science &nbsp;&nbsp;·&nbsp;&nbsp; <sup>2</sup>Shanghai Innovation Institute &nbsp;&nbsp;·&nbsp;&nbsp; <sup>3</sup>Fudan University &nbsp;&nbsp;·&nbsp;&nbsp; <sup>4</sup>Nanjing University </p>

<p align="center"> 🤗 <a href="https://huggingface.co/fudan-generative-ai/Bard-VL-B4-Mask-2B-Instruct">Model</a> &nbsp;&nbsp;|&nbsp;&nbsp; 🏠 <a href="https://fudan-generative-vision.github.io/Bard-VL">Project Page</a> &nbsp;&nbsp;|&nbsp;&nbsp; 📑 <a href="https://huggingface.co/papers/2604.16514">Paper</a> &nbsp;&nbsp;|&nbsp;&nbsp; ✨ <a href="https://github.com/fudan-generative-vision/Bard-VL">Code</a> </p>

Bard-VL-B4-Mask-2B-Instruct

Bard-VL-B4-Mask-2B-Instruct is a 2B-class vision-language instruction model with masked discrete-diffusion decoding.

It is part of the Bard-VL family and is designed to bridge autoregressive and diffusion-style vision-language models through Progressive Block Merging (PBM) and Stage-Wise Distillation (SWD).

Compared with a standard autoregressive VLM release style, Bard-VL emphasizes:

  • parallel block-wise decoding instead of token-by-token generation
  • controllable response generation through blockwise denoising

✨ Highlights

  • Progressive Block Merging: Bard-VL increases the decoding block size progressively instead of jumping directly from autoregressive decoding to large-block diffusion.
  • Stage-Wise dVLM Distillation: Bard-VL distills from a small-block diffusion anchor in the same denoising regime, reducing autoregressive-to-diffusion transfer mismatch.
  • Packed Multimodal Attention Mask: the packed attention layout reuses shared multimodal context across clean and noisy branches to reduce redundant computation.
  • Mixed-Noise Training: Bard-VL combines masked-token and uniform token corruption to support both token completion and visible-token revision.

🧭 Method Structure

<p align="center"> <img src="./model.PNG" alt="Bard-VL method overview" width="100%"> </p>

<p align="center"> <em>Pipeline, block-wise attention mask, and mixed-noise scheduler used by Bard-VL.</em> </p>


📊 Evaluation Results

AutoRegressive Vision-Language Models

ModelParametersMMMU<sub>val</sub>MMMU-Pro<sub>standard</sub>MME<sub>sum</sub>RealWorldQAMMStarAI2DChartQA
Qwen3-VL4B47.935.0229770.556.981.080.9
Qwen3-VL8B53.036.0237969.559.983.584.0
InternVL3.54B57.438.2223666.765.680.686.2
InternVL3.58B57.241.0235963.166.382.187.0

Diffusion Vision-Language Models

ModelParametersMMMU<sub>val</sub>MMMU-Pro<sub>standard</sub>MME<sub>sum</sub>RealWorldQAMMStarAI2DChartQA
LLaDA-V8B48.835.4199863.460.477.878.2
Dream-VL7B51.625.0217967.759.980.486.2
LaviDa8B44.228.6171140.347.070.164.6
SDAR-VL8B44.028.2214266.153.379.682.4
MMaDA8B30.221.5128728.225.754.943.2
Dimple-VL7B46.424.1192451.947.774.258.4

Bard-VL Converted from Qwen3-VL

ModelParametersMMMU<sub>val</sub>MMMU-Pro<sub>standard</sub>MME<sub>sum</sub>RealWorldQAMMStarAI2DChartQA
Bard-VL (B = 32)2B42.027.9204564.653.172.676.8
Bard-VL (B = 32)4B53.034.2230571.963.682.880.2
Bard-VL (B = 32)8B54.637.6239370.765.083.284.6

🛠️ Environment

Make sure your environment is aligned with the repository requirements.txt:

bash
python>=3.10
torch==2.8.0
torchvision==0.23.0
transformers==4.57.3
diffusers==0.36.0
accelerate==1.12.0
deepspeed==0.17.0

Recommended runtime settings in the local repository:

bash
dtype = bfloat16
attn_implementation = sdpa
block_size = 4
denoising_steps = 4

🚀 Inference Example

The official repository inference flow is implemented in inference.py. A minimal image understanding example aligned with that script is shown below.

python
import torch
from transformers import AutoProcessor

from qwen_vl_utils import process_vision_info
from nemo_automodel.components.models.bard_vl import BardVLForConditionalGeneration

model_id = "fudan-generative-ai/Bard-VL-B4-Mask-2B-Instruct"
device = "cuda" if torch.cuda.is_available() else "cpu"

model = BardVLForConditionalGeneration.from_pretrained(
    model_id,
    dtype=torch.bfloat16,
    _attn_implementation="sdpa",
).to(device).eval()
processor = AutoProcessor.from_pretrained(model_id)

messages = [
    {
        "role": "system",
        "content": "You are a helpful assistant.",
    },
    {
        "role": "user",
        "content": [
            {"type": "image", "image": "assets/puzzle.jpg", "min_pixels": 256 * 256, "max_pixels": 2048 * 2048},
            {"type": "text", "text": "Please describe this image."},
        ],
    },
]

text = processor.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True,
)

image_inputs, video_inputs, video_kwargs = process_vision_info(
    messages,
    return_video_kwargs=True,
    return_video_metadata=False,
    image_patch_size=processor.image_processor.patch_size,
)

batch = processor(
    text=[text],
    images=image_inputs,
    videos=video_inputs,
    padding=False,
    return_tensors="pt",
    **video_kwargs,
).to(device)

response_ids = model.generate(
    batch,
    max_new_tokens=1024,
    block_size=4,
    denoising_steps=4,
    temperature=0.0,
    top_k=0,
    top_p=1.0,
    remasking_strategy="low_confidence_dynamic",
    confidence_threshold=0.5,
    return_step_stats=False,
)

print(processor.tokenizer.batch_decode(response_ids, skip_special_tokens=True)[0].strip())

For video understanding, replace the image message with the video example in inference.py.


📚 Citation

bibtex
@article{chen2026bard,
  title={BARD: Bridging AutoRegressive and Diffusion Vision-Language Models Via Highly Efficient Progressive Block Merging and Stage-Wise Distillation},
  author={Baoyou Chen and Hanchen Xia and Peng Tu and Haojun Shi and Liwei Zhang and Weihao Yuan and Siyu Zhu},
  journal={arXiv preprint arXiv:2604.16514},
  year={2026}
}