REVIEW 4 major objections 6 minor 53 references
Deep evolving semi-supervised anomaly detection
T0 review · 4 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read The paper formalises continual semi-supervised anomaly detection and shows that a variational autoencoder with outlier-rejected generative replay is a strong baseline, reaching the highest AUC-ROC on MNIST and Fashion MNIST among the…
desk verdict A genuinely new problem formalization is undermined by an evaluation that tunes the anomaly threshold on the test set; the paper is worth refereeing but the empirical claims need a redo. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is a semi-supervised variational autoencoder (the M2 model with a beta-weighted KL term) whose classifier regularises the latent space into clustered normals, combined with generative replay filtered by extreme value theory. For replay, the latent distance of each generated sample from the normal-class mean is modelled by a per-class Weibull distribution, and samples whose outlier probability exceeds a validation-set-tuned threshold are rejected before decoding. Anomaly scores come from the ELBO reconstruction term, and evaluation is reported as AUC-ROC.
What would settle it
Recompute Tables 2 through 5 by choosing the threshold once on a held-out validation stream and then applying it to the test stream; if outlier rejection no longer attains the highest AUC on MNIST and Fashion MNIST, the paper's main empirical claim fails. A second check is to rerun joint training with the same encoder-decoder: if it still trails naive training on Fashion MNIST, the upper-bound assumption behind the comparison is invalid.
Extended reading notes
Core claim
The central discovery is that continual semi-supervised anomaly detection can be formalised as a distinct problem and that a comparatively simple VAE-based learner with outlier-rejected replay is a workable baseline for it. In the paper's experiments, the outlier-rejection method outperforms the other continual-learning strategies on most datasets, including the highest AUC-ROC on MNIST and Fashion MNIST. The ablation studies show that performance rises with more labelled normal data, that labelled anomalies help up to a point, and that unlabelled anomalies initially help then hurt. The paper also reports that its assumed upper bound, joint training, is not always the best, notably on Fashion MNIST where joint training scores 0.401 while naive training reaches 0.555.
Load-bearing premise
The reported AUC values are obtained by selecting the anomaly-detection threshold on the test set itself, so the comparison measures each method's best possible operating point rather than its predictive quality on unseen data.
Editorial extensions
If this is right
- CSAD is usable as a labelled research problem with a reproducible benchmark setup, since the five data-splitting parameters define streams for MNIST, Fashion MNIST, and CIFAR-10.
- A practitioner with mostly unlabelled streaming data can deploy the VAE baseline as a first continual anomaly detector without storing past data.
- Because outlier rejection beats EWC on MNIST and Fashion MNIST, generative replay with inlier filtering is a stronger default than weight regularisation in this setting.
- Performance is sensitive to the placement of labelled data: skewing labels toward later experiences reduces the need for forgetting mitigation and changes method rankings.
Reading between the lines
- The reported AUCs should be read as an upper envelope, since the threshold is chosen on the test set itself; a held-out threshold selection would give a fairer comparison and might reorder the methods.
- The outlier-rejection idea transfers to other generative replay models: any generator whose latent space has a well-estimated normal-class mean could use the same Weibull filter.
- A natural next experiment, not run here, is to use the outlier-rejection probability itself as the anomaly score instead of the ELBO, which the paper notes is currently infeasible with its label-conditioned encoder.
- If joint training is not actually an upper bound in this semi-supervised continual setting, the standard upper-bound comparison used in continual-learning evaluation needs rethinking.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper formalizes the task of continual semi-supervised anomaly detection (CSAD), in which a model receives a stream of experiences each containing a mixture of labelled and unlabelled data, and must detect anomalies while mitigating catastrophic forgetting. The authors propose a variational autoencoder (VAE) baseline that combines semi-supervised training with generative replay and an outlier-rejection mechanism based on extreme value theory. They evaluate this method (OR) against naive training, joint training, and Elastic Weight Consolidation on MNIST, Fashion-MNIST, and CIFAR-10, and report per-episode AUC-ROC scores and ablation studies. The main empirical claim is that OR outperforms other continual learning strategies on most datasets.
Significance. If the results held, the paper would provide a useful new problem formulation (CSAD) and a simple baseline for future work. The dataset configurations and ablation experiments are described in enough detail to be reproduced, which is a practical contribution. However, the current experimental evidence is undermined by the use of the test set to select the anomaly detection threshold, the failure of the joint-training upper bound on Fashion-MNIST, and the absence of error bars. The conceptual contribution is therefore not yet matched by a reliable empirical demonstration.
major comments (4)
- [Section 3.3] The evaluation protocol leaks test information: the text states that the anomaly detection metric 'will use the AUC calculated over the test set to find the optimal threshold for these particular metrics which maximises the AUC.' This tunes the threshold on the same test set used to report the AUC values in Table 2 and the per-episode tables. Consequently, the reported AUCs are fitted quantities rather than unbiased estimates. The threshold should be selected on the validation stream defined in Section 4.2 (or via a nested cross-validation on the training stream) and then evaluated on the test stream. This is load-bearing because the central claim that OR 'outperforms other continual learning strategies across most datasets' rests on these numbers.
- [Section 4.4 / Section 5] The paper treats joint training as the upper bound, but the results contradict this: on Fashion-MNIST, Joint scores 0.401, well below Naive (0.555) and OR (0.581). The paper itself admits in Section 5 that 'There were issues in joint training which meant that it was not in fact the upper bound for all experiments.' The authors need to diagnose and repair the joint-training baseline, or explicitly remove the upper-bound claim and reinterpret the comparisons accordingly.
- [Section 4.4 / Tables 3-5] No multiple seeds or error bars are reported; all AUC values are from single runs. The per-episode scores show large swings (e.g., MNIST OR ranges from 0.60 to 0.84 in Table 3), so the aggregate differences in Table 2 (0.690 vs 0.655 for MNIST) may not be statistically significant. The paper should report mean and standard deviation over several seeds and, ideally, a paired significance test for the method comparisons.
- [Section 5] The CIFAR-10 experiments use a dense encoder/decoder, and the paper acknowledges that 'simple dense layers are unlikely to be able to correctly reconstruct CIFAR-10 images.' As a result, the CIFAR-10 results reflect an architecture mismatch rather than the properties of the CSAD methods. A convolutional VAE (or an explicit statement that CIFAR-10 is a degenerate stress test) is needed before any cross-dataset conclusions can be drawn.
minor comments (6)
- [Section 3.2] Equation (8) appears to be missing parentheses in the Weibull CDF; it should read 1 - exp(-(|d|/lambda)^kappa) or similar, and the notation z-bar versus z should be clarified.
- [Section 3.3] The sentence 'which will use the AUC calculated over the test set to find the optimal threshold for these particular metrics which maximises the AUC' is grammatically ambiguous; please rewrite it to state exactly which score is used and how thresholds are chosen.
- [Throughout] There are numerous typographical and grammatical errors ('reproducability', 'discriminte', 'the the goal', 'hyperparamter'); the manuscript needs careful proofreading.
- [Section 4.4 / Table 2] The table caption describes bold and underline formatting for best and second-best results, but the formatting is not visible in the text version; please ensure the final PDF displays it.
- [Section 2.4] The two definitions of CSSL discussed in [7] and [35] could be presented in a table to make the adopted setting clearer.
- [Section 5] The narrative in the ablation analysis refers to 'Figure 2', 'Figure 9', etc., but the ordering of figures in the text is repetitive; consider renumbering or summarizing the figures to improve readability.
Circularity Check
Test-set threshold selection makes reported AUCs fitted; the central comparison is not supported by a clean evaluation.
-
fitted input called prediction
[Section 3.3, Approach to Anomaly Detection]
"Another natural choice for anomaly detection would be the outlier rejection probability [29]. This could be used in a similar way to the reconstruction probability or ELBO which will use the AUC calculated over the test set to find the optimal threshold for these particular metrics which maximises the AUC."
The reported AUC-ROC scores in Table 2 are presented as the performance of each continual-learning strategy, yet the anomaly-detection threshold is chosen by directly optimizing on the test set: the method 'will use the AUC calculated over the test set to find the optimal threshold ... which maximises the AUC.' The same test set is then used to compute the reported AUC, so the numbers are fitted maxima over thresholds rather than unbiased estimates on unseen data. Because the test set serves as both the tuning set and the evaluation set, the headline claim that Outlier Rejection 'outperforms other continual learning strategies across most datasets' (Section 4.4) is not supported by a clean protocol.
full rationale
The paper's central empirical contribution is the comparison in Table 2, where Outlier Rejection (OR) is claimed to outperform EWC, Joint, and Naive on MNIST and Fashion MNIST. The evaluation protocol, however, tunes the anomaly-detection threshold on the test set: Section 3.3 states that the method 'will use the AUC calculated over the test set to find the optimal threshold for these particular metrics which maximises the AUC.' Since the same test set is then used to compute the reported AUC, the numbers in Table 2 are fitted maxima rather than unbiased estimates on unseen data. This does not make the formalization of CSAD itself circular, but it means the headline superiority claim rests on a test-set-tuned quantity. The paper's own Section 5 admits that joint training was not a reliable upper bound, and per-episode AUCs in Tables 3-5 vary widely (e.g., MNIST OR from 0.59 to 0.84), so the ranking could change under a clean validation-based threshold selection. Minor self-citations ([7], [51]) are not load-bearing and do not contribute to circularity. Overall circularity is partial, focused on the evaluation protocol rather than on the problem definition.
Assumptions & free parameters
free parameters (4)
- Weibull distribution parameters (tau, kappa, lambda) for normal class latent distances =
not reported
- Anomaly detection threshold on ELBO =
maximizes AUC on the test set
- Beta hyperparameter for KL term in VAE loss =
not specified
- Outlier rejection probability threshold =
not specified
assumptions (4)
- standard math Variational inference and the ELBO derivation for the M2 VAE are valid and standard.
- domain assumption The Weibull distribution accurately models the distribution of distances from latent representations to the per-class mean.
- domain assumption ELBO (or reconstruction probability) is a reliable anomaly score.
- domain assumption The cluster and manifold assumptions of semi-supervised learning hold for the benchmark datasets.
Cite this review
Pith. "Pith review of Deep evolving semi-supervised anomaly detection." pith.science (2026). https://pith.science/paper/7ZHR6YZP
@misc{pith2026241200860,
author = {Pith},
title = {Pith review of: Deep evolving semi-supervised anomaly detection},
year = {2026},
howpublished = {\url{https://pith.science/paper/7ZHR6YZP}},
note = {Machine review of arXiv:2412.00860}
}
read the original abstract
The aim of this paper is to formalise the task of continual semi-supervised anomaly detection (CSAD), with the aim of highlighting the importance of such a problem formulation which assumes as close to real-world conditions as possible. After an overview of the relevant definitions of continual semi-supervised learning, its components, anomaly detection extension, and the training protocols; the paper introduces a baseline model of a variational autoencoder (VAE) to work with semi-supervised data along with a continual learning method of deep generative replay with outlier rejection. The results show that such a use of extreme value theory (EVT) applied to anomaly detection can provide promising results even in comparison to an upper baseline of joint training. The results explore the effects of how much labelled and unlabelled data is present, of which class, and where it is located in the data stream. Outlier rejection shows promising initial results where it often surpasses a baseline method of Elastic Weight Consolidation (EWC). A baseline for CSAD is put forward along with the specific dataset setups used for reproducability and testability for other practitioners. Future research directions include other CSAD settings and further research into efficient continual hyperparameter tuning.
Figures
Figures from the paper (13 more)
Reference graph
Works this paper leans on
-
[1]
Varun Chandola, Arindam Banerjee, and Vipin Kumar. Anomaly detection: A survey. ACM computing surveys (CSUR), 41(3):1–58, 2009. 16 MNIST CIFAR10 Fashion MNIST 0.4 0.5 0.6 0.7 0.8 AUC Score Naive Joint Training EWC Outlier Rejection (a) AUC Scores (Exp 12) Figure 13: AUC Scores for Different Methods on MNIST, CIFAR10, and Fashion MNIST MNIST CIFAR10 Fashio...
work page 2009
-
[2]
Robust one-class svm for fault detection
Yingchao Xiao, Huangang Wang, Wenli Xu, and Junwu Zhou. Robust one-class svm for fault detection. Chemometrics and Intelligent Laboratory Systems, 151:15–25, 2016
work page 2016
-
[3]
One-class classification for heart disease diagnosis
George Gomes Cabral and Adriano Lorena Inácio de Oliveira. One-class classification for heart disease diagnosis. In 2014 IEEE International conference on systems, man, and cybernetics (SMC), pages 2551–2556. IEEE, 2014
work page 2014
-
[4]
Bing Liu. Lifelong machine learning: a paradigm for continuous learning.Frontiers of Computer Science, 11(3):359–361, 2017
work page 2017
-
[5]
Deep semi-supervised anomaly detection
Lukas Ruff, Robert A Vandermeulen, Nico Görnitz, Alexander Binder, Emmanuel Müller, Klaus-Robert Müller, and Marius Kloft. Deep semi-supervised anomaly detection. arXiv preprint arXiv:1906.02694, 2019
arXiv 1906
-
[6]
Semi-supervised learning (chapelle, o
Olivier Chapelle, Bernhard Scholkopf, and Alexander Zien. Semi-supervised learning (chapelle, o. et al., eds.; 2006)[book reviews]. IEEE Transactions on Neural Networks, 20(3):542–542, 2009. 17 MNIST CIFAR10 Fashion MNIST 0.4 0.5 0.6 0.7 0.8 AUC Score Naive Joint Training EWC Outlier Rejection (a) AUC Scores (Exp 14) Figure 15: AUC Scores for Different Me...
work page 2006
-
[7]
International workshop on continual semi-supervised learning: Introduction, benchmarks and baselines
Ajmal Shahbaz, Salman Khan, Mohammad Asiful Hossain, Vincenzo Lomonaco, Kevin Can- nons, Zhan Xu, and Fabio Cuzzolin. International workshop on continual semi-supervised learning: Introduction, benchmarks and baselines. arXiv preprint arXiv:2110.14613, 2021
-
[8]
Learning on the job: Online lifelong and continual learning
Bing Liu. Learning on the job: Online lifelong and continual learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 34, pages 13544–13549, 2020
work page 2020
Show all 53 references
-
[9]
Catastrophic forgetting in connectionist networks
Robert M French. Catastrophic forgetting in connectionist networks. Trends in cognitive sciences, 3(4):128–135, 1999
1999
-
[10]
Overcoming catastrophic forgetting in neural networks
James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, et al. Overcoming catastrophic forgetting in neural networks. Proceedings of the national academy of scien...
2017
-
[11]
Continual learning for anomaly detection with variational autoen- coder
Felix Wiewel and Bin Yang. Continual learning for anomaly detection with variational autoen- coder. In ICASSP 2019-2019 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pages 3837–3841. IEEE, 2019. 18
2019
-
[12]
Beyond supervised continual learning: a review
Benedikt Bagus, Alexander Gepperth, and Timothée Lesort. Beyond supervised continual learning: a review. arXiv preprint arXiv:2208.14307, 2022
2022 arXiv
-
[13]
Avalanche: an end-to-end library for continual learning
Vincenzo Lomonaco, Lorenzo Pellegrini, Andrea Cossu, Antonio Carta, Gabriele Graffieti, Tyler L Hayes, Matthias De Lange, Marc Masana, Jary Pomponi, Gido M Van de Ven, et al. Avalanche: an end-to-end library for continual learning. In Proceedings of the IEEE/CVF Conference on ...
2021
-
[14]
Continuum: Simple management of complex continual learning scenarios
Arthur Douillard and Timothée Lesort. Continuum: Simple management of complex continual learning scenarios. arXiv preprint arXiv:2102.06253, 2021
2021 arXiv
-
[15]
Sequoia: A software framework to unify continual learning research
Fabrice Normandin, Florian Golemo, Oleksiy Ostapenko, Pau Rodriguez, Matthew D Riemer, Julio Hurtado, Khimya Khetarpal, Dominic Zhao, Ryan Lindeborg, Timothée Lesort, et al. Sequoia: A software framework to unify continual learning research. arXiv preprint arXiv:2108.01005, 2021
2021 arXiv
-
[16]
The rise of ’big data’ on cloud computing: Review and open research issues
Ibrahim Abaker Targio Hashem, Ibrar Yaqoob, Nor Badrul Anuar, Salimah Mokhtar, Abdullah Gani, and Samee Ullah Khan. The rise of ’big data’ on cloud computing: Review and open research issues. Information systems, 47:98–115, 2015
2015
-
[17]
An overview of deep semi-supervised learning
Yassine Ouali, Céline Hudelot, and Myriam Tami. An overview of deep semi-supervised learning. arXiv preprint arXiv:2006.05278, 2020
2006 arXiv
-
[18]
Information theory and statistics
Solomon Kullback. Information theory and statistics. Courier Corporation, 1997
1997
-
[19]
An introduction to variational autoencoders
Diederik P Kingma, Max Welling, et al. An introduction to variational autoencoders. Founda- tions and Trends® in Machine Learning, 12(4):307–392, 2019
2019
-
[20]
Generative adversarial networks
Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial networks. Communications of the ACM, 63(11):139–144, 2020
2020
-
[21]
Semi-supervised learning with generative adversarial networks.arXiv preprint arXiv:1606.01583, 2016
Augustus Odena. Semi-supervised learning with generative adversarial networks.arXiv preprint arXiv:1606.01583, 2016
2016 arXiv
-
[22]
Experi- ence replay for continual learning
David Rolnick, Arun Ahuja, Jonathan Schwarz, Timothy Lillicrap, and Gregory Wayne. Experi- ence replay for continual learning. Advances in Neural Information Processing Systems, 32, 2019
2019
-
[23]
Continual learning through one-class classifica- tion using vae
Felix Wiewel, Andreas Brendle, and Bin Yang. Continual learning through one-class classifica- tion using vae. In ICASSP 2020-2020 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pages 3307–3311. IEEE, 2020
2020
-
[24]
Boovae: Boosting approach for continual learning of vae
Evgenii Egorov, Anna Kuzina, and Evgeny Burnaev. Boovae: Boosting approach for continual learning of vae. Advances in Neural Information Processing Systems, 34:17889–17901, 2021
2021
-
[25]
Continual learning with deep generative replay
Hanul Shin, Jung Kwon Lee, Jaehong Kim, and Jiwon Kim. Continual learning with deep generative replay. Advances in neural information processing systems, 30, 2017
2017
-
[26]
Coresets for nonparametric estimation-the case of dp-means
Olivier Bachem, Mario Lucic, and Andreas Krause. Coresets for nonparametric estimation-the case of dp-means. In International Conference on Machine Learning, pages 209–217. PMLR, 2015
2015
-
[27]
Binplay: A binary latent autoencoder for generative replay continual learning
Kamil Deja, Paweł Wawrzy ´nski, Daniel Marczak, Wojciech Masarczyk, and Tomasz Trz- ci´nski. Binplay: A binary latent autoencoder for generative replay continual learning. In 2021 International Joint Conference on Neural Networks (IJCNN), pages 1–8. IEEE, 2021
2021
-
[28]
Metric learning for large scale image classification: Generalizing to new classes at near-zero cost
Thomas Mensink, Jakob Verbeek, Florent Perronnin, and Gabriela Csurka. Metric learning for large scale image classification: Generalizing to new classes at near-zero cost. In European Conference on Computer Vision, pages 488–501. Springer, 2012
2012
-
[29]
Unified probabilistic deep continual learning through generative replay and open set recognition
Martin Mundt, Iuliia Pliushch, Sagnik Majumder, Yongwon Hong, and Visvanathan Ramesh. Unified probabilistic deep continual learning through generative replay and open set recognition. Journal of Imaging, 8(4):93, 2022. 19
2022
-
[30]
Semi-supervised anomaly detection algorithms: A comparative summary and future research directions
Miryam Elizabeth Villa-Pérez, Miguel A Alvarez-Carmona, Octavio Loyola-González, Miguel Angel Medina-Pérez, Juan Carlos Velazco-Rossell, and Kim-Kwang Raymond Choo. Semi-supervised anomaly detection algorithms: A comparative summary and future research directions. Knowledge-Ba...
2021
-
[31]
Bagging-randomminer: A one-class classifier for file access-based masquerade detection.Machine Vision and Applications, 30(5):959–974, 2019
José Benito Camiña, Miguel Angel Medina-Pérez, Raúl Monroy, Octavio Loyola-González, Luis Angel Pereyra Villanueva, and Luis Carlos González Gurrola. Bagging-randomminer: A one-class classifier for file access-based masquerade detection.Machine Vision and Applications, 30(5):9...
2019
-
[32]
Towards anomaly detectors that learn continuously
Andrea Stocco and Paolo Tonella. Towards anomaly detectors that learn continuously. In 2020 IEEE International Symposium on Software Reliability Engineering Workshops (ISSREW), pages 201–208. IEEE, 2020
2020
-
[33]
Arcade: A rapid continual anomaly detector
Ahmed Frikha, Denis Krompaß, and V olker Tresp. Arcade: A rapid continual anomaly detector. In 2020 25th International Conference on Pattern Recognition (ICPR), pages 10449–10456. IEEE, 2021
2020
-
[34]
Continual learning for unsupervised anomaly detection in continuous auditing of financial accounting data
Hamed Hemati, Marco Schreyer, and Damian Borth. Continual learning for unsupervised anomaly detection in continuous auditing of financial accounting data. arXiv preprint arXiv:2112.13215, 2021
2021 arXiv
-
[35]
Ordisco: Effective and efficient usage of incremental unlabeled data for semi-supervised continual learning
Liyuan Wang, Kuo Yang, Chongxuan Li, Lanqing Hong, Zhenguo Li, and Jun Zhu. Ordisco: Effective and efficient usage of incremental unlabeled data for semi-supervised continual learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages ...
2021
-
[36]
Semi-supervised learning literature survey
Xiaojin Jerry Zhu. Semi-supervised learning literature survey. 2005
2005
-
[37]
All versus one: an empirical comparison on retrained and incremental machine learning for modeling performance of adaptable software
Tao Chen. All versus one: an empirical comparison on retrained and incremental machine learning for modeling performance of adaptable software. In2019 IEEE/ACM 14th International Symposium on Software Engineering for Adaptive and Self-Managing Systems (SEAMS), pages 157–168. I...
2019
-
[38]
Semi-supervised learning of bearing anomaly detection via deep variational autoencoders
Shen Zhang, Fei Ye, Bingnan Wang, and Thomas G Habetler. Semi-supervised learning of bearing anomaly detection via deep variational autoencoders. arXiv preprint arXiv:1912.01096, 2019
1912 arXiv
-
[39]
Variational inference: A review for statisticians
David M Blei, Alp Kucukelbir, and Jon D McAuliffe. Variational inference: A review for statisticians. Journal of the American statistical Association, 112(518):859–877, 2017
2017
-
[40]
Stochastic variational inference
Matthew D Hoffman, David M Blei, Chong Wang, and John Paisley. Stochastic variational inference. Journal of Machine Learning Research, 2013
2013
-
[41]
Tutorial: Deriving the standard variational autoencoder (vae) loss function
Stephen Odaibo. Tutorial: Deriving the standard variational autoencoder (vae) loss function. arXiv preprint arXiv:1907.08956, 2019
1907 arXiv
-
[42]
beta-vae: Learning basic visual concepts with a constrained variational framework
Irina Higgins, Loic Matthey, Arka Pal, Christopher Burgess, Xavier Glorot, Matthew Botvinick, Shakir Mohamed, and Alexander Lerchner. beta-vae: Learning basic visual concepts with a constrained variational framework. 2016
2016
-
[43]
Ladder variational autoencoders
Casper Kaae Sønderby, Tapani Raiko, Lars Maaløe, Søren Kaae Sønderby, and Ole Winther. Ladder variational autoencoders. Advances in neural information processing systems, 29, 2016
2016
-
[44]
Variational autoencoder based anomaly detection using recon- struction probability
Jinwon An and Sungzoon Cho. Variational autoencoder based anomaly detection using recon- struction probability. Special Lecture on IE, 2(1):1–18, 2015
2015
-
[45]
The mnist database of handwritten digit images for machine learning research [best of the web]
Li Deng. The mnist database of handwritten digit images for machine learning research [best of the web]. IEEE signal processing magazine, 29(6):141–142, 2012
2012
-
[46]
Antonio Torralba, Rob Fergus, and William T. Freeman. 80 million tiny images: A large data set for nonparametric object and scene recognition. IEEE Transactions on Pattern Analysis and Machine Intelligence, 30(11):1958–1970, 2008. doi: 10.1109/TPAMI.2008.128. 20
1958 doi
-
[47]
Learning multiple layers of features from tiny images
Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009
2009
-
[48]
Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms
Han Xiao, Kashif Rasul, and Roland V ollgraf. Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms. arXiv preprint arXiv:1708.07747, 2017
2017 arXiv
-
[49]
Augmix: A simple data processing method to improve robustness and uncertainty
Dan Hendrycks, Norman Mu, Ekin D Cubuk, Barret Zoph, Justin Gilmer, and Balaji Lakshmi- narayanan. Augmix: A simple data processing method to improve robustness and uncertainty. arXiv preprint arXiv:1912.02781, 2019
1912 arXiv
-
[50]
The use of the area under the roc curve in the evaluation of machine learning algorithms
Andrew P Bradley. The use of the area under the roc curve in the evaluation of machine learning algorithms. Pattern recognition, 30(7):1145–1159, 1997
1997
-
[51]
Svd-gan for real-time unsupervised video anomaly detection
Dinesh Jackson Samuel and Fabio Cuzzolin. Svd-gan for real-time unsupervised video anomaly detection. 2021
2021
-
[52]
Do deep convolutional nets really need to be deep and convolutional? arXiv preprint arXiv:1603.05691, 2016
Gregor Urban, Krzysztof J Geras, Samira Ebrahimi Kahou, Ozlem Aslan, Shengjie Wang, Rich Caruana, Abdelrahman Mohamed, Matthai Philipose, and Matt Richardson. Do deep convolutional nets really need to be deep and convolutional? arXiv preprint arXiv:1603.05691, 2016
2016 arXiv
-
[53]
Disentangling disentan- glement in variational autoencoders
Emile Mathieu, Tom Rainforth, Nana Siddharth, and Yee Whye Teh. Disentangling disentan- glement in variational autoencoders. In International Conference on Machine Learning, pages 4402–4412. PMLR, 2019. 21
2019
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.