Pith. sign in

REVIEW 3 major objections 5 minor 76 references

Symbolic Disentangled Representations for Images

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

Pith's one-line read ArSyD stores each image property as a full-size hypervector so editing an object is a vector swap.

desk verdict ArSyD is a promising HDC-based disentanglement architecture with real novelty, but the DCM metric is misimplemented and the 'by construction' claim overreaches. read the letter →

arxiv 2412.19847 v1 pith:TPIJX6E7 submitted 2024-12-25 cs.CV cs.AIcs.LG

classification cs.CVcs.AIcs.LG
keywords disentangledrepresentationshyperdimensionalcomputingvectorsymbolicarchitecturesweaklysupervisedlearningimageeditingslotattentiondisentanglementmetricscompositionalgeneralization
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

ArSyD aims to make image generation factors separately editable by representing each generative factor (shape, color, size, position, and so on) as its own full-dimensional hypervector, rather than as one coordinate of a latent vector. The representation of an object is the superposition of these factor-value hypervectors, so changing a property means exchanging one hypervector for another. The paper claims this disentanglement is achieved by construction: the encoder and attention modules are trained only to reconstruct images from weakly supervised pairs that differ in one factor, with no extra assumptions about latent distributions. If the claim holds, controlled image editing becomes a simple, interpretable vector swap, and the same representation can be used in scenes with several objects by combining it with slot-based object discovery.

What carries the argument

The load-bearing mechanism is attention over a frozen random codebook (item memory), used as a bridge between the encoder's localist feature vector and a distributed hypervector representation. For each generative factor $i$, a projection of the encoder output is matched by softmax attention against fixed seed hypervectors from the codebook, and the weighted sum of those seeds becomes the factor's value vector $V_i^*$. These value vectors are bound to factor hypervectors and bundled into the object representation, following Holographic Reduced Representation operations. The same encoder runs on donor and target images, and the feature-exchange module swaps one value vector before decoding.

What would settle it

On the dSprites dataset, take two images that differ only in orientation, swap only the orientation value vector in the latent representation, decode both edited images, and classify their shape with a pretrained shape classifier. If the shape prediction changes when only orientation is exchanged, the orientation vector carries shape information and the factor-level disentanglement claim fails; the paper's own Figure 7 already shows such a shape distortion for orientation.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central discovery is that a disentangled representation can be built as a sum of learned value hypervectors, one per generative factor, instead of a vector whose individual coordinates each encode a factor. Each value vector $V_i^*$ is produced by an attention mechanism that selects a weighted combination of fixed random seed vectors from an item memory, and the object representation is $O = \sum_i G_i \circledast V_i^*$. The model is trained by swapping the value vector of one factor between two images that differ only in that factor and reconstructing both images with an MSE loss. The authors argue that because each generative factor has its own vector and the value vectors are grounded in the image through attention, disentanglement holds by construction, and editing reduces to exchanging the corresponding vector.

Load-bearing premise

The paper's claim depends on the assumption that training only the attention weights, with nothing but reconstruction error on image pairs that differ in one factor, forces each selected hypervector to align with exactly one true generative factor and to stay independent of the others.

Editorial extensions

If this is right

  • Editing an image property becomes a vector substitution, so the same edit operation is well-defined regardless of where in the latent space a factor lives.
  • The model can be combined with Slot Attention to edit a single object inside a multi-object scene, not just isolated objects.
  • Because disentanglement is claimed by construction, the approach avoids distributional assumptions and the loss-tuning typical of beta-VAE-style methods.
  • The proposed DMM and DCM metrics allow comparisons between localist and distributed representations by measuring changes in pixel-space classifications.
  • Reconstruction from a single factor vector shows that individual value vectors carry property-specific information, which supports interpretable editing.

Reading between the lines

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

  • Editorial inference: if the value hypervectors are truly independent symbols, then latent vector arithmetic (for instance, adding the vector for one object property and subtracting another) should produce coherent composite edits, a test the paper does not run.
  • Editorial inference: the entanglement of orientation with shape visible in the paper's Figure 7 suggests that adding a sparsity or orthogonality penalty on the attention weights would make the factor vectors cleaner; the paper itself does not propose such a penalty.
  • Editorial inference: because DMM and DCM measure disentanglement through classifiers on reconstructed images, better decoders or stronger classifiers could change the measured scores even if the latent representation is unchanged, so the metrics should be read as bounded by the reconstruction and classification pipeline.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 5 minor

Summary. The paper proposes ArSyD, an architecture that learns 'symbolic disentangled representations' in which each generative factor is represented by a full hypervector, and the object representation is a superposition of factor-value vectors obtained by attention over a fixed random codebook. The model is trained with weak supervision: image pairs differ in exactly one factor, and the feature-exchange reconstruction loss (Eq. 5) is the only training signal. The paper also introduces two classifier-based metrics, DMM and DCM, intended to evaluate disentanglement and compactness for distributed latent representations. Experiments on dSprites, CLEVR1, CLEVR5 (with Slot Attention), and a CelebA proof-of-concept show qualitative controlled edits and quantitative comparisons against BetaVAE and FactorVAE on FID/IoU, DMM, and DCM.

Significance. If the central claims held, this would be a valuable contribution: it offers a genuinely different, VSA-based route to disentangled representations that supports interpretable vector-level editing and proposes model-agnostic metrics that do not assume localist coordinates. The paper is also carefully structured around explicit research questions, and the qualitative exchange results on dSprites and CLEVR are compelling proof-of-concept. However, the evaluation instrument DCM is implemented inconsistently with its definition, and the 'disentanglement by construction' claim is stronger than the training objective and the paper's own qualitative results support. The significance of the contribution therefore depends on the extent to which these issues can be resolved.

