REVIEW 2 major objections 6 minor 68 references
Two activation subspaces beat OOD detection baselines
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
ActSub decomposes activations via SVD of the classifier head into decisive and insignificant subspaces, using cosine similarity on the insignificant part for far-OOD and shaped energy on the decisive part for near-OOD, achieving SOTA on standard benchmarks.
T0 review reviewed 2026-08-05 challenge →
load-bearing objection Solid, reproducible OOD detector built on a clean subspace decomposition; the main weaknesses are an asserted causal mechanism and missing error bars, but the empirical package deserves a serious referee. the 2 major comments →
Activation Subspaces for Out-of-Distribution Detection
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
The central discovery is that the SVD of the classification head's weight matrix W = UΣVᵀ defines two orthogonal subspaces: the first k right singular vectors span a decisive subspace that dominates the logits, and the remaining directions span an insignificant subspace that is nearly invisible to the loss. The paper claims that activations projected onto the insignificant subspace are 'untainted' by the cross-entropy objective, so in-distribution and out-of-distribution samples become more separable there than in the raw activation space; this shows up particularly for far-OOD data. Conversely, the decisive subspace is where activation shaping methods should operate, because insignificant d
What carries the argument
The SVD of the linear classification head's weight matrix (W = UΣVᵀ), whose right singular vectors are split into a decisive basis (top k) and an insignificant basis (the rest); activations are projected onto the two bases, with k chosen so the decisive and insignificant components have equal expected norm. The decisive projection is fed through an activation shaping function (e.g., SCALE) and scored by free energy, while the insignificant projection is scored by average cosine similarity to training activations; the two scores are combined multiplicatively with an exponent λ.
Load-bearing premise
The method assumes that the directions the classifier barely uses are untouched by training, so they behave like random, task-agnostic features; if cross-entropy training implicitly shapes those directions too, the gain of the insignificant subspace would vanish.
What would settle it
Train the same architecture on the same data with a loss that acts on the insignificant subspace directly—for instance, adding a small penalty that encourages the weight matrix's right singular vectors to spread uniformly, or using a supervised contrastive loss that shapes all activation directions—and measure the Far-OOD AUC of the insignificant-subspace score. If the advantage of ActSub's →S over raw-activation scores disappears or shrinks substantially, the 'untainted directions' posit is wrong; if the advantage persists even when those directions are explicitly regularized, the subspace ge
If this is right
- Far-OOD detection improves because OOD samples deviate more strongly in directions the classifier ignored than in the directions it aligned to during training.
- Near-OOD detection improves because activation shaping on the decisive component avoids interference from insignificant directions that change channel rankings without changing the model output.
- The method is post-hoc: it needs only the trained weights and a random subset of training activations, and works across backbones (ResNet-50, MobileNetV2, DenseNet-101, ViT-B/16) and OOD benchmarks.
- The subspace split is parameter-light: k is set automatically by balancing the norms of the two components, and the remaining λ is tuned on a small validation range.
- Since the two scores target different shift regimes, the product form makes the method robust to datasets where one component alone fails (e.g., Textures).
Where Pith is reading between the lines
- This suggests that the insignificant subspace could be reused as a general-purpose random-feature embedding for other novelty-detection tasks, such as detecting out-of-distribution samples in semantic segmentation, whenever the head is linear.
- A testable extension: if the Far-OOD advantage comes from training neglect, then training with a loss that shapes all right singular directions (e.g., contrastive or weight-decayed in the V basis) should weaken ActSub's insignificant-subspace score; if it does not, the geometry itself is the driver.
- The decomposition is not limited to classification backbones: any feature extractor with a linear probe on top can be split this way, so the method could transfer to self-supervised representations, where the classifier is trained on top of frozen features.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes ActSub, a post-hoc out-of-distribution (OOD) detection method that decomposes a network's penultimate-layer activations into decisive and insignificant components via SVD of the final linear classification head. The insignificant component is scored by average cosine similarity to training activations (Far-OOD), the decisive component is scored by energy on activation-shaped logits (Near-OOD), and the two scores are combined multiplicatively as ↔S = →S^λ · ←S. Experiments on ImageNet-1k (ResNet-50, MobileNetV2), CIFAR10/100 (DenseNet-101), and OpenOOD report improved AUC/FPR over prior baselines. The paper claims the insignificant subspace is 'untainted' by the classification objective, which is presented as the causal explanation for Far-OOD performance.
Significance. If the empirical results hold, ActSub is a simple and effective post-hoc detector that combines distance- and shaping-based cues. The paper's strengths are its extensive evaluation across backbones and benchmarks, ablations comparing SVD to PCA/null-space bases, sensitivity studies for data volume and the shaping parameter, and public code. The central theoretical claim—that the insignificant subspace behaves like random neural network features because training 'does not touch' those directions—is not established; Propositions 3.1 and 3.2 are asserted without proof or supporting training-dynamics evidence. The empirical method may still be valid, but the causal framing in the abstract and Section 3 currently overreaches.
major comments (2)
- [Sec. 3, Propositions 3.1 and 3.2; Eq. (6)] The 'untainted' premise is load-bearing for the central claim in the abstract and Section 3, but it is not supported. The nullspace argument applies to a fixed weight matrix; during training W itself changes, so directions in the final small-singular-value subspace are not guaranteed to have been unaffected by the loss. Moreover, the operative subspace is selected by the norm-balance criterion of Eq. (6), not by a singular-value threshold, so it can include directions with non-negligible impact on logits. Thus the statement that these directions 'only marginally affect the output' is not guaranteed for the subspace actually used. Please either (i) provide empirical evidence that the insignificant subspace's activation statistics are indistinguishable from those of a randomly initialized network, or (ii) reframe Propositions 3.1 and 3.2 as hypotheses and present the subspace decomposition
- [Sec. 4 and Supplementary Material (λ values, p tuning, Tab. 1 baseline selection)] The reported 'state-of-the-art' results rely on per-backbone hyperparameter tuning. The supplement states λ = 0.5, 1, 2 for MobileNetV2, ViT, and ResNet-50, and the shaping parameter p of SCALE is tuned on validation splits (Fig. 8). While disclosed, the main tables do not report the exact λ and p used for each result, and the sensitivity analysis is provided only for OpenOOD, not for the primary ImageNet-1k or CIFAR results. Additionally, baseline numbers in Tab. 1 are 'top results from the respective paper' rather than a unified implementation. To strengthen the SotA claim, please report the full hyperparameter settings for every experiment and, if possible, run baselines under a common codebase. The current presentation makes it difficult to judge whether the gains are due to the method itself or to more favorable hyperparameter selection.
minor comments (6)
- [Sec. 3.2, Eq. (7)] The number of nearest neighbors N is never specified. Eq. (7) uses N, and the text mentions a 10% random subset, but the actual N value used in experiments is missing. Please report it.
- [Sec. 3.1, Eq. (4)] The notation ←V^T and →V^T is ambiguous: these are n×n matrices with zero rows, not orthonormal bases. Clarify the dimensions and the projection operation to avoid confusion.
- [Sec. 3.1, Fig. 4] The text states that the smallest singular vector 'almost perfectly aligns' with the softmax-invariant direction 'for many backbone models,' but Fig. 4 only shows ResNet-50. Add analogous plots for MobileNetV2 and ViT or soften the claim.
- [Supplementary Table 8] There is a citation mismatch: 'SHE [37]' in the table appears to refer to [62], while [37] is GEN. Please correct the reference labels.
- [Sec. 3, Proposition labels] Items labeled 'Proposition 3.1' and 'Proposition 3.2' are not proven. In a technical paper, these should be called 'Observations' or 'Hypotheses' unless a proof is provided.
- [Tab. 1 footnote] Selecting 'top results from the respective paper' per baseline can introduce bias. Please provide a table listing the exact configuration (e.g., which variant of SCALE or fDBD, what hyperparameters) for each baseline entry.
Circularity Check
No significant circularity: the method is evaluated on external benchmarks, and the subspace scores are not defined in terms of the target OOD labels.
full rationale
The paper's derivation chain is self-contained. The SVD decomposition of the classifier head (Eq. 3) is a fixed linear-algebraic operation on the trained weights; the decisive/insignificant components (Eqs. 4–5) are defined by that decomposition, not by OOD labels. The score →S (Eq. 7) compares cosine similarities to ID training activations, and ←S (Eq. 9) is energy after activation shaping; neither is constructed from OOD test data. The combination ↔S (Eq. 10) is a simple product of the two scores. The hyperparameters k (Eq. 6) and λ are selected on ID training activations and a disclosed validation split, respectively, which is standard practice and is not a fit to the reported test benchmarks. The propositions in Sec. 3 are motivational posits rather than derivations, but they are not used to define the scores, so the unsupported causal explanation (the 'untainted' subspace story) does not make the empirical evaluation circular. The paper cites external work (e.g., null space analysis [8] and random neural networks [10]) without author overlap, and none of the load-bearing claims reduce to self-citation. Therefore the central SOTA claim is an empirical result against external benchmarks, not a consequence of the definitions.
Axiom & Free-Parameter Ledger
free parameters (5)
- k (subspace split index) =
Not reported numerically; chosen to balance norms via Eq. (6) on training activations
- lambda (score exponent) =
0.5 (MobileNetV2), 1 (ViT), 2 (ResNet-50); 0.5 for ViT with GEN
- Activation shaping hyperparameters (e.g., pruning percentage p of SCALE) =
Tuned in supplement; shown in sensitivity plots
- N (number of top similar training samples for cosine similarity) =
Unspecified in main text
- Random subset fraction for cosine similarity references =
10%
axioms (6)
- standard math The weight matrix W of a classifier admits an SVD W = UΣV^T whose right singular vectors span subspaces of decreasing importance to the logits.
- standard math For a linear classifier with n > c, the null space of W is non-trivial, providing exact output-invariant directions.
- domain assumption Cross-entropy training enforces activation alignment with class directions, leaving insignificant directions mostly unchanged from random initialization ('untainted').
- domain assumption The softmax-invariant direction p = W†1 aligns with the right singular vector corresponding to the smallest non-negative singular value.
- domain assumption Directions that only marginally affect the classifier output are useful for OOD detection (Proposition 3.1).
- domain assumption Insignificant directions interfere with activation shaping methods (Proposition 3.2).
Cite this review
Pith. "Pith review of Activation Subspaces for Out-of-Distribution Detection." pith.science (2026). https://pith.science/paper/2HLSBLSY
@misc{pith2026250821695,
author = {Pith},
title = {Pith review of: Activation Subspaces for Out-of-Distribution Detection},
year = {2026},
howpublished = {\url{https://pith.science/paper/2HLSBLSY}},
note = {Machine review of arXiv:2508.21695}
}
read the original abstract
To ensure the reliability of deep models in real-world applications, out-of-distribution (OOD) detection methods aim to distinguish samples close to the training distribution (in-distribution, ID) from those farther away (OOD). In this work, we propose a novel OOD detection method that utilizes singular value decomposition of the weight matrix of the classification head to decompose the model's activations into decisive and insignificant components, which contribute maximally, respectively minimally, to the final classifier output. We find that the subspace of insignificant components more effectively distinguishes ID from OOD data than raw activations in regimes of large distribution shifts (Far-OOD). This occurs because the classification objective leaves the insignificant subspace largely unaffected, yielding features that are ''untainted'' by the target classification task. Conversely, in regimes of smaller distribution shifts (Near-OOD), we find that activation shaping methods profit from only considering the decisive subspace, as the insignificant component can cause interference in the activation space. By combining two findings into a single approach, termed ActSub, we achieve state-of-the-art results in various standard OOD benchmarks.
Figures
Reference graph
Works this paper leans on
-
[1]
LINe: Out-of-distribution detection by leveraging important neurons
Yong Hyun Ahn, Gyeong-Moon Park, and Seong Tae Kim. LINe: Out-of-distribution detection by leveraging important neurons. In CVPR, pages 19852–19862, 2023. 2, 6, 7, iv
work page 2023
-
[2]
Sima Behpour, Thang Long Doan, Xin Li, Wenbin He, Liang Gou, and Liu Ren. GradOrth: A simple yet efficient out- of-distribution detection with orthogonal projection of gra- dients. In NeurIPS, 2023. 2
work page 2023
-
[3]
In or out? Fixing ImageNet out-of-distribution detection evalu- ation
Julian Bitterwolf, Maximilian M ¨uller, and Matthias Hein. In or out? Fixing ImageNet out-of-distribution detection evalu- ation. In ICML, pages 2471–2506, 2023. 7, i, ii
work page 2023
-
[4]
A random CNN sees objects: One inductive bias of CNN and its applications
Yun-Hao Cao and Jianxin Wu. A random CNN sees objects: One inductive bias of CNN and its applications. In AAAI, pages 194–202, 2022. 1
work page 2022
-
[5]
Robin Chan, Matthias Rottmann, and Hanno Gottschalk. Entropy maximization and meta classification for out-of- distribution detection in semantic segmentation. In ICCV, pages 5108–5117, 2021. 2
work page 2021
-
[6]
GAIA: Delving into gradient- based attribution abnormality for out-of-distribution detec- tion
Jinggang Chen, Junjie Li, Xiaoyang Qu, Jianzong Wang, Jiguang Wan, and Jing Xiao. GAIA: Delving into gradient- based attribution abnormality for out-of-distribution detec- tion. In NeurIPS, 2023. 2
work page 2023
-
[7]
Describing textures in the wild
Mircea Cimpoi, Subhransu Maji, Iasonas Kokkinos, Sammy Mohamed, and Andrea Vedaldi. Describing textures in the wild. In CVPR, pages 3606–3613, 2014. 5, 7, i, iv
work page 2014
-
[8]
Matthew Cook, Alina Zare, and Paul D. Gader. Outlier detection through null space analysis of neural networks. arXiv:2007.01263 [cs.LG], 2020. 1, 2, 3
Pith/arXiv arXiv 2007
-
[9]
ImageNet: A large-scale hierarchical image database
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. ImageNet: A large-scale hierarchical image database. In CVPR, pages 248–255, 2009. 3, 5, i, ii, iii
work page 2009
-
[10]
The separation capacity of random neural networks
Sjoerd Dirksen, Martin Genzel, Laurent Jacques, and Alexander Stollenwerk. The separation capacity of random neural networks. Int. J. Comput. Vision, 23(309):1–47, 2022. 1, 3
work page 2022
-
[11]
Extremely simple activation shaping for out- of-distribution detection
Andrija Djurisic, Nebojsa Bozanic, Arjun Ashok, and Rosanne Liu. Extremely simple activation shaping for out- of-distribution detection. In ICLR, 2023. 1, 2, 3, 6, 7, i, iv
work page 2023
-
[12]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Syl- vain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition at scale. In ICLR, 2021. i
work page 2021
-
[13]
Kernel PCA for out-of-distribution detection
Kun Fang, Qinghua Tao, Kexin Lv, Mingzhen He, Xiaolin Huang, and Jie Yang. Kernel PCA for out-of-distribution detection. In NeurIPS, 2024. 2, 5, 6, 7
work page 2024
-
[14]
WeiPer: OOD detection using weight perturbations of class projections
Maximilian Granz, Manuel Heurich, and Tim Landgraf. WeiPer: OOD detection using weight perturbations of class projections. In NeurIPS, 2024. 2, 7, iii, iv
work page 2024
-
[15]
Revisit PCA-based technique for out-of- distribution detection
Xiaoyuan Guan, Zhouwu Liu, Wei-Shi Zheng, Yuren Zhou, and Ruixuan Wang. Revisit PCA-based technique for out-of- distribution detection. In ICCV, pages 19374–19382, 2023. 1, 2, 5, 6, 7
work page 2023
-
[16]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, pages 770–778, 2016. 3, 5, i, ii
work page 2016
-
[17]
A baseline for detect- ing misclassified and out-of-distribution examples in neural networks
Dan Hendrycks and Kevin Gimpel. A baseline for detect- ing misclassified and out-of-distribution examples in neural networks. In ICLR, 2017. 1, 2, 5, 6, 7, iv
work page 2017
-
[18]
Dan Hendrycks, Mantas Mazeika, and Thomas G. Dietterich. Deep anomaly detection with outlier exposure. In ICLR,
-
[19]
The many faces of robustness: A criti- cal analysis of out-of-distribution generalization
Dan Hendrycks, Steven Basart, Norman Mu, Saurav Kada- vath, Frank Wang, Evan Dorundo, Rahul Desai, Tyler Zhu, Samyak Parajuli, Mike Guo, Dawn Song, Jacob Steinhardt, and Justin Gilmer. The many faces of robustness: A criti- cal analysis of out-of-distribution generalization. In ICCV, pages 8320–8329, 2021. ii
work page 2021
-
[20]
Scaling out-of-distribution detection for real-world settings
Dan Hendrycks, Steven Basart, Mantas Mazeika, Andy Zou, Joseph Kwon, Mohammadreza Mostajabi, Jacob Steinhardt, and Dawn Song. Scaling out-of-distribution detection for real-world settings. In ICML, pages 8759–8773, 2022. 1, 2
work page 2022
-
[21]
Energy-based Hopfield boosting for out-of-distribution detection
Claus Hofmann, Simon Schmid, Bernhard Lehner, Daniel Klotz, and Sepp Hochreiter. Energy-based Hopfield boosting for out-of-distribution detection. In NeurIPS, 2024. 2
work page 2024
- [22]
-
[23]
Gao Huang, Zhuang Liu, Laurens van der Maaten, and Kil- ian Q. Weinberger. Densely connected convolutional net- works. In CVPR, pages 770–778, 2017. 7
work page 2017
-
[24]
MOS: Towards scaling out-of- distribution detection for large semantic space
Rui Huang and Yixuan Li. MOS: Towards scaling out-of- distribution detection for large semantic space. In CVPR, pages 8710–8719, 2021. 2, 5
work page 2021
-
[25]
On the impor- tance of gradients for detecting distributional shifts in the wild
Rui Huang, Andrew Geng, and Yixuan Li. On the impor- tance of gradients for detecting distributional shifts in the wild. In NeurIPS, pages 677–689, 2021. 2
work page 2021
-
[26]
Batch Normalization: Accelerating deep network training by reducing internal co- variate shift
Sergey Ioffe and Christian Szegedy. Batch Normalization: Accelerating deep network training by reducing internal co- variate shift. In ICML, pages 448–456, 2015. 2
work page 2015
-
[27]
Directional convergence and alignment in deep learning
Ziwei Ji and Matus Telgarsky. Directional convergence and alignment in deep learning. In NeurIPS, 2020. 3
work page 2020
-
[28]
Donald E. Knuth. Two notes on notation. The American Mathematical Monthly, 99(5):403–422, 1992. 2
work page 1992
-
[29]
Learning multiple layers of features from tiny images
Alex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, University of Toronto, 2009. 7, ii, iii, iv
work page 2009
-
[30]
MNIST handwritten digit database, 2010
Yann LeCun, Corinna Cortes, and Chris Burges. MNIST handwritten digit database, 2010. ii
work page 2010
-
[31]
A simple unified framework for detecting out-of-distribution 9 samples and adversarial attacks
Kimin Lee, Kibok Lee, Honglak Lee, and Jinwoo Shin. A simple unified framework for detecting out-of-distribution 9 samples and adversarial attacks. In NeurIPS, pages 7167– 7177, 2018. 1, 2, 6
work page 2018
-
[32]
Se- TAR: Out-of-distribution detection with selective low-rank approximation
Yixia Li, Boya Xiong, Guanhua Chen, and Yun Chen. Se- TAR: Out-of-distribution detection with selective low-rank approximation. In NeurIPS, 2024. 2
work page 2024
-
[33]
Shiyu Liang, Yixuan Li, and R. Srikant. Enhancing the re- liability of out-of-distribution image detection in neural net- works. In ICLR, 2018. 1, 6, 7
work page 2018
-
[34]
MOOD: Multi- level out-of-distribution detection
Ziqian Lin, Sreya Dutta Roy, and Yixuan Li. MOOD: Multi- level out-of-distribution detection. In CVPR, pages 15313– 15323, 2021. 2
work page 2021
-
[35]
Fast decision boundary based out- of-distribution detector
Litian Liu and Yao Qin. Fast decision boundary based out- of-distribution detector. In ICML, 2024. 1, 2, 6
work page 2024
-
[36]
Weitang Liu, Xiaoyun Wang, John D. Owens, and Yixuan Li. Energy-based out-of-distribution detection. In NeurIPS,
-
[37]
GEN: Pushing the limits of softmax-based out-of-distribution de- tection
Xixi Liu, Yaroslava Lochman, and Christopher Zach. GEN: Pushing the limits of softmax-based out-of-distribution de- tection. In CVPR, pages 23946–23955, 2023. 1, 2, 7, i, ii, iii, iv
work page 2023
-
[38]
Learning with mixture of prototypes for out-of-distribution detection
Haodong Lu, Dong Gong, Shuo Wang, Jason Xue, Lina Yao, and Kristen Moore. Learning with mixture of prototypes for out-of-distribution detection. In ICLR, 2024. 2
work page 2024
-
[39]
How to exploit hyperspherical embeddings for out-of-distribution detection? In ICLR, 2023
Yifei Ming, Yiyou Sun, Ousmane Dia, and Yixuan Li. How to exploit hyperspherical embeddings for out-of-distribution detection? In ICLR, 2023. 2
work page 2023
-
[40]
Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bis- sacco, Bo Wu, and Andrew Y . Ng. Reading digits in natural images with unsupervised feature learning. In NIPS*2011. 7, iv
work page 2011
-
[41]
Nearest neighbor guidance for out-of-distribution detection
Jaewoo Park, Yoon Gyo Jung, and Andrew Beng Jin Teoh. Nearest neighbor guidance for out-of-distribution detection. In ICCV, pages 1686–1695, 2023. 2, 4, 6, 7
work page 2023
-
[42]
Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zem- ing Lin, Natalia Gimelshein, Luca Antiga, Alban Desmai- son, Andreas K ¨opf, Edward Z. Yang, Zachary DeVito, Mar- tin Raison, Alykhan Tejani, Sasank Chilamkurthy, Benoit Steiner, Lu Fang, Junjie Bai, and Soumith Chintala. Py- Torch: An imperative styl...
work page 2019
-
[43]
Liu, Abhijit Guha Roy, Shreyas Padhy, and Balaji Lakshminarayanan
Jie Ren, Stanislav Fort, Jeremiah Z. Liu, Abhijit Guha Roy, Shreyas Padhy, and Balaji Lakshminarayanan. A simple fix to Mahalanobis distance for improving near-OOD detection. arXiv:2106.09022 [cs.LG], 2021. iii
Pith/arXiv arXiv 2021
-
[44]
Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, San- jeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael S. Bernstein, Alexander C. Berg, and Li Fei-Fei. ImageNet large scale visual recognition chal- lenge. Int. J. Comput. Vision, 115(3):211–252, 2015. 3, 5, i, ii, iii
work page 2015
-
[45]
Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen
Mark Sandler, Andrew G. Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. MobileNetV2: Inverted residuals and linear bottlenecks. InCVPR, pages 4510–4520,
-
[46]
SSD: A unified framework for self-supervised outlier detection
Vikash Sehwag, Mung Chiang, and Prateek Mittal. SSD: A unified framework for self-supervised outlier detection. In ICLR, 2021. 2
work page 2021
-
[47]
L. S. Shapley. 17. A Value for n-Person Games, pages 307–
-
[48]
RankFeat: Rank-1 fea- ture removal for out-of-distribution detection
Yue Song, Nicu Sebe, and Wei Wang. RankFeat: Rank-1 fea- ture removal for out-of-distribution detection. In NeurIPS,
-
[49]
G. Strang. Linear Algebra and Its Applications . Thomson, Brooks/Cole, 2006. 3
work page 2006
-
[50]
DICE: Leveraging sparsification for out-of-distribution detection
Yiyou Sun and Yixuan Li. DICE: Leveraging sparsification for out-of-distribution detection. In ECCV, pages 691–708,
-
[51]
ReAct: Out-of- distribution detection with rectified activations
Yiyou Sun, Chuan Guo, and Yixuan Li. ReAct: Out-of- distribution detection with rectified activations. In NeurIPS,
-
[52]
Out-of- distribution detection with deep nearest neighbors
Yiyou Sun, Yifei Ming, Xiaojin Zhu, and Yixuan Li. Out-of- distribution detection with deep nearest neighbors. In ICML, pages 20827–20840, 2022. 1, 2, 6, 7, iii, iv
work page 2022
- [53]
-
[54]
Open-set recognition: A good closed-set classifier is all you need
Sagar Vaze, Kai Han, Andrea Vedaldi, and Andrew Zisser- man. Open-set recognition: A good closed-set classifier is all you need. In ICLR, 2022. 7
work page 2022
-
[55]
ViM: Out-of-distribution with virtual-logit matching
Haoqi Wang, Zhizhong Li, Litong Feng, and Wayne Zhang. ViM: Out-of-distribution with virtual-logit matching. In CVPR, pages 4911–4920, 2022. 2, 3, 5, 6, 7, iii
work page 2022
-
[56]
Ehinger, Aude Oliva, and Antonio Torralba
Jianxiong Xiao, James Hays, Krista A. Ehinger, Aude Oliva, and Antonio Torralba. SUN database: Large-scale scene recognition from abbey to zoo. In CVPR, pages 3485–3492,
-
[57]
Scaling for training time and post-hoc out-of-distribution de- tection enhancement
Kai Xu, Rongyu Chen, Gianni Franchi, and Angela Yao. Scaling for training time and post-hoc out-of-distribution de- tection enhancement. In ICLR, 2024. 1, 2, 3, 6, 7, i, ii, iii, iv
work page 2024
-
[58]
VRA: Variational rectified activation for out-of-distribution detec- tion
Mingyu Xu, Zheng Lian, Bin Liu, and Jianhua Tao. VRA: Variational rectified activation for out-of-distribution detec- tion. In NeurIPS, 2023. 1, 2, 3, 6
work page 2023
-
[59]
Ehinger, Yinda Zhang, Adam Finkel- stein, Sanjeev R
Pingmei Xu, Krista A. Ehinger, Yinda Zhang, Adam Finkel- stein, Sanjeev R. Kulkarni, and Jianxiong Xiao. TurkerGaze: Crowdsourcing saliency with webcam based eye tracking. arXiv:1504.06755 [cs.CV], 2015. 7, iv
Pith/arXiv arXiv 2015
-
[60]
Generalized out-of-distribution detection: A survey
Jingkang Yang, Kaiyang Zhou, Yixuan Li, and Ziwei Liu. Generalized out-of-distribution detection: A survey. Int. J. Comput. Vision, 132(12):5635–5662, 2024. 1
work page 2024
-
[61]
Discriminability-driven channel selection for out-of-distribution detection
Yue Yuan, Rundong He, Yicong Dong, Zhongyi Han, and Yilong Yin. Discriminability-driven channel selection for out-of-distribution detection. In CVPR, pages 26171–26180,
-
[62]
Jinsong Zhang, Qiang Fu, Xu Chen, Lun Du, Zelin Li, Gang Wang, Xiaoguang Liu, Shi Han, and Dongmei Zhang. Out- of-distribution detection based on in-distribution data pat- terns memorization with modern Hopfield energy. In ICLR,
-
[63]
OpenOOD v1.5: Enhanced benchmark for out-of-distribution detection
Jingyang Zhang, Jingkang Yang, Pengyun Wang, Haoqi Wang, Yueqian Lin, Haoran Zhang, Yiyou Sun, Xuefeng Du, Kaiyang Zhou, Wayne Zhang, Yixuan Li, Ziwei Liu, Yiran Chen, and Hai Li. OpenOOD v1.5: Enhanced benchmark for out-of-distribution detection. arXiv:2306.09301 [cs.LG],
-
[64]
Decoupling MaxLogit for out-of-distribution detection
Zihan Zhang and Xiang Xiang. Decoupling MaxLogit for out-of-distribution detection. In CVPR, pages 3388–3397,
-
[65]
Places: A 10 million image database for scene recognition
Bolei Zhou, `Agata Lapedriza, Aditya Khosla, Aude Oliva, and Antonio Torralba. Places: A 10 million image database for scene recognition. IEEE T. Pattern Anal. Mach. Intell. , 40(6):1452–1464, 2018. 5, 7, iv
work page 2018
-
[66]
Yao Zhu, Yuefeng Chen, Chuanlong Xie, Xiaodan Li, Rong Zhang, Hui Xue, Xiang Tian, Bolun Zheng, and Yaowu Chen. Boosting out-of-distribution detection with typical features. In NeurIPS, 2022. 2, 6, 7 11 Activation Subspaces for Out-of-Distribution Detection Supplementary Material 20 30 40 50 2 3 Score of the decisive component ( ← S) Score of the insignif...
work page 2022
-
[318]
Princeton University Press, 1953. 2
work page 1953
-
[2021]
1, 2, 3, 5, 6, 7, i, iv
This paper was first reviewed by deepseek-v4-flash on August 5, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.