REVIEW 4 major objections 6 minor 62 references
Images are Worth Variable Length of Representations
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read A vision encoder that lets each image choose its own token count produces better reconstructions and VQA answers with fewer tokens than fixed-length tokenizers.
desk verdict A genuine EOS-based dynamic tokenizer with broad experiments, but the headline efficiency claim needs per-dataset token counts and EOS-quality numbers before I'd trust the aggregate. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central mechanism is a learned end-of-sequence (EOS) token inside an autoregressive token generator. The generator is a 70M-parameter transformer (Pythia) that, given VQGAN encoder features plus timestamp encodings, produces continuous visual tokens and can output EOS at any of up to K positions; all slots after EOS are replaced with zero vectors, and a second transformer decodes the padded sequence for the VQGAN decoder. The EOS training loss compares the current sample's reconstruction loss to an exponential moving average of the last 100 losses, rewarding earlier termination when reconstruction already meets the threshold and later termination when it does not. This threshold rule is what turns token length into a learned, per-sample decision rather than a constant.
What would settle it
Run DOVE on a set of solid-color or otherwise trivially simple images and record its EOS positions; the central claim predicts that these images will terminate at very few tokens, so if the average length stays near the general training average (for example above 100), the threshold rule is not tracking image complexity.
Extended reading notes
Core claim
DOVE extends an autoencoder-style tokenizer with a transformer-based dynamic token generator. For each image, the generator produces tokens one at a time and may stop at any position by emitting an end-of-sequence symbol; tokens after that point are zeroed and a fixed decoder reconstructs the image from the truncated sequence. Training couples sequence length to reconstruction quality by comparing each image's reconstruction loss with a moving average of recent losses: when the loss is already below the threshold the model is encouraged to end sooner, and when it is above the threshold the model is encouraged to continue. The paper reports an average of about 121.6 tokens per image instead of 256, a Pearson correlation of 0.742 between EOS position and image complexity, and higher scores than VQGAN, TiTok, and ALIT on most VQA benchmarks and linear-probing sets even at 32 tokens. Query-conditioned Q-DOVE adds a bounding-box weighted loss so tokens focus on query-relevant regions, reducing the average to about 82.4 tokens while improving VQA accuracy further.
Load-bearing premise
The load-bearing premise is that comparing an image's reconstruction loss to a moving average of the last 100 training losses reliably indicates how many tokens that image needs, and that this rule continues to work on new images and datasets.
Editorial extensions
If this is right
- A vision-language model using DOVE needs roughly half the visual tokens (121.6 average versus 256) and still scores higher than VQGAN and TiTok on VQAv2, GQA, OK-VQA, and ScienceQA in the paper's experiments.
- Because the encoder can be truncated at any position in a single forward pass, one model can serve different compute budgets at inference time without retraining.
- Q-DOVE shows that conditioning token generation on a text query further cuts token count (82.4 average) while improving VQA accuracy, making task-driven compression a working alternative to fixed token budgets.
- DOVE's semantic advantage appears in linear probing, where it outranks fixed-length autoencoder tokenizers on all seven reported benchmarks, and in PCA visualizations that resemble semantic segmentation.
Reading between the lines
- The same EOS-plus-threshold recipe could be carried over to video, audio, or 3D tokenizers, where per-sample information varies even more than in images.
- The moving-average threshold is a training heuristic; a learned complexity estimator or a reward model for token length might make the policy transfer more reliably across datasets, which the paper does not test.
- If the reported semantic emergence is real and not an artifact of the threshold rule, variable-length autoencoders could serve as cheap unsupervised feature extractors for segmentation and retrieval, not only as QA backbones.
- Q-DOVE's bounding-box supervision could be relaxed to attention or saliency signals, which would let query-conditioned compression apply where box annotations are unavailable.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces DOVE, a dynamic vision encoder that generates a variable-length sequence of continuous tokens for each image and terminates the sequence at a predicted EOS position, trained with a reconstruction loss plus a heuristic EOS loss based on an EMA threshold. A query-conditioned variant (Q-DOVE) refines this idea by supervising reconstruction with bounding boxes around answer-relevant regions. The authors evaluate DOVE on image reconstruction FID, token-length distributions, frozen-feature classification and linear probing, and as the vision encoder of a Vicuna-7B VLM across eight VQA benchmarks, reporting large gains over TiTok, VQGAN, and ALIT at equal or smaller token counts.
Significance. The idea of allowing token count to vary with image complexity is timely, and a working dynamic tokenizer that can be dropped into VLM pipelines would be practically valuable. The paper's breadth is a strength: it evaluates reconstruction, classification, linear probing, and downstream VQA, and it promises code and checkpoints. If the efficiency-quality trade-off is confirmed, DOVE would be a useful alternative to fixed-length tokenizers for multimodal systems. The main weaknesses are that the central claim is not directly evidenced at the dynamic operating point, and several technical details of the EOS mechanism and evaluation protocol are underspecified.
major comments (4)
- [Sec. 2.2, Table 1, Eq. (3)] The EOS training objective is not reproducible as written. Table 1's pseudocode treats the generated sequence D as containing an EOS token ('Find the first index j such that D[j]=EOS') even though the model is described as producing continuous visual tokens, and it does not say how p_eos(i) is produced. After the while loop, i is K+1, so the branch 'L_eos ← p_eos(i)' in Table 1 uses an invalid position, whereas Eq. (3) is written in terms of the EOS position m. The pseudocode also has no branch for the case where no EOS token is generated before the maximum length K. Please specify the EOS prediction head, the exact index used in the loss, and the inference-time behavior when no EOS is emitted.
- [Sec. 3.2-3.3, Table 3] The headline claim that DOVE 'significantly reduces the average number of tokens while maintaining high reconstruction quality' is supported only by a single aggregate token count (121.6 in Table 3). No per-benchmark breakdown of EOS lengths is given, and the token-length distribution in Figure 6a is not tied to the downstream benchmarks; the reconstruction-loss curve in Figure 6b is for fixed lengths on COCO, not for sequences truncated at predicted EOS positions. Table 2 reports FID only at fixed lengths. As a result, the reader cannot determine whether the dynamic-length output actually maintains reconstruction quality or whether the 121.6 average is dominated by particular datasets. Please report per-dataset (or at least per-benchmark) average token counts, the EOS-length distribution on those benchmarks, and a reconstruction metric (FID or L1) for the EOS-truncated sequences.
- [Sec. 3.4, Appendix C] The linear probing results in Table 5 are not interpretable without specifying which hidden layer is probed and the training protocol. The main text says probing is done on 'model's hidden layers' and Appendix C refers to 'a selected hidden layer,' but neither the layer index nor the classifier training details (epochs, learning rate, pooling) are given. Since linear probing accuracy varies substantially across layers, the cross-model comparison may be unfair, and this weakness directly affects the 'emergent semantics' claim.
- [Sec. 2.2-2.3] The EOS policy is determined by a training heuristic with several unexamined free parameters: the EMA window W (set to 100), the λ_eos schedule, and, for Q-DOVE, λ_o=1e-10. Because the token-length distribution is entirely a function of the EMA threshold, the robustness of the efficiency claim requires a sensitivity analysis or, at minimum, a report of the variance of the average token count across training runs and datasets. In addition, Section 2.3's description of L_pen is ambiguous: it says L_irr is compared to a threshold after defining L_eos via L_rel, and the penalty term appears identical to the second branch of Eq. (3). Please clarify whether L_pen is an extra term and which loss is used for the threshold comparison.
minor comments (6)
- [Table 2] Table 2's column layout is garbled; the values cannot be unambiguously assigned to (dataset, token length) pairs. Please reformat the table so each FID score has a clear header.
- [Sec. 3.2] The classification subsection says accuracy improves with token count but no quantitative accuracy table is provided; please add numeric results or a table in addition to Figure 5.
- [Table 3] Please define what '121.6 (Avg)' and '82.4 (Avg)' average over, and report the standard deviation or per-benchmark values; the Q-DOVE rows labeled '256#' and '256' should also be disambiguated in the table header.
- [Table 4] Please report speed and FLOPs at the EOS-truncated average length in addition to fixed lengths, since that is the claimed operating point.
- [Sec. 3.1] Please specify which parameters are frozen versus fine-tuned (VQGAN encoder/decoder, the two Pythia models) and give the exact training configurations used for the baselines (TiTok, ALIT) to support the 'same configuration' claim.
- [Throughout] The word 'significantly' is used throughout without statistical tests or error bars; at minimum, state the number of seeds and report standard deviations for the main tables.
Circularity Check
No significant circularity: DOVE's efficiency and downstream claims rest on external benchmarks and independent measurements, not on a derivation that reduces to its own inputs.
full rationale
The paper's derivation chain is as follows: the dynamic token generator f_phi is trained with a reconstruction loss L_rec (Eq. 2) and an EOS-control loss L_eos (Eq. 3), where L_eos uses an EMA of recent reconstruction losses as a threshold to encourage earlier or later EOS. This is a self-referential training heuristic, since the token-length policy is shaped by the model's own reconstruction quality, but it is not circular in the sense of defining a prediction in terms of the quantity it is claimed to predict. The reported average token count (121.6, Table 3) is a measured outcome on downstream benchmarks, not an input to the training objective. The claim that more complex images receive longer sequences is validated with an independent proxy (Laplacian variance, Figure 6c), not with the training loss itself. Reconstruction quality is evaluated with FID on fixed token lengths (Table 2), and downstream performance uses external VQA and linear-probing benchmarks (Tables 3 and 5) with a frozen encoder and standard fine-tuning protocol. The paper cites prior work (VQGAN, TiTok, ALIT, Pythia, Vicuna, etc.) for components and baselines, but no load-bearing claim is justified solely by a self-citation, and no uniqueness theorem or ansatz is imported from the authors' own prior work. The skeptic's concerns about per-benchmark EOS lengths and missing EOS-truncated reconstruction metrics are evidentiary gaps rather than circularities: those omissions do not show that any predicted quantity is equivalent to a fitted input by construction. Overall, the central claims have independent empirical content, so the circularity score is 0.
Assumptions & free parameters
free parameters (5)
- EMA window W =
100 steps
- lambda_o =
1e-10
- lambda_eos schedule =
small initially, gradually increased
- GAN loss weight =
5e-10
- Maximum token K =
256
assumptions (5)
- domain assumption Images with more visual complexity require more tokens for faithful reconstruction.
- domain assumption Reconstruction loss (MSE plus perceptual plus a tiny GAN term) is a sufficient training signal for representations that are useful in downstream classification and VQA.
- domain assumption The pretrained VQGAN encoder and decoder can serve as the base autoencoder and can be fine-tuned to support dynamic tokenization.
- domain assumption For Q-DOVE, bounding boxes in Visual Genome and Open Images correctly mark regions relevant to the text query.
- standard math A causal mask over timestamp positions, with no input token values, is sufficient to generate coherent variable-length visual tokens.
Cite this review
Pith. "Pith review of Images are Worth Variable Length of Representations." pith.science (2026). https://pith.science/paper/ZXO4C6FB
@misc{pith2026250603643,
author = {Pith},
title = {Pith review of: Images are Worth Variable Length of Representations},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZXO4C6FB}},
note = {Machine review of arXiv:2506.03643}
}
read the original abstract
Most existing vision encoders map images into a fixed-length sequence of tokens, overlooking the fact that different images contain varying amounts of information. For example, a visually complex image (e.g., a cluttered room) inherently carries more information and thus deserves more tokens than a simple image (e.g., a blank wall). To address this inefficiency, we propose DOVE, a dynamic vision encoder that produces a variable number of visual tokens (i.e., continuous representation vectors) to reconstruct each image. Our results show that DOVE significantly reduces the average number of tokens while maintaining high reconstruction quality. In several linear probing and downstream multimodal tasks, it outperforms existing autoencoder-based tokenization methods when using far fewer tokens, capturing more expressive semantic features compared to fixed-length encoding. We further extend DOVE with query-conditioned tokenization. By guiding the model to focus on query-relevant regions, it achieves more efficient and targeted semantic extraction. Our code and checkpoints are available at https://dove-encoder.github.io/dove-encoder.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
Gpt-4 technical report.arXiv preprint arXiv:2303.08774, 2023
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
arXiv 2023
-
[2]
Gqa: Training generalized multi-query transformer models from multi-head checkpoints, 2023
Joshua Ainslie, James Lee-Thorp, Michiel de Jong, Yury Zemlyanskiy, Federico Lebrón, and Sumit Sanghai. Gqa: Training generalized multi-query transformer models from multi-head checkpoints, 2023
2023
-
[3]
Flamingo: a visual language model for few-shot learning.Advances in neural information processing systems, 35:23716–23736, 2022
Jean-Baptiste Alayrac, Jeff Donahue, Pauline Luc, Antoine Miech, Iain Barr, Yana Hasson, Karel Lenc, Arthur Mensch, Katherine Millican, Malcolm Reynolds, et al. Flamingo: a visual language model for few-shot learning.Advances in neural information processing systems, 35:23716–23736, 2022
2022
-
[4]
Revisiting active perception.Autonomous Robots, 42:177–196, 2018
Ruzena Bajcsy, Yiannis Aloimonos, and John K Tsotsos. Revisiting active perception.Autonomous Robots, 42:177–196, 2018
work page 2018
-
[5]
Blur image detection using laplacian operator and open-cv
Raghav Bansal, Gaurav Raj, and Tanupriya Choudhury. Blur image detection using laplacian operator and open-cv. In2016 International Conference System Modeling & Advancement in Research Trends (SMART), pages 63–67. IEEE, 2016
work page 2016
-
[6]
Leonard E Baum and Ted Petrie. Statistical inference for probabilistic functions of finite state markov chains.The annals of mathematical statistics, 37(6):1554–1563, 1966
work page 1966
-
[7]
Pythia: A suite for analyzing large language models across training and scaling
Stella Biderman, Hailey Schoelkopf, Quentin Gregory Anthony, Herbie Bradley, Kyle O’Brien, Eric Hallahan, Mohammad Aflah Khan, Shivanshu Purohit, USVSN Sai Prashanth, Edward Raff, et al. Pythia: A suite for analyzing large language models across training and scaling. InInternational Conference on Machine Learning, pages 2397–2430. PMLR, 2023
work page 2023
-
[8]
Token merging: Your vit but faster
Daniel Bolya, Cheng-Yang Fu, Xiaoliang Dai, Peizhao Zhang, Christoph Feichtenhofer, and Judy Hoffman. Token merging: Your vit but faster. InThe Eleventh International Conference on Learning Representations, 2023
2023
Show all 62 references
-
[9]
Food-101 – mining discriminative components with random forests
Lukas Bossard, Matthieu Guillaumin, and Luc Van Gool. Food-101 – mining discriminative components with random forests. InEuropean Conference on Computer Vision, 2014
2014
-
[10]
Emerging properties in self-supervised vision transformers
Mathilde Caron, Hugo Touvron, Ishan Misra, Hervé Jégou, Julien Mairal, Piotr Bojanowski, and Armand Joulin. Emerging properties in self-supervised vision transformers. InProceedings of the IEEE/CVF international conference on computer vision, pages 9650–9660, 2021
2021
-
[11]
Efficient large multi-modal models via visual context compression
Jieneng Chen, Luoxin Ye, Ju He, Zhao-Yang Wang, Daniel Khashabi, and Alan Yuille. Efficient large multi-modal models via visual context compression. InThe Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
2024
-
[12]
Review of image classification algorithms based on convolutional neural networks.Remote Sensing, 13(22):4712, 2021
Leiyu Chen, Shaobo Li, Qiang Bai, Jing Yang, Sanlong Jiang, and Yanming Miao. Review of image classification algorithms based on convolutional neural networks.Remote Sensing, 13(22):4712, 2021
2021
-
[13]
An empirical study of smoothing techniques for language modeling
Stanley F Chen and Joshua Goodman. An empirical study of smoothing techniques for language modeling. Computer Speech & Language, 13(4):359–394, 1999
1999
-
[14]
Cimpoi, S
M. Cimpoi, S. Maji, I. Kokkinos, S. Mohamed, , and A. Vedaldi. Describing textures in the wild. In Proceedings of the IEEE Conf. on Computer Vision and Pattern Recognition (CVPR), 2014
2014
-
[15]
An analysis of single layer networks in unsupervised feature learning aistats
Adam Coates, Honglak Lee, and AY Ng. An analysis of single layer networks in unsupervised feature learning aistats. 2011
2011
-
[16]
Scaling up dataset distillation to imagenet-1k with constant memory
Justin Cui, Ruochen Wang, Si Si, and Cho-Jui Hsieh. Scaling up dataset distillation to imagenet-1k with constant memory. InInternational Conference on Machine Learning, pages 6565–6590. PMLR, 2023
2023
-
[17]
Top-down control of eye movements: Yarbus revisited.Visual Cognition, 17(6-7):790–811, 2009
Marianne DeAngelus and Jeff B Pelz. Top-down control of eye movements: Yarbus revisited.Visual Cognition, 17(6-7):790–811, 2009
2009
-
[18]
Imagenet: A large-scale hierarchical image database
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009. 10
2009
-
[19]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition at...
2021
-
[20]
Adaptive length image tok- enization via recurrent allocation
Shivam Duggal, Phillip Isola, Antonio Torralba, and William T Freeman. Adaptive length image tok- enization via recurrent allocation. InFirst Workshop on Scalable Optimization for Efficient and Adaptive Foundation Models, 2024
2024
-
[21]
Taming transformers for high-resolution image synthesis
Patrick Esser, Robin Rombach, and Bjorn Ommer. Taming transformers for high-resolution image synthesis. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 12873–12883, 2021
2021
-
[22]
Multimodal autoregressive pre-training of large vision encoders, 2024
Enrico Fini*, Mustafa Shukor*, Xiujun Li, Philipp Dufter, Michal Klein, David Haldimann, Sai Aitharaju, Louis Béthune, Zhe Gan, Victor Turrisi, Alexander Toshev, Marcin Eichner, Yinfei Yang, Moin Nabi, Josh Susskind, and Alaaeldin El-Nouby*. Multimodal autoregressive pre-train...
2024
-
[23]
Making the v in vqa matter: Elevating the role of image understanding in visual question answering, 2017
Yash Goyal, Tejas Khot, Douglas Summers-Stay, Dhruv Batra, and Devi Parikh. Making the v in vqa matter: Elevating the role of image understanding in visual question answering, 2017
2017
-
[24]
The llama 3 herd of models
Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al- Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models. arXiv preprint arXiv:2407.21783, 2024
2024 arXiv
-
[25]
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948, 2025
Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning.arXiv preprint arXiv:2501.12948, 2025
2025 arXiv
-
[26]
A review of semantic segmentation using deep neural networks.International journal of multimedia information retrieval, 7:87–93, 2018
Yanming Guo, Yu Liu, Theodoros Georgiou, and Michael S Lew. A review of semantic segmentation using deep neural networks.International journal of multimedia information retrieval, 7:87–93, 2018
2018
-
[27]
A brief survey on semantic segmentation with deep learning
Shijie Hao, Yuan Zhou, and Yanrong Guo. A brief survey on semantic segmentation with deep learning. Neurocomputing, 406:302–321, 2020
2020
-
[28]
Hierarchical cross-modal agent for robotics vision-and-language navigation
Muhammad Zubair Irshad, Chih-Yao Ma, and Zsolt Kira. Hierarchical cross-modal agent for robotics vision-and-language navigation. In2021 IEEE international conference on robotics and automation (ICRA), pages 13238–13246. IEEE, 2021
2021
-
[29]
Perceiver io: A general architecture for structured inputs & outputs.arXiv preprint arXiv:2107.14795, 2021
Andrew Jaegle, Sebastian Borgeaud, Jean-Baptiste Alayrac, Carl Doersch, Catalin Ionescu, David Ding, Skanda Koppula, Daniel Zoran, Andrew Brock, Evan Shelhamer, et al. Perceiver io: A general architecture for structured inputs & outputs.arXiv preprint arXiv:2107.14795, 2021
2021 arXiv
-
[30]
Perceiver: General perception with iterative attention
Andrew Jaegle, Felix Gimeno, Andy Brock, Oriol Vinyals, Andrew Zisserman, and Joao Carreira. Perceiver: General perception with iterative attention. InInternational conference on machine learning, pages 4651–
-
[31]
Auto-encoding variational bayes, 2013
Diederik P Kingma, Max Welling, et al. Auto-encoding variational bayes, 2013
2013
-
[32]
Visual genome: Connecting language and vision using crowdsourced dense image annotations.International journal of computer vision, 123:32–73, 2017
Ranjay Krishna, Yuke Zhu, Oliver Groth, Justin Johnson, Kenji Hata, Joshua Kravitz, Stephanie Chen, Yannis Kalantidis, Li-Jia Li, David A Shamma, et al. Visual genome: Connecting language and vision using crowdsourced dense image annotations.International journal of computer v...
2017
-
[33]
Learning multiple layers of features from tiny images
Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009
2009
-
[34]
Alina Kuznetsova, Hassan Rom, Neil Alldrin, Jasper Uijlings, Ivan Krasin, Jordi Pont-Tuset, Shahab Kamali, Stefan Popov, Matteo Malloci, Alexander Kolesnikov, et al. The open images dataset v4: Unified image classification, object detection, and visual relationship detection a...
1956
-
[35]
The roles of vision and eye movements in the control of activities of daily living.Perception, 28(11):1311–1328, 1999
Michael Land, Neil Mennie, and Jennifer Rusted. The roles of vision and eye movements in the control of activities of daily living.Perception, 28(11):1311–1328, 1999
1999
-
[36]
Microsoft coco: Common objects in context
Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollár, and C Lawrence Zitnick. Microsoft coco: Common objects in context. InComputer vision–ECCV 2014: 13th European conference, zurich, Switzerland, September 6-12, 2014, proceedings,...
2014
-
[37]
Visual instruction tuning, 2023
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning, 2023. 11
2023
-
[38]
A survey of image classification methods and techniques for improving classification performance.International journal of Remote sensing, 28(5):823–870, 2007
Dengsheng Lu and Qihao Weng. A survey of image classification methods and techniques for improving classification performance.International journal of Remote sensing, 28(5):823–870, 2007
2007
-
[39]
Learn to explain: Multimodal reasoning via thought chains for science question answering, 2022
Pan Lu, Swaroop Mishra, Tony Xia, Liang Qiu, Kai-Wei Chang, Song-Chun Zhu, Oyvind Tafjord, Peter Clark, and Ashwin Kalyan. Learn to explain: Multimodal reasoning via thought chains for science question answering, 2022
2022
-
[40]
Fine-grained visual classification of aircraft, 2013
Subhransu Maji, Esa Rahtu, Juho Kannala, Matthew Blaschko, and Andrea Vedaldi. Fine-grained visual classification of aircraft, 2013
2013
-
[41]
Ok-vqa: A visual question answering benchmark requiring external knowledge, 2019
Kenneth Marino, Mohammad Rastegari, Ali Farhadi, and Roozbeh Mottaghi. Ok-vqa: A visual question answering benchmark requiring external knowledge, 2019
2019
-
[42]
Chartqa: A benchmark for question answering about charts with visual and logical reasoning, 2022
Ahmed Masry, Do Xuan Long, Jia Qing Tan, Shafiq Joty, and Enamul Hoque. Chartqa: A benchmark for question answering about charts with visual and logical reasoning, 2022
2022
-
[43]
V Jawahar
Minesh Mathew, Viraj Bagal, Rubèn Pérez Tito, Dimosthenis Karatzas, Ernest Valveny, and C. V Jawahar. Infographicvqa, 2021
2021
-
[44]
Minesh Mathew, Dimosthenis Karatzas, and C. V . Jawahar. Docvqa: A dataset for vqa on document images, 2021
2021
-
[45]
Stl-10, nov 2024
N/A. Stl-10, nov 2024
2024
-
[46]
Learning transferable visual models from natural language supervision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervision. InInternational conference on machine learning, pag...
2021
-
[47]
Hierarchical text-conditional image generation with clip latents.arXiv preprint arXiv:2204.06125, 1(2):3, 2022
Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen. Hierarchical text-conditional image generation with clip latents.arXiv preprint arXiv:2204.06125, 1(2):3, 2022
2022 arXiv
-
[48]
Dynamicvit: Efficient vision transformers with dynamic token sparsification.Advances in neural information processing systems, 34:13937–13949, 2021
Yongming Rao, Wenliang Zhao, Benlin Liu, Jiwen Lu, Jie Zhou, and Cho-Jui Hsieh. Dynamicvit: Efficient vision transformers with dynamic token sparsification.Advances in neural information processing systems, 34:13937–13949, 2021
2021
-
[49]
Generating diverse high-fidelity images with vq-vae-2
Ali Razavi, Aaron Van den Oord, and Oriol Vinyals. Generating diverse high-fidelity images with vq-vae-2. Advances in neural information processing systems, 32, 2019
2019
-
[50]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. High-resolution image synthesis with latent diffusion models. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 10684–10695, 2022
2022
-
[51]
Towards vqa models that can read, 2019
Amanpreet Singh, Vivek Natarajan, Meet Shah, Yu Jiang, Xinlei Chen, Dhruv Batra, Devi Parikh, and Marcus Rohrbach. Towards vqa models that can read, 2019
2019
-
[52]
Between mdps and semi-mdps: A framework for temporal abstraction in reinforcement learning.Artificial intelligence, 112(1-2):181–211, 1999
Richard S Sutton, Doina Precup, and Satinder Singh. Between mdps and semi-mdps: A framework for temporal abstraction in reinforcement learning.Artificial intelligence, 112(1-2):181–211, 1999
1999
-
[53]
Gemini: a family of highly capable multimodal models.arXiv preprint arXiv:2312.11805, 2023
Gemini Team, Rohan Anil, Sebastian Borgeaud, Jean-Baptiste Alayrac, Jiahui Yu, Radu Soricut, Johan Schalkwyk, Andrew M Dai, Anja Hauth, Katie Millican, et al. Gemini: a family of highly capable multimodal models.arXiv preprint arXiv:2312.11805, 2023
2023 arXiv
-
[54]
Neural discrete representation learning.Advances in neural information processing systems, 30, 2017
Aaron Van Den Oord, Oriol Vinyals, et al. Neural discrete representation learning.Advances in neural information processing systems, 30, 2017
2017
-
[55]
Attention is all you need
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Ł ukasz Kaiser, and Illia Polosukhin. Attention is all you need. In I. Guyon, U. V on Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett, editors,Advances in Neural ...
2017
-
[56]
Supervised hashing for image retrieval via image representation learning
Rongkai Xia, Yan Pan, Hanjiang Lai, Cong Liu, and Shuicheng Yan. Supervised hashing for image retrieval via image representation learning. InProceedings of the AAAI conference on artificial intelligence, volume 28, 2014
2014
-
[57]
Ehinger, Aude Oliva, and Antonio Torralba
Jianxiong Xiao, James Hays, Krista A. Ehinger, Aude Oliva, and Antonio Torralba. Sun database: Large- scale scene recognition from abbey to zoo. In2010 IEEE Computer Society Conference on Computer Vision and Pattern Recognition, pages 3485–3492, 2010. 12
2010
-
[58]
A-vit: Adaptive tokens for efficient vision transformer
Hongxu Yin, Arash Vahdat, Jose M Alvarez, Arun Mallya, Jan Kautz, and Pavlo Molchanov. A-vit: Adaptive tokens for efficient vision transformer. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 10809–10818, 2022
2022
-
[59]
Scaling autoregressive models for content-rich text-to-image generation.arXiv preprint arXiv:2206.10789, 2(3):5, 2022
Jiahui Yu, Yuanzhong Xu, Jing Yu Koh, Thang Luong, Gunjan Baid, Zirui Wang, Vijay Vasudevan, Alexander Ku, Yinfei Yang, Burcu Karagol Ayan, et al. Scaling autoregressive models for content-rich text-to-image generation.arXiv preprint arXiv:2206.10789, 2(3):5, 2022
2022 arXiv
-
[60]
An image is worth 32 tokens for reconstruction and generation.Advances in Neural Information Processing Systems, 37:128940–128966, 2024
Qihang Yu, Mark Weber, Xueqing Deng, Xiaohui Shen, Daniel Cremers, and Liang-Chieh Chen. An image is worth 32 tokens for reconstruction and generation.Advances in Neural Information Processing Systems, 37:128940–128966, 2024
2024
-
[61]
Object detection with deep learning: A review.IEEE transactions on neural networks and learning systems, 30(11):3212–3232, 2019
Zhong-Qiu Zhao, Peng Zheng, Shou-tao Xu, and Xindong Wu. Object detection with deep learning: A review.IEEE transactions on neural networks and learning systems, 30(11):3212–3232, 2019
2019
-
[62]
STOP” on a sign as “SHOP
Zhengxia Zou, Keyan Chen, Zhenwei Shi, Yuhong Guo, and Jieping Ye. Object detection in 20 years: A survey.Proceedings of the IEEE, 111(3):257–276, 2023. 13 A Implementation Details A.1 Model Architecture Our framework builds on a pretrained VQGAN and two instances of the light...
2023
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.