Pith. sign in

REVIEW 3 major objections 5 minor 73 references

Make me an Expert: Distilling from Generalist Black-Box Models into Specialized Models for Semantic Segmentation

T0 review · 3 major / 5 minor · reviewed 2026-08-05 · deepseek-v4-flash

Pith's one-line read This paper introduces Black-Box Distillation for semantic segmentation, training a specialized local model from only one-hot outputs of an open-vocabulary API, and shows that picking the API’s input scale with DINOv2 attention-map entropy b

desk verdict A realistic new black-box distillation setting with a modest, honest, but incompletely validated scale-selection trick; worth refereeing, but the core entropy proxy needs quantitative support. read the letter →

arxiv 2509.00509 v1 pith:AMIHPEZK submitted 2025-08-30 cs.CV

classification cs.CV
keywords Black-BoxDistillationsemanticsegmentationopen-vocabularypseudo-labelsresolutionselectionDINOv2attentionmapsone-hotAPIoutputsknowledge
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper proposes a new setting, Black-Box Distillation (B2D), in which a local semantic segmentation model is trained using nothing but one-hot segmentation maps returned by an open-vocabulary API—no weights, no logits, no internal representations. It argues that the central obstacle in this setting is the “curse of resolution”: different object classes are segmented best at very different input scales, so no single query resolution yields high-quality pseudo-labels for every pixel. To overcome this, the paper introduces ATGC, which runs a frozen DINOv2 encoder at several scales, scores the resulting attention maps by Shannon entropy, and sends the lowest-entropy crop to the API for pseudo-labelling. The contribution matters because it matches the constraints real commercial APIs impose, and the experiments show ATGC improving over naive fixed-scale transfer and over a reimplemented logit-requiring baseline—for example 50.1 vs 48.8 mIoU on Cityscapes with SAN—while staying within one-hot access.

What carries the argument

ATGC (ATtention-Guided sCaler) is a plug-and-play scale selector. For each crop it computes DINOv2 attention maps at N scales, treats each averaged [CLS]-patch attention map as a spatial probability distribution, and picks s* = argmin of its Shannon entropy; the API is queried at that scale and the pseudo-labels are rescaled to the original crop. The load-bearing logic is that a low-entropy, peaked attention map indicates a scale where the encoder recognizes objects, and—via the Platonic Representation Hypothesis—that recognition is treated as a proxy for the black-box API’s own segmentation quality.

What would settle it

Take a labeled set of target images; for each crop compute ATGC’s argmin-entropy scale and the oracle-best scale (the one whose API pseudo-labels have the highest pixel accuracy against ground truth). If the entropy-selected scale’s accuracy is not positively correlated with the oracle-best scale’s accuracy, or if students trained on entropy-selected pseudo-labels do not beat students trained on fixed scale-1 pseudo-labels on average, the central claim is falsified.

Watch

Extended reading notes

Core claim

ATGC establishes that open-vocabulary black-box teachers are strongly scale-dependent in segmentation: per-class IoU peaks vary from low scales for large context classes like “road” to high scales for small distant classes like “traffic sign”. Given an unlabeled target image crop, ATGC rescales it to each candidate scale, extracts DINOv2’s [CLS]-to-patch attention maps averaged over heads, normalizes each map as a distribution, and selects the scale with minimal entropy. That scale is then used to query the API and produce one-hot pseudo-labels, which are rescaled back and used as hard supervision for a student network, with a pixel-level agreement filter between API and student predictions.

Load-bearing premise

The method bets that DINOv2 attention entropy reliably predicts which input zoom will make the black-box API label a crop most accurately; when that correlation fails, the selected scale can produce worse pseudo-labels than the original crop, as the paper’s own failure figures show.

Editorial extensions

If this is right

  • If B2D holds, segmentation APIs that return only one-hot outputs can still be distilled into deployable local models; no logit access is required.
  • Because the teacher is open-vocabulary, the same pipeline can specialize a student to any user-chosen class vocabulary, rather than a fixed pretraining label set.
  • Pseudo-label quality in black-box segmentation distillation can be improved more by choosing the query scale than by confidence thresholding; ATGC’s scale mining plus a simple consistency filter captures much of the gap to the Oracle bound in the paper’s experiments.
  • Attention maps can be computed once per dataset, independent of the API model, so the scale-selection step can be amortized offline rather than costing extra API queries during training.
  • The domain-generalization results—training on Cityscapes and evaluating on ACDC outperforming direct ACDC training—suggest that larger unlabeled pools can outweigh noisy pseudo-labels under adverse-condition shifts.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Editorial inference: because ATGC selects one scale per crop rather than per class, it will systematically favor whatever class dominates the attention map; a natural extension is class-level or region-level scale mixing, and the paper’s own failure cases point in this direction.
  • Editorial inference: if DINOv2 entropy is a reliable proxy for API labeling quality, the same selector should transfer to other dense-prediction tasks such as depth estimation, panoptic segmentation, or instance segmentation, and to other frozen self-supervised encoders.
  • Editorial inference: a direct correlation test—measuring DINOv2 attention entropy against API pseudo-label pixel accuracy across scales on a labeled validation set—would sharpen the Platonic Representation Hypothesis from a heuristic into a quantitative design rule; the paper gives qualitative examples but not a systematic correlation.
  • Editorial inference: the offline caching of attention maps means ATGC can be cost-aware in practice—only the selected scale is ever sent to the paid API—though the paper does not formally measure API-call budgets.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper formalizes Black-Box Distillation (B2D) for semantic segmentation, in which a local student model is trained using only one-hot pseudo-labels from a black-box open-vocabulary API teacher, without access to logits or internal representations. The authors identify a 'curse of resolution': different object classes are segmented best at different input scales. Their method, ATGC, uses a frozen DINOv2 student encoder to compute attention-map entropy at multiple scales and selects the scale with lowest entropy as the query scale for the API; pseudo-labels are then filtered by agreement with the student and used to train the student via cross-entropy. Experiments on Cityscapes and ACDC with SAN and CLIP-DINOiser as APIs show that ATGC outperforms Naive Transfer, Random, Average, and a reimplemented CoRTE baseline, while being below an Oracle that selects the best pseudo-labels using ground truth. The paper openly discusses limitations and shows failure cases.

