DCVLM-8B is the
x-large-scale reference 8B-parameter VLM from our
DataComp-VLM
paper, pretrained from scratch on
DCVLM-Baseline.
1import torch
2from transformers import AutoModel, AutoTokenizer
3
4path = "mlfoundations/dcvlm-8b-model"
5model = AutoModel.from_pretrained(
6 path, torch_dtype=torch.bfloat16, trust_remote_code=True, low_cpu_mem_usage=True
7).eval().cuda()
8tokenizer = AutoTokenizer.from_pretrained(path, trust_remote_code=True, use_fast=False)
Image preprocessing follows the standard InternVL-2.5 dynamic-tiling recipe
(448px tiles, max_dynamic_patch=12).
1@article{farina2026datacomp,
2 title={DataComp-VLM: Improved Open Datasets for Vision-Language Models},
3 author={Farina, Matteo and Udandarao, Vishaal and Nguyen, Thao and Kuzucu, Selim and B{\"o}ther, Maximilian and Hochlehnert, Andreas and Ghosh, Adhiraj and Nezhurina, Marianna and Roth, Karsten and Struber, Joschka and others},
4 journal={arXiv preprint arXiv:2606.28551},
5 year={2026}
6}