major comments (3)
  1. [Section 3.4, Eq. (8), Figure 4] Eq. (8) defines DCM as (1/|C|) Σ_{c∈C} | Σ_{Gi∈G} [Cl(Ŝ'_c) ≠ ŷ]_{Gi} − 1 |, which is a per-unit row sum over generative factors. However, the text and Figure 4 state that DCM should use a per-factor column sum, counting how many latent units affect each generative factor. The metric's stated definition, 'whether each generative factor is encoded by a single latent unit,' requires a column sum. As written, DCM measures the average number of factors changed by a unit, not compactness across units for a factor. Consequently, the DCM values in Tables 3 and 4, including the conclusions that ArSyD is more compact than BetaVAE and FactorVAE, do not support the claims. Please correct Eq. (8) to aggregate over units for each factor, recompute the affected tables, and state clearly which operationalization is used.
  2. [Abstract; Section 3.1, Eqs. (3)–(4); Section 3.2–3.3, Eq. (5); Section 4, Figure 7] The abstract and Section 3.1 claim that 'disentanglement is achieved by construction,' but this is not established by the training procedure. In each weakly supervised pair, all factors except the exchanged one are identical between target and donor, so the exchange loss in Eq. (5) only requires V*_p to carry enough information to transfer factor p; it never penalizes V*_p for also encoding other factors, because those factors are constant in the pair and the decoder can ignore redundant information. The HDC binding in Eq. (1) makes the bound terms quasi-orthogonal, but it does not constrain V*_i itself to be independent of the other factors. The paper's own Figure 7 and accompanying text say that the 'Orientation' feature is 'strongly related' to the 'Shape' feature, which is direct evidence that the factor-alignment assumption can fail. The claim should be weakened to 'encouraged by the weak supervision objective,' or the authors should provide a direct analysis (e.g., probing or decoding each V*_i in isolation, or a full pairwise intervention matrix) demonstrating that each V*_i is factor-pure.
  3. [Section 4, RQ8, Figures 13–14] RQ8 concludes that the value vectors V*_i represent separate properties because decoding a single vector bound to a placeholder does not reconstruct a complete image. This conclusion does not follow from the evidence: a vector that encodes a mixture of several factors, but is alone insufficient to generate a full image, would produce qualitatively the same incomplete reconstructions. To support the factor-purity interpretation, the authors should test interventions directly, e.g., by modifying V*_i and measuring which downstream factor classifications change, or by training linear probes on V*_i to see whether they predict only the intended factor.
minor comments (5)
  1. [Figure 4] The caption says 'DCN metric' in the last sentence; this should be 'DCM metric.'
  2. [Eq. (5)] The text after Eq. (5) says '˜Od – a reconstructed target object'; this should be '˜Ot – a reconstructed target object,' and the donor terms should be labeled consistently.
  3. [Section 3.7 and Table 3] Section 3.7 states that dSprites paired was trained for 600 epochs, whereas the caption of Table 3 says 200 epochs for dSprites paired; please reconcile these numbers.
  4. [Section 3.8] The metric classifiers are described as six ResNet-34 models fine-tuned on the CLEVR1 paired dataset, but the paper also reports DMM and DCM for dSprites paired; please specify which classifiers are used for dSprites and CelebA, and report their per-factor accuracies on the reconstruction sets.
  5. [Section 3.4] The term 'unit' is introduced in the metrics section, but Figure 4 and the surrounding text use 'DCN' and 'DCM' inconsistently; please unify the notation.

Circularity Check

1 steps flagged · score 4.0 of 10

The headline 'disentanglement by construction' is partly definitional: the decomposition is named a 'symbolic disentangled representation' without an equation or loss term forcing each V*_i to be factor-pure; the empirical evaluations themselves are not fitted to the metrics.

  1. self definitional [Abstract; Section 3.1, paragraph after Eq. (4) and text defining the representation]
    "Disentanglement is achieved by construction, no additional assumptions about the underlying distributions are made during training... The resulting value vectors V ∗ i are multiplied by the corresponding generative factor vectors Gi and summed to produce the vector O, which is a symbolic disentangled representation of an object."

    The 'achieved by construction' claim reads the disentanglement property off the notation 'generative factor vector' and the name 'symbolic disentangled representation'. Equation (4) only defines V*_i as an attention mixture over the codebook of factor i; Equation (5) only requires MSE reconstruction after exchanging one index. Nothing in Eqs. (3)-(5) constrains V*_i to exclude information about other generative factors, and the paper itself reports in Figure 7 that on dSprites 'the Orientation feature is strongly related to the Shape feature'. Thus the asserted guarantee is not derived from the architecture or loss; it is equivalent to the paper's own definitional label for a sum of bound hypervectors.

full rationale

I examined the claimed derivation chain: HDC composition (Eq. 1-2), grounding through attention over a frozen codebook (Eq. 3-4), weak-supervision exchange with reconstruction-only loss (Eq. 5-6), and the DMM/DCM evaluation (Eq. 7-8). The only load-bearing step that reduces to its own input is the abstract's 'disentanglement is achieved by construction': the representation is called a 'symbolic disentangled representation' because it is written as a sum of vectors named after generative factors, but the learned V*_i are not proven factor-pure, and the paper's own qualitative results show orientation/shape entanglement. That is a terminological/definitional circularity in the central claim. The remaining machinery is not circular in the same way: DMM and DCM are not part of the training losses, the classifier-based metrics use external ResNet classifiers and are not fitted to ArSyD, and the comparisons also include IoU/FID against BetaVAE and FactorVAE. Self-citations in the paper ([21,22,29-32]) are contextual and not load-bearing. The Limitations section candidly acknowledges classifier dependence and the need to know generative factors beforehand; those are validity caveats, not circularity. Overall the central guarantee is overstated by definitional naming, but the empirical core retains independent content, so a moderate score is appropriate.

Assumptions & free parameters 5 free parameters · 6 assumptions · 2 invented entities

The central contribution is built on a frozen random codebook, an assumed known factor structure, paired training data, and two new metrics. Since no code, data, or pre-trained models are released, all support comes from the paper's own reported experiments, and one of the metrics, DCM, appears to be misformulated relative to its definition.

free parameters (5)
  • Latent dimension D = 1024 in main runs; swept from 16 to 2048
    Manual hyperparameter controlling hypervector dimension; larger D improves IoU and classifier accuracy in Tables 4-6.
  • Number of generative factors N = 5 for dSprites, 6 for CLEVR, 7 for CelebA
    Must be specified a priori; the paper lists this as a limitation in Section 5.
  • Value codebook sizes per factor = dSprites: 3 shapes, 6 scales, 40 orientations, 32 x-values, 32 y-values; CLEVR: per-dataset factor value lists…
    Defines the item memory and the softmax scope in the attention module; chosen from dataset metadata.
  • Attention K/Q projection size = 1024
    Architecture choice for the GF representation modules; not systematically ablated.
  • Number of slots K for CLEVR5 = 6
    One more than the maximum number of objects in the scene, following Slot Attention defaults.
assumptions (6)
  • standard math Random Gaussian hypervectors of dimension D are mutually quasi-orthogonal and circular convolution binding and unbinding behave as in HRR.
    Section 3.1 relies on concentration of measure and HRR properties for the frozen codebook.
  • domain assumption Each image contains one object with a known finite set of generative factors, or in CLEVR5 a known maximum number of objects and reliable slot decomposition.
    Section 3.1 and 3.5; required to construct codebooks and paired training sets.
  • domain assumption Training pairs differ in exactly one known generative factor and the feature exchange vector e is available.
    Section 3.2; this weak supervision signal is the only learning signal that aligns each attention output with a factor.
  • domain assumption MSE reconstruction is a sufficient training signal for the attention outputs to become factor-aligned.
    Section 3.3; no explicit orthogonality, sparsity, or factor-alignment loss is imposed.
  • domain assumption Classifiers trained on original images give reliable factor predictions on reconstructed images for DMM and DCM.
    Section 3.4; acknowledged as a limitation, and Tables 5-6 show low accuracies for some factors.
  • domain assumption Slot Attention discovers object masks that are accurate enough for edited objects to be re-inserted into scenes.
    Section 3.3 and Figure 10; the authors note that restored slot masks often take up more space than the object.
invented entities (2)
  • Symbolic disentangled representation (superposition of bound hypervectors as a latent image code)
    purpose: Central representation that enables controlled factor editing by vector exchange.
    Introduced by this paper; its disentanglement is demonstrated only through the paper's own metrics and qualitative figures, with no external benchmark or downstream task validation.
  • DMM and DCM disentanglement metrics
    purpose: Evaluate disentanglement across localist and distributed latent representations using classification of reconstructed images.
    New metrics proposed here; DCM as written appears inconsistent with its stated definition, and the metrics depend on external labeled classifiers whose accuracy is limited for several factors.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Symbolic Disentangled Representations for Images." pith.science (2026). https://pith.science/paper/TPIJX6E7

@misc{pith2026241219847,
  author       = {Pith},
  title        = {Pith review of: Symbolic Disentangled Representations for Images},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/TPIJX6E7}},
  note         = {Machine review of arXiv:2412.19847}
}
read the original abstract

