billpsomas/efficient-probing-heads
Efficient Probing heads
Paper: Attention, Please! Revisiting Attentive Probing Through the Lens of Efficiency (ICLR 2026) · arXiv:2506.10178 · code & leaderboard
Trained EP (efficient probing) heads for all 37 frozen encoders of the standing ImageNet-1k benchmark at billpsomas/efficient-probing. Each head is a multi-query cross-attention pooling + BatchNorm + linear classifier, trained for 90 epochs with LARS on frozen features. No backbone weights are included -- each config.json records the exact --model / loader flags to rebuild the encoder from its original source.
Why two kinds of head: the training code initially kept only a rolling per-epoch checkpoint, so a finished run left its final epoch behind rather than its best. 13 early-peaking models were later re-run with best-epoch checkpointing, so their heads are the peak and reproduce the leaderboard number exactly. Every file's metadata records both its own accuracy at the saved epoch and the table's best-epoch figure, so nothing has to be taken on trust.
Loading
from huggingface_hub import hf_hub_download
import torch
path = hf_hub_download("billpsomas/efficient-probing-heads",
"dinov3_vit7b/ep_head.pth")
ck = torch.load(path, map_location="cpu", weights_only=False)
head_state, meta = ck["state_dict"], ck["meta"]
# with the benchmark repo on PYTHONPATH:
# model = backbones.build_backbone(args, device) # args from meta
# probe_heads.build_probe_head(model, args)
# model.head.load_state_dict(head_state, strict=True)Or evaluate directly with the benchmark's tool:
python tools/eval_reimagenet.py predict <backbone flags from config.json> \
--head_ckpt ep_head.pth --pred_out preds.jsonHeads
Full provenance (training logs, exact commands, the leaderboard itself) lives in the GitHub repo. Heads were trained on ImageNet-1k; use accordingly.
Citation
@inproceedings{psomas2026attention,
title = {Attention, Please! Revisiting Attentive Probing Through the Lens of Efficiency},
author = {Bill Psomas and Dionysis Christopoulos and Eirini Baltzi and Ioannis Kakogeorgiou and Tilemachos Aravanis and Nikos Komodakis and Konstantinos Karantzalos and Yannis Avrithis and Giorgos Tolias},
booktitle = {The Fourteenth International Conference on Learning Representations},
year = {2026},
url = {https://openreview.net/forum?id=PXo0gtT7Al}
}