Papers › ViTamin: Designing Scalable Vision Models in the Vision-Language Era

ViTamin: Designing Scalable Vision Models in the Vision-Language Era

2 Apr 2024CVPR 2024 1arXiv:2404.02132archive 2025-07-28

Jieneng Chen, Qihang Yu, Xiaohui Shen, Alan Yuille, Liang-Chieh Chen

Recent breakthroughs in vision-language models (VLMs) start a new page in the vision community. The VLMs provide stronger and more generalizable feature embeddings compared to those from ImageNet-pretrained models, thanks to the training on the large-scale Internet image-text pairs. However, despite the amazing achievement from the VLMs, vanilla Vision Transformers (ViTs) remain the default choice for the image encoder. Although pure transformer proves its effectiveness in the text encoding area, it remains questionable whether it is also the case for image encoding, especially considering that various types of networks are proposed on the ImageNet benchmark, which, unfortunately, are rarely studied in VLMs. Due to small data/model scale, the original conclusions of model design on ImageNet can be limited and biased. In this paper, we aim at building an evaluation protocol of vision models in the vision-language era under the contrastive language-image pretraining (CLIP) framework. We provide a comprehensive way to benchmark different vision models, covering their zero-shot performance and scalability in both model and training data sizes. To this end, we introduce ViTamin, a new vision models tailored for VLMs. ViTamin-L significantly outperforms ViT-L by 2.0% ImageNet zero-shot accuracy, when using the same publicly available DataComp-1B dataset and the same OpenCLIP training scheme. ViTamin-L presents promising results on 60 diverse benchmarks, including classification, retrieval, open-vocabulary detection and segmentation, and large multi-modal models. When further scaling up the model size, our ViTamin-XL with only 436M parameters attains 82.9% ImageNet zero-shot accuracy, surpassing 82.0% achieved by EVA-E that has ten times more parameters (4.4B).

PaperPDFConference PDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2404.02132")

Code

Syntology Ran 4 of 12 code samples harvested from 2 repositories linked to this paper; 8 have no recorded run. Of those that ran: 1 ran · violated contract; 2 ran · our draft was wrong; 1 ran with no contract checked.

By repository: official repository: 10 samples from 1 repository, 4 ran; community (archive-listed): 2 samples from 1 repository, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

beckschen/vitamin officialmentioned in papermentioned on GitHubpytorchApache-2.0 report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

12 samples harvested; 4 ran; 0 honoured the contract we drafted; 8 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · violated contract
2ran · our draft was wrong
1ran
8unverified

Licence: 0 of the 12 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

convert_to_custom_text_state_dict beckschen/vitamin/ViTamin/open_clip/model.py official repository ran · violated contract Apache-2.0 (permissive) · f19962ebb134b3d7 · report
get_cast_dtype beckschen/vitamin/ViTamin/open_clip/model.py official repository ran · our draft was wrong Apache-2.0 (permissive) · dcd422d66b0581d8 · report
get_input_dtype beckschen/vitamin/ViTamin/open_clip/model.py official repository ran · our draft was wrong Apache-2.0 (permissive) · b476c8cfbf0f1f47 · report
load_state_dict beckschen/vitamin/ViTamin/open_clip/factory.py official repository ran Apache-2.0 (permissive) · 4b3a4d17e1df3140 · report
gather_features beckschen/vitamin/ViTamin/open_clip/loss.py official repository unverified Apache-2.0 (permissive) · ddcbd45e940484ee · report
get_model_config beckschen/vitamin/ViTamin/open_clip/factory.py official repository unverified Apache-2.0 (permissive) · 5c7cf820e99443ff · report
get_tokenizer beckschen/vitamin/ViTamin/open_clip/factory.py official repository unverified Apache-2.0 (permissive) · c55b52840039f922 · report
load_openai_model beckschen/vitamin/ViTamin/open_clip/openai.py official repository unverified Apache-2.0 (permissive) · 8811c5d06f3a2eaa · report
prepare_inputs_for_generation beckschen/vitamin/ViTamin/open_clip/coca_model.py official repository unverified Apache-2.0 (permissive) · fb651d0a97fd4d3f · report
register_pooler beckschen/vitamin/ViTamin/open_clip/hf_model.py official repository unverified Apache-2.0 (permissive) · 2a377da4a76a2d44 · report
window_partition MindCode-4/code-5/swin/modeling_swin.py community (archive-listed) unverified Apache-2.0 (permissive) · 46cc4b5e03a8eb4c · report
window_reverse MindCode-4/code-5/swin/modeling_swin.py community (archive-listed) unverified Apache-2.0 (permissive) · 4feb0a65bcd6ff42 · report

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections