Pith. sign in

REVIEW 3 major objections 6 minor 44 references

A Variational Information Theoretic Approach to Out-of-Distribution Detection

T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read A variational information-theoretic loss defines OOD detection features as optimal random features, and predicts a piecewise-linear shaping function that outperforms element-wise baselines.

desk verdict A serious theory paper whose empirical confirmation is weaker than claimed, but the framework is worth engaging with. read the letter →

arxiv 2506.14194 v1 pith:KYH36PTQ submitted 2025-06-17 cs.LG

classification cs.LG
keywords out-of-distributiondetectionfeatureshapingvariationaloptimizationinformationbottleneckKullback-Leiblerdivergencerandomfeaturespiecewise-linear
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

Out-of-distribution detection usually gets its features from hand-crafted, elementwise shaping rules that clip or prune a network's penultimate-layer activations, and the rules are justified mostly by experiments. This paper tries to replace that empiricism with a theory: it defines the OOD feature as a random variable whose conditional distribution minimizes a loss that maximizes the symmetrized KL divergence between in-distribution and OOD feature densities while an Information Bottleneck penalty keeps the feature compressed and informative. Optimizing this functional by the calculus of variations, the authors derive the gradient descent and show that under Gaussian, Laplacian, or inverse-Gaussian assumptions on the OOD distribution, the optimal mean feature is nearly a piecewise-linear shaping function with the same qualitative parts—zeroing small values, a positive slope in the middle, and clipping or a negative slope at large values—that appear in ReAct, VRA, ASH, and FS-OPT. They then tune the parameters of that piecewise-linear family on validation OOD data and report it beating the element-wise shaping baselines across ImageNet and CIFAR benchmarks. If the theory holds, it tells practitioners which shaping rule to expect under which OOD statistics and gives a principled way to design new rules.

What carries the argument

The load-bearing object is the loss functional defined on the conditional feature distribution $p(\tilde z|z)$, with the Markov chain $Y \to X \to Z \to \tilde Z$ supplying the structure for both terms. The KL term forces the distributions of the shaped feature under ID ($Y=0$) and OOD ($Y=1$) apart; the Information Bottleneck term $I(Z;\tilde Z)-\beta I(\tilde Z;Y)$ prevents the separation from discarding OOD-relevant information, and without it the KL-only objective is ill-posed. The technical machinery is variational: Theorem 3.1 gives the gradient of both terms with respect to $p(\tilde z|z)$, Theorem 3.2 converts that into gradients for the mean $\mu(z)$ and conditional standard deviation $\sigma_c(z)$ of a Gaussian random feature, and the elementwise factorization reduces the infinite-dimensional problem to independent 1D optimizations. The output that reaches practice is the mean curve $\mu(z)$, which the paper fits into a piecewise-linear family and tunes on validation OOD data before applying the same scalar function to every feature coordinate.

What would settle it

On a real pretrained network, fit the true per-channel (or joint) distributions of penultimate-layer features for ID and OOD validation data, run Algorithm 1 separately per channel, and compare the resulting mean shaping curves with the single shared piecewise-linear function. If the shared scalar curve stays near-optimal despite strong channel-to-channel differences and correlation, the factorization is not load-bearing; if per-channel optima differ widely and the shared curve degrades on the OOD benchmarks, the elementwise-independence premise is doing the work that the theory attributes to the variational loss.

Watch

Extended reading notes

Core claim

The central claim is that the right target for OOD feature design is the variational problem $$L(p(\tilde z|z)) = -D_{\mathrm{KL}}(p(\tilde z|z)) + \$\alpha$\,\mathrm{IB}(p(\tilde z|z)),$$ where the first term is the symmetrized KL divergence between the feature densities under ID and OOD data and the second is the Information Bottleneck $I(Z;\tilde Z) - \beta I(\tilde Z;Y)$. Because optimizing over distributions is infinite-dimensional, the paper derives gradient formulas by the calculus of variations and then restricts $p(\tilde z|z)$ to Gaussian random features $\mathcal{N}(\mu(z), \sigma_c(z))$, so the deterministic shaping functions used in the literature become the mean of a random feature. Under the elementwise-independence assumptions of Section 3.1, each component obeys the same 1D optimization, and the optimized mean follows a piecewise-linear family whose shape depends on the OOD distribution: Gaussian OOD gives a positive slope for small $|z|$ with clipping or negative slope at large $|z|$, while heavier-tailed Laplacian and inverse-Gaussian OOD give suppression of small values plus clipping of large values. The paper concludes that ReAct, VRA, and ASH correspond to different implicit distributional assumptions and regularization levels, and that a tuned member of the piecewise-linear family achieves the best FPR95 and AUROC among elementwise feature-shaping methods on the ImageNet-1k and CIFAR-10/100 benchmarks tested.