The idea of disentangled representations is to reduce the data to a set of generative factors that produce it. Typically, such representations are vectors in latent space, where each coordinate corresponds to one of the generative factors. The object can then be modified by changing the value of a particular coordinate, but it is necessary to determine which coordinate corresponds to the desired generative factor -- a difficult task if the vector representation has a high dimension. In this article, we propose ArSyD (Architecture for Symbolic Disentanglement), which represents each generative factor as a vector of the same dimension as the resulting representation. In ArSyD, the object representation is obtained as a superposition of the generative factor vector representations. We call such a representation a \textit{symbolic disentangled representation}. We use the principles of Hyperdimensional Computing (also known as Vector Symbolic Architectures), where symbols are represented as hypervectors, allowing vector operations on them. Disentanglement is achieved by construction, no additional assumptions about the underlying distributions are made during training, and the model is only trained to reconstruct images in a weakly supervised manner. We study ArSyD on the dSprites and CLEVR datasets and provide a comprehensive analysis of the learned symbolic disentangled representations. We also propose new disentanglement metrics that allow comparison of methods using latent representations of different dimensions. ArSyD allows to edit the object properties in a controlled and interpretable way, and the dimensionality of the object property representation coincides with the dimensionality of the object representation itself.

Figures

Figures reproduced from arXiv: 2412.19847 by the authors.

