REVIEW 3 major objections 4 minor 1 cited by
This paper claims that vision-language object detectors can be adapted at test time with a low-overhead combination of IoU-weighted entropy and image-conditioned prompt selection.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-04 13:23 UTC pith:RLLJCFG7
load-bearing objection A solid, honest first TTA method for VLODs, with broad benchmarks; the main caveats are missing variance and an unisolated IWE on driving scenes. the 3 major comments →
VLOD-TTA: Test-Time Adaptation of Vision-Language Object Detectors
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The central discovery is that the spatial redundancy of a vision-language detector's own proposal output is a reliable correctness prior under domain shift, and that text prompts can be adapted per image by ranking them against region features. The paper repurposes the entropy-minimization objective used in classification TTA: instead of treating each proposal equally, it builds class-specific IoU graphs, weights each proposal by the size of its connected component raised to a power γ, and minimizes the weighted entropy. In parallel, it replaces prompt averaging with a selection of the top fraction ρ of prompts per class based on mean proposal-level similarity, then combines the selected-pro
What carries the argument
Two interlocking mechanisms carry the argument. The first, IoU-weighted entropy (IWE), constructs a per-class graph whose edges connect proposals with IoU above a threshold θ, defines connected components as proposal clusters, and assigns each proposal weight |component|^γ inside the entropy loss; this concentrates adaptation on dense, class-consistent regions. The second, image-conditioned prompt selection (IPS), scores each of T text prompts per class by its mean cosine similarity to normalized region features, retains the top-ρ prompts per class, averages only those, and fuses the result with the original detection score via λ. Lightweight adapters (vision and neck for YOLO-World, text en
Load-bearing premise
The method's core assumption is that regions with many mutually overlapping proposals that predict the same class are more likely to be correct, while isolated proposals are likely wrong; if a domain shift makes proposal overlap a poor proxy for correctness—such as scenes full of tiny, sparsely overlapping objects—the IoU-weighted objective loses its advantage.
What would settle it
Compare VLOD-TTA against standard entropy minimization (γ=0) on a target set of small-object urban scenes where proposals rarely overlap; if the IoU-weighted variant does not beat the unweighted baseline on such data, the overlap assumption is not holding. An even cleaner test: at test time, drop all but one proposal per object before adaptation and check whether the reported gains vanish.
If this is right
- A single gradient step per image, with adapters reset afterward, is enough to improve both CNN- and transformer-based VLODs under a wide range of shifts.
- IoU-weighted entropy reduces the confirmation bias of standard entropy minimization, cutting false positives from isolated boxes and improving AP50 and AP75, not just classification.
- Per-image prompt selection is a lightweight alternative to prompt ensembling that avoids the score dilution prompt averaging can cause in detectors.
- Gains hold across style, weather, low light, and 15 corruption types, including large relative improvements on digital corruptions such as JPEG compression and glass blur.
- Because the method preserves zero-shot weights, it can be applied repeatedly without accumulating drift or forgetting source knowledge.
Where Pith is reading between the lines
- The overlap-weighting principle is not specific to detection; the same IoU-graph weighting could be transferred to test-time adaptation for instance segmentation or other dense-prediction tasks that produce redundant output masks.
- The paper resets adapters after every image; retaining a small per-domain memory of prompt rankings or cluster statistics could yield larger gains on long video streams, at the cost of latency.
- The prompt-selection step effectively performs a per-image nearest-prototype lookup in embedding space; a natural extension is to cluster test images by prompt affinity and share selected prompts across a batch.
- If overlap structure degrades under severe noise, a learned estimator of proposal reliability could replace the fixed IoU weight rather than resorting to standard entropy.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes VLOD-TTA, a test-time adaptation method specifically for vision-language object detectors (YOLO-World and Grounding DINO). The method has two main components: (i) IoU-weighted entropy minimization (IWE), which weights each proposal's entropy by the size of its connected component in a class-conditional IoU graph, and (ii) image-conditioned prompt selection (IPS), which ranks a pool of prompts per class by mean image-level similarity and fuses the top-ranked prompts' logits with the detector's original logits. Only lightweight adapters and a text residual are optimized for a single step per image, then reset. Experiments cover stylized datasets (Watercolor, ClipArt, Comic), driving scenes (Cityscapes, BDD100K), low-light images (ExDark), and common corruptions (PASCAL-C, COCO-C). The paper reports consistent improvements over zero-shot and several TTA baselines adapted to detection.
Significance. If the empirical claims hold, this is a practical first TTA framework for VLODs: it adds only ~1.6M trainable parameters and runs at 20 FPS, notably cheaper than prompt-tuning or cache-based baselines. The benchmark is broad, spanning six main datasets plus 15 corruptions at multiple severities, and code is released. The proposed components are simple, well motivated, and architecture-agnostic. The main reservations are that the effectiveness of IWE is only isolated on stylized datasets, the style-shift results are obtained with hyperparameters tuned on the same test sets, and no statistical uncertainty is reported for the small gains on driving scenes. These issues weaken the 'consistently outperforms' claim as currently written.
major comments (3)
- [§4.2, Table 1; §5] The Conclusion states that 'IoU-weighted entropy can underperform in scenes dominated by many tiny, low-overlap objects (e.g., Cityscapes).' Yet the only ablation that isolates IWE from the rest of the pipeline (the γ sweep) is reported in Fig. 6 on Watercolor, ClipArt, and Comic. On Cityscapes and BDD100K, the full method always couples IWE with IPS and adapters, so the small margins over the Adapter baseline (e.g., YW Cityscapes mAP 19.4 vs 19.1, AP75 18.6 vs 18.3) cannot be attributed to IWE. The central mechanism's benefit in the exact regime the authors flag as problematic is therefore unverified. A γ=0 ablation (IWE off) on Cityscapes, BDD100K, and ExDark would resolve whether IWE helps, hurts, or is neutral in those domains, and is needed to support the cross-domain consistency claim.
- [§4.3–4.4, Fig. 6] Hyperparameters θ, γ, ρ, λ, and M are selected using sensitivity analyses on the same three style-shift datasets (Watercolor, ClipArt, Comic) that form the main style-shift results in Table 1. The reported style-shift gains are therefore in-sample with respect to hyperparameter selection. No sensitivity or validation is provided on driving, low-light, or corruption datasets. To make the robustness claim credible, either report sensitivity on held-out domains or justify fixed hyperparameters using a validation split.
- [§4.2, Tables 1–2] No error bars, standard deviations, or significance tests are reported. Several key improvements over the strongest baseline are small, e.g., YW Cityscapes AP75 18.6 vs 18.3, YW Cityscapes mAP 19.4 vs 19.1, and GD Watercolor mAP 38.9 vs 38.4. Because the abstract claims consistent outperformance across all shift types, the reader cannot judge whether these differences are within noise. Please report variability across seeds or bootstrap resamples, and where feasible paired significance tests.
minor comments (4)
- [Appendix A.1] The cosine–Euclidean equivalence is a trivial identity given ℓ2-normalized vectors and does not affect the method. It can be removed or compressed to a footnote.
- [§4.3 and Appendix A.5] The main text refers to 'Fig. 4/9 vary prompt strategies,' but Fig. 4 compares prompt-generation strategies while Fig. 9 (Appendix A.5) compares prompt averaging vs. selection. Clarify the references to avoid confusion.
- [Abstract] The phrase 'prior state-of-the-art method' is vague. The baselines in the paper are adaptations of classification TTA methods to detection, not prior VLOD-TTA methods; please specify what the prior SOTA refers to.
- [§4.1] The claim of '96 distinct test scenarios' is not broken down. A short enumeration (e.g., 6 datasets × 1 setting + 15 corruptions × 5 severities + ...) would make the count verifiable.
Circularity Check
No significant circularity: VLOD-TTA is an empirical TTA method validated on external benchmarks; its self-referential objectives are standard self-training, not hidden a priori derivations.
full rationale
The paper's contributions are empirical: two test-time objectives (IWE and IPS) plus adapters, benchmarked against external datasets (Watercolor/ClipArt/Comic, Cityscapes, BDD100K, ExDark, PASCAL-C, COCO-C) and TTA baselines. IWE weights proposal entropies by connected-component size in a class-consistent IoU graph (Eq. 3). This is defined in terms of the model's own posteriors, but the paper never presents it as an externally derived prediction; self-referential weighting is the standard mechanism of self-training TTA, and the claimed improvements are measured against held-out benchmarks, not derived from the objective's definition. IPS ranks prompts by mean class-specific logits and fuses selected scores (Eq. 5); again this is a bootstrap procedure whose value is shown empirically. The Appendix A.1 cosine-Euclidean proposition is a straightforward identity (||v-e||^2 = 2-2r) and does not constitute a derivation of the method. The only overlapping-author citation, Medeiros et al. (2025), is used for context ('the only work that adapts across modalities, but in a supervised setting') and to motivate visual prompting; it is not load-bearing for the central claim. The admitted weakness on tiny low-overlap objects (Cityscapes, Sec. 5) and the absence of a gamma=0 ablation there are concerns about attribution and experimental coverage, not circularity. Hyperparameters are tuned on style-shift datasets, which may bias those results, but this is not a definitional or self-citation circularity.
Axiom & Free-Parameter Ledger
free parameters (8)
- IoU threshold theta =
not stated in main text; sensitivity suggests 0.5-0.7
- Cluster exponent gamma =
1.1
- Prompt-selection fraction rho =
0.25
- Fusion coefficient lambda =
0.3 (YOLO-World), 0.1 (Grounding DINO)
- Top-M proposals =
600
- Adapter sizes =
reduction=4, kernel=3 (YW); reduction=16 (GD)
- Prompt pool size and content =
T=16 GPT-generated prompts per class
- Test-time optimized adapters Phi and residual vector Delta =
zero-initialized, optimized per image by IWE
axioms (5)
- domain assumption Spatially overlapping, class-consistent proposals are more reliable than isolated boxes (Sec 3.2)
- domain assumption Minimizing predictive entropy sharpens correct labels under shift and does not systematically amplify false positives once weighted (Sec 3.1, Sec 5)
- domain assumption Lightweight adapters with frozen backbone and per-image reset preserve zero-shot capability (Sec 3.4)
- domain assumption Mean proposal-level cosine similarity is a valid image-level prompt-compatibility score (Sec 3.3, A.1)
- ad hoc to paper GPT-generated, dataset-agnostic prompts are an unbiased prompt pool for all test domains (Sec A.6)
read the original abstract
Vision-language object detectors (VLODs) such as YOLO-World and Grounding DINO exhibit strong zero-shot generalization, but their performance degrades under distribution shift. Test-time adaptation (TTA) offers a practical way to adapt models during inference using only unlabeled target (test) data. However, while TTA has made substantial progress in vision-language classification, its application to VLODs remains largely unexplored. The only prior method relies on a mean-teacher framework that introduces significant latency and memory overhead. To this end, we introduce VLOD-TTA, a TTA method that leverages dense proposal overlap and image-conditioned prompts to adapt VLODs with low additional overhead. VLOD-TTA combines (i) an IoU-weighted entropy objective that emphasizes spatially coherent proposal clusters and mitigates confirmation bias from isolated boxes, and (ii) image-conditioned prompt selection that ranks prompts by image-level compatibility and aggregates the most informative prompt scores for detection. Our experiments across diverse distribution shifts, including artistic domains, adverse driving conditions, low-light imagery, and common corruptions, indicate that VLOD-TTA consistently outperforms standard TTA baselines and the prior state-of-the-art method using YOLO-World and Grounding DINO. Our code: https://github.com/imatif17/VLOD-TTA
Figures
Forward citations
Cited by 1 Pith paper
-
Reward-Guided Semantic Evolution for Test-time Adaptive Object Detection
RGSE adapts text embeddings at test time via evolutionary search, using cosine similarity rewards from high-confidence visual proposals to improve open-vocabulary object detection under distribution shifts.
Reference graph
Works this paper leans on
-
[1]
Exploring test-time adaptation for object detection in continually changing environments, 2025
Shilei Cao, Juepeng Zheng, Yan Liu, Baoquan Zhao, Ziqi Yuan, Weijia Li, Runmin Dong, and Haohuan Fu. Exploring test-time adaptation for object detection in continually changing environments, 2025. URL https://arxiv.org/abs/2406.16439
Pith/arXiv arXiv 2025
-
[2]
Conv-adapter: Exploring parameter efficient transfer learning for convnets, 2024
Hao Chen, Ran Tao, Han Zhang, Yidong Wang, Xiang Li, Wei Ye, Jindong Wang, Guosheng Hu, and Marios Savvides. Conv-adapter: Exploring parameter efficient transfer learning for convnets, 2024. URL https://arxiv.org/abs/2208.07463
Pith/arXiv arXiv 2024
-
[3]
Yijin Chen, Xun Xu, Yongyi Su, and Kui Jia. Stfar: Improving object detection robustness at test-time by self-training with feature alignment regularization, 2023. URL https://arxiv.org/abs/2303.17937
Pith/arXiv arXiv 2023
-
[4]
Yolo-world: Real-time open-vocabulary object detection, 2024
Tianheng Cheng, Lin Song, Yixiao Ge, Wenyu Liu, Xinggang Wang, and Ying Shan. Yolo-world: Real-time open-vocabulary object detection, 2024. URL https://arxiv.org/abs/2401.17270
Pith/arXiv arXiv 2024
-
[5]
The cityscapes dataset for semantic urban scene understanding, 2016
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 understanding, 2016. URL https://arxiv.org/abs/1604.01685
Pith/arXiv arXiv 2016
-
[6]
Williams, John Winn, and Andrew Zisserman
Mark Everingham, Luc Gool, Christopher K. Williams, John Winn, and Andrew Zisserman. The pascal visual object classes (voc) challenge. Int. J. Comput. Vision, 88 0 (2): 0 303–338, June 2010. ISSN 0920-5691. doi:10.1007/s11263-009-0275-4. URL https://doi.org/10.1007/s11263-009-0275-4
-
[7]
Frustratingly easy test-time adaptation of vision-language models
Matteo Farina, Gianni Franchi, Giovanni Iacca, Massimiliano Mancini, and Elisa Ricci. Frustratingly easy test-time adaptation of vision-language models. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024. URL https://openreview.net/forum?id=eQ6VjBhevn
2024
-
[8]
Diverse data augmentation with diffusions for effective test-time prompt tuning, 2023
Chun-Mei Feng, Kai Yu, Yong Liu, Salman Khan, and Wangmeng Zuo. Diverse data augmentation with diffusions for effective test-time prompt tuning, 2023. URL https://arxiv.org/abs/2308.06038
Pith/arXiv arXiv 2023
-
[9]
Deep learning-based object detection in augmented reality: A systematic review
Yalda Ghasemi, Heejin Jeong, Sung Ho Choi, Kyeong-Beom Park, and Jae Yeol Lee. Deep learning-based object detection in augmented reality: A systematic review. Computers in Industry, 139: 0 103661, 2022
2022
-
[10]
Open-vocabulary object detection via vision and language knowledge distillation, 2022
Xiuye Gu, Tsung-Yi Lin, Weicheng Kuo, and Yin Cui. Open-vocabulary object detection via vision and language knowledge distillation, 2022. URL https://arxiv.org/abs/2104.13921
Pith/arXiv arXiv 2022
-
[11]
Deep learning for object detection and scene perception in self-driving cars: Survey, challenges, and open issues
Abhishek Gupta, Alagan Anpalagan, Ling Guan, and Ahmed Shaharyar Khwaja. Deep learning for object detection and scene perception in self-driving cars: Survey, challenges, and open issues. Array, 10: 0 100057, 2021
2021
-
[12]
Benchmarking neural network robustness to common corruptions and perturbations
Dan Hendrycks and Thomas Dietterich. Benchmarking neural network robustness to common corruptions and perturbations. In International Conference on Learning Representations, 2019
2019
-
[13]
Parameter-efficient transfer learning for nlp, 2019
Neil Houlsby, Andrei Giurgiu, Stanislaw Jastrzebski, Bruna Morrone, Quentin de Laroussilhe, Andrea Gesmundo, Mona Attariyan, and Sylvain Gelly. Parameter-efficient transfer learning for nlp, 2019. URL https://arxiv.org/abs/1902.00751
Pith/arXiv arXiv 2019
-
[14]
Cross-domain weakly-supervised object detection through progressive domain adaptation, 2018
Naoto Inoue, Ryosuke Furuta, Toshihiko Yamasaki, and Kiyoharu Aizawa. Cross-domain weakly-supervised object detection through progressive domain adaptation, 2018. URL https://arxiv.org/abs/1803.11365
Pith/arXiv arXiv 2018
-
[15]
Visual prompt tuning
Menglin Jia, Luming Tang, Bor-Chun Chen, Claire Cardie, Serge Belongie, Bharath Hariharan, and Ser-Nam Lim. Visual prompt tuning. In European Conference on Computer Vision (ECCV), 2022
2022
-
[16]
Efficient test-time adaptation of vision-language models
Adilbek Karmanov, Dayan Guan, Shijian Lu, Abdulmotaleb El Saddik, and Eric Xing. Efficient test-time adaptation of vision-language models. The IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024
2024
-
[17]
Grounded language-image pre-training, 2022
Liunian Harold Li, Pengchuan Zhang, Haotian Zhang, Jianwei Yang, Chunyuan Li, Yiwu Zhong, Lijuan Wang, Lu Yuan, Lei Zhang, Jenq-Neng Hwang, Kai-Wei Chang, and Jianfeng Gao. Grounded language-image pre-training, 2022. URL https://arxiv.org/abs/2112.03857
Pith/arXiv arXiv 2022
-
[18]
Clu-cnns: Object detection for medical images
Zhuoling Li, Minghui Dong, Shiping Wen, Xiang Hu, Pan Zhou, and Zhigang Zeng. Clu-cnns: Object detection for medical images. Neurocomputing, 350: 0 53--59, 2019
2019
-
[19]
Microsoft coco: Common objects in context
Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Doll \'a r, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In European conference on computer vision, pp.\ 740--755. Springer, 2014
2014
-
[20]
Grounding dino: Marrying dino with grounded pre-training for open-set object detection, 2024
Shilong Liu, Zhaoyang Zeng, Tianhe Ren, Feng Li, Hao Zhang, Jie Yang, Qing Jiang, Chunyuan Li, Jianwei Yang, Hang Su, Jun Zhu, and Lei Zhang. Grounding dino: Marrying dino with grounded pre-training for open-set object detection, 2024. URL https://arxiv.org/abs/2303.05499
Pith/arXiv arXiv 2024
-
[21]
Getting to know low-light images with the exclusively dark dataset
Yuen Peng Loh and Chee Seng Chan. Getting to know low-light images with the exclusively dark dataset. Computer Vision and Image Understanding, 178: 0 30--42, 2019. doi:https://doi.org/10.1016/j.cviu.2018.10.010
-
[22]
Medeiros, Atif Belal, Srikanth Muralidharan, Eric Granger, and Marco Pedersoli
Heitor R. Medeiros, Atif Belal, Srikanth Muralidharan, Eric Granger, and Marco Pedersoli. Visual modality prompt for adapting vision-language object detectors, 2025. URL https://arxiv.org/abs/2412.00622
Pith/arXiv arXiv 2025
-
[23]
Benchmarking robustness in object detection: Autonomous driving when winter is coming
Claudio Michaelis, Benjamin Mitzkus, Robert Geirhos, Evgenia Rusak, Oliver Bringmann, Alexander S Ecker, Matthias Bethge, and Wieland Brendel. Benchmarking robustness in object detection: Autonomous driving when winter is coming. arXiv preprint arXiv:1907.07484, 2019
Pith/arXiv arXiv 1907
-
[24]
Pawan Kumar Mishra and G. P. Saroha. A study on video surveillance system for object detection and tracking. In 2016 3rd International Conference on Computing for Sustainable Global Development (INDIACom), pp.\ 221--226, 2016
2016
-
[25]
Learning transferable visual models from natural language supervision, 2021
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. Learning transferable visual models from natural language supervision, 2021. URL https://arxiv.org/abs/2103.00020
Pith/arXiv arXiv 2021
-
[26]
Fully test-time adaptation for object detection
Xiaoqian Ruan and Wei Tang. Fully test-time adaptation for object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Workshops, pp.\ 1038--1047, June 2024
2024
-
[27]
Claude E. Shannon. A mathematical theory of communication. Bell System Technical Journal, 27 0 (3): 0 379--423, 1948
1948
-
[28]
Objects365: A large-scale, high-quality dataset for object detection
Shuai Shao, Zeming Li, Tianyuan Zhang, Chao Peng, Gang Yu, Xiangyu Zhang, Jing Li, and Jian Sun. Objects365: A large-scale, high-quality dataset for object detection. In 2019 IEEE/CVF International Conference on Computer Vision (ICCV), pp.\ 8429--8438, 2019. doi:10.1109/ICCV.2019.00852
arXiv 2019
-
[29]
Test-time prompt tuning for zero-shot generalization in vision-language models, 2022
Manli Shu, Weili Nie, De-An Huang, Zhiding Yu, Tom Goldstein, Anima Anandkumar, and Chaowei Xiao. Test-time prompt tuning for zero-shot generalization in vision-language models, 2022. URL https://arxiv.org/abs/2209.07511
Pith/arXiv arXiv 2022
-
[30]
Tent: Fully test-time adaptation by entropy minimization, 2021
Dequan Wang, Evan Shelhamer, Shaoteng Liu, Bruno Olshausen, and Trevor Darrell. Tent: Fully test-time adaptation by entropy minimization, 2021. URL https://arxiv.org/abs/2006.10726
Pith/arXiv arXiv 2021
-
[31]
What, how, and when should object detectors update in continually changing test domains?, 2023
Jayeon Yoo, Dongkwan Lee, Inseop Chung, Donghyun Kim, and Nojun Kwak. What, how, and when should object detectors update in continually changing test domains?, 2023. URL https://arxiv.org/abs/2312.08875
Pith/arXiv arXiv 2023
-
[32]
Bdd100k: A diverse driving dataset for heterogeneous multitask learning, 2020
Fisher Yu, Haofeng Chen, Xin Wang, Wenqi Xian, Yingying Chen, Fangchen Liu, Vashisht Madhavan, and Trevor Darrell. Bdd100k: A diverse driving dataset for heterogeneous multitask learning, 2020. URL https://arxiv.org/abs/1805.04687
Pith/arXiv arXiv 2020
-
[33]
Open-vocabulary object detection using captions, 2021
Alireza Zareian, Kevin Dela Rosa, Derek Hao Hu, and Shih-Fu Chang. Open-vocabulary object detection using captions, 2021. URL https://arxiv.org/abs/2011.10678
Pith/arXiv arXiv 2021
-
[34]
Dual prototype evolving for test-time generalization of vision-language models, 2024
Ce Zhang, Simon Stepputtis, Katia Sycara, and Yaqi Xie. Dual prototype evolving for test-time generalization of vision-language models, 2024. URL https://arxiv.org/abs/2410.12790
Pith/arXiv arXiv 2024
-
[35]
Memo: Test time robustness via adaptation and augmentation, 2022
Marvin Zhang, Sergey Levine, and Chelsea Finn. Memo: Test time robustness via adaptation and augmentation, 2022. URL https://arxiv.org/abs/2110.09506
Pith/arXiv arXiv 2022
-
[36]
Regionclip: Region-based language-image pretraining, 2021
Yiwu Zhong, Jianwei Yang, Pengchuan Zhang, Chunyuan Li, Noel Codella, Liunian Harold Li, Luowei Zhou, Xiyang Dai, Lu Yuan, Yin Li, and Jianfeng Gao. Regionclip: Region-based language-image pretraining, 2021. URL https://arxiv.org/abs/2112.09106
Pith/arXiv arXiv 2021
-
[37]
Detecting twenty-thousand classes using image-level supervision, 2022
Xingyi Zhou, Rohit Girdhar, Armand Joulin, Philipp Krähenbühl, and Ishan Misra. Detecting twenty-thousand classes using image-level supervision, 2022. URL https://arxiv.org/abs/2201.02605
Pith/arXiv arXiv 2022
-
[38]
Object detection in 20 years: A survey
Zhengxia Zou, Keyan Chen, Zhenwei Shi, Yuhong Guo, and Jieping Ye. Object detection in 20 years: A survey. Proceedings of the IEEE, 111 0 (3): 0 257--276, 2023
2023
-
[39]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...
-
[40]
@esa (Ref
\@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should not add it explicitly Type <Return> for now, but then later remove the command n...
-
[41]
\@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@first@sw \@firstoftwo \@ifundefined NAT@b*@#2 \@firstoftwo @num @NAT@ctr \@secondoft...
-
[42]
@open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibsetup #1 @NAT@ctr @ @openbib .11em \@plus.33em \@minus.07em 4000 4000 `\.\@m @bibit...
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.