Load-bearing premise

The derivation assumes the feature components are conditionally independent and identically distributed given the in/out label and are processed by one shared scalar function; real penultimate-layer features are correlated and heterogeneous, and the paper's own Appendix H shows empirical feature distributions with heavy mass at zero and skew that depart from the assumed Gaussian and Laplacian forms.

Editorial extensions

If this is right

  • Existing shaping rules are explained rather than assumed: ReAct-style clipping corresponds to high Information Bottleneck regularization under Gaussian-like OOD data, while VRA- and ASH-style suppression of small values corresponds to heavier-tailed OOD distributions.
  • Noisier OOD data should be met with stronger IB regularization, which flattens the shaping function; the paper's additive-Gaussian-noise experiment shows that optimal shaping functions at higher noise levels have lower IB.
  • The piecewise-linear family, tuned by minimizing FPR95 on validation OOD data, reaches the best results among elementwise feature-shaping methods on the ImageNet-1k and CIFAR-10/100 benchmarks across ResNet-50, MobileNet-V2, ViT-B-16, and ViT-L-16.
  • The framework generates new features by choosing an assumed OOD distribution: different distributional assumptions yield different shaping curves, so new detection rules can be designed by assumption rather than by hand.
  • The optimized conditional standard deviation is nonzero in every simulation reported, which implies random (not purely deterministic) feature shaping is preferable under the loss, leaving information on the table in current deterministic methods.

Reading between the lines

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

  • The paper exploits only the mean of the random feature; since the optimized $\sigma_c(z)$ is reported nonzero in all simulations, a natural extension the authors leave implicit is to build OOD scores from the variance or from samples of the predicted feature distribution.
  • Because Laplacian and inverse-Gaussian OOD assumptions produce suppression of small values, a practical selection rule follows: estimate the tail-heaviness of expected OOD activations and choose a clipping-style or pruning-style member of the piecewise-linear family accordingly.
  • The inverse-Gaussian model is constructed to place mass where the Gaussian ID distribution has little mass, which suits noise-like OOD inputs but is less clearly suited to semantic shift in which new classes activate overlapping feature directions; testing the same variational loss on a semantic-shift OOD model would delimit the family's reach.
  • Appendix H shows several benchmarks whose empirical feature distributions depart from the paper's assumed forms, yet the method still performs well, suggesting the piecewise-linear shape is more robust than its derivation; a deliberate stress test with increasingly correlated or multimodal features would show where that robustness ends.
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 / 6 minor

Summary. The paper proposes a variational information-theoretic framework for designing OOD detection features. The loss combines a symmetrized KL divergence between ID and OOD feature distributions with an Information Bottleneck regularizer. Using calculus of variations, the authors derive gradients and, under element-wise independence assumptions, reduce the problem to 1D per-component optimization. Based on simulations with Gaussian, Laplacian, and Inverse-Gaussian OOD assumptions, they observe that optimal mean shaping functions fall into a piecewise-linear family, and they propose a new shaping function from this family whose hyperparameters are tuned on OOD validation data. Experiments on ImageNet and CIFAR benchmarks show that the new function achieves state-of-the-art results among element-wise feature shaping methods.

Significance. If the predictive claim is sustained, the framework would be a valuable step toward principled, explainable OOD feature design, unifying several existing rule-based methods (ReAct, VRA, ASH) as special cases under different distributional assumptions. The paper contains substantial technical contributions: detailed calculus-of-variations derivations (Appendix C), a closed-form 1D Gaussian analysis (Appendix A) showing the loss is well-posed, and high-quality benchmarks across multiple architectures. The explicit acknowledgment of distribution-mismatch cases (Appendix H) is a strength. However, the link between the theory and the evaluated method is currently qualitative: the tested function is a seven-parameter spline tuned on the OOD validation set, so the experiments do not yet demonstrate that the theory-predicted shape—rather than the flexibility of the family—drives the performance gains.

