Pith. sign in

REVIEW 3 major objections 4 minor 295 references

NAE: Normalizing AutoEncoder

T0 review · 3 major / 4 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read Flow autoencoders should follow reconstruction-loss gradients—NAE does this and sets new state-of-the-art results on molecular, tabular, and image benchmarks.

desk verdict Strong empirical paper with a heuristic theory; the conditional loss works, but the proof of alignment doesn't survive contact with off-diagonal terms. read the letter →

arxiv 2608.12084 v1 pith:EPCK7RTN submitted 2026-08-12 cs.LG

classification cs.LG
keywords normalizingautoencoderflowsurrogategradientreconstructionlossalignmentinjectiveflowsHutchinsontraceestimatorconditionalgenerativemodeling
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

Flow autoencoders train separate encoder and decoder networks as approximate inverses while optimizing a likelihood term through cheap surrogate gradients. This paper argues that the standard practice of using just one surrogate is suboptimal, because within each Hutchinson probe subspace one surrogate's gradient aligns with the reconstruction-loss gradient while the other opposes it. The authors derive that the reconstruction-loss gradient contains both surrogate terms weighted by a scalar measuring whether the composite Jacobian is locally expanding or contracting the probe direction. They propose Normalizing Autoencoder (NAE), which per probe selects the aligned surrogate via a conditional mask, and report improved negative log-likelihood on molecular benchmarks and improved FID on tabular and image benchmarks. A sympathetic reader would take the core claim to be that optimizing encoder and decoder surrogates in alignment with reconstruction loss is what makes flow autoencoder training stable and effective.

What carries the argument

The load-bearing object is the composite Jacobian $M = G_\phi J_\theta$ in data space and its latent-space counterpart $N = J_\theta G_\phi$. The reconstruction loss under isotropic noise is shown to approximately equal the squared deviation $\|I_d - N\|_F^2$, and its gradient is expanded in the scaled orthonormal Hutchinson probe basis $V$. The machinery is the scalar prefactor $c_{ii} = v_i^\top(JG - I_d)v_i$ for each probe: it measures whether the composite map is locally expansive ($c_{ii} > 0$) or contractive ($c_{ii} < 0$) along that probe direction, and it determines which of the two surrogate terms, $-v_i^\top J\,SG(Gv_i)$ or $SG(v_i^\top J)Gv_i$, is aligned with the reconstruction-loss gradient. Algorithm 1 uses this sign information to set a per-probe mask and build the conditional surrogate loss.

What would settle it

On a trained NAE, compute the full probe expansion of $\nabla\|I_d - JG\|_F^2$ on held-out data and compare the diagonal sum to the off-diagonal sum, or compute the cosine similarity between the conditional-loss gradient and the exact reconstruction-loss gradient on random batches; a frequently negative similarity or a large off-diagonal contribution would falsify the proposed mechanism.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central discovery is that the reconstruction loss already encodes the correct training signal for both networks: under isotropic input perturbations, minimizing reconstruction loss is approximately minimizing $\|I_d - JG\|_F^2$, and the gradient of this term decomposes over probe vectors into the encoder and decoder surrogate gradients scaled by $c_{ii} = v_i^\top(JG - I_d)v_i$. When $c_{ii} > 0$ the decoder surrogate aligns with the reconstruction gradient and the encoder surrogate opposes it; when $c_{ii} < 0$ the roles reverse. Existing methods commit to one surrogate and therefore systematically fight the reconstruction objective in a subset of directions. NAE instead computes both surrogates per probe and, with the mask $\mathbb{1}[\mathrm{surr}_D > s_k]$, keeps only the term whose gradient is aligned. The paper reports that this conditional loss reaches the approximate-inverse regime at lower reconstruction weight $\beta$, stabilizes training, and achieves state-of-the-art negative log-likelihood on DW4, LJ13, LJ55, and QM9, best FID-like scores on Power, HEPMASS, and MiniBooNE, and best FID on CelebA in most settings.

Load-bearing premise

The conditional mask in Algorithm 1 is valid only if the diagonal terms of the probe expansion dominate and the sign of $\mathrm{surr}_D - s_k$ correctly identifies gradient alignment; otherwise the selected surrogate can oppose the true reconstruction gradient and the method's motivation collapses.

Editorial extensions

If this is right

  • Training with the conditional loss instead of the encoder surrogate alone should lower negative log-likelihood on any flow-autoencoder setup, not just the benchmarks reported, because it removes directions in which the surrogate opposes reconstruction.
  • The reconstruction weight $\beta$ needed to reach the approximate-inverse regime is smaller with NAE, reducing sensitivity to this hyperparameter.
  • Because NAE and Free-Form Flows share architecture and inference procedure, the improved likelihoods on DW4, LJ13, LJ55, and QM9 come at no additional sampling cost.
  • The near-equal FID between standard-normal and GMM samplers on CelebA suggests the latent space learned by NAE is regular enough to sample with a plain Gaussian prior.
  • SiLU activations, whose second derivative is nonzero, preserve second-order surrogate gradients and further improve results; this points to activation choice as a first-class component of Jacobian-based training.

Reading between the lines

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

  • The diagonal-dominance assumption in Section 3.4 could be checked directly by measuring the magnitude of off-diagonal terms $v_i^\top(N - I_d)v_j \cdot v_i^\top(\nabla N)v_j$; if they are not negligible, a weighted combination of both surrogates with coefficient $c_{ii}$ might outperform the hard mask.
  • The same alignment argument transfers to any approximate-inverse training objective beyond flows, such as regularized autoencoders or learned forward/inverse maps in inverse problems, wherever a reconstruction loss and a surrogate likelihood-like term coexist.
  • The empirical finding that larger latent dimensions need larger $\beta$ suggests an automatic scheduling rule: scale $\beta$ with the latent dimension or with the intrinsic dimensionality of the data instead of tuning it per dataset.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 4 minor

Summary. The paper studies 'flow autoencoders,' i.e., autoencoder architectures with separately parameterized encoder and decoder trained as approximate inverses, and proposes the Normalizing Autoencoder (NAE). The central contribution is a conditional surrogate loss that, per Hutchinson probe, selects either the encoder surrogate or the decoder surrogate based on a scalar mask intended to align the chosen surrogate gradient with the reconstruction-loss gradient. The authors first derive a relation between the reconstruction loss and the latent-space Jacobian residual, then use a probe-basis expansion to justify the mask, and finally report extensive experiments on molecular generation (DW4, LJ13, LJ55, QM9), tabular benchmarks (Power, Gas, HEPMASS, MiniBooNE), and image benchmarks (CelebA, MNIST, CIFAR-10). NAE achieves state-of-the-art or competitive results on most benchmarks, often with substantially better likelihoods or FID scores than prior flow-autoencoder baselines.

Significance. If the empirical results hold, NAE is a practically strong generative model: it improves over prior flow autoencoders on standard benchmarks while inheriting their architectural flexibility and sampling speed, and it does so with a minimal modification to the training objective. The paper is well positioned in the literature and includes a useful ablation study on the reconstruction weight and latent dimension, as well as honest discussion of limitations. The theoretical framing is less established: the central derivation in Section 3.4 rests on a diagonal truncation of a probe expansion and on a single-probe estimator whose justification is not supplied. Because the empirical gains are claimed to follow from this alignment mechanism, the gap is load-bearing rather than cosmetic. A revision that either proves the needed diagonal dominance, supplies empirical diagnostics for it, or appropriately reframes the theoretical claims would make the paper's contribution more solid.

major comments (3)
  1. [§3.4, Eq. (15) and Algorithm 1] The derivation expands the reconstruction-loss gradient as a double sum over probe indices i,j: Σ_i Σ_j (v_i^T(N−I_d)v_j)(v_i^T(∇N)v_j), then truncates to the equal-index terms with 'Finally, focusing on the term with equal indices' before defining c_ii and the conditional mask. This truncation is load-bearing: Algorithm 1 line 10 sets mask = 1[surrD > s_k], which with K=1 is exactly sign(c_kk), and the selection rule is only justified if the off-diagonal products are negligible. No argument or diagnostic for this diagonal dominance is provided; for d>1 the off-diagonal terms outnumber the diagonal ones. Moreover, all experiments use a single probe (K=1), so the completeness relation VV^T = d I_d used in the expansion does not hold for the realized estimator; a single random v satisfies E[vv^T] = I only in expectation, not for the actual sample. The central claim that the conditional loss aligns the surrogate gradient with the reconstruction gradient is therefore not established by the derivation as written.
  2. [Abstract and §3.4] The paper states in the abstract that it 'prove[s] that the proposed loss used by existing approaches is suboptimal,' but the argument in Section 3.4 is an approximate, heuristic derivation resting on the diagonal truncation and on the small-perturbation expansion of Eq. (6). No formal theorem is stated, and no verified set of conditions identifies when one surrogate is suboptimal. Please either replace 'prove' with a weaker claim clearly labeled as an analysis/heuristic, or supply a precise theorem with assumptions and proof.
  3. [§3.3, Eq. (13)] The equivalence between minimizing reconstruction loss in data space and minimizing ||I_d − N||_F^2 in latent space is approximate and inherits the bound in Eq. (11), which depends on δ = ||E_D||_F + ||E_d||_F. During training, before the approximate-inverse regime is reached, δ need not be small, and no empirical check of its magnitude is reported. Because this equivalence is the bridge to Eq. (14) and hence to the conditional-loss derivation, the paper should specify the regime in which the approximation is valid and, ideally, verify it experimentally (e.g., by reporting δ over the course of training).
minor comments (4)
  1. [Title page] The affiliation 'University of Hildeshiem' appears to be misspelled; it should be 'Hildesheim'.
  2. [Algorithm 1] The mask notation 1[condition] is used in line 10 but is not defined in the main text; please define it explicitly as an indicator function.
  3. [Figure 3 caption] The caption reads 'dim 1 and 2 corresponds to Two-moons'; the verb should agree with the plural subject ('correspond').
  4. [Tables 8 and 11] The SiLU-based results are marked as 'not considered for direct comparison,' which is clear, but the main text could state more explicitly which of these entries form the basis for the headline claims, since some tables include both ReLU and SiLU NAE results.

Circularity Check

1 steps flagged · score 1.0 of 10

One by-construction alignment step in the toy comparison; the headline SOTA results are externally validated and not load-bearing for circularity.

  1. self definitional [Section 3.4 (Eq. 15 and Algorithm 1, line 10) with Section 4.1 bullet]
    "Since the proposed Conditional loss is aligned with the reconstruction objective by construction, compared to the other methods: – it requires a significantly smaller β to reach the approximate-inverse regime; – it achieves lower reconstruction error and nll within this regime."

    Algorithm 1 sets mask←1[surrD > s_k], which is exactly sign(v_k^T(JG−I_d)v_k)=sign(c_kk), the scalar prefactor of the i=j term in the paper's expansion of ∇Lrec (Eq. 15). Thus the conditional loss's "alignment with the reconstruction objective" is true by definition of the mask, and the toy-dataset improvements (smaller β to enter the approximate-inverse regime, lower reconstruction error) are expected consequences of optimizing that same diagonal part of the objective, not an independent empirical confirmation. This is an explicitly acknowledged by-construction element and is not load-bearing for the external SOTA nll/FID results.

full rationale

Most of the derivation is not circular. Equations (14)–(15) derive a connection between the reconstruction-loss gradient and the surrogate terms from a Taylor expansion; this is an assumption-laden approximation, not a feedback of fitted values. Algorithm 1 implements the mask via sign(v_k^T(JG−I)v_k), and the abstract's 'proof of suboptimality' follows from the diagonal truncation, so it is better judged as a correctness risk: the off-diagonal i≠j terms are dropped without a diagnostic, and with K=1 the sign of a single diagonal coefficient need not determine alignment with the full ∇Lrec. The headline numbers on DW4, LJ13, LJ55, QM9, Power, HEPMASS, MiniBooNE, and CelebA are external metrics (nll/FID) that are not used to fit the method, and no target quantity is fed back into the derivation. The paper's citations to Sorrenson et al. and Draxler et al. are to prior work by other authors whose surrogate estimator is an input assumption, not a borrowed conclusion, so there is no load-bearing self-citation chain. The only mild circularity is the explicitly acknowledged 'by construction' alignment in the toy comparison, which does not drive the independently benchmarked SOTA claims.

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