Significance. If the core mechanism is validated, the paper makes a useful practical contribution: it addresses a realistic constrained setting (API returns only hard labels), provides a reproducible pipeline (code released), and introduces a scale-selection method that does not require any API-internal information. The comparison against an Oracle and the inclusion of two different API models are commendable, as is the candid reporting of failure cases in App. C.5. However, the main empirical gains are modest (1.3-2.4 mIoU over Random on Cityscapes), and the central proxy assumption that DINOv2 attention entropy ranks pseudo-label quality is supported only by qualitative examples and an appeal to the Platonic Representation Hypothesis, not by a quantitative correlation. The hyperparameters (tau and the scale grid S) are selected on the same validation sets used for evaluation, and no variance across seeds is reported. These issues currently leave the central claim under-supported, though the approach is plausible and the gaps are addressable.

major comments (3)
  1. [Sec. 4.1, Eq. (3)] The method's load-bearing assumption is that the scale minimizing attention entropy also minimizes pseudo-label error. This is not validated quantitatively. Figs. 5 and 12 show selected examples, but the paper itself documents counterexamples in Fig. 13 and App. C.5 where the entropy-selected scale yields worse pseudo-labels than the original crop. The appeal to the Platonic Representation Hypothesis is not a substitute for a direct measurement. Please report, on a labeled validation set (e.g., Cityscapes val), a per-image and per-scale correlation between attention entropy and API pseudo-label accuracy (pixel accuracy or mIoU), and the fraction of images where argmin entropy matches argmax accuracy. Additionally, to show that the ranking—not just the induced scale distribution—matters, ablate Eq. (3) by replacing it with a random selection from the same per-image scale distribution (i.e
  2. [Sec. 5.1 and App. C.1, Tables 2-3] The filtering threshold tau=0.7 is chosen by an ablation on the same Cityscapes/CLIP-DINOiser validation set used for the main results, and the scale grid S is hand-specified with no sensitivity analysis. Moreover, although Tables 2-3 state results are averaged over 3 random seeds, no per-seed values, standard deviations, or confidence intervals are provided. With margins of only 1.3-2.4 mIoU over Random, the statistical significance of the improvement is unclear. Please provide per-seed results or error bars, and report sensitivity to tau and to the composition of S (e.g., a coarser or finer grid). If possible, select tau on a separate validation split or use a procedure that does not reuse the test/validation set for hyperparameter choice.
  3. [Sec. 4.2, Algorithm 2, and Sec. 5.1 baselines] It is unclear whether the pixel-level consistency filter (IoU >= tau) is applied to all baselines or only to ATGC. Algorithm 2 describes the filtering as part of ATGC's training, but the definitions of Naive Transfer, Random, and Average in Sec. 5.1 do not explicitly state that they use the same filtering. If the baselines are trained without filtering while ATGC is trained with it, the comparison conflates scale selection with filtering. Please state explicitly whether each baseline uses the same tau and the same filtering procedure. In addition, provide an ablation isolating the contributions: ATGC with and without filtering, and Random with and without filtering. This is important because the student model used for the consistency filter is itself trained on API pseudo-labels, so the filter is not independent of the teacher.
minor comments (5)
  1. [Sec. 5.3] In the sentence 'a phenomenon we examine in 3', the cross-reference is incomplete; it should point to the relevant subsection or appendix.
  2. [Fig. 5 caption] The caption says 'The resolution with the highest spatially averaged attention score is selected', but the method (Sec. 4.1, Eq. 3) selects the scale with the lowest entropy. Please align the caption with the method.
  3. [Sec. 5.1, Oracle baseline] The Oracle uses ground truth to select the pseudo-label with the highest pixel accuracy, while evaluation is mIoU. Pixel accuracy can favor larger classes; this mismatch should be noted so readers do not interpret the Oracle as an upper bound on mIoU.
  4. [App. C.1] The tau ablation is reported only for CLIP-DINOiser. Reporting it for SAN as well would help confirm that tau=0.7 is not API-specific.
  5. [General] The paper would benefit from stating explicitly for each baseline whether the same scale grid S and the same prompt ensembling are used. Currently the experimental setup gives details for ATGC but is less explicit for baselines.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: ATGC's entropy-based scale selection and consistency filtering do not reduce to the reported mIoU, and the API teacher is independent of the DINOv2 proxy.