major comments (3)
  1. [Section 5, Table 3, Figure 4] The central claim that the theory predicts a new shaping function is not fully supported. The deployed method is a seven-parameter piecewise linear function whose parameters (y0, y1a, z1, y1b, m1, z2, m2) are tuned by Bayesian optimization on the OOD validation split to minimize FPR95 (Section 5, Table 3). The theory constrains only the coarse qualitative form in Figure 4; no parameter value is predicted. To substantiate the prediction claim, the paper should include an ablation that tunes a generic flexible family (e.g., a cubic spline or a piecewise linear function with the same number of knots but no theory-derived shape) on the same validation data and compare performance. If the generic spline performs equally well, the gains cannot be attributed to the theory; if the theory-predicted shape is better, the claim is strengthened.
  2. [Section 3.1, Appendix B, Appendix H] The element-wise independence assumption (p(˜z|z) = ∏ p(˜z_i|z_i) and p(z|y) = ∏ p(z_i|y)) is load-bearing because it justifies applying the same scalar shaping function to all feature components. The paper acknowledges this as a simplification, but Appendix H shows that real penultimate-layer features depart from the assumed forms (e.g., heavy zero mass, skew, different distribution families across datasets). As the derivation in Appendix B relies on factorization, the formal optimality result does not apply to correlated, non-identically distributed features. Please add a discussion or experiment addressing this gap, e.g., by comparing the single scalar function against per-dimension tuned functions, or by applying the method after whitening/decorrelating features and showing the impact on performance.
  3. [Section 5, Section 6] The theory's direct prescriptive case—where ID/OOD distributions are known and Algorithm 1 is run to compute the optimal mean function—is never evaluated. The experiments only use the unknown-distribution case with the fitted piecewise family (Section 5). Reporting results for the known-distribution case (using estimated or ground-truth distributions from the simulations in Section 4) would provide a direct test of whether the variational optimization yields a competitive shaping function, and would help separate the theory's predictive power from the fitted family's flexibility.
minor comments (6)
  1. [Abstract and Section 6] The claim that the method 'out-performs existing ones' is overbroad when ASH variants are included; for example, in Table 1 (ResNet-50) ASH-S achieves FP=34.70 vs Ours=35.82, and in Table 2 (CIFAR100/DenseNet) ASH-S achieves FP=52.41 vs Ours=64.15. The body properly qualifies the comparison to element-wise feature shaping methods; the abstract should do the same.
  2. [Appendix A, Figure 6 caption] The caption states 'L = DKL + αIB where α = 0.5', which contradicts the main-text definition L = -D_KL + α·IB (Eq. 5) and the appendix's own derivation (which uses α=1). Please correct the sign and the value.
  3. [Algorithm 1] In the expression for ∇p(˜z|z)L(˜z_i^j, z_i), the term 'l(zi)-1' should be typeset as l(zi)^{-1} to match Theorem 3.1; the current formatting is ambiguous.
  4. [Table 2] The method name 'BFact' is inconsistent with 'BFAct' used in Table 1 and the text.
  5. [Section 1.1] The parenthetical '(Zhang et al.)' is ambiguous because the bibliography contains two distinct Zhang entries; please cite the specific paper (e.g., Zhang, Lu, Peng, Fang, and Cheung, 2024).
  6. [Section 6, 'Regularization as a Function of OOD Data'] This subsection reports only qualitative plots; please include quantitative results (e.g., FPR95 vs noise level) to support the claim that higher noise requires stronger IB regularization.

Circularity Check

1 steps flagged · score 6.0 of 10

The 'predicted' shaping function is a seven-parameter spline tuned on OOD validation data, so the benchmark gains reflect fitted flexibility rather than a parameter-free theoretical forecast.

  1. fitted input called prediction [Section 4 (Piecewise Linear Shaping); Section 5 (Implementation of New OOD Detection); Abstract]
    "The above mean shaping functions (from Gaussian, Laplace and Inverse Gaussian OOD distributions) all approximately fit in a particular piecewise linear function family as shown in Figure 4, where z1, z2, y0, y1a, y1b, m1, m2 are hyperparameters. ... The hyper-parameters for the piecewise family are tuned by e.g., minimizing the false positive rate at true positive rate of 95% (FPR95) metric on the validation set - this gives the optimal shaping function µ*."

    The abstract's load-bearing claim is that 'our theory can predict a new shaping function that out-performs existing ones on OOD benchmarks.' But the function whose performance is reported is not a specific theoretical prediction: it is a seven-parameter piecewise-linear family admitted post hoc because simulated optimizers 'approximately fit' it, and none of its parameter values are fixed by the variational derivation. The concrete µ* used in Tables 1 and 2 is obtained by Bayesian optimization of the FPR95 metric on an OOD validation set (Gaussian-noise images for ImageNet, an iSUN subset for CIFAR), so the same criterion that defines the method is fitted before being reported on test OOD sets.