The paper introduces no new physical or mathematical entities; it proposes a new training objective and a heuristic selection rule. The main load-bearing assumptions are the small-perturbation expansion, the isotropic-noise covariance, the approximate-inverse condition, and the diagonal truncation of the probe expansion.

free parameters (3)
  • Reconstruction weight beta = DW4=10, LJ13=200, LJ55=500, QM9=2000, Power=10, Gas=10, HEPMASS=10, MiniBooNE=5, CelebA searched in {2,5,10,20,25}
    Controls the trade-off between likelihood and approximate inversion; the paper notes its scale depends on latent dimension and model characteristics (Sec 5).
  • Perturbation noise scale sigma = 0.01 for tabular data (Appendix D.2); unspecified for other settings
    Isotropic Gaussian noise added to inputs; appears in the theory as the strength of Jacobian regularization (Eq. 8).
  • Latent dimension d = Power=3, Gas=2, HEPMASS=10, MiniBooNE=21, image models 16/64/256 depending on dataset
    Chosen per dataset and affects the required reconstruction weight to reach approximate-inverse regime (Sec 4.4).
assumptions (5)
  • domain assumption Local first-order Taylor expansion of the autoencoder under small input perturbations (Eq. 6).
    Assumes perturbations epsilon are small enough that f(x+eps) approx f(x) + M eps; stated as 'for sufficiently small perturbations' in Sec 3.3.
  • domain assumption Isotropic Gaussian perturbation covariance Sigma_i = sigma^2 I_D (Eq. 8).
    Justified by following the setting of Sorrenson et al. 2023; the derivation relies on this specific covariance structure.
  • domain assumption Approximate-inverse regime: N approx I_d and M approx rank-d orthogonal projector with small residual delta (Eq. 11, Eq. 13).
    Used to relate data-space and latent-space Jacobian penalties; requires beta large enough that encoder and decoder are near inverses.
  • ad hoc to paper Diagonal dominance: the probe expansion of the reconstruction gradient can be truncated to i=j terms.
    Section 3.4 'focusing on the term with equal indices' drops off-diagonal terms without a bound; the conditional selection rule depends on this truncation.
  • standard math Hutchinson trace estimator properties (E[vv^T]=I_d, v^T v=d) are standard.
    Used to justify the surrogate scalarization and the mask threshold; standard Monte Carlo trace estimation.

how reviews work

0 comments
Cite this review

Pith. "Pith review of NAE: Normalizing AutoEncoder." pith.science (2026). https://pith.science/paper/EPCK7RTN

@misc{pith2026260812084,
  author       = {Pith},
  title        = {Pith review of: NAE: Normalizing AutoEncoder},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/EPCK7RTN}},
  note         = {Machine review of arXiv:2608.12084}
}
abstract

We consider the setting of Normalizing flows with approximate inverses, an established paradigm spanning both full-dimensional ($d=D$) and bottleneck ($d<D$) settings, and group these models under the term flow autoencoders. We present a theoretical investigation into their training dynamics and prove that the proposed loss used by existing approaches is suboptimal; specifically, both encoder and decoder surrogates must be optimized in alignment with reconstruction loss. Guided by these insights, we propose Normalizing Autoencoder (NAE), which employs a novel conditional loss that aligns the surrogate loss gradient with that of reconstruction loss, directly improving upon the current standard. Extensive experiments across molecule generation, tabular data, and image benchmarks demonstrate that NAE achieves state of the art performance. Our work highlights the importance of loss alignment in flow autoencoders and establishes NAE as a powerful generative framework.

Figures

Figures reproduced from arXiv: 2608.12084 by the authors.