Figure 1
Figure 1. The Architecture for Symbolic Disentanglement (ArSyD) uses an encoder network and a Generative Factor (GF) projection to represent the target and donor images as sets of HVs. These HVs correspond to the values of the underlying generative factors in the data. The same encoder is used for both target and donor objects. While most of the values for the generative fac￾tors are the same between the donor and target imag… view at source ↗
Figure 2
Figure 2. The process of obtaining a symbolic disentangled representation of an object: a) usual approach in HDC – a symbolic description is used without grounding in the raw data; b) approach in ArSyD – the symbolic description of an object is grounded in the raw data to obtain its symbolic disentangled representation. object and the donor object and get the representations Oˆ1 and Oˆ2, respectively. If we reconstruct the or… view at source ↗
Figure 3
Figure 3. An ArSyD architecture for the case of multiple objects in the scene. We use Slot Attention to discover objects in the scene and represent it as a collection of individual objects. The Feature Exchange module is then used to replace the value of the desired generative factor. The model is trained end-to-end with a loss LScene (Equation 6). where S – an original scene, S˜ – a reconstructed original scene, S ′ – a scen… view at source ↗
Figures from the paper (11 more)
Figure 4
Figure 4. Figure 4: The Disentanglement Modularity Metric refers to evaluating whether each latent unit is responsible for encoding only one gen￾0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 1 0 0 1 2 2 1 3 2 4 2 1 0 F1 F2 F3 F4 F5 DMM DCM DCM DCM . . . . ℎ Decoder 𝑆" Classifier…
Figure 5
Figure 5. Figure 5: Examples of image pairs from the training sample of datasets: a) dSprites paired; b) CLEVR1 paired; c) CLEVR5 paired. 3.5.3 CelebA paired The CelebA dataset consists of 200k celebrity images and is la￾beled with 40 binary features describing appearance. Since ArSyD is …
Figure 6
Figure 6. Figure 6: Image reconstruction of the CLEVR1 paired and dSprites paired objects from HDC representations without grounding to the images [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 7
Figure 7. Figure 7: Image reconstruction of objects with modified generative factor values (yellow frame) for the dSprites paired dataset. The target object (red frame) differs from the donor object (blue frame) in all factor values. D DMM↓ DCM↓ IoU ↑ 16 1.46 ± 0.12 1.74 ± 0.02 0.948 ± 0.…
Figure 8
Figure 8. Figure 8: Image reconstruction of objects with modified generative factor values (yellow frame) for the CLEVR1 paired dataset. The target object (red frame) differs from the donor object (blue frame) in all factor values. Original BetaVAE FactorVAE Our dSprites CLEVR Original Be…
Figure 9
Figure 9. Figure 9: Examples of image reconstruction for all models from the dSprites paired (left) and CLEVR paired (right) datasets. D Shape Scale Orientation Pos X Pos Y 16 0.36±0.08 0.23±0.31 0.09±0.06 0.04±0.03 0.01±0.01 32 0.61±0.01 0.18±0.18 0.11±0.02 0.03±0.02 0.03±0.02 64 0.41±0.…
Figure 10
Figure 10. Figure 10: Image reconstruction of scenes with multiple objects from a test sample with modified values of generative factors of one object for the CLEVR5 paired dataset. D Shape Size Material Color Pos X Pos Y 16 0.52 ± 0.33 0.51 ± 0.06 0.42 ± 0.41 0.27 ± 0.26 0.04 ± 0.02 0.04 …
Figure 12
Figure 12. Figure 12: Examples of image reconstruction from the CelebA paired dataset. feature reconstruction of a pre-trained DINO model [73]. We consider extending our approach to the unlabeled data, where the selection of generative factors to exchange during training is based on a crit…
Figure 11
Figure 11. Figure 11: Examples of image reconstruction of objects from the dSprites paired dataset with modified values of the generative factors. The target object (red frame) differs from the donor object (blue frame) in all factor values. trained neural networks, which are good feature …
Figure 14
Figure 14. Figure 14: Visualization of image reconstruction from a single feature vec￾tor from an item memory (bound to a placeholder value) for the CLEVR dataset. It shows that a complete image is not reconstructed from a single vector. This indicates that the vector represents a separate…
Figure 13
Figure 13. Figure 13: Visualization of image reconstruction from a single feature vec￾tor from an item memory (bound to a placeholder value) for the dSprites dataset. It shows that a complete image is not reconstructed from a single vector. This indicates that the vector represents a separ…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

76 extracted references · 53 canonical work pages

  1. [1]

    Representation learning: A review and new perspectives.IEEE Transactions on Pattern Analysis and Machine Intelligence , 35(8):1798–1828, 2013

    Yoshua Bengio, Aaron Courville, and Pascal Vincent. Representation learning: A review and new perspectives.IEEE Transactions on Pattern Analysis and Machine Intelligence , 35(8):1798–1828, 2013. doi: 10. 1109/TPAMI.2013.50

  2. [2]

    Imagenet classification with deep convolutional neural networks

    Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In F. Pereira, C.J. Burges, L. Bottou, and K.Q. Weinberger, editors, Advances in Neural Information Processing Systems , volume 25. Curran Asso- ciates, Inc., 2012. URL https://proceedings.neurips.cc/paper/2012/file/ c399862d3b9d6b76c84...

  3. [3]

    Efficient estimation of word representations in vector space

    Tomás Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. Efficient estimation of word representations in vector space. In Yoshua Bengio and Yann LeCun, editors, ICLR, Workshop Track, 2013

  4. [4]

    Deep convolutional net- works on graph-structured data

    Mikael Henaff, Joan Bruna, and Yann LeCun. Deep convolutional net- works on graph-structured data. ArXiv, abs/1506.05163, 2015

  5. [5]

    Graph attention networks

    Petar Veli ˇckovi´c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua Bengio. Graph attention networks. In ICLR, 2018

  6. [6]

    beta-V AE: Learning basic visual concepts with a constrained variational framework

    Irina Higgins, Loic Matthey, Arka Pal, Christopher Burgess, Xavier Glorot, Matthew Botvinick, Shakir Mohamed, and Alexander Lerchner. beta-V AE: Learning basic visual concepts with a constrained variational framework. In International Conference on Learning Representations,

  7. [7]

    Infogan: Interpretable representation learning by information maximizing generative adversarial nets

    Xi Chen, Yan Duan, Rein Houthooft, John Schulman, Ilya Sutskever, and Pieter Abbeel. Infogan: Interpretable representation learning by information maximizing generative adversarial nets. In D. Lee, M. Sugiyama, U. Luxburg, I. Guyon, and R. Garnett, editors, NIPS. Curran Associates, Inc., 2016

  8. [8]

    Disentangling by factorising

    Hyunjik Kim and Andriy Mnih. Disentangling by factorising. In ICML, 2018

Show all 76 references
  1. [9]

    Cian Eastwood and Christopher K. I. Williams. A framework for the quantitative evaluation of disentangled representations. In 6th Inter- national Conference on Learning Representations, ICLR 2018, Van- couver, BC, Canada, April 30 - May 3, 2018, Conference Track Pro- ceedings....

  2. [10]

    Tell, draw, and repeat: Generating and modifying images based on continual linguistic instruction

    Alaaeldin El-Nouby, Shikhar Sharma, Hannes Schulz, Devon Hjelm, Layla El Asri, Samira Ebrahimi Kahou, Yoshua Bengio, and Graham W.Taylor. Tell, draw, and repeat: Generating and modifying images based on continual linguistic instruction. ICCV, 2019

  3. [11]

    Unified questioner trans- former for descriptive question generation in goal-oriented visual dia- logue

    Shoya Matsumori, Kosuke Shingyouchi, Yukikoko Abe, Yosuke Fukuchi, Komei Sugiura, and Michita Imai. Unified questioner trans- former for descriptive question generation in goal-oriented visual dia- logue. ICCV, 2021

  4. [12]

    Fast exploration with simplified models and approximately optimistic plan- ning in model based reinforcement learning, 2018

    Ramtin Keramati, Jay Whang, Patrick Cho, and Emma Brunskill. Fast exploration with simplified models and approximately optimistic plan- ning in model based reinforcement learning, 2018

  5. [13]

    Unsu- pervised learning of object keypoints for perception and control

    Tejas D Kulkarni, Ankush Gupta, Catalin Ionescu, Sebastian Borgeaud, Malcolm Reynolds, Andrew Zisserman, and V olodymyr Mnih. Unsu- pervised learning of object keypoints for perception and control. Ad- vances in neural information processing systems, 32, 2019

  6. [14]

    Christopher Berner, Greg Brockman, Brooke Chan, Vicki Cheung, Przemyslaw Debiak, Christy Dennison, David Farhi, Quirin Fischer, Shariq Hashme, Christopher Hesse, Rafal Józefowicz, Scott Gray, Catherine Olsson, Jakub W. Pachocki, Michael Petrov, Henrique Pondé de Oliveira Pinto...

  7. [15]

    Object-centric task and motion planning in dynamic environments.IEEE Robotics and Automation Let- ters, 5:844–851, 2020

    Toki Migimatsu and Jeannette Bohg. Object-centric task and motion planning in dynamic environments.IEEE Robotics and Automation Let- ters, 5:844–851, 2020

  8. [16]

    Are disentangled representations helpful for abstract visual reasoning? In NeurIPS, 2019

    Sjoerd van Steenkiste, Francesco Locatello, Jürgen Schmidhuber, and Olivier Bachem. Are disentangled representations helpful for abstract visual reasoning? In NeurIPS, 2019

  9. [17]

    Systematic visual reasoning through object-centric relational abstraction

    Taylor Whittington Webb, Shanka Subhra Mondal, and Jonathan Co- hen. Systematic visual reasoning through object-centric relational abstraction. In Thirty-seventh Conference on Neural Information Processing Systems , 2023. URL https://openreview.net/forum?id= 8JCZe7QrPy

  10. [18]

    Shapestacks: Learning vision-based physical intuition for generalised object stacking

    Oliver Groth, Fabian B Fuchs, Ingmar Posner, and Andrea Vedaldi. Shapestacks: Learning vision-based physical intuition for generalised object stacking. In Proceedings of the european conference on com- puter vision (eccv), pages 702–717, 2018

  11. [19]

    Tenenbaum

    Kexin Yi, Chuang Gan, Yunzhu Li, Pushmeet Kohli, Jiajun Wu, Antonio Torralba, and Joshua B. Tenenbaum. Clevrer: Collision events for video representation and reasoning. ArXiv, abs/1910.01442, 2020

  12. [20]

    Illiterate dall-e learns to compose

    Gautam Singh, Fei Deng, and Sungjin Ahn. Illiterate dall-e learns to compose. ArXiv, abs/2110.11405, 2021

  13. [21]

    Quantized disentangled representa- tions for object-centric visual tasks

    Daniil Kirilenko, Alexandr Korchemnyi, Konstantin Smirnov, Alexey K Kovalev, and Aleksandr I Panov. Quantized disentangled representa- tions for object-centric visual tasks. InInternational Conference on Pat- tern Recognition and Machine Intelligence , pages 514–522. Springer, 2023

  14. [22]

    Object-centric learning with slot mixture module

    Daniil Kirilenko, Vitaliy V orobyov, Alexey Kovalev, and Aleksandr Panov. Object-centric learning with slot mixture module. InThe Twelfth International Conference on Learning Representations , 2024. URL https://openreview.net/forum?id=aBUidW4Nkd

  15. [23]

    Hyperdimensional computing: An introduction to com- puting in distributed representation with high-dimensional random vec- tors

    Pentti Kanerva. Hyperdimensional computing: An introduction to com- puting in distributed representation with high-dimensional random vec- tors. Cognitive Computation , 1(2):139–159, Jun 2009. ISSN 1866-

  16. [24]

    Rachkovskij, Evgeny Osipov, and Abbas Rahimi

    Denis Kleyko, Dmitri A. Rachkovskij, Evgeny Osipov, and Abbas Rahimi. A survey on hyperdimensional computing aka vector symbolic architectures, part i: Models and data transformations. ACM Comput. Surv., 55(6), December 2022. ISSN 0360-0300. doi: 10.1145/3538531. URL https://d...

  17. [25]

    A survey on hyperdimensional computing aka vector symbolic ar- chitectures, part ii: Applications, cognitive models, and challenges

    Denis Kleyko, Dmitri Rachkovskij, Evgeny Osipov, and Abbas Rahimi. A survey on hyperdimensional computing aka vector symbolic ar- chitectures, part ii: Applications, cognitive models, and challenges. ACM Comput. Surv. , 55(9), January 2023. ISSN 0360-0300. doi: 10.1145/3558000...

  18. [26]

    Concepts as semantic pointers: A framework and computational model

    Peter Blouw, Eugene Solodkin, Paul Thagard, and Chris Eliasmith. Concepts as semantic pointers: A framework and computational model. Cognitive science , 40 5:1128–62, 2016. URL https://api. semanticscholar.org/CorpusID:16809232

  19. [27]

    Distributed representation of n-gram statistics for boosting self-organizing maps with hyperdi- mensional computing

    Denis Kleyko, Evgeny Osipov, Daswin De Silva, Urban Wiklund, Va- leriy Vyatkin, and Damminda Alahakoon. Distributed representation of n-gram statistics for boosting self-organizing maps with hyperdi- mensional computing. In Nikolaj Bjørner, Irina Virbitskaite, and An- drei V o...

  20. [28]

    Vector symbolic architec- tures for context-free grammars

    Peter beim Graben, Markus Huber, Werner Meyer, Ronald Römer, Constanze Tschöpe, and Matthias Wolff. Vector symbolic architec- tures for context-free grammars. CoRR, abs/2003.05171, 2020. URL https://arxiv.org/abs/2003.05171

  21. [29]

    Applying vector symbolic architecture and semi- otic approach to visual dialog

    Alexey K Kovalev, Makhmud Shaban, Anfisa A Chuganskaya, and Aleksandr I Panov. Applying vector symbolic architecture and semi- otic approach to visual dialog. In Hybrid Artificial Intelligent Systems: 16th International Conference, HAIS 2021, Bilbao, Spain, September 22–24, 20...

  22. [30]

    Question answering for visual navigation in human-centered environments

    Daniil E Kirilenko, Alexey K Kovalev, Evgeny Osipov, and Aleksandr I Panov. Question answering for visual navigation in human-centered environments. In Mexican International Conference on Artificial Intel- ligence, pages 31–45. Springer, 2021

  23. [31]

    Kovalev, Makhmud Shaban, Evgeny Osipov, and Alek- sandr I

    Alexey K. Kovalev, Makhmud Shaban, Evgeny Osipov, and Alek- sandr I. Panov. Vector semiotic model for visual question answer- ing. Cognitive Systems Research, 71:52–63, 2022. ISSN 1389-0417. doi: https://doi.org/10.1016/j.cogsys.2021.09.001. URL https://www. sciencedirect.com/...

  24. [32]

    Vector symbolic scene representation for semantic place recognition

    Daniil Kirilenko, Alexey K Kovalev, Yaroslav Solomentsev, Alexander Melekhin, Dmitry A Yudin, and Aleksandr I Panov. Vector symbolic scene representation for semantic place recognition. In 2022 Interna- tional Joint Conference on Neural Networks (IJCNN), pages 1–8. IEEE, 2022

  25. [33]

    Analogy making and logical inference on images using cellular automata based hyperdimensional computing, 2015

    Ozgur Yilmaz. Analogy making and logical inference on images using cellular automata based hyperdimensional computing, 2015

  26. [34]

    Hyperseed: Unsupervised learning with vector symbolic ar- chitectures

    Evgeny Osipov, Sachin Kahawala, Dilantha Haputhanthri, Thimal Kempitiya, Daswin De Silva, Damminda Alahakoon, and Denis Kleyko. Hyperseed: Unsupervised learning with vector symbolic ar- chitectures. CoRR, abs/2110.08343, 2021. URL https://arxiv.org/abs/ 2110.08343

  27. [35]

    The concentration of measure phenomenon

    Michel Ledoux. The concentration of measure phenomenon. AMS Sur- veys and Monographs, 89, 01 2001

  28. [36]

    Neural ma- chine translation by jointly learning to align and translate

    Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural ma- chine translation by jointly learning to align and translate. In Yoshua Bengio and Yann LeCun, editors, 3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Confer...

  29. [37]

    Weakly supervised disentanglement with guarantees

    Rui Shu, Yining Chen, Abhishek Kumar, Stefano Ermon, and Ben Poole. Weakly supervised disentanglement with guarantees. arXiv preprint arXiv:1910.09772, 2019

  30. [38]

    Weakly-supervised disentan- glement without compromises

    Francesco Locatello, Ben Poole, Gunnar Rätsch, Bernhard Schölkopf, Olivier Bachem, and Michael Tschannen. Weakly-supervised disentan- glement without compromises. InInternational Conference on Machine Learning, pages 6348–6359. PMLR, 2020

  31. [39]

    Object-centric learning with slot attention

    Francesco Locatello, Dirk Weissenborn, Thomas Unterthiner, Aravindh Mahendran, Georg Heigold, Jakob Uszkoreit, Alexey Dosovitskiy, and Thomas Kipf. Object-centric learning with slot attention. Advances in neural information processing systems, 33:11525–11538, 2020

  32. [40]

    dsprites: Disentanglement testing sprites dataset

    Loic Matthey, Irina Higgins, Demis Hassabis, and Alexan- der Lerchner. dsprites: Disentanglement testing sprites dataset. https://github.com/deepmind/dsprites-dataset/, 2017

  33. [41]

    Clevr: A diagnostic dataset for compositional language and elementary visual reasoning

    Justin Johnson, Bharath Hariharan, Laurens van der Maaten, Li Fei-Fei, C Lawrence Zitnick, and Ross Girshick. Clevr: A diagnostic dataset for compositional language and elementary visual reasoning. In CVPR, 2017

  34. [42]

    Deep learning face attributes in the wild

    Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild. In Proceedings of International Conference on Computer Vision (ICCV), December 2015

  35. [43]

    Burgess, Irina Higgins, Arka Pal, Loic Matthey, Nick Watters, Guillaume Desjardins, and Alexander Lerchner

    Christopher P. Burgess, Irina Higgins, Arka Pal, Loic Matthey, Nick Watters, Guillaume Desjardins, and Alexander Lerchner. Understand- ing disentangling in beta-vae, 2018. URL https://arxiv.org/abs/1804. 03599

  36. [44]

    Ricky T. Q. Chen, Xuechen Li, Roger B Grosse, and David K Duvenaud. Isolating sources of disentanglement in variational au- toencoders. In S. Bengio, H. Wallach, H. Larochelle, K. Grau- man, N. Cesa-Bianchi, and R. Garnett, editors, Advances in Neu- ral Information Processing ...

  37. [45]

    Vari- ational inference of disentangled latent concepts from unlabeled obser- vations

    Abhishek Kumar, Prasanna Sattigeri, and Avinash Balakrishnan. Vari- ational inference of disentangled latent concepts from unlabeled obser- vations. In 6th International Conference on Learning Representations, ICLR. OpenReview.net, 2018

  38. [46]

    Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio

    Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Gen- erative adversarial networks, 2014. URL https://arxiv.org/abs/1406. 2661

  39. [47]

    Infogan-cr: Disentangling generative adversarial networks with contrastive regularizers

    Zinan Lin, Kiran Koshy Thekumparampil, Giulia Fanti, and Sewoong Oh. Infogan-cr: Disentangling generative adversarial networks with contrastive regularizers. CoRR, abs/1906.06034, 2019. URL http: //arxiv.org/abs/1906.06034

  40. [48]

    Patel, and Anima Anandkumar

    Weili Nie, Tero Karras, Animesh Garg, Shoubhik Debnath, Anjul Pat- ney, Ankit B. Patel, and Anima Anandkumar. Semi-supervised style- gan for disentanglement learning. CoRR, abs/2003.03461, 2020. URL https://arxiv.org/abs/2003.03461

  41. [50]

    Towards building a group-based unsupervised representation disentanglement framework

    Tao Yang, Xuanchi Ren, Yuwang Wang, Wenjun Zeng, and Nanning Zheng. Towards building a group-based unsupervised representation disentanglement framework. In ICLR, 2022

  42. [51]

    Recur- sive disentanglement network

    Yixuan Chen, Yubin Shi, Dongsheng Li, Yujiang Wang, Mingzhi Dong, Yingying Zhao, Robert Dick, Qin Lv, Fan Yang, and Li Shang. Recur- sive disentanglement network. In ICLR, 2022

  43. [52]

    Learning disentangled representation by exploiting pretrained generative models: A contrastive learning view

    Xuanchi Ren, Tao Yang, Yuwang Wang, and Wenjun Zeng. Learning disentangled representation by exploiting pretrained generative models: A contrastive learning view. In ICLR, 2022

  44. [53]

    Multiplicative binding, representation operators, and anal- ogy

    Ross Gayler. Multiplicative binding, representation operators, and anal- ogy. In Advances in Analogy Research: Integration of Theory and Data from the Cognitive, Computational, and Neural Sciences, pages 1–4, 01 1998

  45. [54]

    Holographic reduced representations: Convolution alge- bra for compositional distributed representations

    Tony Plate. Holographic reduced representations: Convolution alge- bra for compositional distributed representations. In Proceedings of the 12th International Joint Conference on Artificial Intelligence - Vol- ume 1, IJCAI’91, page 30–35, San Francisco, CA, USA, 1991. Morgan K...

  46. [55]

    T. A. Plate. Holographic Reduced Representations: Distributed Rep- resentation for Cognitive Structures. Stanford: Center for the Study of Language and Information (CSLI), USA, 2003

  47. [56]

    How to build a brain: A neural architecture for bio- logical cognition

    Chris Eliasmith. How to build a brain: A neural architecture for bio- logical cognition. Oxford University Press, 2013

  48. [57]

    A neural representation of continuous space using fractional binding

    Brent Komer, Terrence C Stewart, Aaron R V oelker, and Chris Elia- smith. A neural representation of continuous space using fractional binding. In 41st annual meeting of the cognitive science society . QC: Cognitive Science Society, 2019

  49. [58]

    Gayler and Simon D

    Ross W. Gayler and Simon D. Levy. A distributed basis for analog- ical mapping, 2009. URL https://api.semanticscholar.org/CorpusID: 18842042

  50. [59]

    Rachkovskij, Evgeny Osipov, and Jan M

    Denis Kleyko, Abbas Rahimi, Dmitri A. Rachkovskij, Evgeny Osipov, and Jan M. Rabaey. Classification and recall with binary hyperdimen- sional computing: Tradeoffs in choice of density and mapping charac- teristics. IEEE Transactions on Neural Networks and Learning Systems, 29(...

  51. [60]

    A comparison of vec- tor symbolic architectures

    Kenny Schlegel, Peer Neubert, and Peter Protzel. A comparison of vec- tor symbolic architectures. Artificial Intelligence Review, 55(6):4523– 4555, 2022

  52. [61]

    Multi- level variational autoencoder: Learning disentangled representations from grouped observations

    Diane Bouchacourt, Ryota Tomioka, and Sebastian Nowozin. Multi- level variational autoencoder: Learning disentangled representations from grouped observations. In Proceedings of the AAAI Conference on Artificial Intelligence, 2018

  53. [62]

    Disentangling factors of variation with cycle-consistent vari- ational auto-encoders

    Ananya Harsh Jha, Saket Anand, Maneesh Singh, and VS Rao Veer- avasarapu. Disentangling factors of variation with cycle-consistent vari- ational auto-encoders. In Proceedings of the European Conference on Computer Vision (ECCV), pages 805–820, 2018

  54. [63]

    Unsupervised robust disentangling of latent characteristics for image synthesis

    Patrick Esser, Johannes Haux, and Bjorn Ommer. Unsupervised robust disentangling of latent characteristics for image synthesis. In Proceed- ings of the IEEE/CVF International Conference on Computer Vision , pages 2699–2709, 2019

  55. [64]

    Learn- ing disentangled representations via mutual information estimation

    Eduardo Hugo Sanchez, Mathieu Serrurier, and Mathias Ortner. Learn- ing disentangled representations via mutual information estimation. In Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part XXII 16 , pages 205–221. Springer, 2020

  56. [65]

    Nest- edvae: Isolating common factors via weak supervision

    Matthew J V owels, Necati Cihan Camgoz, and Richard Bowden. Nest- edvae: Isolating common factors via weak supervision. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogni- tion, pages 9202–9212, 2020

  57. [66]

    Towards a defi- nition of disentangled representations, 2018

    Irina Higgins, David Amos, David Pfau, Sebastien Racaniere, Loic Matthey, Danilo Rezende, and Alexander Lerchner. Towards a defi- nition of disentangled representations, 2018

  58. [67]

    Montero, Jeffrey S

    Milton L. Montero, Jeffrey S. Bowers, Rui Ponte Costa, Casimir J. H. Ludwig, and Gaurav Malhotra. Lost in latent space: Disentangled models and the challenge of combinatorial generalisation, 2022. URL https://arxiv.org/abs/2204.02283

  59. [68]

    Decoupled weight decay regulariza- tion, 2017

    Ilya Loshchilov and Frank Hutter. Decoupled weight decay regulariza- tion, 2017. URL https://arxiv.org/abs/1711.05101

  60. [69]

    Smith and Nicholay Topin

    Leslie N. Smith and Nicholay Topin. Super-convergence: Very fast training of neural networks using large learning rates, 2017. URL https://arxiv.org/abs/1708.07120

  61. [70]

    Deep Resid- ual Learning for Image Recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep Resid- ual Learning for Image Recognition. In Proceedings of 2016 IEEE Conference on Computer Vision and Pattern Recognition , CVPR ’16, pages 770–778. IEEE, June 2016. doi: 10.1109/CVPR.2016.90. URL http://ieeexplore...

  62. [71]

    Gans trained by a two time-scale up- date rule converge to a local nash equilibrium

    Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. Gans trained by a two time-scale up- date rule converge to a local nash equilibrium. In Proceedings of the 31st International Conference on Neural Information Processing Sys- tems, NIPS’...

  63. [72]

    Bridging the gap to real-world object-centric learning

    Maximilian Seitzer, Max Horn, Andrii Zadaianchuk, Dominik Ziet- low, Tianjun Xiao, Carl-Johann Simon-Gabriel, Tong He, Zheng Zhang, Bernhard Schölkopf, Thomas Brox, et al. Bridging the gap to real-world object-centric learning. In The Eleventh International Conference on Learn...

  64. [73]

    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. In Proceedings of the IEEE/CVF international conference on computer vision, pages 9650–9660, 2021

  65. [74]

    Kent, Bruno A

    Denis Kleyko, Mike Davies, Edward Paxon Frady, Pentti Kanerva, Spencer J. Kent, Bruno A. Olshausen, Evgeny Osipov, Jan M. Rabaey, Dmitri A. Rachkovskij, Abbas Rahimi, and Friedrich T. Sommer. Vec- tor symbolic architectures as a computing framework for emerging hardware. Proce...

  66. [2017]

    URL https://openreview.net/forum?id=Sy2fzU9gl

  67. [2018]

    URL http://arxiv.org/abs/1812.04948

  68. [9964]

    URL https://doi.org/10.1007/ s12559-009-9009-8

    doi: 10.1007/s12559-009-9009-8. URL https://doi.org/10.1007/ s12559-009-9009-8

Pith tools

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