full rationale

The derivation chain is self-contained and is evaluated against external benchmarks (Cityscapes, ACDC) with multiple baselines. The 'curse of resolution' is an empirical observation (Sec. 4, Fig. 3) obtained by measuring class-wise IoU of a fixed API model across scales; it is not built into ATGC by construction. ATGC's scale choice s* = argmin_j S(A_j) (Eq. 3) is computed from frozen DINOv2 attention maps, while pseudo-label quality comes from a disjoint open-vocabulary API; neither quantity is defined in terms of the other, so there is no self-definitional reduction. The consistency filter (Algorithm 2, lines 9-11) uses student predictions to gate API pseudo-labels, which is a standard self-training mechanism and does not by construction force the reported ground-truth mIoU. The Random baseline uses the same scale support, so ATGC's gain is not statistically forced. The main weakness is empirical: the entropy-to-pseudo-label-quality proxy is supported only qualitatively (Figs. 5 and 12), and the paper itself documents counterexamples (Fig. 13, App. C.5), making this a correctness/validity risk rather than a circularity. The only author self-citation is Ref. [52] for a generic domain-gap statement and is not load-bearing. No fitted parameter is renamed as a prediction, and no uniqueness theorem from the authors is invoked. Therefore the circularity score is 0.

Assumptions & free parameters 3 free parameters · 4 assumptions · 0 invented entities

No new physical entities are introduced. The paper relies on hand-chosen scale and threshold values and on the proxy assumption that DINOv2 attention entropy tracks API pseudo-label quality. The latter is the main unproven load-bearing premise.

free parameters (3)
  • Scale grid S = {0.25, 0.28, 0.34, 0.38, 0.44, 0.47, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0}
    Chosen by hand (Sec 5.1); limits which resolutions ATGC can pick and therefore bounds the achievable pseudo-label quality.
  • Filtering threshold tau = 0.7
    Selected through ablation on the Cityscapes and ACDC validation sets (Appendix C.1) and reused for all main results; a post-hoc tuning choice that directly affects reported mIoU.
  • Distillation weight alpha = 0
    In Eq. (1) alpha is set to 0, reducing the loss to cross-entropy with hard pseudo-labels. This is intended for the black-box setting, but it removes soft-target regularization and is a design choice that constrains the learning signal.
assumptions (4)
  • ad hoc to paper DINOv2 attention maps indicate the scale at which the black-box API will produce better pseudo-labels (Platonic Representation Hypothesis)
    Introduced in Sec 4.1 Discussion; no proof is given beyond qualitative examples, and failure cases in Fig. 13 show it is not always true.
  • domain assumption Shannon entropy of the normalized CLS-to-patch attention map is a valid objectness score
    Used in Eq. (2)-(3). Entropy is mathematically well-defined, but its role as a proxy for pseudo-label quality is an empirical assumption that is only partially validated.
  • domain assumption Open-vocabulary API can be prompted with template embeddings to produce usable one-hot segmentation labels for arbitrary class vocabularies
    Borrowed from CLIP and SAN practice (Appendix B); needed so pseudo-labels exist at all, while the unknown pre-training domain may produce noisy labels for far-domain targets.
  • domain assumption Resolution sensitivity is the dominant controllable factor in pseudo-label quality
    The framework centers on scale selection; Sec 5.3 itself admits that domain gap, dataset size, and weather corruption also strongly affect performance.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Make me an Expert: Distilling from Generalist Black-Box Models into Specialized Models for Semantic Segmentation." pith.science (2026). https://pith.science/paper/AMIHPEZK

@misc{pith2026250900509,
  author       = {Pith},
  title        = {Pith review of: Make me an Expert: Distilling from Generalist Black-Box Models into Specialized Models for Semantic Segmentation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/AMIHPEZK}},
  note         = {Machine review of arXiv:2509.00509}
}
read the original abstract

The rise of Artificial Intelligence as a Service (AIaaS) democratizes access to pre-trained models via Application Programming Interfaces (APIs), but also raises a fundamental question: how can local models be effectively trained using black-box models that do not expose their weights, training data, or logits, a constraint in which current domain adaptation paradigms are impractical ? To address this challenge, we introduce the Black-Box Distillation (B2D) setting, which enables local model adaptation under realistic constraints: (1) the API model is open-vocabulary and trained on large-scale general-purpose data, and (2) access is limited to one-hot predictions only. We identify that open-vocabulary models exhibit significant sensitivity to input resolution, with different object classes being segmented optimally at different scales, a limitation termed the "curse of resolution". Our method, ATtention-Guided sCaler (ATGC), addresses this challenge by leveraging DINOv2 attention maps to dynamically select optimal scales for black-box model inference. ATGC scores the attention maps with entropy to identify informative scales for pseudo-labelling, enabling effective distillation. Experiments demonstrate substantial improvements under black-box supervision across multiple datasets while requiring only one-hot API predictions. Our code is available at https://github.com/yasserben/ATGC.

Figures

Figures reproduced from arXiv: 2509.00509 by the authors.

