REVIEW 4 major objections 5 minor 79 references
Does Data Scaling Lead to Visual Compositional Generalization?
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Compositional generalization in vision models comes from combinatorial data diversity, not data volume; an ideal linear structure needs only two examples per concept.
desk verdict Solid controlled evidence that diversity beats scale for compositional generalization, but the k=2 efficiency theorem is not proven as written and needs repair before the paper's central claim can stand. 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
Linearly factored embeddings (Definition 3.2) are the central object: for two concepts, the joint representation of value pair $(c_1,c_2)$ equals $u_{c_1}+u_{c_2}$, the sum of the two concept-value vectors. The load-bearing recovery mechanism is the conditional-mean estimator: average the feature vectors of all training images that share a concept value, centre by the global mean, and the result recovers that value's concept vector up to a shift; for pairwise combinations this yields the additivity identity $u'_{c_i,c_j}=u'_{c_i}+u'_{c_j}$. That identity turns the training set of $k=2$ pairings per value into a $2n$-equation linear system whose solution gives the factored vectors, and the separation of the two concept subspaces lets the paper construct projection-based classifiers that label every unseen pairing. This mechanism is what converts combinatorial coverage into representational geometry, and representational geometry into zero-shot generalization.
What would settle it
For $n=3$ in the linear system of equation (25), summing the three diagonal rows and the three shifted rows both give the all-ones vector, so the $6\times 6$ design matrix has rank at most 5 even though Part 2 of the proof of Proposition B.7 claims full rank; directly computing this rank for any $n$ settles whether two examples per concept value can recover the factored vectors.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that the driver of visual compositional generalization is data diversity—the number of concept values and the fraction of their combinations seen during training—while data scale, measured as the number of images per combination, is not. In the paper's $(n,k)$ framework, models trained from scratch show three phases as combinatorial coverage grows: spurious features that cannot even discriminate the concepts, then discriminative features that are still not linearly factored, and finally, at high diversity, a geometry in which the representation of a combined concept is the sum of concept-value vectors, with near-perfect zero-shot accuracy on unseen pairings. Proposition 4.1 states the efficiency this buys: if representations are linearly factored and the concept subspaces are suitably separated, $k=2$ observed combinations per concept value suffice for a linear classifier to generalize perfectly to all $(n-2)n$ unseen combinations. The paper then tests pretrained models by recovering concept vectors from just two pairings per value and finds above-random performance that is concept-dependent—some attributes are nearly linearly accessible, others are not—so pretraining confers partial structure rather than full compositionality.
Load-bearing premise
The construction assumes that the small set of seen pairings pins down each concept's direction exactly, and that the two groups of concepts point into fully separate directions so that projections can separate them.
Editorial extensions
If this is right
- Scaling up in-distribution training data will not by itself produce compositional generalization; closing the ID-OOD gap requires increasing the variety of concept values and the combinations of them that a model sees.
- A reliable indicator of readiness for compositional generalization is the linearity and orthogonality of concept representations; decodability alone is insufficient.
- Under a perfectly linearly factored representation, a model needs only two seen pairings per concept value to generalize to every unseen pairing, so data efficiency and representational geometry are linked.
- Pretrained vision models will remain partially compositional—strong on some concept pairs, weak on others—unless they are trained or probed on diverse combination sets.
- Sparse combinatorial coverage in large web-scale datasets is a structural obstacle that raw scale cannot overcome, because the number of possible combinations grows faster than any practical dataset.
Reading between the lines
- The paper studies pairs of concepts; if the additive mechanism is the reason diversity works, diversity should matter at least as much for three or more interacting concepts, since the number of combinations grows combinatorially.
- A direct testable extension: explicitly regularizing a model's features toward an orthogonal, additive concept structure should yield OOD gains on unseen pairings even when $n$ is small, which would confirm that geometry rather than raw sample count is the causal channel.
- Dataset construction for compositional competence could be guided by a coverage metric—how many distinct concept combinations appear—rather than by image count; comparing two datasets matched for diversity but differing in size would sharpen the headline claim.
- The proof's reliance on disjoint concept subspaces suggests that concepts that are linearly factored but not orthogonal may need more than two examples; checking whether $k=3$ or $k=4$ restores perfect generalization in non-orthogonal settings would map the boundary of the result.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies whether scaling training data volume improves visual compositional generalization. Using a controlled (n,k) framework over synthetic datasets (dSprites, Shapes3D, FSprites, Colored-MNIST, PUG-Animal, plus MPI3D), the authors vary the number of concept values n and the number of observed combinations k per value. Their empirical findings are that in-distribution data scale alone does not close the ID-OOD accuracy gap, whereas increasing concept diversity and combination coverage improves zero-shot accuracy on unseen combinations. They also report a three-phase transition in learned representations: spurious features, decodable but non-linear features, and finally linearly factored, mutually orthogonal concept subspaces. Section 4.3 introduces Proposition 4.1 (proved as Proposition B.7) claiming that under linear factorization, observing k=2 combinations per concept value suffices to learn a linear classifier that perfectly generalizes to all unseen combinations. The paper then evaluates pretrained models (DINO, CLIP, ImageNet ResNet) through linear-factorization recovery and probing, finding partial but imperfect compositional structure. The central empirical diversity-over-scale claim is supported by controlled experiments across several datasets; however, the theoretical proposition as stated is not established by the proof in Appendix B.
Significance. If the empirical claims hold, the paper provides a useful, controlled counterpoint to the broad scaling narrative: for compositional generalization, combinatorial diversity of concept combinations can matter more than raw data volume. The dataset-grid methodology, the consistency of the three-phase feature-learning result across five synthetic datasets, and the public release of code are concrete strengths. The theoretical result, if repaired, would add a crisp mechanism for why linear factorization enables few-shot compositional generalization. The evaluation of pretrained models extends the findings beyond from-scratch training. The significance for the compositional generalization and representation learning community is moderate to high. However, the current proof of Proposition B.7 contains rank, orthogonality, and dimension issues that mean the stated theoretical claim is not yet supported.
major comments (4)
- [Appendix B, Proposition B.7, Eq. (25)] The proof claims that the 2n x 2n linear system in Eq. (25) is full rank because the diagonal and cyclic rows 'form distinct patterns that ensure linear independence.' This is false for the cyclic split used in the paper. For the diagonal pairs (i,i) and shifted pairs (i,i+1 mod n), the sum of the n diagonal rows equals the sum of the n shifted rows, so the row rank is at most 2n-1 and the system is underdetermined. The proof does not use the zero-sum constraints of Lemma B.4 to remove the null direction. Consequently, the k=2 sufficiency claim in Proposition 4.1 is not proven as written.
- [Appendix B, Proposition B.7, Part 3] Part 3 of the proof assumes that any vector in the joint span of the two concept subspaces decomposes uniquely as u1 + u2 with u1 perpendicular to u2, and that orthogonal projections onto U1 and U2 give optimal classifiers. Orthogonality of the two concept subspaces is not part of Definition 3.2 and does not follow from U1 intersecting U2 only at {0}; non-orthogonal subspaces can intersect trivially. Without a stated orthogonality or annihilator assumption, the existence of a linear classifier for concept 1 that ignores concept 2 is not guaranteed. The empirical orthogonality measurements in Section 4.2 motivate the assumption, but it is not stated in the proposition.
- [Proposition 4.1 / Proposition B.7, dimension statement] The proposition states that the joint span of {u_{c_1}} and {u_{c_2}} has dimension 2n-1, while the proof in Part 3 asserts dim(U1)=n-1, dim(U2)=n-1, and U1 ∩ U2 = {0}, which forces the joint span to have dimension 2n-2. These statements are arithmetically inconsistent unless the proposition refers to uncentered concept vectors and the proof to centered, zero-sum vectors, but that distinction is not made. The statement and proof need to be reconciled, for example by stating which representation (raw or centred) is used for each dimension count.
- [Proposition 4.1, generality of k=2 claim] The proposition does not specify which k=2 combinations per concept value are observed. The proof only goes through for a specific connected 2-regular split, namely the cyclic split in Eq. (15). For an arbitrary set of two combinations per value, the design matrix in Eq. (25) need not be identifiable even after adding zero-sum constraints. The statement should either restrict the observation pattern explicitly or justify that the result holds for any connected 2-regular split.
minor comments (5)
- [Appendix B, proof of Proposition B.7] There is a typo in the sentence introducing pairwise joint embeddings: 'contstructed' should be 'constructed.'
- [Section 5.1] The text refers to 'the detailed algorithm in Appendix 1'; the algorithm is actually in Appendix B.1, so the cross-reference should be corrected.
- [Figure 3 caption] The caption of Figure 3(b) says dataset size is kept fixed while increasing n with k=n-1, but the number of training combinations n(n-1) grows with n. Please clarify how total dataset size is controlled, or adjust the wording to describe what is actually held fixed.
- [Proposition 4.1 notation] The notation 'ci, cj ∈ {1,...,n}' overloads concept values with indices; the proposition should state that c_i ranges over the value set C_i and that combinations are indexed by i,j ∈ {1,...,n}.
- [Section 3.2 / Definition 3.2] The global mean is written as f in the appendix but as \bar{f} in the main text; unify the notation to avoid confusion between the feature extractor f and the mean embedding.
Circularity Check
No significant circularity: the central conditional theorem and controlled empirical claims are self-contained; self-citations are peripheral.
full rationale
The paper's central claims are not circular. The empirical result (diversity over scale) is established by controlled experiments that vary n, k, and dataset size; no fitted parameter is renamed as a prediction, and the reported zero-shot accuracies are measured on unseen combinations. The theoretical result (Proposition 4.1 / B.7) is explicitly conditional on the linearly factored embedding assumption of Definition 3.2, which is cited to external work (Trager et al., 2023). The proof derives identifiability of concept vectors from a linear system and then constructs projection classifiers; the conclusion that k=2 combinations suffice is not identical to the assumption, since it requires an invertibility/identifiability argument. Self-citations (Uselis & Oh 2025; Koishigarina et al. 2025; Sonthalia et al. 2025; Jeong et al. 2025) are contextual, supporting metrics or caveats, and are not load-bearing for the main derivation. The unproven full-rank assertion in Eq. (25) and the unstated orthogonality condition in the proof are genuine correctness concerns, but they are proof gaps rather than circularity: even if the proof is incomplete, the theorem's output is not equivalent to its input by construction. The derivation chain is therefore self-contained against the paper's own assumptions, and no circular step can be exhibited with a specific reduction.
Assumptions & free parameters
assumptions (4)
- domain assumption Exact linear factorization of feature embeddings, f(x) = sum over concepts of u_ci.
- ad hoc to paper The joint span of all concept vectors has dimension 2n-1.
- domain assumption Balanced and uniform training data across observed combinations and unlabeled variations.
- ad hoc to paper Mutual orthogonality of the two concept subspaces.
Cite this review
Pith. "Pith review of Does Data Scaling Lead to Visual Compositional Generalization?." pith.science (2026). https://pith.science/paper/LGIVQP7N
@misc{pith2026250707102,
author = {Pith},
title = {Pith review of: Does Data Scaling Lead to Visual Compositional Generalization?},
year = {2026},
howpublished = {\url{https://pith.science/paper/LGIVQP7N}},
note = {Machine review of arXiv:2507.07102}
}
read the original abstract
Compositional understanding is crucial for human intelligence, yet it remains unclear whether contemporary vision models exhibit it. The dominant machine learning paradigm is built on the premise that scaling data and model sizes will improve out-of-distribution performance, including compositional generalization. We test this premise through controlled experiments that systematically vary data scale, concept diversity, and combination coverage. We find that compositional generalization is driven by data diversity, not mere data scale. Increased combinatorial coverage forces models to discover a linearly factored representational structure, where concepts decompose into additive components. We prove this structure is key to efficiency, enabling perfect generalization from few observed combinations. Evaluating pretrained models (DINO, CLIP), we find above-random yet imperfect performance, suggesting partial presence of this structure. Our work motivates stronger emphasis on constructing diverse datasets for compositional generalization, and considering the importance of representational structure that enables efficient compositional learning. Code available at https://github.com/oshapio/visual-compositional-generalization.
Figures
Figures from the paper (13 more)
Reference graph
Works this paper leans on
-
[1]
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...
-
[2]
Measuring Compositionality in Representation Learning , 2019
Andreas, J. Measuring Compositionality in Representation Learning , 2019
work page 2019
-
[3]
Invariant Risk Minimization , 2020
Arjovsky, M., Bottou, L., Gulrajani, I., and Lopez-Paz , D. Invariant Risk Minimization , 2020
work page 2020
-
[4]
Arora, S. and Goyal, A. A Theory for Emergence of Complex Skills in Language Models , 2023
work page 2023
-
[5]
A causal view of compositional zero-shot recognition, 2020
Atzmon, Y., Kreuk, F., Shalit, U., and Chechik, G. A causal view of compositional zero-shot recognition, 2020
work page 2020
-
[6]
Bordes, F., Shekhar, S., Ibrahim, M., Bouchacourt, D., Vincent, P., and Morcos, A. S. PUG : Photorealistic and Semantically Controllable Synthetic Data for Representation Learning , 2023
work page 2023
-
[7]
Brown, T., Mann, B., Ryder, N., Subbiah, M., Kaplan, J. D., Dhariwal, P., Neelakantan, A., Shyam, P., Sastry, G., Askell, A., Agarwal, S., Herbert-Voss , A., Krueger, G., Henighan, T., Child, R., Ramesh, A., Ziegler, D., Wu, J., Winter, C., Hesse, C., Chen, M., Sigler, E., Litwin, M., Gray, S., Chess, B., Clark, J., Berner, C., McCandlish, S., Radford, A....
work page 1901
-
[8]
T., Li, Y., Lundberg, S., Nori, H., Palangi, H., Ribeiro, M
Bubeck, S., Chandrasekaran, V., Eldan, R., Gehrke, J., Horvitz, E., Kamar, E., Lee, P., Lee, Y. T., Li, Y., Lundberg, S., Nori, H., Palangi, H., Ribeiro, M. T., and Zhang, Y. Sparks of Artificial General Intelligence : Early experiments with GPT-4 , 2023
work page 2023
Show all 79 references
-
[9]
Emerging Properties in Self-Supervised Vision Transformers , 2021
Caron, M., Touvron, H., Misra, I., J \'e gou, H., Mairal, J., Bojanowski, P., and Joulin, A. Emerging Properties in Self-Supervised Vision Transformers , 2021
2021
-
[10]
Symbols and mental programs: A hypothesis about human singularity
Dehaene, S., Al Roumi, F., Lakretz, Y., Planton, S., and Sabl \'e -Meyer , M. Symbols and mental programs: A hypothesis about human singularity. Trends in Cognitive Sciences, 26: 0 751--766, 2022
2022
-
[11]
a uble, F., Locatello, F., W \
Dittadi, A., Tr \"a uble, F., Locatello, F., W \"u thrich, M., Agrawal, V., Winther, O., Bauer, S., and Sch \"o lkopf, B. On the transfer of disentangled representations in realistic settings. arXiv preprint arXiv:2010.14407, 2020
2010 arXiv
-
[12]
H., Wu, J., Finn, C., Latham, P
Dorrell, W., Hsu, K., Hollingsworth, L., Lee, J. H., Wu, J., Finn, C., Latham, P. E., Behrens, T. E., and Whittington, J. C. Don't cut corners: Exact conditions for modularity in biologically inspired representations. arXiv preprint arXiv:2410.06232, 2024
-
[13]
An Image is Worth 16x16 Words : Transformers for Image Recognition at Scale , 2021
Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., Dehghani, M., Minderer, M., Heigold, G., Gelly, S., Uszkoreit, J., and Houlsby, N. An Image is Worth 16x16 Words : Transformers for Image Recognition at Scale , 2021
2021
-
[14]
and Kaelbling, L
Du, Y. and Kaelbling, L. Compositional Generative Modeling : A Single Model is Not All You Need , 2024
2024
-
[15]
L., Jiang, L., Lin, B
Dziri, N., Lu, X., Sclar, M., Li, X. L., Jiang, L., Lin, B. Y., West, P., Bhagavatula, C., Bras, R. L., Hwang, J. D., Sanyal, S., Welleck, S., Ren, X., Ettinger, A., Harchaoui, Z., and Choi, Y. Faith and Fate : Limits of Transformers on Compositionality , 2023
2023
-
[16]
A complexity-based theory of compositionality
Elmoznino, E., Jiralerspong, T., Bengio, Y., and Lajoie, G. A complexity-based theory of compositionality. arXiv preprint arXiv:2410.14817, 2024
2024 arXiv
-
[17]
Fodor, J. A. and Fodor, J. A. The Language of Thought. The Language and Thought Series. Crowell, New York, NY, 1975
1975
-
[18]
Geirhos, R., Jacobsen, J.-H., Michaelis, C., Zemel, R., Brendel, W., Bethge, M., and Wichmann, F. A. Shortcut Learning in Deep Neural Networks . Nature Machine Intelligence, 2: 0 665--673, 2020
2020
-
[19]
W., Wuthrich, M., Miladinovic, D., Locatello, F., Breidt, M., Volchkov, V., Akpo, J., Bachem, O., Sch \"o lkopf, B., and Bauer, S
Gondal, M. W., Wuthrich, M., Miladinovic, D., Locatello, F., Breidt, M., Volchkov, V., Akpo, J., Bachem, O., Sch \"o lkopf, B., and Bauer, S. On the transfer of inductive bias from simulation to the real world: a new disentanglement dataset. Advances in Neural Information Proc...
2019
-
[20]
and Lopez-Paz , D
Gulrajani, I. and Lopez-Paz , D. In Search of Lost Domain Generalization , 2020
2020
-
[21]
Deep Residual Learning for Image Recognition , 2015
He, K., Zhang, X., Ren, S., and Sun, J. Deep Residual Learning for Image Recognition , 2015
2015
-
[22]
Learning to grok: Emergence of in-context learning and skill composition in modular arithmetic tasks, 2024
He, T., Doshi, D., Das, A., and Gromov, A. Learning to grok: Emergence of in-context learning and skill composition in modular arithmetic tasks, 2024
2024
-
[23]
Hestness, J., Narang, S., Ardalani, N., Diamos, G., Jun, H., Kianinejad, H., Patwary, M. M. A., Yang, Y., and Zhou, Y. Deep learning scaling is predictable, empirically. arXiv preprint arXiv:1712.00409, 2017
2017 arXiv
-
[24]
Hoffmann, J., Borgeaud, S., Mensch, A., Buchatskaya, E., Cai, T., Rutherford, E., Casas, D. d. L., Hendricks, L. A., Welbl, J., Clark, A., et al. Training compute-optimal large language models. arXiv preprint arXiv:2203.15556, 2022
2022 arXiv
-
[25]
J., and Adelson, E
Isola, P., Lim, J. J., and Adelson, E. H. Discovering states and transformations in image collections. In 2015 IEEE Conference on Computer Vision and Pattern Recognition ( CVPR ) , pp.\ 1383--1391, Boston, MA, USA, 2015. IEEE
2015
-
[26]
J., and Rohrbach, A
Jeong, Y., Uselis, A., Oh, S. J., and Rohrbach, A. Diffusion classifiers understand compositionality, but conditions apply. arXiv preprint arXiv:2505.17955, 2025
2025
-
[27]
and Fusi, S
Johnston, S. and Fusi, S. Abstract representations emerge naturally in neural networks trained to perform multiple tasks. PLOS Computational Biology, 13: 0 e1005417, 2017
2017
-
[28]
Text encoders bottleneck compositionality in contrastive vision-language models, 2023
Kamath, A., Hessel, J., and Chang, K.-W. Text encoders bottleneck compositionality in contrastive vision-language models, 2023
2023
-
[29]
B., Chess, B., Child, R., Gray, S., Radford, A., Wu, J., and Amodei, D
Kaplan, J., McCandlish, S., Henighan, T., Brown, T. B., Chess, B., Child, R., Gray, S., Radford, A., Wu, J., and Amodei, D. Scaling Laws for Neural Language Models , 2020
2020
-
[30]
and Mnih, A
Kim, H. and Mnih, A. Disentangling by Factorising , 2019
2019
-
[31]
Kingma, D. P. and Ba, J. Adam: A Method for Stochastic Optimization , 2017
2017
-
[32]
Kirichenko, P., Izmailov, P., and Wilson, A. G. Last Layer Re-Training is Sufficient for Robustness to Spurious Correlations , 2023
2023
-
[33]
Koishigarina, D., Uselis, A., and Oh, S. J. Clip behaves like a bag-of-words model cross-modally but not uni-modally. arXiv preprint arXiv:2502.03566, 2025
2025
-
[34]
A., Serre, T., and Pavlick, E
Lepori, M. A., Serre, T., and Pavlick, E. Break It Down : Evidence for Structural Compositionality in Neural Networks , 2023
2023
-
[35]
and Stachenfeld, K
Lippl, S. and Stachenfeld, K. When does compositional structure yield compositional generalization? a kernel theory, 2024
2024
-
[36]
Object- Centric Learning with Slot Attention , 2020
Locatello, F., Weissenborn, D., Unterthiner, T., Mahendran, A., Heigold, G., Uszkoreit, J., Dosovitskiy, A., and Kipf, T. Object- Centric Learning with Slot Attention , 2020
2020
-
[37]
When and how CNNs generalize to out-of-distribution category-viewpoint combinations, 2021
Madan, S., Henry, T., Dozier, J., Ho, H., Bhandari, N., Sasaki, T., Durand, F., Pfister, H., and Boix, X. When and how CNNs generalize to out-of-distribution category-viewpoint combinations, 2021
2021
-
[38]
Compositional risk minimization, 2024
Mahajan, D., Pezeshki, M., Arnal, C., Mitliagkas, I., Ahuja, K., and Vincent, P. Compositional risk minimization, 2024
2024
-
[39]
Mamaghan, A. M. K., Papa, S., Johansson, K. H., Bauer, S., and Dittadi, A. Exploring the Effectiveness of Object-Centric Representations in Visual Question Answering : Comparative Insights with Foundation Models , 2024
2024
-
[40]
dSprites : Disentanglement testing sprites dataset, 2017
Matthey, L., Higgins, I., Hassabis, D., and Lerchner, A. dSprites : Disentanglement testing sprites dataset, 2017
2017
-
[41]
L., Ludwig, C
Montero, M. L., Ludwig, C. J., Costa, R. P., Malhotra, G., and Bowers, J. The role of Disentanglement in Generalisation . In International Conference on Learning Representations , 2020
2020
-
[42]
L., Bowers, J
Montero, M. L., Bowers, J. S., Costa, R. P., Ludwig, C. J. H., and Malhotra, G. Lost in Latent Space : Disentangled Models and the Challenge of Combinatorial Generalisation , 2022
2022
-
[43]
V., Yu, P., and Bach, S
Nayak, N. V., Yu, P., and Bach, S. H. Learning to Compose Soft Prompts for Compositional Zero-Shot Learning , 2023
2023
-
[44]
DINOv2 : Learning Robust Visual Features without Supervision , 2024
Oquab, M., Darcet, T., Moutakanni, T., Vo, H., Szafraniec, M., Khalidov, V., Fernandez, P., Haziza, D., Massa, F., El-Nouby , A., Assran, M., Ballas, N., Galuba, W., Howes, R., Huang, P.-Y., Li, S.-W., Misra, I., Rabbat, M., Sharma, V., Synnaeve, G., Xu, H., Jegou, H., Mairal,...
2024
-
[45]
J., Jiang, Y., and Veitch, V
Park, K., Choe, Y. J., Jiang, Y., and Veitch, V. The Geometry of Categorical and Hierarchical Concepts in Large Language Models , 2024
2024
-
[46]
W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., Krueger, G., and Sutskever, I
Radford, A., Kim, J. W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., Krueger, G., and Sutskever, I. Learning Transferable Visual Models From Natural Language Supervision , 2021
2021
-
[47]
R., and Nguyen, A
Rahmanzadehgervi, P., Bolton, L., Taesiri, M. R., and Nguyen, A. T. Vision language models are blind, 2024
2024
-
[48]
From causal to concept-based representation learning
Rajendran, G., Buchholz, S., Aragam, B., Sch \"o lkopf, B., and Ravikumar, P. From causal to concept-based representation learning. In The Twelfth International Conference on Learning Representations (ICLR), 2024
2024
-
[49]
and Sutherland, D
Ren, Y. and Sutherland, D. J. Understanding Simplicity Bias towards Compositional Mappings via Learning Dynamics , 2024
2024
-
[50]
B., and Kirby, S
Ren, Y., Guo, S., Labeau, M., Cohen, S. B., and Kirby, S. Compositional Languages Emerge in a Neural Iterated Learning Model , 2020
2020
-
[51]
J., and Courville, A
Ren, Y., Lavoie, S., Galkin, M., Sutherland, D. J., and Courville, A. Improving Compositional Generalization using Iterated Learning and Simplicial Embeddings . 2023
2023
-
[52]
W., Hashimoto, T
Sagawa, S., Koh, P. W., Hashimoto, T. B., and Liang, P. Distributionally Robust Neural Networks for Group Shifts : On the Importance of Regularization for Worst-Case Generalization , 2020
2020
-
[53]
u gelgen , J., Tr \
Schott, L., von K \"u gelgen , J., Tr \"a uble, F., Gehler, P., Russell, C., Bethge, M., Sch \"o lkopf, B., Locatello, F., and Brendel, W. Visual Representation Learning Does Not Generalize Strongly Within the Same Domain , 2022
2022
-
[54]
LAION-400M : Open Dataset of CLIP-Filtered 400 Million Image-Text Pairs , 2021
Schuhmann, C., Vencu, R., Beaumont, R., Kaczmarczyk, R., Mullis, C., Katta, A., Coombes, T., Jitsev, J., and Komatsuzaki, A. LAION-400M : Open Dataset of CLIP-Filtered 400 Million Image-Text Pairs , 2021
2021
-
[55]
Sonthalia, A., Uselis, A., and Oh, S. J. On the rankability of visual embeddings, 2025
2025
-
[56]
Towards Compositionality in Concept Learning , 2024
Stein, A., Naik, A., Wu, Y., Naik, M., and Wong, E. Towards Compositionality in Concept Learning , 2024
2024
-
[57]
S., and George, D
Stone, A., Wang, H., Stark, M., Liu, Y., Phoenix, D. S., and George, D. Teaching Compositionality to CNNs , 2017
2017
-
[58]
Eyes Wide Shut ? Exploring the Visual Shortcomings of Multimodal LLMs , 2024
Tong, S., Liu, Z., Zhai, Y., Ma, Y., LeCun, Y., and Xie, S. Eyes Wide Shut ? Exploring the Visual Shortcomings of Multimodal LLMs , 2024
2024
-
[59]
Touvron, H., Martin, L., Stone, K., Albert, P., Almahairi, A., Babaei, Y., Bashlykov, N., Batra, S., Bhargava, P., Bhosale, S., Bikel, D., Blecher, L., Ferrer, C. C., Chen, M., Cucurull, G., Esiobu, D., Fernandes, J., Fu, J., Fu, W., Fuller, B., Gao, C., Goswami, V., Goyal, N....
2023
-
[60]
Linear Spaces of Meanings : Compositional Structures in Vision-Language Models , 2023
Trager, M., Perera, P., Zancato, L., Achille, A., Bhatia, P., and Soatto, S. Linear Spaces of Meanings : Compositional Structures in Vision-Language Models , 2023
2023
-
[61]
Zero-Shot
Udandarao, V., Prabhu, A., Ghosh, A., Sharma, Y., Torr, P. H. S., Bibi, A., Albanie, S., and Bethge, M. No " Zero-Shot " Without Exponential Data : Pretraining Concept Frequency Determines Multimodal Model Performance , 2024
2024
-
[62]
and Oh, S
Uselis, A. and Oh, S. J. Intermediate layer classifiers for ood generalization, 2025
2025
-
[63]
Q., and Louis, A
Valle-P \'e rez , G., Camargo, C. Q., and Louis, A. A. Deep learning generalizes because the parameter-function map is biased towards simple functions. https://arxiv.org/abs/1805.08522v5, 2018
2018 arXiv
-
[64]
SPARO : Selective Attention for Robust and Compositional Transformer Encodings for Vision , 2024
Vani, A., Nguyen, B., Lavoie, S., Krishna, R., and Courville, A. SPARO : Selective Attention for Robust and Compositional Transformer Encodings for Vision , 2024
2024
-
[65]
Enhancing Compositional Generalization via Compositional Feature Alignment , 2024 a
Wang, H., Si, H., Shao, H., and Zhao, H. Enhancing Compositional Generalization via Compositional Feature Alignment , 2024 a
2024
-
[66]
Learning Conditional Attributes for Compositional Zero-Shot Learning
Wang, Q., Liu, L., Jing, C., Chen, H., Liang, G., Wang, P., and Shen, C. Learning Conditional Attributes for Compositional Zero-Shot Learning . In 2023 IEEE / CVF Conference on Computer Vision and Pattern Recognition ( CVPR ) , pp.\ 11197--11206, Vancouver, BC, Canada, 2023. IEEE
2023
-
[67]
Concept algebra for (score-based) text-controlled generative models, 2024 b
Wang, Z., Gui, L., Negrea, J., and Veitch, V. Concept algebra for (score-based) text-controlled generative models, 2024 b
2024
-
[68]
C., Dorrell, W., Ganguli, S., and Behrens, T
Whittington, J. C., Dorrell, W., Ganguli, S., and Behrens, T. E. Disentanglement with biological constraints: A theory of functional cell types. arXiv preprint arXiv:2210.01768, 2022
2022 arXiv
-
[69]
Provable Compositional Generalization for Object-Centric Learning , 2023
Wiedemer, T., Brady, J., Panfilov, A., Juhos, A., Bethge, M., and Brendel, W. Provable Compositional Generalization for Object-Centric Learning , 2023
2023
-
[70]
Pretraining Frequency Predicts Compositional Generalization of CLIP on Real-World Tasks
Wiedemer, T., Sharma, Y., Prabhu, A., Bethge, M., and Brendel, W. Pretraining Frequency Predicts Compositional Generalization of CLIP on Real-World Tasks . 2025
2025
-
[71]
H., Schiele, B., and Akata, Z
Xian, Y., Lampert, C. H., Schiele, B., and Akata, Z. Zero- Shot Learning -- A Comprehensive Evaluation of the Good , the Bad and the Ugly , 2020
2020
-
[72]
Skill- Mix : A Flexible and Expandable Family of Evaluations for AI models, 2023
Yu, D., Kaur, S., Gupta, A., Brown-Cohen , J., Goyal, A., and Arora, S. Skill- Mix : A Flexible and Expandable Family of Evaluations for AI models, 2023
2023
-
[73]
When and why vision-language models behave like bags-of-words, and what to do about it?, 2023
Yuksekgonul, M., Bianchi, F., Kalluri, P., Jurafsky, D., and Zou, J. When and why vision-language models behave like bags-of-words, and what to do about it?, 2023
2023
-
[74]
Zahran, Y., Burghouts, G., and Eisma, Y. B. Anticipating Future Object Compositions without Forgetting , 2024
2024
-
[75]
Investigating compositional challenges in vision-language models for visual grounding
Zeng, Y., Huang, Y., Zhang, J., Jie, Z., Chai, Z., and Wang, L. Investigating compositional challenges in vision-language models for visual grounding. 2023
2023
-
[76]
A benchmark for compositional visual reasoning
Zerroug, A., Vaishnav, M., Colin, J., Musslick, S., and Serre, T. A benchmark for compositional visual reasoning. In Advances in Neural Information Processing Systems, 2022
2022
-
[77]
Can Models Learn Skill Composition from Examples ?, 2024
Zhao, H., Kaur, S., Yu, D., Goyal, A., and Arora, S. Can Models Learn Skill Composition from Examples ?, 2024
2024
-
[78]
Data factors for better compositional generalization
Zhou, C., Chen, P., Liu, B., Li, X., Zhang, C., and Huang, H. Data factors for better compositional generalization. In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing, 2023
2023
-
[79]
Y., Ye, K., Ke, J., Yu, J., Guibas, L., Milanfar, P., and Yang, F
Zhu, W. Y., Ye, K., Ke, J., Yu, J., Guibas, L., Milanfar, P., and Yang, F. ArtVLM : Attribute Recognition Through Vision-Based Prefix Language Modeling , 2024
2024
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.