full rationale

The variational derivation itself is not circular: the loss functional (5), the gradient theorems in Section 3.2, and the Gaussian random-feature model are stated independently of the benchmark results, and the simulations in Section 4 genuinely illustrate qualitative properties such as clipping, suppression of small values, and negative slopes. The paper also honestly acknowledges in Appendix H that some empirical feature distributions do not match its Gaussian/Laplacian/IG assumptions. The central circularity risk is confined to the benchmark claim. The Figure 4 family is introduced as an approximation that 'approximately encompasses' simulated optimizers, and Section 5 states that its seven hyperparameters are tuned by minimizing FPR95 on validation OOD data before the same metric is reported on test OOD data. Consequently, Tables 1 and 2 cannot separate 'the theory predicted the correct shape' from 'a flexible seven-parameter spline tuned on validation OOD performs well.' That is the fitted-input-called-prediction pattern, and it is the only substantial circularity found. The element-wise independence factorization of Section 3.1 is an explicit assumption whose realism is questionable, but an unrealistic assumption is a correctness risk, not a circular step. There are no load-bearing self-citations or author-imported uniqueness theorems, so the score is 6 rather than higher.

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

The ledger shows that the theoretical framework is built on hand-chosen distributional assumptions and hyperparameters (α, β, simulation parameters), while the empirical success is carried by seven per-benchmark fitted hyperparameters. The theory contributes the shape family and a causal story connecting distributions to shaping behavior, but it does not contribute the parameter values that yield the reported numbers.

free parameters (4)
  • α (IB weight in loss L = -D_KL + α·IB) = 1.0 or 3.0 in Section 4 simulations; not tuned in final method
    Hyperparameter controlling the Information Bottleneck regularization; chosen by hand in the synthetic studies.
  • β (weight on -I(˜Z;Y) within IB) = 10 in most simulations, varied in Appendix E.1
    Controls how much OOD-relevant information is retained; hand-chosen in the synthetic studies.
  • Piecewise-linear shaping hyperparameters (y0, y1a, z1, y1b, m1, z2, m2) = Per-model values in Table 3, e.g., ResNet-50 ImageNet: 0.0, 0.0, 0.52, 0.73, 0.61, 1.2, -0.3
    Tuned by Bayesian optimization on validation OOD sets (Gaussian noise for ImageNet, iSUN subset for CIFAR) to minimize FPR95; these carry the empirical performance of the method.
  • Section 4 simulation distribution parameters (µ0, µ1, σ; Laplace b; IG µ1, λ) = e.g., µ0=-0.5, µ1=0.5, σ=0.5; Lap(0,1); IG(d(z);3.3,15)
    Hand-chosen for illustrations; the shapes in Figure 2 depend on these choices, which motivates the piecewise-linear family.
assumptions (5)
  • domain assumption Markov chain Y → X → Z → ˜Z holds
    Stated in Section 2; required for the Information Bottleneck formulation I(˜Z;Y) and for p(˜z|z,y)=p(˜z|z).
  • domain assumption Element-wise independence and identical conditional distributions: p(˜z|z)=∏ p(˜zi|zi) and p(z|y)=∏ p(zi|y)
    Section 3.1 reduces the infinite-dimensional problem to per-dimension 1D losses; known to be false for correlated network features, but adopted to make optimization tractable.
  • domain assumption OOD feature conditional distribution is Gaussian: p(˜z|z) ~ N(µ(z), σc(z))
    Equation (12); treats the shaped feature as a random perturbation of a deterministic shaping function µ(z).
  • domain assumption ID features are Gaussian and OOD features are Gaussian, Laplacian, or Inverse Gaussian in the theoretical study
    Section 4; the empirical distribution plots in Appendix H show that several real benchmarks deviate from these forms, which is acknowledged by the authors.
  • domain assumption Validation OOD sets (Gaussian noise for ImageNet; iSUN subset for CIFAR) are representative of test OOD data
    Section 6; hyperparameters are tuned on these sets, and generalization to test OOD is assumed.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A Variational Information Theoretic Approach to Out-of-Distribution Detection." pith.science (2026). https://pith.science/paper/KYH36PTQ

@misc{pith2026250614194,
  author       = {Pith},
  title        = {Pith review of: A Variational Information Theoretic Approach to Out-of-Distribution Detection},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/KYH36PTQ}},
  note         = {Machine review of arXiv:2506.14194}
}
read the original abstract