Figure 1
Figure 1. Comparison of black-box adaptation settings. (a) Previous approaches assume access to API logits when leverag￾ing pseudo-labels for student model training, which makes them “gray-box”. (b) Our proposed Black-Box Distillation (B2D) set￾ting defines a more realistic “black-box” scenario, using open￾vocabulary APIs without any access to logits. Gemini [15]. While AIaaS simplifies infrastructure man￾agement, it presents… view at source ↗
Figure 2
Figure 2. Scale-dependent segmentation quality. We observe that segmentation performance varies with input resolution. Zooming in (×2, left) enhances segmentation of small, distant objects like pedestrians, while zooming out (×0.5, right) improves large contextual elements by capturing broader spatial relationships. We refer to this issue as “curse of resolution” where no single resolution optimally segments all object classe… view at source ↗
Figure 3
Figure 3. Impact of scale on class-wise IoU performance. The plot shows that performance varies across scales and across classes: larger-scale objects like “road” have peak performance at a lower resolution (×0.5), while smaller-scale, distant objects like “traffic sign” is better segmented at higher resolutions (×1.75). class-wise intersection over union (IoU) performance for a selected few classes. From [PITH_FULL_IMAGE:fi… view at source ↗
Figures from the paper (10 more)
Figure 4
Figure 4. Figure 4: Overview of ATGC and our training pipeline. (Left) (1) Training pipeline overview: Our approach operates under minimal access, relying solely on one-hot predictions (0/1) from the open-vocabulary black-box model. The student network is trained using knowledge distillat…
Figure 5
Figure 5. Figure 5: DINOv2 and [CLS] Token for Optimal Resolution Selection. DINOv2’s [CLS] token attention maps are computed at multiple scales for each input image. The resolution with the high￾est spatially averaged attention score (e.g., ×1 vs. ×2) is selected to generate pseudo-label…
Figure 6
Figure 6. Figure 6: Class-wise IoU performance. The fixed scale approach (gray line) shows performance when training at specific scales. At the same time, horizontal baselines represent naive (no scal￾ing), random scale selection, and our ATGC method. Results demonstrate that optimal scal…
Figure 7
Figure 7. Figure 7: Performance of SAN across all scaling factors. The first subplot (top-left) shows the impact of resolution scaling on average mIoU, with subsequent subplots detailing individual class performances. Scaling factors (×0.25, ×1, ..., ×2) represent resolution changes, yiel…
Figure 8
Figure 8. Figure 8: Performance of CLIP-DINOiser across all scaling factors. The first subplot (top-left) shows the impact of resolution scaling on average mIoU, with subsequent subplots detailing individual class performances. Scaling factors (×0.25, ×1, ..., ×2) represent resolution cha…
Figure 9
Figure 9. Figure 9: Class-wise performance after training across all scaling factors. The first subplot (top-left) shows the impact training with a fixed resolution on average mIoU, with subsequent subplots detailing individual class performances. The red line represents our method ATGC, …
Figure 10
Figure 10. Figure 10: Qualitative comparison of different methods. From left to right: input RGB image, predictions from CoRTE [18], Naive Transfer, our method ATGC (Ours), and ground-truth segmentation maps. Our method shows improved segmentation quality of small objects, such as “poles” …
Figure 11
Figure 11. Figure 11: Effect of confidence threshold τ on pseudo-label filtering performance. performance, we present additional qualitative validation in [PITH_FULL_IMAGE:figures/full_fig_p016_11.png]
Figure 12
Figure 12. Figure 12: DINOv2 and [CLS] Token for Optimal Resolution Selection. DINOv2’s [CLS] token attention maps are computed at multiple scales for each input image. The resolution with the highest spatially averaged attention score (e.g., ×1, ×1.5 and ×2) is selected to generate pseudo…
Figure 13
Figure 13. Figure 13: Failure cases of our framework. The figure illustrates cases where the pseudo-label given by the API model on the cropped image (Xc) is more accurate than the one given by the API using the optimal scale (X ∗ c ). Despite leveraging the optimal scale, the API may stru…

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

73 extracted references · 57 canonical work pages

  1. [1]

    Gpt-4 technical report

    Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023. 1, 3

  2. [2]

    Deep vit features as dense visual descriptors

    Shir Amir, Yossi Gandelsman, Shai Bagon, and Tali Dekel. Deep vit features as dense visual descriptors. In ECCV, 2022. 5

  3. [3]

    Foundation models defining a new era in vision: a sur- vey and outlook

    Muhammad Awais, Muzammal Naseer, Salman Khan, Rao Muhammad Anwer, Hisham Cholakkal, Mubarak Shah, Ming-Hsuan Yang, and Fahad Shahbaz Khan. Foundation models defining a new era in vision: a sur- vey and outlook. PAMI, 2025. 3

  4. [4]

    Explaining neural scaling laws

    Yasaman Bahri, Ethan Dyer, Jared Kaplan, Jaehoon Lee, and Utkarsh Sharma. Explaining neural scaling laws. Proceedings of the National Academy of Sci- ences, 121(27):e2311878121, 2024. 1

  5. [5]

    Knowledge distillation: A good teacher is patient and consistent

    Lucas Beyer, Xiaohua Zhai, Am ´elie Royer, Larisa Markeeva, Rohan Anil, and Alexander Kolesnikov. Knowledge distillation: A good teacher is patient and consistent. In CVPR, pages 10925–10934, 2022. 3

  6. [6]

    On the opportunities and risks of foundation models

    Rishi Bommasani, Drew A Hudson, Ehsan Adeli, Russ Altman, Simran Arora, Sydney von Arx, Michael S Bernstein, Jeannette Bohg, Antoine Bosse- lut, Emma Brunskill, et al. On the opportunities and risks of foundation models. arXiv preprint arXiv:2108.07258, 2021. 1, 3

  7. [7]

    Language models are few-shot learners

    Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. NeurIPS, 2020. 1

  8. [8]

    Coco-stuff: Thing and stuff classes in context

    Holger Caesar, Jasper Uijlings, and Vittorio Ferrari. Coco-stuff: Thing and stuff classes in context. In CVPR, 2018. 6

Show all 73 references
  1. [9]

    All about structure: Adapting struc- tural information across domains for boosting seman- tic segmentation

    Wei-Lun Chang, Hui-Po Wang, Wen-Hsiao Peng, and Wei-Chen Chiu. All about structure: Adapting struc- tural information across domains for boosting seman- tic segmentation. In CVPR, pages 1900–1909, 2019. 3

  2. [10]

    Zero-shot domain generalization of foundational models for 3d medical image segmen- tation: An experimental study

    Soumitri Chattopadhyay, Basar Demir, and Marc Niethammer. Zero-shot domain generalization of foundational models for 3d medical image segmen- tation: An experimental study. arXiv preprint arXiv:2503.22862, 2025. 3

  3. [11]

    Frugal- gpt: How to use large language models while reduc- ing cost and improving performance

    Lingjiao Chen, Matei Zaharia, and James Zou. Frugal- gpt: How to use large language models while reduc- ing cost and improving performance. arXiv preprint arXiv:2305.05176, 2023. 1

  4. [12]

    Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs

    Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. PAMI, 40(4):834–848, 2017. 2

  5. [13]

    Reproducible scaling laws for contrastive language-image learning

    Mehdi Cherti, Romain Beaumont, Ross Wightman, Mitchell Wortsman, Gabriel Ilharco, Cade Gordon, Christoph Schuhmann, Ludwig Schmidt, and Jenia Jitsev. Reproducible scaling laws for contrastive language-image learning. In CVPR, 2023. 1

  6. [14]

    Cat-seg: Cost aggregation for open-vocabulary semantic segmentation

    Seokju Cho, Heeseong Shin, Sunghwan Hong, Anurag Arnab, Paul Hongsuck Seo, and Seungryong Kim. Cat-seg: Cost aggregation for open-vocabulary semantic segmentation. In CVPR, 2024. 6

  7. [15]

    Gemini 2.5: Pushing the frontier with advanced reasoning, multimodality, long context, and next generation agentic capabilities

    Gheorghe Comanici, Eric Bieber, Mike Schaek- ermann, Ice Pasupat, Noveen Sachdeva, Inderjit Dhillon, Marcel Blistein, Ori Ram, Dan Zhang, Evan Rosen, et al. Gemini 2.5: Pushing the frontier with advanced reasoning, multimodality, long context, and next generation agentic capab...

  8. [16]

    The cityscapes dataset for semantic urban scene under- standing

    Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for semantic urban scene under- standing. In CVPR, 2016. 2, 6, 3

  9. [17]

    Semantic image segmentation: Two decades of research

    Gabriela Csurka, Riccardo V olpi, Boris Chidlovskii, et al. Semantic image segmentation: Two decades of research. Foundations and Trends® in Computer Graphics and Vision, 14(1-2):1–162, 2022. 8

  10. [18]

    Cross-domain transfer learning with corte: Consistent and reliable transfer from black-box to lightweight segmentation model

    Claudia Cuttano, Antonio Tavera, Fabio Cermelli, Giuseppe Averta, and Barbara Caputo. Cross-domain transfer learning with corte: Consistent and reliable transfer from black-box to lightweight segmentation model. In CVPR, 2023. 2, 3, 4, 6, 7, 8, 5

  11. [19]

    Bert: Pre-training of deep bidirec- tional transformers for language understanding

    Jacob Devlin. Bert: Pre-training of deep bidirec- tional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. 1

  12. [20]

    Uncertainty reduction for model adaptation in semantic segmentation

    Francois Fleuret et al. Uncertainty reduction for model adaptation in semantic segmentation. In CVPR, pages 9613–9623, 2021. 3

  13. [21]

    Greg Heinrich, Mike Ranzinger, Hongxu Yin, Yao Lu, Jan Kautz, Andrew Tao, Bryan Catanzaro, and Pavlo Molchanov. Radiov2. 5: Improved baselines for agglomerative vision foundation models. In CVPR, pages 22487–22497, 2025. 3

  14. [22]

    Distill- ing the knowledge in a neural network

    Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distill- ing the knowledge in a neural network. arXiv preprint arXiv:1503.02531, 2015. 1

  15. [23]

    Dis- tilling the knowledge in a neural network, 2015

    Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Dis- tilling the knowledge in a neural network, 2015. 3, 4

  16. [24]

    Large language models are reasoning teachers

    Namgyu Ho, Laura Schmid, and Se-Young Yun. Large language models are reasoning teachers. arXiv preprint arXiv:2212.10071, 2022. 2

  17. [25]

    Cycada: Cycle-consistent adversarial domain adaptation

    Judy Hoffman, Eric Tzeng, Taesung Park, Jun-Yan Zhu, Phillip Isola, Kate Saenko, Alexei Efros, and 9 Trevor Darrell. Cycada: Cycle-consistent adversarial domain adaptation. In ICML, pages 1989–1998, 2018. 3

  18. [26]

    Fcns in the wild: Pixel-level adversar- ial and constraint-based adaptation

    Judy Hoffman, Dequan Wang, Fisher Yu, and Trevor Darrell. Fcns in the wild: Pixel-level adversar- ial and constraint-based adaptation. arXiv preprint arXiv:1612.02649, 2016. 1, 3

  19. [27]

    Conditional generative adversarial net- work for structured domain adaptation

    Weixiang Hong, Zhenzhen Wang, Ming Yang, and Junsong Yuan. Conditional generative adversarial net- work for structured domain adaptation. In CVPR, pages 1335–1344, 2018. 3

  20. [28]

    Daformer: Improving network architectures and train- ing strategies for domain-adaptive semantic segmen- tation

    Lukas Hoyer, Dengxin Dai, and Luc Van Gool. Daformer: Improving network architectures and train- ing strategies for domain-adaptive semantic segmen- tation. In CVPR, pages 9924–9935, 2022. 4, 6

  21. [29]

    Hrda: Context-aware high-resolution domain-adaptive se- mantic segmentation

    Lukas Hoyer, Dengxin Dai, and Luc Van Gool. Hrda: Context-aware high-resolution domain-adaptive se- mantic segmentation. In ECCV, 2022. 2, 4, 6

  22. [30]

    The platonic representation hypothesis

    Minyoung Huh, Brian Cheung, Tongzhou Wang, and Phillip Isola. The platonic representation hypothesis. arXiv preprint arXiv:2405.07987, 2024. 6

  23. [31]

    Adaptive mixtures of local experts

    Robert A Jacobs, Michael I Jordan, Steven J Nowlan, and Geoffrey E Hinton. Adaptive mixtures of local experts. Neural computation, 3(1):79–87, 1991. 1

  24. [32]

    Tiny- BERT: Distilling BERT for natural language under- standing

    Xiaoqi Jiao, Yichun Yin, Lifeng Shang, Xin Jiang, Xiao Chen, Linlin Li, Fang Wang, and Qun Liu. Tiny- BERT: Distilling BERT for natural language under- standing. In Findings of the Association for Computa- tional Linguistics, 2020. 2

  25. [33]

    Dinov2 meets text: A unified framework for image-and pixel-level vision-language alignment

    Cijo Jose, Th ´eo Moutakanni, Dahyun Kang, Fed- erico Baldassarre, Timoth´ee Darcet, Hu Xu, Daniel Li, Marc Szafraniec, Micha ¨el Ramamonjisoa, Maxime Oquab, et al. Dinov2 meets text: A unified framework for image-and pixel-level vision-language alignment. In CVPR, pages 24905...

  26. [34]

    Adam: A method for stochastic gradient descent

    Diederik P Kingma and Jimmy Lei Ba. Adam: A method for stochastic gradient descent. In ICLR: international conference on learning representations, pages 1–15, 2015. 1

  27. [35]

    Berg, Wan-Yen Lo, Piotr Doll´ar, and Ross B

    Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer Whitehead, Alexander C. Berg, Wan-Yen Lo, Piotr Doll´ar, and Ross B. Girshick. Segment anything. ICCV, 2023. 1, 3

  28. [36]

    General- ize then adapt: Source-free domain adaptive semantic segmentation

    Jogendra Nath Kundu, Akshay Kulkarni, Amit Singh, Varun Jampani, and R Venkatesh Babu. General- ize then adapt: Source-free domain adaptive semantic segmentation. In ICCV, pages 7046–7056, 2021. 3

  29. [37]

    Testing knowledge distilla- tion theories with dataset size

    Giulia Lanzillotta, Felix Sarnthein, Gil Kur, Thomas Hofmann, and Bobby He. Testing knowledge distilla- tion theories with dataset size. InNeurIPS 2024 Work- shop on Scientific Methods for Understanding Deep Learning, 2024. 8

  30. [38]

    Dine: Domain adaptation from single and multiple black-box predictors

    Jian Liang, Dapeng Hu, Jiashi Feng, and Ran He. Dine: Domain adaptation from single and multiple black-box predictors. In CVPR, 2022. 3

  31. [39]

    Tinygsm: achieving 80% on gsm8k with small language models

    Bingbin Liu, Sebastien Bubeck, Ronen Eldan, Ja- nardhan Kulkarni, Yuanzhi Li, Anh Nguyen, Rachel Ward, and Yi Zhang. Tinygsm: achieving 80% on gsm8k with small language models. arXiv preprint arXiv:2312.09241, 2023. 2

  32. [40]

    Visual instruction tuning

    Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning. NeurIPS,

  33. [41]

    Early-learning reg- ularization prevents memorization of noisy labels

    Sheng Liu, Jonathan Niles-Weed, Narges Razavian, and Carlos Fernandez-Granda. Early-learning reg- ularization prevents memorization of noisy labels. NeurIPS, 33:20331–20342, 2020. 5

  34. [42]

    Adaptive multi-teacher multi-level knowledge distillation

    Yuang Liu, Wei Zhang, and Jun Wang. Adaptive multi-teacher multi-level knowledge distillation. Neu- rocomputing, 415:106–113, 2020. 3

  35. [43]

    Source-free domain adaptation for semantic segmentation

    Yuang Liu, Wei Zhang, and Jun Wang. Source-free domain adaptation for semantic segmentation. In CVPR, 2021. 3

  36. [44]

    Improved knowledge distillation via teacher assistant

    Seyed Iman Mirzadeh, Mehrdad Farajtabar, Ang Li, Nir Levine, Akihiro Matsukawa, and Hassan Ghasemzadeh. Improved knowledge distillation via teacher assistant. In AAAI, pages 5191–5198, 2020. 3

  37. [45]

    Orca: Progressive learning from com- plex explanation traces of gpt-4

    Subhabrata Mukherjee, Arindam Mitra, Ganesh Jawa- har, Sahaj Agarwal, Hamid Palangi, and Ahmed Awadallah. Orca: Progressive learning from com- plex explanation traces of gpt-4. arXiv preprint arXiv:2306.02707, 2023. 2

  38. [46]

    Maxime Oquab, Timoth ´ee Darcet, Theo Moutakanni, Huy V . V o, Marc Szafraniec, Vasil Khalidov, Pierre Fernandez, Daniel Haziza, Francisco Massa, Alaaeldin El-Nouby, Russell Howes, Po-Yao Huang, Hu Xu, Vasu Sharma, Shang-Wen Li, Wojciech Galuba, Mike Rabbat, Mido Assran, Nicol...

  39. [47]

    Unsupervised intra-domain adaptation for semantic segmentation through self- supervision

    Fei Pan, Inkyu Shin, Francois Rameau, Seokju Lee, and In So Kweon. Unsupervised intra-domain adaptation for semantic segmentation through self- supervision. arXiv preprint arXiv:2004.07703, 2020. 3

  40. [48]

    Learning transferable visual models from natu- ral language supervision

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sas- try, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natu- ral language supervision. In ICML, pages 8748–8763. PmLR, 2021. 3, 1

  41. [49]

    Am-radio: Agglomerative vision foun- dation model reduce all domains into one

    Mike Ranzinger, Greg Heinrich, Jan Kautz, and Pavlo Molchanov. Am-radio: Agglomerative vision foun- dation model reduce all domains into one. In CVPR, pages 12490–12500, 2024. 3 10

  42. [50]

    Raspberry Pi 4 Model B

    Raspberry Pi Foundation. Raspberry Pi 4 Model B. https : / / www . raspberrypi . com / products / raspberry - pi - 4 - model - b/,

  43. [51]

    Playing for data: Ground truth from computer games

    Stephan R Richter, Vibhav Vineet, Stefan Roth, and Vladlen Koltun. Playing for data: Ground truth from computer games. In Computer Vision–ECCV 2016: 14th European Conference, Amsterdam, The Nether- lands, October 11-14, 2016, Proceedings, Part II 14 , pages 102–118. Springer, 2016. 4

  44. [52]

    Curriculum graph co- teaching for multi-target domain adaptation

    Subhankar Roy, Evgeny Krivosheev, Zhun Zhong, Nicu Sebe, and Elisa Ricci. Curriculum graph co- teaching for multi-target domain adaptation. InCVPR, pages 5351–5360, 2021. 7

  45. [53]

    Acdc: The adverse conditions dataset with correspon- dences for semantic driving scene understanding

    Christos Sakaridis, Dengxin Dai, and Luc Van Gool. Acdc: The adverse conditions dataset with correspon- dences for semantic driving scene understanding. In CVPR, 2021. 2, 6

  46. [54]

    Unic: Universal classification models via multi-teacher dis- tillation

    Mert B ¨ulent Sarıyıldız, Philippe Weinzaepfel, Thomas Lucas, Diane Larlus, and Yannis Kalantidis. Unic: Universal classification models via multi-teacher dis- tillation. In ECCV, pages 353–371. Springer, 2024. 3

  47. [55]

    Bbox-adapter: Lightweight adapting for black-box large language models

    Haotian Sun, Yuchen Zhuang, Wei Wei, Chao Zhang, and Bo Dai. Bbox-adapter: Lightweight adapting for black-box large language models. arXiv preprint arXiv:2402.08219, 2024. 2, 3

  48. [56]

    Dime-fm: Distilling multimodal and efficient foundation models

    Ximeng Sun, Pengchuan Zhang, Peizhao Zhang, Hardik Shah, Kate Saenko, and Xide Xia. Dime-fm: Distilling multimodal and efficient foundation models. In ICCV, pages 15521–15533, 2023. 1, 3, 4

  49. [57]

    Scal- ing laws vs model architectures: How does inductive bias influence scaling? In Findings of the Association for Computational Linguistics: EMNLP 2023 , 2023

    Yi Tay, Mostafa Dehghani, Samira Abnar, Hyung Chung, William Fedus, Jinfeng Rao, Sharan Narang, Vinh Tran, Dani Yogatama, and Donald Metzler. Scal- ing laws vs model architectures: How does inductive bias influence scaling? In Findings of the Association for Computational Ling...

  50. [58]

    Llama 2: Open foundation and fine- tuned chat models

    Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine- tuned chat models. arXiv preprint arXiv:2307.09288,

  51. [59]

    Ensemble adversarial training: Attacks and defenses

    Florian Tram `er, Alexey Kurakin, Nicolas Papernot, Ian Goodfellow, Dan Boneh, and Patrick McDaniel. Ensemble adversarial training: Attacks and defenses. arXiv preprint arXiv:1705.07204, 2017. 3

  52. [60]

    Contrastive learning rivals masked image modeling in fine-tuning via feature distillation

    Yixuan Wei, Han Hu, Zhenda Xie, Zheng Zhang, Yue Cao, Jianmin Bao, Dong Chen, and Baining Guo. Contrastive learning rivals masked image modeling in fine-tuning via feature distillation. arXiv preprint arXiv:2205.14141, 2022. 3

  53. [61]

    Stronger fewer & superior: Harness- ing vision foundation models for domain generalized semantic segmentation

    Zhixiang Wei, Lin Chen, Yi Jin, Xiaoxiao Ma, Tianle Liu, Pengyang Ling, Ben Wang, Huaian Chen, and Jinjin Zheng. Stronger fewer & superior: Harness- ing vision foundation models for domain generalized semantic segmentation. In CVPR, 2024. 6

  54. [62]

    Clip-dinoiser: Teaching clip a few dino tricks for open-vocabulary semantic segmentation

    Monika Wysocza ´nska, Oriane Sim ´eoni, Micha ¨el Ra- mamonjisoa, Andrei Bursuc, Tomasz Trzci ´nski, and Patrick P´erez. Clip-dinoiser: Teaching clip a few dino tricks for open-vocabulary semantic segmentation. In ECCV, pages 320–337. Springer, 2024. 7, 8, 1

  55. [63]

    Open- vocabulary panoptic segmentation with text-to-image diffusion models

    Jiarui Xu, Sifei Liu, Arash Vahdat, Wonmin Byeon, Xiaolong Wang, and Shalini De Mello. Open- vocabulary panoptic segmentation with text-to-image diffusion models. In CVPR, 2023. 2

  56. [64]

    Side adapter network for open- vocabulary semantic segmentation

    Mengde Xu, Zheng Zhang, Fangyun Wei, Han Hu, and Xiang Bai. Side adapter network for open- vocabulary semantic segmentation. In CVPR, 2023. 4, 6, 7, 8, 1

  57. [65]

    Knowledge distillation using hierar- chical self-supervision augmented distribution

    Chuanguang Yang, Zhulin An, Linhang Cai, and Yongjun Xu. Knowledge distillation using hierar- chical self-supervision augmented distribution. IEEE transactions on neural networks and learning systems, 35(2):2094–2108, 2022. 2

  58. [66]

    A gift from knowledge distillation: Fast opti- mization, network minimization and transfer learning

    Junho Yim, Donggyu Joo, Jihoon Bae, and Junmo Kim. A gift from knowledge distillation: Fast opti- mization, network minimization and transfer learning. In CVPR, pages 4133–4141, 2017. 3

  59. [67]

    Learning from multiple teacher networks

    Shan You, Chang Xu, Chao Xu, and Dacheng Tao. Learning from multiple teacher networks. In Proceed- ings of the 23rd ACM SIGKDD international confer- ence on knowledge discovery and data mining , pages 1285–1294, 2017. 3

  60. [68]

    Os- prey: Pixel understanding with visual instruction tun- ing

    Yuqian Yuan, Wentong Li, Jian Liu, Dongqi Tang, Xinjie Luo, Chi Qin, Lei Zhang, and Jianke Zhu. Os- prey: Pixel understanding with visual instruction tun- ing. In CVPR, 2024. 1

  61. [69]

    Paying more attention to attention: Improving the perfor- mance of convolutional neural networks via attention transfer

    Sergey Zagoruyko and Nikos Komodakis. Paying more attention to attention: Improving the perfor- mance of convolutional neural networks via attention transfer. arXiv preprint arXiv:1612.03928, 2016. 3

  62. [70]

    Unsupervised domain adaptation of black-box source models

    Haojian Zhang, Yabin Zhang, Kui Jia, and Lei Zhang. Unsupervised domain adaptation of black-box source models. arXiv preprint arXiv:2101.02839, 2021. 2, 3

  63. [71]

    Black-box unsupervised domain adapta- tion with bi-directional atkinson-shiffrin memory

    Jingyi Zhang, Jiaxing Huang, Xueying Jiang, and Shijian Lu. Black-box unsupervised domain adapta- tion with bi-directional atkinson-shiffrin memory. In ICCV, 2023. 3

  64. [72]

    road, street, highway

    Yuanbing Zhu, Bingke Zhu, Zhen Chen, Huan Xu, Ming Tang, and Jinqiao Wang. Mrovseg: Breaking the resolution curse of vision-language models in open- vocabulary semantic segmentation. arXiv preprint arXiv:2408.14776, 2024. 4 11 Make me an Expert: Distilling from Generalist Blac...

  65. [2019]

    Accessed: 2025-07-16. 3

Pith tools

Reviewed August 5, 2026 · model on record in the stance chip above.