Figure 1
Figure 1. Two points x1, x2 are mapped from a data space X to a latent space Z via encoder and back via decoder, with scalar Jacobians Ji , Gi . For x1, we have J1G1 = 0.96 < 1 (contractive): the reconstruction gradient is aligned with the surrE, which pushes the composite Jacobian toward identity; but anti-aligned with the surrD, which pushes the composite away from identity. The roles are reversed for x2, J2G2 = 1.17 > 1 (e… view at source ↗
Figure 2
Figure 2. Alignment ratio (higher is better) averaged over [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. 4D Toy Dataset: Left and middle columns show test results for latent dimensions d = 2 and d = 4 respectively. The top row shows nll (lower is better), while the bottom row shows Reconstruction Error in log-scale (lower is better). Shaded regions indicate ±1 standard deviation over 10 runs. Right column illustrates the toy data distribution; dim 1 and 2 corresponds to Two-moons and dim 3 and 4 corresponds to 8-GMM (e… view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: Ablation study on the Power dataset. Legend is shared across panels. Line Style denote loss type (solid for Conditional [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: Expansive Ratio averaged over 10 runs for models [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Alignment Ratios for Encoder and Decoder Surrogates. Alignment ratio (higher is better) averaged over 10 runs for [PITH_FULL_IMAGE:figures/full_fig_p009_6.png]
Figure 7
Figure 7. Figure 7: 4D Toy Dataset: Left and right columns show test results for models trained on latent dimensions [PITH_FULL_IMAGE:figures/full_fig_p010_7.png]
Figure 8
Figure 8. Figure 8: Encoder-decoder volume discrepancy for the Con [PITH_FULL_IMAGE:figures/full_fig_p014_8.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

295 extracted references · 71 canonical work pages

  1. [1]

    LeCun, Yann , pages =. A

  2. [2]

    Bassey, Joshua and Qian, Lijun and Li, Xianfang , year = 2021, month = jan, number =. A. arXiv , langid =:2101.12249 , primaryclass =

  3. [3]

    Jaiswal, Ashish and Babu, Ashwin Ramesh and Zadeh, Mohammad Zaki and Banerjee, Debapriya and Makedon, Fillia , year = 2020, month = dec, journal =. A. doi:10.3390/technologies9010002 , urldate =

  4. [4]

    Adapting

    Prabhu, Viraj and Yenamandra, Sriram and Singh, Aaditya and Hoffman, Judy , year = 2022, month = jun, number =. Adapting. arXiv , langid =:2206.08222 , primaryclass =

  5. [5]

    and Torr, Philip H

    Shi, Yuge and Siddharth, N. and Torr, Philip H. S. and Kosiorek, Adam R. , year = 2022, month = jul, number =. Adversarial. arXiv , langid =:2201.13100 , primaryclass =

  6. [6]

    Zhai, Shuangfei and Talbott, Walter and Srivastava, Nitish and Huang, Chen and Goh, Hanlin and Zhang, Ruixiang and Susskind, Josh , year = 2021, month = sep, number =. An. arXiv , langid =:2105.14103 , primaryclass =

  7. [7]

    Yin, Hongxu and Vahdat, Arash and Alvarez, Jose M and Mallya, Arun and Kautz, Jan and Molchanov, Pavlo , pages =. A-

  8. [8]

    Better Plain

    Beyer, Lucas and Zhai, Xiaohua and Kolesnikov, Alexander , year = 2022, month = may, number =. Better Plain. arXiv , langid =:2205.01580 , primaryclass =

Show all 295 references
  1. [9]

    Wang, Zeyu and Bai, Yutong and Zhou, Yuyin and Xie, Cihang , pages =. Can

  2. [10]

    and Chandrasekaran, Shivkumar , year = 2022, month = jun, number =

    Madala, Vamshi C. and Chandrasekaran, Shivkumar , year = 2022, month = jun, number =. arXiv , langid =:2205.10760 , primaryclass =

  3. [11]

    and Tan, Mingxing , year = 2021, month = sep, number =

    Dai, Zihang and Liu, Hanxiao and Le, Quoc V. and Tan, Mingxing , year = 2021, month = sep, number =. arXiv , langid =:2106.04803 , primaryclass =

  4. [12]

    arXiv , langid =:2205.03892 , primaryclass =

    Gao, Peng and Ma, Teli and Li, Hongsheng and Lin, Ziyi and Dai, Jifeng and Qiao, Yu , year = 2022, month = may, number =. arXiv , langid =:2205.03892 , primaryclass =

  5. [13]

    Data2vec:

    Baevski, Alexei and Hsu, Wei-Ning and Xu, Qiantong and Babu, Arun and Gu, Jiatao and Auli, Michael , year = 2022, month = apr, number =. Data2vec:. arXiv , langid =:2202.03555 , primaryclass =

  6. [14]

    Ronen, Meitar and Finder, Shahaf E and Freifeld, Oren , pages =

  7. [15]

    Touvron, Hugo and Cord, Matthieu and Jegou, Herve , pages =

  8. [16]

    arXiv , langid =:2206.00386 , primaryclass =

    Shi, Jie and Wu, Chenfei and Liang, Jian and Liu, Xiang and Duan, Nan , year = 2022, month = jun, number =. arXiv , langid =:2206.00386 , primaryclass =

  9. [17]

    Pan, Junting and Bulat, Adrian and Tan, Fuwen and Zhu, Xiatian and Dudziak, Lukasz and Li, Hongsheng and Tzimiropoulos, Georgios and Martinez, Brais , pages =

  10. [18]

    Efficient

    Chen, Jun and Hu, Ming and Li, Boyang and Elhoseiny, Mohamed , year = 2022, month = jun, number =. Efficient. arXiv , langid =:2206.00790 , primaryclass =

  11. [19]

    Efficient

    Liu, Yahui and Sangineto, Enver and Bi, Wei , pages =. Efficient

  12. [20]

    arXiv , langid =:2206.01191 , primaryclass =

    Li, Yanyu and Yuan, Geng and Wen, Yang and Hu, Eric and Evangelidis, Georgios and Tulyakov, Sergey and Wang, Yanzhi and Ren, Jian , year = 2022, month = jul, number =. arXiv , langid =:2206.01191 , primaryclass =

  13. [21]

    Epistemic

    Osband, Ian and Wen, Zheng and Asghari, Seyed Mohammad and Dwaracherla, Vikranth and Ibrahimi, Morteza and Lu, Xiuyuan and Van Roy, Benjamin , year = 2022, month = jul, number =. Epistemic. arXiv , langid =:2107.08924 , primaryclass =

  14. [22]

    Hong, Jiuk and Lee, Chaehyeon and Bang, Soyoun and Jung, Heechul , year = 2022, month = jun, number =. Fair. arXiv , langid =:2206.00244 , primaryclass =

  15. [23]

    Hatamizadeh, Ali and Yin, Hongxu and Kautz, Jan and Molchanov, Pavlo , year = 2022, month = jun, number =. Global. arXiv , langid =:2206.09959 , primaryclass =

  16. [24]

    Grokking:

    Power, Alethea and Burda, Yuri and Edwards, Harri and Babuschkin, Igor and Misra, Vedant , year = 2022, month = jan, number =. Grokking:. arXiv , langid =:2201.02177 , primaryclass =

  17. [25]

    How to Train Your

    Steiner, Andreas and Kolesnikov, Alexander and Zhai, Xiaohua and Wightman, Ross and Uszkoreit, Jakob and Beyer, Lucas , pages =. How to Train Your

  18. [26]

    Improved

    Tang, Zhicong and Gu, Shuyang and Bao, Jianmin and Chen, Dong and Wen, Fang , year = 2022, month = may, number =. Improved. arXiv , langid =:2205.16007 , primaryclass =

  19. [27]

    and Xiong, Caiming , year = 2022, month = mar, number =

    Liu, Zhiwei and Chen, Yongjun and Li, Jia and Luo, Man and Yu, Philip S. and Xiong, Caiming , year = 2022, month = mar, number =. Improving. arXiv , langid =:2203.15508 , primaryclass =

  20. [28]

    Improving the

    Sariyildiz, Mert Bulent and Kalantidis, Yannis and Alahari, Karteek and Larlus, Diane , year = 2022, month = jun, number =. Improving the. arXiv , langid =:2206.15369 , primaryclass =

  21. [29]

    Information

    Kimura, Masanari and Hino, Hideitsu , year = 2022, month = jun, number =. Information. arXiv , langid =:2206.10936 , primaryclass =

  22. [30]

    arXiv , langid =:2201.08239 , primaryclass =

    Thoppilan, Romal and De Freitas, Daniel and Hall, Jamie and Shazeer, Noam and Kulshreshtha, Apoorv and Cheng, Heng-Tze and Jin, Alicia and Bos, Taylor and Baker, Leslie and Du, Yu and Li, YaGuang and Lee, Hongrae and Zheng, Huaixiu Steven and Ghafouri, Amin and Menegali, Marce...

  23. [31]

    arXiv , langid =:2206.11894 , primaryclass =

    Gupta, Agrim and Tian, Stephen and Zhang, Yunzhi and Wu, Jiajun and. arXiv , langid =:2206.11894 , primaryclass =

  24. [32]

    Kothapalli, Vignesh and Rasromani, Ebrahim and Awatramani, Vasudev , year = 2022, month = jun, number =. Neural. arXiv , langid =:2206.04041 , primaryclass =

  25. [33]

    Ross, Brendan Leigh and. Neural. arXiv , langid =:2206.11267 , primaryclass =

  26. [34]

    , year = 2022, month = jan, number =

    Li, Zengyi and Chen, Yubei and LeCun, Yann and Sommer, Friedrich T. , year = 2022, month = jan, number =. Neural. arXiv , langid =:2201.10000 , primaryclass =

  27. [35]

    Kidger, Patrick , year = 2022, month = feb, number =. On. arXiv , langid =:2202.02435 , primaryclass =

  28. [36]

    , year = 2022, month = jun, number =

    Kaur, Simran and Cohen, Jeremy and Lipton, Zachary C. , year = 2022, month = jun, number =. On the. arXiv , langid =:2206.10654 , primaryclass =

  29. [37]

    Chollet, Fran. On the. arXiv , langid =:1911.01547 , primaryclass =

  30. [38]

    Chhabra, Sachin and Dutta, Prabal Bijoy and Venkateswara, Hemanth and Li, Baoxin , year = 2022, month = jul, pages =

  31. [39]

    Sara and Lopes, Rapha Gontijo and Salimans, Tim and Ho, Jonathan and Fleet, David J

    Saharia, Chitwan and Chan, William and Saxena, Saurabh and Li, Lala and Whang, Jay and Denton, Emily and Ghasemipour, Seyed Kamyar Seyed and Ayan, Burcu Karagol and Mahdavi, S. Sara and Lopes, Rapha Gontijo and Salimans, Tim and Ho, Jonathan and Fleet, David J. and Norouzi, Mo...

  32. [40]

    arXiv , langid =:2204.11167 , primaryclass =

    Ma, Xiaojian and Nie, Weili and Yu, Zhiding and Jiang, Huaizu and Xiao, Chaowei and Zhu, Yuke and Zhu, Song-Chun and Anandkumar, Anima , year = 2022, month = jun, number =. arXiv , langid =:2204.11167 , primaryclass =

  33. [41]

    Revitalizing

    Ge, Chongjian and Liang, Youwei and Song, Yibing and Jiao, Jianbo and Wang, Jue and Luo, Ping , pages =. Revitalizing

  34. [42]

    Azizi, Shekoofeh and Culp, Laura and Freyberg, Jan and Mustafa, Basil and Baur, Sebastien and Kornblith, Simon and Chen, Ting and MacWilliams, Patricia and Mahdavi, S. Sara and Wulczyn, Ellery and Babenko, Boris and Wilson, Megan and Loh, Aaron and Chen, Po-Hsuan Cameron and L...

  35. [43]

    Yu, Jiahui and Xu, Yuanzhong and Koh, Jing Yu and Luong, Thang and Baid, Gunjan and Wang, Zirui and Vasudevan, Vijay and Ku, Alexander and Yang, Yinfei and Ayan, Burcu Karagol and Hutchinson, Ben and Han, Wei and Parekh, Zarana and Li, Xin and Zhang, Han and Baldridge, Jason a...

  36. [44]

    Scaling-up

    Su, Jiahao and Byeon, Wonmin and Huang, Furong , year = 2021, month = jun, number =. Scaling-up. arXiv , langid =:2106.09121 , primaryclass =

  37. [45]

    Self-Supervised

    Liu, Xiao and Zhang, Fanjin and Hou, Zhenyu and Wang, Zhaoyu and Mian, Li and Zhang, Jing and Tang, Jie , year = 2021, journal =. Self-Supervised. doi:10.1109/TKDE.2021.3090866 , urldate =. arXiv , langid =:2006.08218 , primaryclass =

  38. [46]

    Rabarisoa, Jaonary and Belissen, Valentin and Chabot, Florian and Pham, Quoc-Cuong , year = 2022, month = jun, number =. Self-. arXiv , langid =:2205.15173 , primaryclass =

  39. [47]

    arXiv , langid =:2104.03602 , primaryclass =

    Atito, Sara and Awais, Muhammad and Kittler, Josef , year = 2021, month = nov, number =. arXiv , langid =:2104.03602 , primaryclass =

  40. [48]

    Ridnik, Tal and Lawen, Hussam and. Solving. arXiv , langid =:2204.03475 , primaryclass =

  41. [49]

    Survey on

    Ali, Muhammad and Hashim, Sayed , year = 2022, month = feb, number =. Survey on. arXiv , langid =:2202.08514 , primaryclass =

  42. [50]

    Yang, Greg and Hu, Edward J. and Babuschkin, Igor and Sidor, Szymon and Liu, Xiaodong and Farhi, David and Ryder, Nick and Pachocki, Jakub and Chen, Weizhu and Gao, Jianfeng , year = 2022, month = mar, number =. Tensor. arXiv , langid =:2203.03466 , primaryclass =

  43. [51]

    Schwarzschild, Avi and Gupta, Arjun and Ghiasi, Amin and Goldblum, Micah and Goldstein, Tom , year = 2022, month = mar, number =. The. arXiv , langid =:2102.11011 , primaryclass =

  44. [52]

    and Karakulak, Serkan and Sobol, Vlad and Canziani, Alfredo and LeCun, Yann , year = 2022, month = jun, number =

    Zhu, Jiachen and Moraes, Rafael M. and Karakulak, Serkan and Sobol, Vlad and Canziani, Alfredo and LeCun, Yann , year = 2022, month = jun, number =. arXiv , langid =:2206.10698 , primaryclass =

  45. [53]

    arXiv , langid =:2012.12877 , primaryclass =

    Touvron, Hugo and Cord, Matthieu and Douze, Matthijs and Massa, Francisco and Sablayrolles, Alexandre and J. arXiv , langid =:2012.12877 , primaryclass =

  46. [54]

    arXiv , langid =:2205.02028 , primaryclass =

    Duan, Haodong and Zhao, Nanxuan and Chen, Kai and Lin, Dahua , year = 2022, month = may, number =. arXiv , langid =:2205.02028 , primaryclass =

  47. [55]

    Goyal, Priya and Duval, Quentin and Seessel, Isaac and Caron, Mathilde and Misra, Ishan and Sagun, Levent and Joulin, Armand and Bojanowski, Piotr , year = 2022, month = feb, number =. Vision. arXiv , langid =:2202.08360 , primaryclass =

  48. [56]

    Where Are My

    Camporese, Guglielmo and Izzo, Elena and Ballan, Lamberto , year = 2022, month = jun, number =. Where Are My. arXiv , langid =:2206.00481 , primaryclass =

  49. [57]

    Song, Jeonggeun and Lee, Heung-Chang , year = 2022, month = may, number =. X-. arXiv , langid =:2205.13805 , primaryclass =

  50. [58]

    Ramesh, Aditya and Pavlov, Mikhail and Goh, Gabriel and Gray, Scott and Voss, Chelsea and Radford, Alec and Chen, Mark and Sutskever, Ilya , year = 2021, month = feb, number =. Zero-. arXiv , langid =:2102.12092 , primaryclass =

  51. [59]

    doi:10.48550/arXiv.2104.03722 , urldate =

    AbdurRafae, Muhammad , year = 2021, month = apr, number =. doi:10.48550/arXiv.2104.03722 , urldate =. arXiv , keywords =:2104.03722 , primaryclass =

  52. [60]

    Paragraph-Based

    Di Liello, Luca and Garg, Siddhant and Soldaini, Luca and Moschitti, Alessandro , year = 2022, month = jul, number =. Paragraph-Based. arXiv , file =:2205.01228 , primaryclass =

  53. [61]

    and Bachmann, Roman Christian and Bermano, Amit Haim and

    Vinker, Yael and Pajouheshgar, Ehsan and Bo, Jessica Y. and Bachmann, Roman Christian and Bermano, Amit Haim and. doi:10.48550/arXiv.2202.05822 , urldate =. arXiv , keywords =:2202.05822 , primaryclass =

  54. [62]

    Zhang, Xiao and Maire, Michael , year = 2020, month = dec, number =. Self-. arXiv , keywords =:2012.03044 , primaryclass =

  55. [63]

    doi:10.48550/arXiv.2006.06606 , urldate =

    What Makes Instance Discrimination Good for Transfer Learning? , author =. doi:10.48550/arXiv.2006.06606 , urldate =. arXiv , keywords =:2006.06606 , primaryclass =

  56. [64]

    Xiao, Tete and Singh, Mannat and Mintun, Eric and Darrell, Trevor and Doll. Early. doi:10.48550/arXiv.2106.14881 , urldate =. arXiv , keywords =:2106.14881 , primaryclass =

  57. [65]

    Dosovitskiy, Alexey and Beyer, Lucas and Kolesnikov, Alexander and Weissenborn, Dirk and Zhai, Xiaohua and Unterthiner, Thomas and Dehghani, Mostafa and Minderer, Matthias and Heigold, Georg and Gelly, Sylvain and Uszkoreit, Jakob and Houlsby, Neil , year = 2021, month = jun, ...

  58. [66]

    Cordonnier, Jean-Baptiste and Loukas, Andreas and Jaggi, Martin , year = 2020, month = jan, number =. On the. doi:10.48550/arXiv.1911.03584 , urldate =. arXiv , keywords =:1911.03584 , primaryclass =

  59. [67]

    International

    Bao, Hangbo and Dong, Li and Piao, Songhao and Wei, Furu , year = 2022, month = may, urldate =. International

  60. [68]

    Proceedings of the 37th

    Chen, Mark and Radford, Alec and Child, Rewon and Wu, Jeff and Jun, Heewoo and Luan, David and Sutskever, Ilya , year = 2020, month = jul, series =. Proceedings of the 37th

  61. [69]

    Conditional

    Chu, Xiangxiang and Tian, Zhi and Zhang, Bo and Wang, Xinlong and Wei, Xiaolin and Xia, Huaxia and Shen, Chunhua , year = 2021, month = mar, number =. Conditional. arXiv , keywords =:2102.10882 , primaryclass =

  62. [70]

    Chu, Xiangxiang and Tian, Zhi and Wang, Yuqing and Zhang, Bo and Ren, Haibing and Wei, Xiaolin and Xia, Huaxia and Shen, Chunhua , year = 2021, month = sep, number =. Twins:. doi:10.48550/arXiv.2104.13840 , urldate =. arXiv , keywords =:2104.13840 , primaryclass =

  63. [71]

    arXiv , keywords =:2106.09681 , primaryclass =

  64. [72]

    Wang, Yulin and Huang, Rui and Song, Shiji and Huang, Zeyi and Huang, Gao , year = 2021, month = oct, number =. Not. doi:10.48550/arXiv.2105.15075 , urldate =. arXiv , keywords =:2105.15075 , primaryclass =

  65. [73]

    doi:10.48550/arXiv.2106.03348 , urldate =

    Xu, Yufei and Zhang, Qiming and Zhang, Jing and Tao, Dacheng , year = 2021, month = dec, number =. doi:10.48550/arXiv.2106.03348 , urldate =. arXiv , keywords =:2106.03348 , primaryclass =

  66. [74]

    doi:10.48550/arXiv.2205.14949 , urldate =

    Zhang, Xiaosong and Tian, Yunjie and Huang, Wei and Ye, Qixiang and Dai, Qi and Xie, Lingxi and Tian, Qi , year = 2022, month = may, number =. doi:10.48550/arXiv.2205.14949 , urldate =. arXiv , keywords =:2205.14949 , primaryclass =

  67. [75]

    doi:10.48550/arXiv.2201.02767 , urldate =

    Tang, Shitao and Zhang, Jiahui and Zhu, Siyu and Tan, Ping , year = 2022, month = mar, number =. doi:10.48550/arXiv.2201.02767 , urldate =. arXiv , keywords =:2201.02767 , primaryclass =

  68. [76]

    doi:10.48550/arXiv.2104.05707 , urldate =

    Li, Yawei and Zhang, Kai and Cao, Jiezhang and Timofte, Radu and Van Gool, Luc , year = 2021, month = apr, number =. doi:10.48550/arXiv.2104.05707 , urldate =. arXiv , keywords =:2104.05707 , primaryclass =

  69. [77]

    doi:10.48550/arXiv.2106.02689 , urldate =

    Chen, Chun-Fu and Panda, Rameswar and Fan, Quanfu , year = 2022, month = mar, number =. doi:10.48550/arXiv.2106.02689 , urldate =. arXiv , keywords =:2106.02689 , primaryclass =

  70. [78]

    and Luong, Minh-Thang and Le, Quoc V

    Trinh, Trieu H. and Luong, Minh-Thang and Le, Quoc V. , year = 2019, month = jul, number =. Selfie:. arXiv , keywords =:1906.02940 , primaryclass =

  71. [79]

    doi:10.48550/arXiv.2202.04713 , urldate =

    Landgraf, Zoe and Hornung, Alexander Sorkine and Cabral, Ricardo Silveira , year = 2022, month = jun, number =. doi:10.48550/arXiv.2202.04713 , urldate =. arXiv , keywords =:2202.04713 , primaryclass =

  72. [80]

    Jing, Li and Zhu, Jiachen and LeCun, Yann , year = 2022, month = jun, number =. Masked. doi:10.48550/arXiv.2206.07700 , urldate =. arXiv , keywords =:2206.07700 , primaryclass =

  73. [81]

    Equivariant

    Dangovski, Rumen and Jing, Li and Loh, Charlotte and Han, Seungwook and Srivastava, Akash and Cheung, Brian and Agrawal, Pulkit and Solja. Equivariant. doi:10.48550/arXiv.2111.00899 , urldate =. arXiv , keywords =:2111.00899 , primaryclass =

  74. [82]

    Understanding

    Jing, Li and Vincent, Pascal and LeCun, Yann and Tian, Yuandong , year = 2022, month = apr, number =. Understanding. doi:10.48550/arXiv.2110.09348 , urldate =. arXiv , keywords =:2110.09348 , primaryclass =

  75. [83]

    Zbontar, Jure and Jing, Li and Misra, Ishan and LeCun, Yann and Deny, St. Barlow. doi:10.48550/arXiv.2103.03230 , urldate =. arXiv , keywords =:2103.03230 , primaryclass =

  76. [84]

    Efficient

    Li, Chunyuan and Yang, Jianwei and Zhang, Pengchuan and Gao, Mei and Xiao, Bin and Dai, Xiyang and Yuan, Lu and Gao, Jianfeng , year = 2022, month = jul, number =. Efficient. doi:10.48550/arXiv.2106.09785 , urldate =. arXiv , keywords =:2106.09785 , primaryclass =

  77. [85]

    Visualizing and

    Sammani, Fawaz and Joukovsky, Boris and Deligiannis, Nikos , year = 2022, month = jun, number =. Visualizing and. doi:10.48550/arXiv.2206.09753 , urldate =. arXiv , keywords =:2206.09753 , primaryclass =

  78. [86]

    doi:10.48550/arXiv.2106.05656 , urldate =

    Li, Zhaowen and Chen, Zhiyang and Yang, Fan and Li, Wei and Zhu, Yousong and Zhao, Chaoyang and Deng, Rui and Wu, Liwei and Zhao, Rui and Tang, Ming and Wang, Jinqiao , year = 2021, month = oct, number =. doi:10.48550/arXiv.2106.05656 , urldate =. arXiv , keywords =:2106.05656...

  79. [87]

    Phuong, Mary and Hutter, Marcus , year = 2022, month = jul, number =. Formal. doi:10.48550/arXiv.2207.09238 , urldate =. arXiv , keywords =:2207.09238 , primaryclass =

  80. [88]

    Kalibhat, Neha and Narang, Kanika and Tan, Liang and Firooz, Hamed and Sanjabi, Maziar and Feizi, Soheil , year = 2022, month = jul, number =. Towards. doi:10.48550/arXiv.2203.01881 , urldate =. arXiv , keywords =:2203.01881 , primaryclass =

  81. [89]

    doi:10.48550/arXiv.2111.12710 , urldate =

    Dong, Xiaoyi and Bao, Jianmin and Zhang, Ting and Chen, Dongdong and Zhang, Weiming and Yuan, Lu and Chen, Dong and Wen, Fang and Yu, Nenghai , year = 2022, month = jan, number =. doi:10.48550/arXiv.2111.12710 , urldate =. arXiv , keywords =:2111.12710 , primaryclass =

  82. [90]

    and Yogatama, Dani and Metzler, Donald , year = 2022, month = jul, number =

    Tay, Yi and Dehghani, Mostafa and Abnar, Samira and Chung, Hyung Won and Fedus, William and Rao, Jinfeng and Narang, Sharan and Tran, Vinh Q. and Yogatama, Dani and Metzler, Donald , year = 2022, month = jul, number =. Scaling. doi:10.48550/arXiv.2207.10551 , urldate =. arXiv ...

  83. [91]

    doi:10.48550/arXiv.2006.07733 , urldate =

    Grill, Jean-Bastien and Strub, Florian and Altch. doi:10.48550/arXiv.2006.07733 , urldate =. arXiv , keywords =:2006.07733 , primaryclass =

  84. [92]

    Tian, Yonglong and Sun, Chen and Poole, Ben and Krishnan, Dilip and Schmid, Cordelia and Isola, Phillip , year = 2020, month = dec, number =. What. doi:10.48550/arXiv.2005.10243 , urldate =. arXiv , keywords =:2005.10243 , primaryclass =

  85. [93]

    doi:10.48550/arXiv.2111.15340 , urldate =

    Atito, Sara and Awais, Muhammad and Farooq, Ammarah and Feng, Zhenhua and Kittler, Josef , year = 2021, month = nov, number =. doi:10.48550/arXiv.2111.15340 , urldate =. arXiv , keywords =:2111.15340 , primaryclass =

  86. [94]

    Chen, Ting and Kornblith, Simon and Norouzi, Mohammad and Hinton, Geoffrey , year = 2020, month = jun, number =. A. arXiv , keywords =:2002.05709 , primaryclass =

  87. [95]

    and McAuley, Julian , year = 2020, month = jun, number =

    Bachlechner, Thomas and Majumder, Bodhisattwa Prasad and Mao, Huanru Henry and Cottrell, Garrison W. and McAuley, Julian , year = 2020, month = jun, number =. doi:10.48550/arXiv.2003.04887 , urldate =. arXiv , keywords =:2003.04887 , primaryclass =

  88. [96]

    Sun, Shuyang and Yue, Xiaoyu and Bai, Song and Torr, Philip , year = 2022, month = jan, number =. Visual. doi:10.48550/arXiv.2107.05790 , urldate =. arXiv , keywords =:2107.05790 , primaryclass =

  89. [97]

    Peripheral

    Min, Juhong and Zhao, Yucheng and Luo, Chong and Cho, Minsu , year = 2022, month = jun, number =. Peripheral. doi:10.48550/arXiv.2206.06801 , urldate =. arXiv , keywords =:2206.06801 , primaryclass =

  90. [98]

    and Srinivas, Aravind and Lin, Tsung-Yi and Shlens, Jonathon and Zoph, Barret , year = 2021, month = mar, number =

    Bello, Irwan and Fedus, William and Du, Xianzhi and Cubuk, Ekin D. and Srinivas, Aravind and Lin, Tsung-Yi and Shlens, Jonathon and Zoph, Barret , year = 2021, month = mar, number =. Revisiting. doi:10.48550/arXiv.2103.07579 , urldate =. arXiv , keywords =:2103.07579 , primaryclass =

  91. [99]

    Self-Supervised

    Wu, Haiyan and Gao, Yuting and Li, Ke and Zhang, Yinqi and Lin, Shaohui and Xie, Yuan and Sun, Xing , year = 2021, month = nov, urldate =. Self-Supervised

  92. [100]

    , year = 2022, month = apr, number =

    Zhou, Daquan and Yu, Zhiding and Xie, Enze and Xiao, Chaowei and Anandkumar, Anima and Feng, Jiashi and Alvarez, Jose M. , year = 2022, month = apr, number =. Understanding. doi:10.48550/arXiv.2204.12451 , urldate =. arXiv , keywords =:2204.12451 , primaryclass =

  93. [101]

    Zhang, Chaoning and Zhang, Chenshuang and Song, Junha and Yi, John Seon Keun and Zhang, Kang and Kweon, In So , year = 2022, month = jul, number =. A. doi:10.48550/arXiv.2208.00173 , urldate =. arXiv , keywords =:2208.00173 , primaryclass =

  94. [102]

    Learning

    Sohn, Kihyuk and Lee, Honglak and Yan, Xinchen , year = 2015, volume =. Learning. Advances in

  95. [103]

    Ruan, Bo-Kai and Shuai, Hong-Han and Cheng, Wen-Huang , year = 2022, month = jul, number =. Vision. arXiv , keywords =:2207.03041 , primaryclass =

  96. [104]

    Xiong, Ruibin and Yang, Yunchang and He, Di and Zheng, Kai and Zheng, Shuxin and Xing, Chen and Zhang, Huishuai and Lan, Yanyan and Wang, Liwei and Liu, Tie-Yan , year = 2020, month = jun, number =. On. arXiv , keywords =:2002.04745 , primaryclass =

  97. [105]

    Rethinking

    Liu, Fenglin and Ren, Xuancheng and Zhang, Zhiyuan and Sun, Xu and Zou, Yuexian , year = 2021, month = may, number =. Rethinking. arXiv , keywords =:2105.07205 , primaryclass =

  98. [106]

    Transformer in

    Han, Kai and Xiao, An and Wu, Enhua and Guo, Jianyuan and Xu, Chunjing and Wang, Yunhe , year = 2021, month = oct, number =. Transformer in. doi:10.48550/arXiv.2103.00112 , urldate =. arXiv , keywords =:2103.00112 , primaryclass =

  99. [107]

    Escaping the

    Hassani, Ali and Walton, Steven and Shah, Nikhil and Abuduweili, Abulikemu and Li, Jiachen and Shi, Humphrey , year = 2022, month = jun, number =. Escaping the. doi:10.48550/arXiv.2104.05704 , urldate =. arXiv , keywords =:2104.05704 , primaryclass =

  100. [108]

    Advances in

    Krizhevsky, Alex and Sutskever, Ilya and Hinton, Geoffrey E , year = 2012, volume =. Advances in

  101. [109]

    and Kaiser, Lukasz and Polosukhin, Illia , year = 2017, month = dec, number =

    Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N. and Kaiser, Lukasz and Polosukhin, Illia , year = 2017, month = dec, number =. Attention. doi:10.48550/arXiv.1706.03762 , urldate =. arXiv , keywords =:1706.03762 , pri...

  102. [110]

    Riesenhuber, Maximilian and Dayan, Peter , year = 1996, volume =. Neural. Advances in

  103. [111]

    , year = 2017, month = nov, number =

    Sabour, Sara and Frosst, Nicholas and Hinton, Geoffrey E. , year = 2017, month = nov, number =. Dynamic. doi:10.48550/arXiv.1710.09829 , urldate =. arXiv , keywords =:1710.09829 , primaryclass =

  104. [112]

    Geiger, Mario and Smidt, Tess , year = 2022, month = jul, number =. E3nn:. doi:10.48550/arXiv.2207.09453 , urldate =. arXiv , keywords =:2207.09453 , primaryclass =

  105. [113]

    doi:10.48550/arXiv.1802.01436 , urldate =

    Variational Image Compression with a Scale Hyperprior , author =. doi:10.48550/arXiv.1802.01436 , urldate =. arXiv , keywords =:1802.01436 , primaryclass =

  106. [114]

    Li, Jiahao and Li, Bin and Lu, Yan , year = 2021, month = dec, number =. Deep. doi:10.48550/arXiv.2109.15047 , urldate =. arXiv , keywords =:2109.15047 , primaryclass =

  107. [115]

    Li, Jiahao and Li, Bin and Lu, Yan , abstract =. Neural

  108. [116]

    doi:10.48550/arXiv.2411.19722 , urldate =

    Tschannen, Michael and Pinto, Andr. doi:10.48550/arXiv.2411.19722 , urldate =. arXiv , keywords =:2411.19722 , primaryclass =

  109. [117]

    Xiang, Jinxi and Tian, Kuan and Zhang, Jun and Han, Xiao and Yang, Wei , year = 2023, abstract =

  110. [118]

    Muckley, Matthew J. and. Improving. Proceedings of the 40th

  111. [119]

    Zhu, Lianghui and Liao, Bencheng and Zhang, Qian and Wang, Xinlong and Liu, Wenyu and Wang, Xinggang , year = 2024, month = nov, number =. Vision. doi:10.48550/arXiv.2401.09417 , urldate =. arXiv , keywords =:2401.09417 , primaryclass =

  112. [120]

    Density Estimation Using

    Dinh, Laurent and. Density Estimation Using. doi:10.48550/arXiv.1605.08803 , urldate =. arXiv , keywords =:1605.08803 , primaryclass =

  113. [121]

    and Salimans, Tim and Jozefowicz, Rafal and Chen, Xi and Sutskever, Ilya and Welling, Max , year = 2017, month = jan, number =

    Kingma, Diederik P. and Salimans, Tim and Jozefowicz, Rafal and Chen, Xi and Sutskever, Ilya and Welling, Max , year = 2017, month = jan, number =. Improving. doi:10.48550/arXiv.1606.04934 , urldate =. arXiv , keywords =:1606.04934 , primaryclass =

  114. [122]

    Convolutional

    Zheng, Guoqing and Yang, Yiming and Carbonell, Jaime , year = 2017, number =. Convolutional. doi:10.48550/arXiv.1711.02255 , urldate =. arXiv , keywords =:1711.02255 , primaryclass =

  115. [123]

    Grathwohl, Will and Chen, Ricky T. Q. and Bettencourt, Jesse and Sutskever, Ilya and Duvenaud, David , year = 2018, journal =. doi:10.48550/arXiv.1810.01367 , urldate =. arXiv , keywords =:1810.01367 , primaryclass =

  116. [124]

    Emerging

    Hoogeboom, Emiel and van den Berg, Rianne and Welling, Max , year = 2019, month = may, number =. Emerging. doi:10.48550/arXiv.1901.11137 , urldate =. arXiv , keywords =:1901.11137 , primaryclass =

  117. [125]

    Liu, Jenny and Kumar, Aviral and Ba, Jimmy and Kiros, Jamie and Swersky, Kevin , year = 2019, month = may, number =. Graph. doi:10.48550/arXiv.1905.13177 , urldate =. arXiv , keywords =:1905.13177 , primaryclass =

  118. [126]

    Invertible

    Finzi, Marc and Izmailov, Pavel and Maddox, Wesley and Kirichenko, Polina and Wilson, Andrew Gordon , year = 2019, abstract =. Invertible

  119. [127]

    Invertible

    Karami, Mahdi and Schuurmans, Dale and. Invertible. Advances in

  120. [128]

    doi:10.48550/arXiv.2106.04627 , urldate =

    Densely Connected Normalizing Flows , author =. doi:10.48550/arXiv.2106.04627 , urldate =. arXiv , keywords =:2106.04627 , primaryclass =

  121. [129]

    Kobyzev, Ivan and Prince, Simon J. D. and Brubaker, Marcus A. , year = 2021, month = nov, journal =. Normalizing. doi:10.1109/TPAMI.2020.2992934 , urldate =. arXiv , keywords =:1908.09257 , primaryclass =

  122. [130]

    doi:10.48550/arXiv.2107.01358 , urldate =

    Nagar, Sandeep and Dufraisse, Marius and Varma, Girish , year = 2021, month = jul, number =. doi:10.48550/arXiv.2107.01358 , urldate =. arXiv , keywords =:2107.01358 , primaryclass =

  123. [131]

    Graphical

    Wehenkel, Antoine and Louppe, Gilles , year = 2021, month = feb, number =. Graphical. doi:10.48550/arXiv.2006.02548 , urldate =. arXiv , keywords =:2006.02548 , primaryclass =

  124. [132]

    Transferable

    Klein, Leon and No. Transferable. doi:10.48550/arXiv.2406.14426 , urldate =. arXiv , keywords =:2406.14426 , primaryclass =

  125. [133]

    Nature , volume =

    Accurate Predictions on Small Data with a Tabular Foundation Model , author =. Nature , volume =. doi:10.1038/s41586-024-08328-6 , urldate =

  126. [134]

    doi:10.48550/arXiv.2207.01848 , urldate =

    Hollmann, Noah and M. doi:10.48550/arXiv.2207.01848 , urldate =. arXiv , keywords =:2207.01848 , primaryclass =

  127. [135]

    and Fan, Angela and Auli, Michael and Grangier, David , year = 2016, month = dec, journal =

    Dauphin, Yann N. and Fan, Angela and Auli, Michael and Grangier, David , year = 2016, month = dec, journal =. Language

  128. [136]

    Comprehensive

    Bauer, Andr. Comprehensive. doi:10.48550/arXiv.2401.02524 , urldate =. arXiv , keywords =:2401.02524 , primaryclass =

  129. [137]

    Everything

    Nagel, Jory , year = 2024, month = sep, urldate =. Everything

  130. [138]

    Survey on

    Figueira, Alvaro and Vaz, Bruno , year = 2022, month = jan, journal =. Survey on. doi:10.3390/math10152733 , urldate =

  131. [139]

    doi:10.48550/arXiv.2303.14668 , urldate =

    Duong, Tri Dung and Li, Qian and Xu, Guandong , year = 2023, month = mar, number =. doi:10.48550/arXiv.2303.14668 , urldate =. arXiv , keywords =:2303.14668 , primaryclass =

  132. [140]

    Bryce and Gagliano, Alexander and Yan, Ziang and Connolly, Andrew J

    Crenshaw, John Franklin and Kalmbach, J. Bryce and Gagliano, Alexander and Yan, Ziang and Connolly, Andrew J. and Malz, Alex I. and Schmidt, Samuel J. and Collaboration, The LSST Dark Energy Science , year = 2024, month = aug, journal =. Probabilistic. doi:10.3847/1538-3881/ad...

  133. [141]

    Differentially

    Lee, Jaewoo and Kim, Minjung and Jeong, Yonghyun and Ro, Youngmin , year = 2022, month = jun, journal =. Differentially. doi:10.1609/aaai.v36i7.20697 , urldate =

  134. [142]

    Shi, Ruxue and Wang, Yili and Du, Mengnan and Shen, Xu and Wang, Xin , year = 2025, month = may, number =. A. doi:10.48550/arXiv.2504.16506 , urldate =. arXiv , keywords =:2504.16506 , primaryclass =

  135. [143]

    doi:10.48550/arXiv.2501.12012 , urldate =

    Tiwald, Paul and Krchova, Ivona and Sidorenko, Andrey and. doi:10.48550/arXiv.2501.12012 , urldate =. arXiv , keywords =:2501.12012 , primaryclass =

  136. [144]

    Benchmarking

    Sidorenko, Andrey and Platzer, Michael and Scriminaci, Mario and Tiwald, Paul , year = 2025, month = apr, number =. Benchmarking. doi:10.48550/arXiv.2504.01908 , urldate =. arXiv , keywords =:2504.01908 , primaryclass =

  137. [145]

    Zhang, Hengrui and Zhang, Jiani and Srinivasan, Balasubramaniam and Shen, Zhengyuan and Qin, Xiao and Faloutsos, Christos and Rangwala, Huzefa and Karypis, George , year = 2024, month = may, number =. Mixed-. doi:10.48550/arXiv.2310.09656 , urldate =. arXiv , keywords =:2310.0...

  138. [146]

    doi:10.48550/arXiv.2309.09968 , urldate =

    Generating and. doi:10.48550/arXiv.2309.09968 , urldate =. arXiv , keywords =:2309.09968 , primaryclass =

  139. [147]

    doi:10.48550/arXiv.2410.20626 , urldate =

    Shi, Juntong and Xu, Minkai and Hua, Harper and Zhang, Hengrui and Ermon, Stefano and Leskovec, Jure , year = 2025, month = feb, number =. doi:10.48550/arXiv.2410.20626 , urldate =. arXiv , keywords =:2410.20626 , primaryclass =

  140. [148]

    doi:10.48550/arXiv.2406.04619 , urldate =

    Lin, Xiaofeng and Xu, Chenheng and Yang, Matthew and Cheng, Guang , year = 2024, month = jun, number =. doi:10.48550/arXiv.2406.04619 , urldate =. arXiv , keywords =:2406.04619 , primaryclass =

  141. [149]

    doi:10.48550/arXiv.2210.04018 , urldate =

    Kim, Jayoung and Lee, Chaejeong and Park, Noseong , year = 2023, month = may, number =. doi:10.48550/arXiv.2210.04018 , urldate =. arXiv , keywords =:2210.04018 , primaryclass =

  142. [150]

    Liu, Tennison and Qian, Zhaozhi and Berrevoets, Jeroen and van der Schaar, Mihaela , year = 2022, month = sep, urldate =. The

  143. [151]

    doi:10.48550/arXiv.2302.00482 , urldate =

    Improving and Generalizing Flow-Based Generative Models with Minibatch Optimal Transport , author =. doi:10.48550/arXiv.2302.00482 , urldate =. arXiv , keywords =:2302.00482 , primaryclass =

  144. [152]

    Liu, Xingchao and Gong, Chengyue and Liu, Qiang , year = 2022, month = sep, number =. Flow. doi:10.48550/arXiv.2209.03003 , urldate =. arXiv , keywords =:2209.03003 , primaryclass =

  145. [153]

    Lipman, Yaron and Havasi, Marton and Holderrieth, Peter and Shaul, Neta and Le, Matt and Karrer, Brian and Chen, Ricky T. Q. and. Flow. doi:10.48550/arXiv.2412.06264 , urldate =. arXiv , keywords =:2412.06264 , primaryclass =

  146. [154]

    Lipman, Yaron and Chen, Ricky T. Q. and. Flow. doi:10.48550/arXiv.2210.02747 , urldate =. arXiv , keywords =:2210.02747 , primaryclass =

  147. [155]

    and Boffi, Nicholas M

    Albergo, Michael S. and Boffi, Nicholas M. and. Stochastic. doi:10.48550/arXiv.2303.08797 , urldate =. arXiv , keywords =:2303.08797 , primaryclass =

  148. [156]

    doi:10.48550/arXiv.2503.20731 , urldate =

    Fuchi, Masane and Takagi, Tomohiro , year = 2025, month = mar, number =. doi:10.48550/arXiv.2503.20731 , urldate =. arXiv , keywords =:2503.20731 , primaryclass =

  149. [157]

    Variational

    Rezende, Danilo Jimenez and Mohamed, Shakir , year = 2015, month = may, journal =. Variational

  150. [158]

    Normalizing

    Zhai, Shuangfei and Zhang, Ruixiang and Nakkiran, Preetum and Berthelot, David and Gu, Jiatao and Zheng, Huangjie and Chen, Tianrong and Bautista, Miguel Angel and Jaitly, Navdeep and Susskind, Josh , year = 2024, month = dec, number =. Normalizing. doi:10.48550/arXiv.2412.063...

  151. [159]

    Epsilon-

    Zhao, Long and Woo, Sanghyun and Wan, Ziyu and Li, Yandong and Zhang, Han and Gong, Boqing and Adam, Hartwig and Jia, Xuhui and Liu, Ting , year = 2025, month = may, number =. Epsilon-. doi:10.48550/arXiv.2410.04081 , urldate =. arXiv , keywords =:2410.04081 , primaryclass =

  152. [160]

    doi:10.48550/arXiv.2504.07963 , urldate =

    Chen, Shoufa and Ge, Chongjian and Zhang, Shilong and Sun, Peize and Luo, Ping , year = 2025, month = apr, number =. doi:10.48550/arXiv.2504.07963 , urldate =. arXiv , keywords =:2504.07963 , primaryclass =

  153. [161]

    IEEE Transactions on Pattern Analysis and Machine Intelligence , volume =

    Deep. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume =. doi:10.1109/TPAMI.2021.3116668 , urldate =. arXiv , file =:2103.04922 , primaryclass =

  154. [162]

    and Dhariwal, Prafulla , year = 2018, month = jul, number =

    Kingma, Diederik P. and Dhariwal, Prafulla , year = 2018, month = jul, number =. Glow:. doi:10.48550/arXiv.1807.03039 , urldate =. arXiv , keywords =:1807.03039 , primaryclass =

  155. [163]

    , year = 2024, month = jan, number =

    Patacchiola, Massimiliano and Shysheya, Aliaksandra and Hofmann, Katja and Turner, Richard E. , year = 2024, month = jan, number =. Transformer. doi:10.48550/arXiv.2401.01855 , urldate =. arXiv , keywords =:2401.01855 , primaryclass =

  156. [164]

    Chen, Ricky T. Q. and Behrmann, Jens and Duvenaud, David and Jacobsen, J. Residual. doi:10.48550/arXiv.1906.02735 , urldate =. arXiv , keywords =:1906.02735 , primaryclass =

  157. [165]

    Gu, Albert, Isaac Liao , year = 2025, month = mar, journal =

  158. [166]

    Stoian, Mihaela C. A. doi:10.48550/arXiv.2503.05954 , urldate =. arXiv , keywords =:2503.05954 , primaryclass =

  159. [167]

    3rd International Conference on Learning Representations,

    Dinh, Laurent and Krueger, David and Bengio, Yoshua , editor =. 3rd International Conference on Learning Representations,. arXiv , bibsource =:1410.8516 , primaryclass =

  160. [168]

    Mahajan, Shweta and Gurevych, Iryna and Roth, Stefan , year = 2020, month = feb, number =. Latent. doi:10.48550/arXiv.2002.06661 , urldate =. arXiv , keywords =:2002.06661 , primaryclass =

  161. [169]

    and Welling, Max , year = 2018, month = feb, number =

    Tomczak, Jakub M. and Welling, Max , year = 2018, month = feb, number =. doi:10.48550/arXiv.1705.07120 , urldate =. arXiv , keywords =:1705.07120 , primaryclass =

  162. [170]

    Saragih, Daniel and Cao, Deyu and Balaji, Tejas and Santhosh, Ashwin , year = 2025, month = apr, number =. Flow to. doi:10.48550/arXiv.2503.19371 , urldate =. arXiv , keywords =:2503.19371 , primaryclass =

  163. [171]

    Normalizing

    Papamakarios, George and Nalisnick, Eric and Rezende, Danilo Jimenez and Mohamed, Shakir and Lakshminarayanan, Balaji , year = 2021, month = apr, number =. Normalizing. doi:10.48550/arXiv.1912.02762 , urldate =. arXiv , keywords =:1912.02762 , primaryclass =

  164. [172]

    Variational

    Morrow, Rogan and Chiu, Wei-Chen , year = 2020, month = apr, number =. Variational. doi:10.48550/arXiv.2004.05617 , urldate =. arXiv , keywords =:2004.05617 , primaryclass =

  165. [173]

    Improving

    Senellart, Agathe and Chadebec, Cl. Improving. doi:10.48550/arXiv.2305.11832 , urldate =. arXiv , keywords =:2305.11832 , primaryclass =

  166. [174]

    Generalized

    Hagemann, Paul and Hertrich, Johannes and Steidl, Gabriele , year = 2023, month = feb, eprint =. Generalized. doi:10.1017/9781009331012 , urldate =

  167. [175]

    doi:10.48550/arXiv.2007.02731 , urldate =

    Nielsen, Didrik and Jaini, Priyank and Hoogeboom, Emiel and Winther, Ole and Welling, Max , year = 2020, month = oct, number =. doi:10.48550/arXiv.2007.02731 , urldate =. arXiv , keywords =:2007.02731 , primaryclass =

  168. [176]

    doi:10.48550/arXiv.2506.06276 , urldate =

    Gu, Jiatao and Chen, Tianrong and Berthelot, David and Zheng, Huangjie and Wang, Yuyang and Zhang, Ruixiang and Dinh, Laurent and Bautista, Miguel Angel and Susskind, Josh and Zhai, Shuangfei , year = 2025, month = jun, number =. doi:10.48550/arXiv.2506.06276 , urldate =. arXi...

  169. [177]

    Conditional

    Bhattacharyya, Apratim and Hanselmann, Michael and Fritz, Mario and Schiele, Bernt and Straehle, Christoph-Nikolas , year = 2020, month = aug, number =. Conditional. doi:10.48550/arXiv.1908.09008 , urldate =. arXiv , keywords =:1908.09008 , primaryclass =

  170. [178]

    and Rush, Alexander M

    Ziegler, Zachary M. and Rush, Alexander M. , year = 2019, month = jun, number =. Latent. doi:10.48550/arXiv.1901.10548 , urldate =. arXiv , keywords =:1901.10548 , primaryclass =

  171. [179]

    Generative

    Xiao, Zhisheng and Yan, Qing and Amit, Yali , year = 2019, month = sep, number =. Generative. doi:10.48550/arXiv.1905.10485 , urldate =. arXiv , keywords =:1905.10485 , primaryclass =

  172. [180]

    Learnable

    Huang, Chin-Wei and Touati, Ahmed and Dinh, Laurent and Drozdzal, Michal and Havaei, Mohammad and Charlin, Laurent and Courville, Aaron , year = 2017, month = oct, number =. Learnable. doi:10.48550/arXiv.1710.02248 , urldate =. arXiv , keywords =:1710.02248 , primaryclass =

  173. [181]

    doi:10.48550/arXiv.2105.04906 , urldate =

    Bardes, Adrien and Ponce, Jean and LeCun, Yann , year = 2022, month = jan, number =. doi:10.48550/arXiv.2105.04906 , urldate =. arXiv , keywords =:2105.04906 , primaryclass =

  174. [182]

    Ho, Jonathan and Chen, Xi and Srinivas, Aravind and Duan, Yan and Abbeel, Pieter , year = 2019, month = may, number =. Flow++:. doi:10.48550/arXiv.1902.00275 , urldate =. arXiv , keywords =:1902.00275 , primaryclass =

  175. [183]

    Jacobsen, J. I-. doi:10.48550/arXiv.1802.07088 , urldate =. arXiv , keywords =:1802.07088 , primaryclass =

  176. [184]

    Augmented

    Huang, Chin-Wei and Dinh, Laurent and Courville, Aaron , year = 2020, month = feb, number =. Augmented. doi:10.48550/arXiv.2002.07101 , urldate =. arXiv , keywords =:2002.07101 , primaryclass =

  177. [185]

    Kolesnikov, Alexander and Pinto, Andr. Jet:. doi:10.48550/arXiv.2412.15129 , urldate =. arXiv , keywords =:2412.15129 , primaryclass =

  178. [186]

    Raieli, Salvatore , urldate =. Tabular

  179. [187]

    Durkan, Conor and Bekasov, Artur and Murray, Iain and Papamakarios, George , year = 2019, month = jun, number =. Cubic-. doi:10.48550/arXiv.1906.02145 , urldate =. arXiv , keywords =:1906.02145 , primaryclass =

  180. [188]

    Zico and He, Kaiming , year = 2025, month = may, number =

    Geng, Zhengyang and Deng, Mingyang and Bai, Xingjian and Kolter, J. Zico and He, Kaiming , year = 2025, month = may, number =. Mean. doi:10.48550/arXiv.2505.13447 , urldate =. arXiv , keywords =:2505.13447 , primaryclass =

  181. [189]

    Isomorphism,

    Walton, Steven , year = 2023, url=. Isomorphism,

  182. [190]

    K. A. doi:10.48550/arxiv.2308.02652 , urldate =. arXiv , keywords =:2308.02652 , primaryclass =

  183. [191]

    Midgley, Laurence Illing and Stimper, Vincent and Simm, Gregor N. C. and. Bootstrap. doi:10.48550/arXiv.2111.11510 , urldate =. arXiv , keywords =:2111.11510 , primaryclass =

  184. [192]

    Implicit

    Lu, Cheng and Chen, Jianfei and Li, Chongxuan and Wang, Qiuhao and Zhu, Jun , year = 2021, month = mar, number =. Implicit. doi:10.48550/arXiv.2103.09527 , urldate =. arXiv , keywords =:2103.09527 , primaryclass =

  185. [193]

    Li, Henry and Kluger, Yuval , year = 2022, month = jun, number =. Neural. doi:10.48550/arXiv.2206.11172 , urldate =. arXiv , keywords =:2206.11172 , primaryclass =

  186. [194]

    doi:10.48550/arXiv.2206.02102 , urldate =

    Cai, Difeng and Ji, Yuliang and He, Huan and Ye, Qiang and Xi, Yuanzhe , year = 2022, month = jun, number =. doi:10.48550/arXiv.2206.02102 , urldate =. arXiv , keywords =:2206.02102 , primaryclass =

  187. [195]

    Sinusoidal

    Wei, Yumou , year = 2021, month = oct, number =. Sinusoidal. doi:10.48550/arXiv.2110.13344 , urldate =. arXiv , keywords =:2110.13344 , primaryclass =

  188. [196]

    Klein, Samuel and Raine, John A. and. Funnels:. doi:10.48550/arXiv.2112.08069 , urldate =. arXiv , keywords =:2112.08069 , primaryclass =

  189. [197]

    and Erfani, Sarah and Leckie, Christopher , year = 2020, month = apr, number =

    Dolatabadi, Hadi M. and Erfani, Sarah and Leckie, Christopher , year = 2020, month = apr, number =. Invertible. doi:10.48550/arXiv.2001.05168 , urldate =. arXiv , keywords =:2001.05168 , primaryclass =

  190. [198]

    doi:10.48550/arXiv.2002.09741 , urldate =

    Chen, Jianfei and Lu, Cheng and Chenli, Biqi and Zhu, Jun and Tian, Tian , year = 2020, month = jul, number =. doi:10.48550/arXiv.2002.09741 , urldate =. arXiv , keywords =:2002.09741 , primaryclass =

  191. [199]

    doi:10.48550/arXiv.2112.06997 , urldate =

    Gopal, Achintya , year = 2021, month = dec, number =. doi:10.48550/arXiv.2112.06997 , urldate =. arXiv , keywords =:2112.06997 , primaryclass =

  192. [200]

    Woodbury

    Lu, You and Huang, Bert , year = 2021, month = jan, number =. Woodbury. doi:10.48550/arXiv.2002.12229 , urldate =. arXiv , keywords =:2002.12229 , primaryclass =

  193. [201]

    Free-Form

    Draxler, Felix and Sorrenson, Peter and Zimmermann, Lea and Rousselot, Armand and K. Free-Form. Proceedings of

  194. [202]

    Variations and

    Kelly, Keegan and Piedras, Lorena and Rao, Sukrit and Roth, David , year = 2023, month = sep, number =. Variations and. doi:10.48550/arXiv.2309.04433 , urldate =. arXiv , keywords =:2309.04433 , primaryclass =

  195. [203]

    Diffusion

    Zand, Mohsen and Etemad, Ali and Greenspan, Michael , year = 2025, month = mar, number =. Diffusion. doi:10.48550/arXiv.2309.01274 , urldate =. arXiv , keywords =:2309.01274 , primaryclass =

  196. [204]

    Normalizing

    Dong, Hanze and Diao, Shizhe and Zhang, Weizhong and Zhang, Tong , year = 2022, month = nov, number =. Normalizing. doi:10.48550/arXiv.2211.11638 , urldate =. arXiv , keywords =:2211.11638 , primaryclass =

  197. [205]

    doi:10.48550/arXiv.2508.17056 , urldate =

    Madhusudhanan, Kiran and Yalavarthi, Vijaya Krishna and Sonntag, Jonas and Stubbemann, Maximilian and. doi:10.48550/arXiv.2508.17056 , urldate =. arXiv , keywords =:2508.17056 , primaryclass =

  198. [206]

    doi:10.48550/arXiv.2508.10133 , urldate =

    Truong, Thanh-Dat and Bobda, Christophe and Agarwal, Nitin and Luu, Khoa , year = 2025, month = aug, number =. doi:10.48550/arXiv.2508.10133 , urldate =. arXiv , keywords =:2508.10133 , primaryclass =

  199. [207]

    doi:10.48550/arXiv.2508.16845 , urldate =

    Tarasov, Denis and Nikulin, Alexander and Zisman, Ilya and Klepach, Albina and Lyubaykin, Nikita and Polubarov, Andrei and Derevyagin, Alexander and Kurenkov, Vladislav , year = 2025, month = aug, number =. doi:10.48550/arXiv.2508.16845 , urldate =. arXiv , keywords =:2508.168...

  200. [208]

    doi:10.48550/arXiv.2506.01158 , urldate =

    Rehman, Danyal and Davis, Oscar and Lu, Jiarui and Tang, Jian and Bronstein, Michael and Bengio, Yoshua and Tong, Alexander and Bose, Avishek Joey , year = 2025, month = jun, number =. doi:10.48550/arXiv.2506.01158 , urldate =. arXiv , keywords =:2506.01158 , primaryclass =

  201. [209]

    doi:10.48550/arXiv.2505.10466 , urldate =

    Qin, Juehang and Liang, Shixiao and Tunnell, Christopher , year = 2025, month = may, number =. doi:10.48550/arXiv.2505.10466 , urldate =. arXiv , keywords =:2505.10466 , primaryclass =

  202. [210]

    Manifold

    Diepeveen, Willem and Needell, Deanna , year = 2025, month = jul, number =. Manifold. doi:10.48550/arXiv.2505.08087 , urldate =. arXiv , keywords =:2505.08087 , primaryclass =

  203. [211]

    , year = 2025, month = may, number =

    Wang, Yihang and Chi, Chris and Dinner, Aaron R. , year = 2025, month = may, number =. Mitigating Mode Collapse in Normalizing Flows by Annealing with an Adaptive Schedule:. doi:10.48550/arXiv.2505.03652 , urldate =. arXiv , keywords =:2505.03652 , primaryclass =

  204. [212]

    Preferential

    Mikkola, Petrus and Acerbi, Luigi and Klami, Arto , year = 2024, month = oct, number =. Preferential. doi:10.48550/arXiv.2410.08710 , urldate =. arXiv , keywords =:2410.08710 , primaryclass =

  205. [213]

    Flexible

    Hickling, Tennessee and Prangle, Dennis , year = 2025, month = jun, number =. Flexible. doi:10.48550/arXiv.2406.16971 , urldate =. arXiv , keywords =:2406.16971 , primaryclass =

  206. [214]

    Hutchinson

    Hu, Zheyuan and Shi, Zekun and Karniadakis, George Em and Kawaguchi, Kenji , year = 2024, month = may, journal =. Hutchinson. doi:10.1016/j.cma.2024.116883 , urldate =. arXiv , keywords =:2312.14499 , primaryclass =

  207. [215]

    Geometric

    Krantz, Steven G and Parks, Harold R , year = 2008, month = dec, publisher =. Geometric. doi:10.1007/978-0-8176-4679-0 , isbn =

  208. [216]

    Regularized

    Kumar, Abhishek and Poole, Ben and Murphy, Kevin , year = 2020, month = feb, number =. Regularized. doi:10.48550/arXiv.2002.08927 , urldate =. arXiv , keywords =:2002.08927 , primaryclass =

  209. [217]

    Ghosh, Partha and Sajjadi, Mehdi S. M. and Vergari, Antonio and Black, Michael and Sch. From. doi:10.48550/arXiv.1903.12436 , urldate =. arXiv , keywords =:1903.12436 , primaryclass =

  210. [218]

    Nonlinear

    Cramer, Eike and Rauh, Felix and Mitsos, Alexander and Tempone, Ra. Nonlinear. doi:10.48550/arXiv.2203.03934 , urldate =. arXiv , keywords =:2203.03934 , primaryclass =

  211. [219]

    , year = 2021, month = nov, number =

    Ross, Brendan Leigh and Cresswell, Jesse C. , year = 2021, month = nov, number =. Tractable. doi:10.48550/arXiv.2106.05275 , urldate =. arXiv , keywords =:2106.05275 , primaryclass =

  212. [220]

    Isometric

    Gropp, Amos and Atzmon, Matan and Lipman, Yaron , year = 2020, month = oct, number =. Isometric. doi:10.48550/arXiv.2006.09289 , urldate =. arXiv , keywords =:2006.09289 , primaryclass =

  213. [221]

    and Rezende, Danilo and Mohamed, Shakir , year = 2016, month = nov, number =

    Gemici, Mevlana C. and Rezende, Danilo and Mohamed, Shakir , year = 2016, month = nov, number =. Normalizing. doi:10.48550/arXiv.1611.02304 , urldate =. arXiv , keywords =:1611.02304 , primaryclass =

  214. [222]

    Principal

    Cunningham, Edmond and Cobb, Adam and Jha, Susmit , year = 2022, month = feb, number =. Principal. doi:10.48550/arXiv.2202.07037 , urldate =. arXiv , keywords =:2202.07037 , primaryclass =

  215. [223]

    Normalizing

    Cunningham, Edmond and Zabounidis, Renos and Agrawal, Abhinav and Fiterau, Madalina and Sheldon, Daniel , year = 2020, month = jun, number =. Normalizing. doi:10.48550/arXiv.2006.13070 , urldate =. arXiv , keywords =:2006.13070 , primaryclass =

  216. [224]

    doi:10.48550/arXiv.2006.04604 , urldate =

    Kim, Hyeongju and Lee, Hyeonseung and Kang, Woo Hyun and Lee, Joun Yeop and Kim, Nam Soo , year = 2020, month = nov, number =. doi:10.48550/arXiv.2006.04604 , urldate =. arXiv , keywords =:2006.04604 , primaryclass =

  217. [225]

    doi:10.48550/arXiv.2212.01265 , urldate =

    Denoising. doi:10.48550/arXiv.2212.01265 , urldate =. arXiv , keywords =:2212.01265 , primaryclass =

  218. [226]

    Autoencoding

    Yoon, Sangwoong and Noh, Yung-Kyun and Park, Frank Chongwoo , year = 2023, month = jun, number =. Autoencoding. doi:10.48550/arXiv.2105.05735 , urldate =. arXiv , keywords =:2105.05735 , primaryclass =

  219. [227]

    Denoising

    Horvat, Christian and Pfister, Jean-Pascal , year = 2021, volume =. Denoising. Advances in

  220. [228]

    Sorrenson, Peter and Draxler, Felix and Rousselot, Armand and Hummerich, Sander and Zimmermann, Lea and K. Lifting. International Conference on Learning Representations , eprint =. doi:10.48550/arXiv.2306.01843 , urldate =

  221. [229]

    Learning

    Sorrenson, Peter and Draxler, Felix and Rousselot, Armand and Hummerich, Sander and K. Learning. Advances in. doi:10.52202/079017-2138 , urldate =

  222. [230]

    Razavi, Seyedeh Fatemeh and Mehmanchi, Mohammad Mahdi and Hosseini, Reshad and Tavassolipour, Mostafa , year = 2022, month = jun, number =. Joint. doi:10.48550/arXiv.2206.03293 , urldate =. arXiv , keywords =:2206.03293 , primaryclass =

  223. [231]

    Chen, Ricky T. Q. and Lipman, Yaron , year = 2024, month = feb, number =. Flow. doi:10.48550/arXiv.2302.03660 , urldate =. arXiv , keywords =:2302.03660 , primaryclass =

  224. [232]

    Diagnosing and

    Dai, Bin and Wipf, David , year = 2019, month = oct, number =. Diagnosing and. doi:10.48550/arXiv.1903.05789 , urldate =. arXiv , keywords =:1903.05789 , primaryclass =

  225. [233]

    and Deligiannidis, George and Doucet, Arnaud , year = 2021, month = apr, number =

    Cornish, Rob and Caterini, Anthony L. and Deligiannidis, George and Doucet, Arnaud , year = 2021, month = apr, number =. Relaxing. doi:10.48550/arXiv.1909.13833 , urldate =. arXiv , keywords =:1909.13833 , primaryclass =

  226. [234]

    doi:10.48550/arXiv.2512.04084 , urldate =

    Zhao, Qinyu and Zheng, Guangting and Yang, Tao and Zhu, Rui and Leng, Xingjian and Gould, Stephen and Zheng, Liang , year = 2025, month = dec, number =. doi:10.48550/arXiv.2512.04084 , urldate =. arXiv , keywords =:2512.04084 , primaryclass =

  227. [235]

    Bertrand, Quentin and Gagneux, Anne and Massias, Mathurin and Emonet, R. On the. doi:10.48550/arXiv.2506.03719 , urldate =. arXiv , keywords =:2506.03719 , primaryclass =

  228. [236]

    Normalizing

    Chen, Tianrong and Gu, Jiatao and Berthelot, David and Susskind, Joshua and Zhai, Shuangfei , year = 2026, month = apr, number =. Normalizing. doi:10.48550/arXiv.2604.20041 , urldate =. arXiv , keywords =:2604.20041 , primaryclass =

  229. [237]

    and Zenke, Friedemann , year = 2026, month = may, urldate =

    Mikulasch, Fabian A. and Zenke, Friedemann , year = 2026, month = may, urldate =. Understanding

  230. [238]

    Amin, Ahmad Ayaz and Kazi, Baha Uddin , year = 2025, month = nov, number =. Simple,. doi:10.48550/arXiv.2509.25228 , urldate =. arXiv , keywords =:2509.25228 , primaryclass =

  231. [239]

    Sorrenson, Peter and L. Beyond. doi:10.48550/arxiv.2506.01522 , urldate =. arXiv , keywords =:2506.01522 , primaryclass =

  232. [240]

    Marginal

    Negri, Marcello Massimo and Aellen, Jonathan and Jahn, Manuel and Khorashadizadeh, AmirEhsan and Roth, Volker , year = 2025, month = sep, number =. Marginal. doi:10.48550/arXiv.2509.26221 , urldate =. arXiv , keywords =:2509.26221 , primaryclass =

  233. [241]

    Sorrenson, Peter , year = 2025, publisher =. Free-. doi:10.11588/heidok.00035980 , urldate =

  234. [242]

    Draxler, Felix and Wahl, Stefan and Schn. On the. doi:10.48550/arXiv.2402.06578 , urldate =. arXiv , keywords =:2402.06578 , primaryclass =

  235. [243]

    Equivariant

    Hoogeboom, Emiel and Satorras, V. Equivariant. Proceedings of the 39th. arXiv , langid =:2203.17003 , primaryclass =

  236. [244]

    Adaptive

    Bai, Zhiwei and Zhou, Zhangchen and Zhao, Jiajie and Li, Xiaolong and Li, Zhiyu and Xiong, Feiyu and Yang, Hongkang and Zhang, Yaoyu and Xu, Zhi-Qin John , year = 2026, month = may, number =. Adaptive. doi:10.48550/arXiv.2506.04805 , urldate =. arXiv , keywords =:2506.04805 , ...

  237. [245]

    doi:10.48550/arXiv.2511.08544 , urldate =

    Balestriero, Randall and LeCun, Yann , year = 2025, month = nov, number =. doi:10.48550/arXiv.2511.08544 , urldate =. arXiv , keywords =:2511.08544 , primaryclass =

  238. [246]

    Satorras, Victor Garcia and Hoogeboom, Emiel and Welling, Max , year = 2022, month = feb, number =. E(n). doi:10.48550/arXiv.2102.09844 , urldate =. arXiv , keywords =:2102.09844 , primaryclass =

  239. [247]

    Probabilistic

    B. Probabilistic. doi:10.48550/arXiv.2006.05479 , urldate =. arXiv , keywords =:2006.05479 , primaryclass =

  240. [248]

    Perceptual

    Zhang, Zijun and Zhang, Ruixiang and Li, Zongpeng and Bengio, Yoshua and Paull, Liam , year = 2020, month = jul, number =. Perceptual. doi:10.48550/arXiv.1906.10335 , urldate =. arXiv , keywords =:1906.10335 , primaryclass =

  241. [249]

    doi:10.48550/arXiv.2111.00619 , urldate =

    Beitler, Jan Jetze and Sosnovik, Ivan and Smeulders, Arnold , year = 2021, month = oct, number =. doi:10.48550/arXiv.2111.00619 , urldate =. arXiv , keywords =:2111.00619 , primaryclass =

  242. [250]

    Analytical Chemistry , volume =

    Skillful Writing of an Awful Research Paper , author =. Analytical Chemistry , volume =. doi:10.1021/ac2000169 , urldate =

  243. [251]

    Equivariant

    K. Equivariant. doi:10.48550/arXiv.2006.02425 , urldate =. arXiv , keywords =:2006.02425 , primaryclass =

  244. [252]

    Scientific Data , volume =

    Quantum Chemistry Structures and Properties of 134 Kilo Molecules , author =. Scientific Data , volume =. doi:10.1038/sdata.2014.22 , urldate =

  245. [253]

    Durkan, Conor and Bekasov, Artur and Murray, Iain and Papamakarios, George , year = 2019, volume =. Neural. Advances in

  246. [254]

    Canonical Normalizing Flows for Manifold Learning , booktitle =

    Flouris, Kyriakos and Konukoglu, Ender , year = 2023, volume =. Canonical Normalizing Flows for Manifold Learning , booktitle =. doi:10.52202/075280-1189 , urldate =

  247. [255]

    Flows for Simultaneous Manifold Learning and Density Estimation , booktitle =

    Brehmer, Johann and Cranmer, Kyle , year = 2020, volume =. Flows for Simultaneous Manifold Learning and Density Estimation , booktitle =

  248. [256]

    Invertible

    Ahn, Byeongkeun and Kim, Chiyoon and Hong, Youngjoon and Kim, Hyunwoo , year = 2022, pages =. Invertible. Advances in. doi:10.52202/068431-1225 , urldate =

  249. [257]

    Behrmann, Jens and Grathwohl, Will and Chen, Ricky T. Q. and Duvenaud, David and Jacobsen, Joern-Henrik , year = 2019, month = may, pages =. Invertible. Proceedings of the 36th

  250. [258]

    Chadebec, Cl. Pythae:. Advances in. doi:10.52202/068431-1568 , urldate =

  251. [259]

    Wildberger, Jonas and Dax, Maximilian and Buchholz, Simon and Green, Stephen and Macke, Jakob H and Sch. Flow. Advances in. doi:10.52202/075280-0737 , urldate =

  252. [261]

    Proceedings of the 18th

    Kallappa, Aditya and Nagar, Sandeep and Varma, Girish , year = 2023, pages =. Proceedings of the 18th. doi:10.5220/0011876600003417 , urldate =

  253. [262]

    Flowification:

    M. Flowification:. Advances in. doi:10.52202/068431-2571 , urldate =

  254. [263]

    Truong, Thanh-Dat and Duong, Chi Nhan and Tran, Minh-Triet and Le, Ngan and Luu, Khoa , year = 2021, month = jul, journal =. Fast. doi:10.3390/fi13070179 , urldate =

  255. [264]

    Rectangular

    Caterini, Anthony L and. Rectangular. Advances in

  256. [265]

    Trumpets:

    Kothari, Konik and Khorashadizadeh, AmirEhsan and de Hoop, Maarten and Dokmani. Trumpets:. Proceedings of the

  257. [266]

    Cao, Nicola De and Aziz, Wilker and Titov, Ivan , year = 2020, month = aug, pages =. Block. Proceedings of

  258. [267]

    Papamakarios, George and Pavlakou, Theo and Murray, Iain , year = 2017, volume =. Masked. Advances in

  259. [268]

    Invertible

    Teng, Yunfei and Choromanska, Anna , year = 2019, month = mar, journal =. Invertible. doi:10.3390/computation7020020 , urldate =

  260. [269]

    Advances in

    Midgley, Laurence and Stimper, Vincent and Antor. Advances in. doi:10.52202/075280-3466 , urldate =

  261. [270]

    Equivariant Flow Matching , booktitle =

    Klein, Leon and Kr. Equivariant Flow Matching , booktitle =. doi:10.52202/075280-2617 , urldate =

  262. [271]

    Hong, Seongmin and Chun, Se Young , year = 2023, month = jun, journal =. Neural. doi:10.1609/aaai.v37i10.26441 , urldate =

  263. [272]

    Malnick, Shimon and Avidan, Shai and Fried, Ohad , year = 2024, month = jan, pages =. Taming. 2024. doi:10.1109/WACV57701.2024.00458 , urldate =

  264. [273]

    Computer

    Tschannen, Michael and Eastwood, Cian and Mentzer, Fabian , editor =. Computer. doi:10.1007/978-3-031-72998-0_17 , urldate =

  265. [274]

    Grover, Aditya and Dhar, Manik and Ermon, Stefano , year = 2018, month = apr, journal =. Flow-. doi:10.1609/aaai.v32i1.11829 , urldate =

  266. [275]

    doi:10.1109/ICASSP49357.2023.10095301 , urldate =

    Mosi. doi:10.1109/ICASSP49357.2023.10095301 , urldate =

  267. [276]

    Distilling

    Walton, Steven and Klyukin, Valeriy and Artemev, Maksim and Derkach, Denis and Orlov, Nikita and Shi, Humphrey , year = 2025, month = jun, pages =. Distilling. 2025. doi:10.1109/CVPRW67362.2025.00316 , urldate =

  268. [277]

    Feng, Shibo and Miao, Chunyan and Xu, Ke and Wu, Jiaxiang and Wu, Pengcheng and Zhang, Yang and Zhao, Peilin , year = 2024, month = may, journal =. Multi-. doi:10.1109/TKDE.2023.3319672 , urldate =

  269. [278]

    Towards a

    Hutter, Marcus , editor =. Towards a. Machine. doi:10.1007/3-540-44795-4_20 , urldate =

  270. [279]

    He, Kaiming and Zhang, Xiangyu and Ren, Shaoqing and Sun, Jian , year = 2016, month = jun, pages =. Deep. 2016. doi:10.1109/CVPR.2016.90 , urldate =

  271. [280]

    Hinton, Geoffrey , year = 2023, month = feb, journal =. How to. doi:10.1162/neco_a_01557 , urldate =

  272. [281]

    Long, Lin and Wang, Rui and Xiao, Ruixuan and Zhao, Junbo and Ding, Xiao and Chen, Gang and Wang, Haobo , year = 2024, pages =. On. Findings of the. doi:10.18653/v1/2024.findings-acl.658 , urldate =

  273. [282]

    Patch n'

    Dehghani, Mostafa and Mustafa, Basil and Djolonga, Josip and Heek, Jonathan and Minderer, Matthias and Caron, Mathilde and Steiner, Andreas and Puigcerver, Joan and Geirhos, Robert and Alabdulmohsin, Ibrahim and Oliver, Avital and Padlewski, Piotr and Gritsenko, Alexey and Luc...

  274. [283]

    Yu, Weihao and Wang, Xinchao , year = 2025, month = jun, pages =. 2025. doi:10.1109/CVPR52734.2025.00423 , urldate =

  275. [284]

    Computer

    Zeng, Fangao and Dong, Bin and Zhang, Yuang and Wang, Tiancai and Zhang, Xiangyu and Wei, Yichen , editor =. Computer. doi:10.1007/978-3-031-19812-0_38 , urldate =

  276. [285]

    Xu, Mingle and Yoon, Sook and Fuentes, Alvaro and Park, Dong Sun , year = 2023, month = may, journal =. A. doi:10.1016/j.patcog.2023.109347 , urldate =

  277. [287]

    doi:10.1088/1742-5468/ac9830 , urldate =

    Journal of Statistical Mechanics: Theory and Experiment , volume =. doi:10.1088/1742-5468/ac9830 , urldate =

  278. [289]

    Russakovsky, Olga and Deng, Jia and Su, Hao and Krause, Jonathan and Satheesh, Sanjeev and Ma, Sean and Huang, Zhiheng and Karpathy, Andrej and Khosla, Aditya and Bernstein, Michael and Berg, Alexander C. and. International Journal of Computer Vision , volume =. doi:10.1007/s1...

  279. [290]

    Li, Yanghao and Wu, Chao-Yuan and Fan, Haoqi and Mangalam, Karttikeya and Xiong, Bo and Malik, Jitendra and Feichtenhofer, Christoph , year = 2022, month = jun, pages =. 2022. doi:10.1109/CVPR52688.2022.00476 , urldate =

  280. [292]

    Squeeze-and-

    Hu, Jie and Shen, Li and Sun, Gang , year = 2018, month = jun, pages =. Squeeze-and-. 2018. doi:10.1109/CVPR.2018.00745 , urldate =

  281. [293]

    and Gal, Yarin , year = 2023, month = jun, pages =

    Mukhoti, Jishnu and Kirsch, Andreas and Van Amersfoort, Joost and Torr, Philip H.S. and Gal, Yarin , year = 2023, month = jun, pages =. Deep. 2023. doi:10.1109/CVPR52729.2023.02336 , urldate =

  282. [294]

    Learning

    Gidaris, Spyros and Bursuc, Andrei and Komodakis, Nikos and Perez, Patrick and Cord, Matthieu , year = 2020, month = jun, pages =. Learning. 2020. doi:10.1109/CVPR42600.2020.00696 , urldate =

  283. [296]

    Pinto, Francesco and Torr, Philip H. S. and K. Dokania, Puneet , editor =. An. Computer. doi:10.1007/978-3-031-19778-9_27 , urldate =

  284. [297]

    Hyperbolic

    Peng, Wei and Varanka, Tuomas and Mostafa, Abdelrahman and Shi, Henglin and Zhao, Guoying , year = 2022, month = dec, journal =. Hyperbolic. doi:10.1109/TPAMI.2021.3136921 , urldate =

  285. [298]

    , editor =

    Liu, Nan and Li, Shuang and Du, Yilun and Torralba, Antonio and Tenenbaum, Joshua B. , editor =. Compositional. Computer. doi:10.1007/978-3-031-19790-1_26 , urldate =

  286. [299]

    Graham, Ben and. 2021. doi:10.1109/ICCV48922.2021.01204 , urldate =

  287. [300]

    Inception

    Si, Chenyang and Yu, Weihao and Zhou, Pan and Zhou, Yichen and Wang, Xinchao and Yan, Shuicheng , year = 2022, pages =. Inception. Advances in. doi:10.52202/068431-1707 , urldate =

Pith tools

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