We present a theory for the construction of out-of-distribution (OOD) detection features for neural networks. We introduce random features for OOD through a novel information-theoretic loss functional consisting of two terms, the first based on the KL divergence separates resulting in-distribution (ID) and OOD feature distributions and the second term is the Information Bottleneck, which favors compressed features that retain the OOD information. We formulate a variational procedure to optimize the loss and obtain OOD features. Based on assumptions on OOD distributions, one can recover properties of existing OOD features, i.e., shaping functions. Furthermore, we show that our theory can predict a new shaping function that out-performs existing ones on OOD benchmarks. Our theory provides a general framework for constructing a variety of new features with clear explainability.

Figures

Figures reproduced from arXiv: 2506.14194 by the authors.

Figure 1
Figure 1. OOD Gaussian Feature Under Gaussian ID/OOD Distri￾butions. Mean (left), standard deviation (right) of the feature. case is beneficial in terms of the loss. In fact, in all of our simulations across distributions and their hyperparameters, we’ve observed non-zero standard deviation. In [PITH_FULL_IMAGE:figures/full_fig_p006_1.png] view at source ↗
Figure 2
Figure 2. The mean of the OOD Gaussian Feature under the Gaussian (left), Laplace (middle) and Inverse Gaussian (right) OOD distributions for varying weights on the Information Bottleneck, α. For all plots, β = 10. For the Gaussian case, p(z|0) ∼ N (−0.5, 0.5) and p(z|1) ∼ N (0.5, 0.5). For the Laplace case, p(z|0) ∼ N (0, 0.66) and p(z|1) ∼ Lap(0, 1). In the Inverse Gaussian case, p(z|0) ∼ N (0, 0.66) and p(z|1) ∼ IG(d(z); 3… view at source ↗
Figure 3
Figure 3. Plot of existing feature shaping functions from SoA meth￾ods: ReAct (Sun et al., 2021), VRA (Xu et al., 2023), FS-Opt (Zhao et al., 2024), and variants of ASH (Djurisic et al., 2022) [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (12 more)
Figure 4
Figure 4. Figure 4: A piece-wise linear family of functions that approxi￾mately encompasses the mean value of our OOD feature shaping functions across OOD distributions examined in this paper. and unknown. In the latter case, we apply the piecewise family of feature shaping derived in the…
Figure 5
Figure 5. Figure 5: IB for the optimal hyperparameter optimized shaping function as a function of the noise level of OOD data. Lower IB corresponds to a more regularized shaping function. and a regularization based on the Information Bottleneck. We have related the optimal features to sev…
Figure 6
Figure 6. Figure 6: Loss function for the 1D Gaussian case. Note µ0 − µ1 = 1, σ = σc = 1, and β = 1. Note L = DKL + αIB where α = 0.5. where G˜(z) = p(Y = 1)G(z; 0, 1) + p(Y = 0)G(z; µ ′ , 1) (50) σ 2 z˜ = σ 2 c + W2σ 2 (51) µ ′ = W(µ0 − µ1) σz˜ . (52) We show the plot of this loss functi…
Figure 7
Figure 7. Figure 7: Plot of Inverse Gaussian (IG) distribution, p(z|1) ∼ IG(d(z); µ, λ), under different parameters with a Gaussian (blue). Note that IG has high probability where the Gaussian does not. Therefore, ∇p(˜z|z) IB = p(z) log p(˜z|z) p(˜z) − β X y∈{0,1} p(y)p(z|y) log p(˜z|y) p…
Figure 8
Figure 8. Figure 8: The mean of the OOD Gaussian Random Feature under the Gaussian (left), Laplace (middle) and Inverse Gaussian (right) distributions for the OOD distribution. Different curves on the same plot indicate differing weights on the I(Z˜; Y ) component of the Information Bottl…
Figure 9
Figure 9. Figure 9: The mean of the OOD Gaussian Random Feature under the Gaussian (left), Laplace (middle) and Inverse Gaussian (right) distributions for the OOD distribution. Different curves on the same plot indicate different OOD distribution parameters. The weight on the IB term and …
Figure 10
Figure 10. Figure 10: Visualization of a sample image from ImageNet validation split under different levels of noise corruption (σ values). 19 [PITH_FULL_IMAGE:figures/full_fig_p019_10.png]
Figure 11
Figure 11. Figure 11: The network activations of ImageNet with different levels of additive Gaussian noises. The shaded regions in (a) represent one standard deviation above and below the mean, while those in (b) represent the range of min and max values of activations. With more noises, a…
Figure 12
Figure 12. Figure 12: Distribution of features from the penultimate layer of ViT-B-16. Comparison with In-distribution data (ImageNet-1k) and different test OOD datasets in the ImageNet-1k benchmark (Zhao et al., 2024). The ID and OOD distributions resemble the positive part of a Gaussian …
Figure 13
Figure 13. Figure 13: Distribution of features from the penultimate layer of ResNet-50. Comparison with In-distribution data (ImageNet-1k) and different test OOD datasets in the ImageNet-1k benchmark (Zhao et al., 2024). The ID distribution resembles the positive part of a Gaussian and the…
Figure 14
Figure 14. Figure 14: Distribution of features from the penultimate layer of MobileNet-V2. Comparison with In-distribution data (ImageNet-1k) and different test OOD datasets in the ImageNet-1k benchmark (Zhao et al., 2024). The ID and OOD both appear Laplacian; although this does not fit t…
Figure 15
Figure 15. Figure 15: Distribution of features from the penultimate layer of ViT-L-16. Comparison with In-distribution data (ImageNet-1k) and different test OOD datasets in the ImageNet-1k benchmark (Zhao et al., 2024). The ID and OOD distributions appear Gaussian but with heavy weight on …

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

44 extracted references · 22 canonical work pages

  1. [1]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...

  2. [2]

    H., Park, G.-M., and Kim, S

    Ahn, Y. H., Park, G.-M., and Kim, S. T. Line: Out-of-distribution detection by leveraging important neurons, 2023

  3. [3]

    Describing textures in the wild

    Cimpoi, M., Maji, S., Kokkinos, I., Mohamed, S., and Vedaldi, A. Describing textures in the wild. In 2014 IEEE Conference on Computer Vision and Pattern Recognition, pp.\ 3606--3613, 2014. doi:10.1109/CVPR.2014.461

  4. [4]

    Cover, T. M. Elements of information theory. John Wiley & Sons, 1999

  5. [5]

    The mnist database of handwritten digit images for machine learning research [best of the web]

    Deng, L. The mnist database of handwritten digit images for machine learning research [best of the web]. IEEE Signal Processing Magazine, 29 0 (6): 0 141--142, 2012. doi:10.1109/MSP.2012.2211477

  6. [6]

    and Taylor, G

    DeVries, T. and Taylor, G. W. Learning confidence for out-of-distribution detection in neural networks, 2018

  7. [7]

    Extremely simple activation shaping for out-of-distribution detection

    Djurisic, A., Bozanic, N., Ashok, A., and Liu, R. Extremely simple activation shaping for out-of-distribution detection. 2022. URL https://arxiv.org/abs/2209.09858

  8. [8]

    An image is worth 16x16 words: Transformers for image recognition at scale, 2021

    Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., Dehghani, M., Minderer, M., Heigold, G., Gelly, S., Uszkoreit, J., and Houlsby, N. An image is worth 16x16 words: Transformers for image recognition at scale, 2021. URL https://arxiv.org/abs/2010.11929

Show all 44 references
  1. [9]

    u gner, D., and G \

    Elflein, S., Charpentier, B., Z \"u gner, D., and G \"u nnemann, S. On out-of-distribution detection with energy-based models. arXiv preprint arXiv:2107.08785, 2021

  2. [10]

    Exploring the limits of out-of-distribution detection

    Fort, S., Ren, J., and Lakshminarayanan, B. Exploring the limits of out-of-distribution detection. In Ranzato, M., Beygelzimer, A., Dauphin, Y., Liang, P., and Vaughan, J. W. (eds.), Advances in Neural Information Processing Systems, volume 34, pp.\ 7068--7081. Curran Associat...

  3. [11]

    Exploring the limits of out-of-distribution detection

    Fort, S., Ren, J., and Lakshminarayanan, B. Exploring the limits of out-of-distribution detection. Advances in neural information processing systems, 34: 0 7068--7081, 2021 b

  4. [12]

    Frazier, P. I. A tutorial on bayesian optimization, 2018. URL https://arxiv.org/abs/1807.02811

  5. [13]

    Identity mappings in deep residual networks

    He, K., Zhang, X., Ren, S., and Sun, J. Identity mappings in deep residual networks. In Leibe, B., Matas, J., Sebe, N., and Welling, M. (eds.), Computer Vision -- ECCV 2016, pp.\ 630--645, Cham, 2016. Springer International Publishing

  6. [15]

    and Gimpel, K

    Hendrycks, D. and Gimpel, K. A baseline for detecting misclassified and out-of-distribution examples in neural networks, 2018 b . URL https://arxiv.org/abs/1610.02136

  7. [16]

    Natural adversarial examples

    Hendrycks, D., Zhao, K., Basart, S., Steinhardt, J., and Song, D. Natural adversarial examples. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp.\ 15262--15271, June 2021

  8. [17]

    Scaling out-of-distribution detection for real-world settings, 2022

    Hendrycks, D., Basart, S., Mazeika, M., Zou, A., Kwon, J., Mostajabi, M., Steinhardt, J., and Song, D. Scaling out-of-distribution detection for real-world settings, 2022. URL https://arxiv.org/abs/1911.11132

  9. [18]

    V., Aodha, O

    Horn, G. V., Aodha, O. M., Song, Y., Cui, Y., Sun, C., Shepard, A., Adam, H., Perona, P., and Belongie, S. The inaturalist species classification and detection dataset, 2018. URL https://arxiv.org/abs/1707.06642

  10. [19]

    Kirichenko, P., Izmailov, P., and Wilson, A. G. Why normalizing flows fail to detect out-of-distribution data. Advances in neural information processing systems, 33: 0 20578--20589, 2020

  11. [20]

    and Li, H

    Kong, H. and Li, H. Bfact: Out-of-distribution detection with butterworth filter rectified activations. In Sun, F., Cangelosi, A., Zhang, J., Yu, Y., Liu, H., and Fang, B. (eds.), Cognitive Systems and Information Processing, pp.\ 115--129, Singapore, 2023. Springer Nature Singapore

  12. [21]

    A simple unified framework for detecting out-of-distribution samples and adversarial attacks

    Lee, K., Lee, K., Lee, H., and Shin, J. A simple unified framework for detecting out-of-distribution samples and adversarial attacks. Advances in neural information processing systems, 31, 2018

  13. [22]

    Enhancing the reliability of out-of-distribution image detection in neural networks, 2020

    Liang, S., Li, Y., and Srikant, R. Enhancing the reliability of out-of-distribution image detection in neural networks, 2020. URL https://arxiv.org/abs/1706.02690

  14. [23]

    D., and Li, Y

    Liu, W., Wang, X., Owens, J. D., and Li, Y. Energy-based out-of-distribution detection, 2021. URL https://arxiv.org/abs/2010.03759

  15. [24]

    Netzer, Y., Wang, T., Coates, A., Bissacco, A., Wu, B., and Ng, A. Y. Reading digits in natural images with unsupervised feature learning. In NIPS Workshop on Deep Learning and Unsupervised Feature Learning 2011, 2011. URL http://ufldl.stanford.edu/housenumbers/nips2011_housen...

  16. [25]

    J., Fertig, E., Snoek, J., Poplin, R., Depristo, M., Dillon, J., and Lakshminarayanan, B

    Ren, J., Liu, P. J., Fertig, E., Snoek, J., Poplin, R., Depristo, M., Dillon, J., and Lakshminarayanan, B. Likelihood ratios for out-of-distribution detection. Advances in neural information processing systems, 32, 2019

  17. [26]

    C., and Fei-Fei, L

    Russakovsky, O., Deng, J., Su, H., Krause, J., Satheesh, S., Ma, S., Huang, Z., Karpathy, A., Khosla, A., Bernstein, M., Berg, A. C., and Fei-Fei, L. Imagenet large scale visual recognition challenge, 2015. URL https://arxiv.org/abs/1409.0575

  18. [27]

    Mobilenetv2: Inverted residuals and linear bottlenecks

    Sandler, M., Howard, A., Zhu, M., Zhmoginov, A., and Chen, L.-C. Mobilenetv2: Inverted residuals and linear bottlenecks. In 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 4510--4520, 2018. doi:10.1109/CVPR.2018.00474

  19. [28]

    and Li, Y

    Sun, Y. and Li, Y. Dice: Leveraging sparsification for out-of-distribution detection. In European Conference on Computer Vision, 2022

  20. [29]

    React: Out-of-distribution detection with rectified activations

    Sun, Y., Guo, C., and Li, Y. React: Out-of-distribution detection with rectified activations. Advances in Neural Information Processing Systems, 34: 0 144--157, 2021

  21. [30]

    Out-of-distribution detection with deep nearest neighbors

    Sun, Y., Ming, Y., Zhu, X., and Li, Y. Out-of-distribution detection with deep nearest neighbors. In International Conference on Machine Learning, pp.\ 20827--20840. PMLR, 2022

  22. [31]

    C., and Bialek, W

    Tishby, N., Pereira, F. C., and Bialek, W. The information bottleneck method. arXiv preprint physics/0004057, 2000

  23. [32]

    Torralba, A., Fergus, R., and Freeman, W. T. 80 million tiny images: A large data set for nonparametric object and scene recognition. IEEE Transactions on Pattern Analysis and Machine Intelligence, 30 0 (11): 0 1958--1970, 2008. doi:10.1109/TPAMI.2008.128

  24. [33]

    Troutman, J. L. Variational calculus and optimal control: optimization with elementary convexity. Springer Science & Business Media, 2012

  25. [34]

    Vim: Out-of-distribution with virtual-logit matching, 2022

    Wang, H., Li, Z., Feng, L., and Zhang, W. Vim: Out-of-distribution with virtual-logit matching, 2022. URL https://arxiv.org/abs/2203.10807

  26. [35]

    Energy-based out-of-distribution detection for graph neural networks

    Wu, Q., Chen, Y., Yang, C., and Yan, J. Energy-based out-of-distribution detection for graph neural networks. arXiv preprint arXiv:2302.02914, 2023

  27. [36]

    A., Oliva, A., and Torralba, A

    Xiao, J., Hays, J., Ehinger, K. A., Oliva, A., and Torralba, A. Sun database: Large-scale scene recognition from abbey to zoo. In 2010 IEEE Computer Society Conference on Computer Vision and Pattern Recognition, pp.\ 3485--3492, 2010. doi:10.1109/CVPR.2010.5539970

  28. [37]

    Vra: Variational rectified activation for out-of-distribution detection, 2023

    Xu, M., Lian, Z., Liu, B., and Tao, J. Vra: Variational rectified activation for out-of-distribution detection, 2023. URL https://arxiv.org/abs/2302.11716

  29. [38]

    A., Zhang, Y., Finkelstein, A., Kulkarni, S

    Xu, P., Ehinger, K. A., Zhang, Y., Finkelstein, A., Kulkarni, S. R., and Xiao, J. Turkergaze: Crowdsourcing saliency with webcam based eye tracking, 2015. URL https://arxiv.org/abs/1504.06755

  30. [39]

    Generalized out-of-distribution detection: A survey, 2022

    Yang, J., Zhou, K., Li, Y., and Liu, Z. Generalized out-of-distribution detection: A survey, 2022

  31. [40]

    Lsun: Construction of a large-scale image dataset using deep learning with humans in the loop, 2016

    Yu, F., Seff, A., Zhang, Y., Song, S., Funkhouser, T., and Xiao, J. Lsun: Construction of a large-scale image dataset using deep learning with humans in the loop, 2016. URL https://arxiv.org/abs/1506.03365

  32. [41]

    Learning to shape in-distribution feature space for out-of-distribution detection

    Zhang, Y., Lu, J., Peng, B., Fang, Z., and Cheung, Y.-m. Learning to shape in-distribution feature space for out-of-distribution detection. In The Thirty-eighth Annual Conference on Neural Information Processing Systems

  33. [42]

    Learning to shape in-distribution feature space for out-of-distribution detection

    Zhang, Y., Lu, J., Peng, B., Fang, Z., and ming Cheung, Y. Learning to shape in-distribution feature space for out-of-distribution detection. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024. URL https://openreview.net/forum?id=1Du3mMP5YN

  34. [43]

    and Xiang, X

    Zhang, Z. and Xiang, X. Decoupling maxlogit for out-of-distribution detection. In 2023 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp.\ 3388--3397, 2023. doi:10.1109/CVPR52729.2023.00330

  35. [44]

    Towards optimal feature-shaping methods for out-of-distribution detection

    Zhao, Q., Xu, M., Gupta, K., Asthana, A., Zheng, L., and Gould, S. Towards optimal feature-shaping methods for out-of-distribution detection. arXiv preprint arXiv:2402.00865, 2024

  36. [45]

    Places: A 10 million image database for scene recognition

    Zhou, B., Lapedriza, A., Khosla, A., Oliva, A., and Torralba, A. Places: A 10 million image database for scene recognition. IEEE Transactions on Pattern Analysis and Machine Intelligence, 40 0 (6): 0 1452--1464, 2018. doi:10.1109/TPAMI.2017.2723009

Pith tools

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