Pith. sign in

REVIEW 3 major objections 6 minor 66 references

NeuRN: Neuro-inspired Domain Generalization for Image Classification

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

Pith's one-line read The paper proposes NeuRN, a neuro-inspired preprocessing layer that normalizes local patch contrast, and claims it improves domain generalization in most CNN, ViT, and NAS-derived image classifiers it tested.

desk verdict Large empirical sweep of a cheap normalization layer, but the headline claim of broad domain-generalization gains is not supported by the paper's own table, and the method is underspecified. read the letter →

arxiv 2505.06881 v1 pith:AGXI4WQ4 submitted 2025-05-11 cs.CV cs.AIcs.LGcs.NE

classification cs.CVcs.AIcs.LGcs.NE
keywords domaingeneralizationneuralresponsenormalizationneuro-inspireddeeplearningvisualcorteximageclassificationNeedleman-Wunschsimilarityarchitecturesearchcross-domaintransfer
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

NeuRN is a proposed preprocessing layer that converts each image into a local-contrast map by replacing every pixel with the reciprocal of the normalized standard deviation of the patch around it. The paper tries to establish that this neuro-inspired transform, inserted before any classifier, improves accuracy when a model trained on one digit dataset is tested on a different, unseen digit dataset, across CNNs, a Vision Transformer, and NAS-derived architectures. It also develops a Needleman-Wunsch sequence-alignment score that groups deep architectures by layer sequence and uses that score to pick a representative subset of models. If the central claim holds, domain generalization would be obtainable by a simple, architecture-agnostic data transform rather than by re-engineering each architecture.

What carries the argument

The central object is the NeuRN preprocessing transform, a pixel-wise local standard-deviation normalization: each pixel of the input is replaced by $I_a = 1/(c\,\sigma_{p_k})$, where $\sigma_{p_k}$ is the standard deviation of the $k\times k$ patch around the pixel and $c=\max(\sigma)$. Conceptually this encodes local contrast and suppresses absolute intensity, which is what the paper means by a domain-agnostic representation; the design is inspired by divisive normalization and Winner-Takes-All behavior in visual cortex neurons. The second supporting mechanism is the Needleman-Wunsch sequence-alignment score, which linearizes each DNN into a string of layer types and aligns pairs of such strings with match scores and gap penalties to produce a similarity index; this index is used to cluster 44 architectures and choose the 12 models evaluated with NeuRN.

What would settle it

Run the NeuRN transform exactly as written on a single MNIST image with a uniform border: for a patch entirely inside the border, $\sigma_{p_k}=0$, making $I_a=1/0$ undefined; since the paper specifies neither an epsilon for flat patches nor the scope of $c=\max(\sigma)$, the reported accuracies are not reproducible as stated. A consistency check that fixes these choices and reruns the Table 1 transfers would settle whether the gains are real.

Watch

Extended reading notes

Core claim

On its own terms, the paper's central claim is that NeuRN produces a domain-agnostic feature representation, and that models trained on that representation generalize better to unseen target domains. For an input image $I \in \mathbb{R}^{W\times H\times C}$, NeuRN computes, for each pixel, the standard deviation $\sigma_{p_k}$ of the $k\times k$ patch centered at that pixel, and outputs $I_a = 1/(c\,\sigma_{p_k})$ with $c=\max(\sigma)$. Experiments in Table 1 compare fine-tuned DNNs with and without this preprocessing on MNIST, SVHN, USPS, and MNIST-M across 12 source-to-target transfers; representative reported gains include ShuffleNet on M to MM rising from 14.1% to 71.1% and SPOS on MM to S rising from 25.6% to 69.0%, while some transfers show drops. The paper also claims that Needleman-Wunsch alignment of layer sequences gives a meaningful architecture-similarity measure that clusters related models and supports shortlisting 12 representative architectures from 44.

Load-bearing premise

The load-bearing premise is that the transform $I_a = 1/(c\,\sigma_{p_k})$ is an actually computable image representation: the paper does not state the patch size $k$, does not say whether $c=\max(\sigma)$ is taken over one image, a batch, or the whole dataset, and gives no epsilon for patches with zero variance, so on images with flat regions the operation as written divides by zero.

Editorial extensions

If this is right

  • Adding NeuRN as a preprocessing layer raises source-only accuracy on most of the 12 digit-transfer tasks for most of the 12 architectures in Table 1, including large gains such as ShuffleNet on M to MM (14.1% to 71.1%) and SPOS on MM to S (25.6% to 69.0%).
  • Improvements appear across CNNs, a Vision Transformer, and NAS-derived models, supporting the paper's claim that the benefit is architecture-agnostic rather than tied to one network family.
  • In the appendix, NeuRN integration raises the average pairwise functional similarity of the models from about 0.7 to 0.8, which the paper interprets as NeuRN harmonizing model behavior.
  • The Needleman-Wunsch similarity measure, if valid, gives a reusable way to select a small representative set of DNNs from a large pool for benchmarking.
  • Not all transfers improve; some accuracies drop, so the paper itself frames the effect as needing further investigation.

Reading between the lines

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

  • Since the paper tests only digit datasets (MNIST, SVHN, USPS, MNIST-M), an extension I would draw is to test NeuRN on natural-image domain shifts such as ImageNet variants or medical imaging to see whether local-contrast normalization transfers to higher-resolution domains; the paper lists resource constraints as the current limitation.
  • Read as a contrast-normalization mechanism, NeuRN resembles global-contrast or style-normalization preprocessing that strips absolute intensity and color statistics; if that reading is right, it should be stackable with data augmentation and invariant-feature methods rather than a competitor to them.
  • The N-W architecture-similarity score could be used beyond model selection, for example to predict which architecture pairs transfer best or to weight ensemble members; the paper does not test those uses.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 6 minor

Summary. The manuscript proposes NeuRN, a preprocessing layer that maps each input image to a representation based on local standard deviations, motivated by divisive normalization and winner-take-all mechanisms in the visual cortex. The authors integrate NeuRN into 12 shortlisted DNNs plus two NAS-derived architectures and evaluate source-only domain generalization on MNIST, SVHN, USPS, and MNIST-M, reporting per-task accuracies in Table 1. As a second contribution, they adapt the Needleman-Wunsch sequence alignment algorithm to quantify architectural similarity among 44 DNNs and use this to select a representative subset of models. The paper claims that NeuRN broadly improves domain generalization across architectures, while acknowledging in the conclusion that tests on additional high-resolution datasets were not performed due to resource limits.

Significance. If the NeuRN claims were established, an architecture-agnostic preprocessing transform that improves source-only domain generalization would be a useful and inexpensive contribution, and the neuroscience connection would be of interest to the broader DNN robustness community. The N-W-based architecture similarity analysis is a reasonable idea for selecting diverse models, and the breadth of tested architectures (CNNs, ViT, NAS) is a strength. However, the headline claim is not supported by the reported evidence: the transform is underspecified and not reproducible, Table 1 contains large accuracy drops that are not analyzed, and no error bars, repeated seeds, or significance tests are provided. The paper is better read as an exploratory study than as a demonstration of broad applicability; in its current form the significance is limited.

major comments (3)
  1. [Methods: Neural Response Normalization] The definition of Ia is not computable as written. The formula Ia = 1/(c·σpk) requires three unspecified quantities: the patch size k is never stated; the scope of c = max(σ) is not defined (per image, per batch, or per dataset); and no epsilon or floor is given for the case σpk = 0, which occurs in flat regions of digit images. Because NeuRN is the central proposed method, this underspecification prevents reproduction of Table 1 and makes the reported numbers unverifiable.
  2. [Table 1 / Experiments & Results] Table 1 does not support the claim of broad applicability. Several architectures suffer large losses: DenseNet121 drops from 74.3 to 26.4 on M→U, ResNet50V2 drops from 78.7 to 31.4 on M→U, Xception drops from 77.8 to 31.8 on MM→U, and VGG19 drops from 66.2 to 48.4 on U→M. The paper reports only the number of tasks improved for each model, never the mean or median delta, the spread of deltas, error bars, repeated seeds, or a paired test across the 12 tasks. Win counting can mask large negative effects, and the phrase 'significant improvement' is used without any statistical support. Establishing broad applicability requires showing that the typical effect is positive and that losses are not catastrophic, not merely that more than half of the tasks improve.
  3. [Appendix: DNNs' architectural and functional similarity] The appendix states that 'NeuRN consistently enhances model performance across a variety of domain transfer tasks' and that the enhancement 'does not disproportionately favor one model over another.' This is directly contradicted by Table 1, which shows large negative deltas for several models (for example, DenseNet121 M→U and ResNet50V2 M→U) and highly uneven gains across architectures. This internal inconsistency is a load-bearing problem because the functional-similarity analysis is offered as auxiliary evidence for the main claim.
minor comments (6)
  1. [Methods: Neural Response Normalization] In the expression for σpk, the subscript is written as 'p,k' in the summation 'i,j∈p,k'; this appears to be a typo for 'i,j∈pk'.
  2. [Methods: Needleman-Wunsch algorithm] The scoring parameters are specified inconsistently: the recurrence section describes match score s = 2 and gap penalty d = -2, while the later application says a match score of 4 and vertical/horizontal dissimilarity of -1; the manuscript should state which scoring scheme produced Figure 1 and the shortlist.
  3. [References] Two references are incomplete: 'Zhang, Ragab, and Sagarna' has no conference or journal, and 'Veerabadran, Raina, and Sa' has no publication details; these must be completed or removed.
  4. [Experiments & Results] No random seeds or number of repetitions are reported, so the absence of error bars cannot be interpreted as stability; even a single-seed comparison should be accompanied by a statement of variance across seeds or a justification for not reporting it.
  5. [Table 1 caption] The phrase 'close to benchmark results' is undefined; the benchmark accuracy to which the bold-and-underlined entries are compared should be explicitly named.
  6. [Experiments & Results: Similarity across DNN architectures] The N-W-based shortlisting is not validated: the paper provides no quantitative evidence that the 12 selected models are representative of the 44-model pool, and no comparison with simpler selection criteria or alternative similarity measures.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: NeuRN is an independently specified preprocessing transform, and its reported benefits are empirical comparisons against baseline models.

full rationale

The paper's claimed derivation chain is not circular. The NeuRN transform, Ia = 1/(c * sigma_pk) with c = max(sigma), is defined in the Methods section from local patch statistics and is not fitted to any target dataset or to the reported accuracies. Its effect is evaluated by comparing each baseline DNN with the same DNN preceded by this fixed preprocessing layer, which is a standard empirical protocol rather than a prediction forced by construction. The invocations of the authors' prior WTA work (Iqbal et al. 2024) and other neuroscience references are motivational and are not used as load-bearing evidence that NeuRN improves accuracy; the performance claim rests on the measured results in Table 1. The Needleman-Wunsch architecture-similarity analysis is also independent of the experimental outcomes, since model selection is based on layer sequences rather than accuracy. Even though the paper's evidence is arguably weak or mixed, with some architectures degrading on particular transfer tasks, that is a correctness or significance concern, not a circularity concern. No fitted parameter is renamed as a prediction, no uniqueness theorem is imported from the authors' prior work, and no internal equation reduces the central claim to its own input. Therefore no circular step can be exhibited from the text, and the honest finding is a score of 0.

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

The central claim rests primarily on the ad hoc NeuRN transform, whose key hyperparameters (patch size k, the scope of the max in c) are unspecified, and on a benchmark choice limited to four digit datasets. The N-W similarity method introduces additional hand-chosen scoring parameters that are inconsistent across the paper.

free parameters (3)
  • patch size k
    The size of the local neighborhood used to compute each patch standard deviation is never reported in the paper, yet it determines every NeuRN output value.
  • scope of scaling constant c
    The scaling factor c = max(sigma) is left undefined as to whether the maximum is taken over the image, the batch, or the dataset; different choices change the representation.
  • N-W scoring parameters = match 4, gap -1 (alternatively 2/-2 in Eq. 1)
    The pair of match and mismatch scores is chosen by hand and is stated inconsistently in Section Methods, yet it drives the architecture similarity ranking and the shortlisting of the 12 models.
assumptions (3)
  • domain assumption Source-only training on MNIST-scale digit datasets is a meaningful test of domain generalization.
    The paper uses four related digit datasets and assumes the conclusions extend beyond this narrow benchmark; no larger or more diverse domain-shift benchmarks are used.
  • domain assumption Pretrained ImageNet weights transfer to the four digit datasets after fine-tuning.
    All models are initialized from ImageNet pretrained weights and fine-tuned on MNIST-style data; the base distributions are very different, and the paper does not validate that the fine-tuning procedure is appropriate.
  • ad hoc to paper The neurobiological WTA/divisive normalization inspiration justifies the specific formula.
    The text claims a connection to visual cortex neurons, but the formula 1/(c*sigma) is not derived from any physiological model and is not shown to be uniquely tied to the cited biology.

how reviews work

0 comments
Cite this review

Pith. "Pith review of NeuRN: Neuro-inspired Domain Generalization for Image Classification." pith.science (2026). https://pith.science/paper/AGXI4WQ4

@misc{pith2026250506881,
  author       = {Pith},
  title        = {Pith review of: NeuRN: Neuro-inspired Domain Generalization for Image Classification},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/AGXI4WQ4}},
  note         = {Machine review of arXiv:2505.06881}
}
read the original abstract

Domain generalization in image classification is a crucial challenge, with models often failing to generalize well across unseen datasets. We address this issue by introducing a neuro-inspired Neural Response Normalization (NeuRN) layer which draws inspiration from neurons in the mammalian visual cortex, which aims to enhance the performance of deep learning architectures on unseen target domains by training deep learning models on a source domain. The performance of these models is considered as a baseline and then compared against models integrated with NeuRN on image classification tasks. We perform experiments across a range of deep learning architectures, including ones derived from Neural Architecture Search and Vision Transformer. Additionally, in order to shortlist models for our experiment from amongst the vast range of deep neural networks available which have shown promising results, we also propose a novel method that uses the Needleman-Wunsch algorithm to compute similarity between deep learning architectures. Our results demonstrate the effectiveness of NeuRN by showing improvement against baseline in cross-domain image classification tasks. Our framework attempts to establish a foundation for future neuro-inspired deep learning models.

Figures

Figures reproduced from arXiv: 2505.06881 by the authors.

Figure 1
Figure 1. DNNs’ architectural similarity: The confusion matrix on the left shows the correlation similarity of 44 DNN archi [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. The dynamic matrix is constructed by filling in the cells iteratively using a set of recurrence relations between layers [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗
Figure 3
Figure 3. Each x-label in the plot represents a layer combination and each marker represents the DNN which contains the [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (1 more)
Figure 4
Figure 4. Figure 4: Each cell in this matrix represents the similarity index computed by number of common combinations across the entire [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

66 extracted references · 54 canonical work pages

  1. [1]

    Ben-David, S.; Blitzer, J.; Crammer, K.; Kulesza, A.; Pereira, F.; and Vaughan, J. W. 2010. A theory of learning from different domains. In Proceedings of the 27th International Conference on Machine Learning (ICML-10), 101--108. ACM

  2. [2]

    A.; Dogan, U.; Lee, G.; and Scott, C

    Blanchard, G.; Deshmukh, A. A.; Dogan, U.; Lee, G.; and Scott, C. 2021. Domain generalization by marginal transfer learning. Journal of Machine Learning Research, 22(145): 1--41

  3. [3]

    F.; et al

    Burg, M. F.; et al. 2021. Learning divisive normalization in primary visual cortex. PLOS Computational Biology, 17(6): e1009028

  4. [4]

    A.; Denfield, G

    Cadena, S. A.; Denfield, G. H.; Walker, E. Y.; Gatys, L. A.; Tolias, A. S.; Bethge, M.; and Ecker, A. S. 2019 a . Deep convolutional models improve predictions of macaque V1 responses to natural images. PLoS computational biology, 15(4): e1006897

  5. [5]

    A.; Sinz, F

    Cadena, S. A.; Sinz, F. H.; Muhammad, T.; Froudarakis, E.; Cobos, E.; Walker, E. Y.; Reimer, J.; Bethge, M.; Tolias, A. S.; and Ecker, A. S. 2019 b . How well do deep neural networks trained on object recognition characterize the mouse visual system

  6. [6]

    F.; Hong, H.; Yamins, D

    Cadieu, C. F.; Hong, H.; Yamins, D. L.; Pinto, N.; Ardila, D.; Solomon, E. A.; Majaj, N. J.; and DiCarlo, J. J. 2014. Deep neural networks rival the representation of primate IT cortex for core visual object recognition. PLoS Computational Biology, 10(12): e1003963

  7. [7]

    Chen, K.; Zhuang, D.; and Chang, J. M. 2022. Discriminative adversarial domain generalization with meta-learning based cross-domain validation. Neurocomputing, 467: 418--426

  8. [8]

    Chollet, F. 2017. Xception: Deep Learning with Depthwise Separable Convolutions. In 2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 1800--1807

Show all 66 references
  1. [9]

    Conwell, C.; et al. 2021. Neural Regression, Representational Similarity, Model Zoology & Neural Taskonomy at Scale in Rodent Visual Cortex. In NeurIPS Proceedings

  2. [10]

    Das, A.; and Ray, S. 2021. Effect of Cross-Orientation Normalization on Different Neural Measures in Macaque Primary Visual Cortex. Cerebral Cortex Communications, 2(1): tgab009

  3. [11]

    Dosovitskiy, A.; et al. 2021. An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale. In Proceedings of the International Conference on Learning Representations (ICLR)

  4. [12]

    Ganin, Y.; Ustinova, E.; Ajakan, H.; Germain, P.; Larochelle, H.; Laviolette, F.; Marchand, M.; and Lempitsky, V. 2015. Domain-Adversarial Training of Neural Networks

  5. [13]

    Gao, R.; Zou, H.; and Duan, Z. 2023. CVSNet: A Computer Implementation for Central Visual System of The Brain. arXiv:2305.19492

  6. [14]

    Goodfellow, I.; Bengio, Y.; and Courville, A. 2016. Deep Learning. MIT Press

  7. [15]

    Guo, C.; Pleiss, G.; Sun, Y.; and Weinberger, K. Q. 2019. Single path one-shot neural architecture search with uniform sampling

  8. [16]

    He, K.; Zhang, X.; Ren, S.; and Sun, J. 2015. Deep Residual Learning for Image Recognition. arXiv:1512.03385

  9. [17]

    He, K.; Zhang, X.; Ren, S.; and Sun, J. 2016. Deep Residual Learning for Image Recognition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 770--778

  10. [18]

    G.; Zhu, M.; Chen, B.; Kalenichenko, D.; Wang, W.; Weyand, T.; Andreetto, M.; and Adam, H

    Howard, A. G.; Zhu, M.; Chen, B.; Kalenichenko, D.; Wang, W.; Weyand, T.; Andreetto, M.; and Adam, H. 2017. MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications. Cite arxiv:1704.04861

  11. [19]

    Huang, G.; Liu, Z.; van der Maaten, L.; and Weinberger, K. Q. 2018. Densely Connected Convolutional Networks. arXiv:1608.06993

  12. [20]

    Hull, J. J. 1994. A database for handwritten text recognition research. IEEE Transactions on pattern analysis and machine intelligence, 16(5): 550--554

  13. [21]

    M.; and Jang, H

    Iqbal, A.; Dong, P.; Kim, C. M.; and Jang, H. 2019. Decoding Neural Responses in Mouse Visual Cortex through a Deep Neural Network. In 2019 International Joint Conference on Neural Networks (IJCNN), 1--7. IEEE

  14. [22]

    J.; Fishell, G.; and Honnuraiah, S

    Iqbal, A.; Mahmood, H.; Stuart, G. J.; Fishell, G.; and Honnuraiah, S. 2024. Biologically Realistic Computational Primitives of Neocortex Implemented on Neuromorphic Hardware Improve Vision Transformer Performance. bioRxiv. This article is a preprint and has not been certified...

  15. [23]

    Jarrett, K.; Kavukcuoglu, K.; Ranzato, M.; and LeCun, Y. 2009. What is the best multi-stage architecture for object recognition? 2009 IEEE 12th International Conference on Computer Vision, 2146--2153

  16. [24]

    Jin, X.; Lan, C.; Zeng, W.; and Chen, Z. 2021. Style normalization and restitution for domain generalization and adaptation. IEEE Transactions on Multimedia

  17. [25]

    Krizhevsky, A.; Sutskever, I.; and Hinton, G. 2012. ImageNet Classification with Deep Convolutional Neural Networks. In Neural Information Processing Systems, volume 25

  18. [26]

    L.; and DiCarlo, J

    Kubilius, J.; Schrimpf, M.; Nayebi, A.; Bear, D.; Yamins, D. L.; and DiCarlo, J. J. 2018. CORnet: Modeling the Neural Mechanisms of Core Object Recognition. bioRxiv

  19. [27]

    LeCun, Y.; Cortes, C.; and Burges, C. 2010. MNIST Handwritten Digit Database

  20. [28]

    Li, H.; Wang, Y.; Wan, R.; Wang, S.; Li, T.-Q.; and Kot, A. C. 2020. Domain generalization for medical imaging classification with linear-dependency regularization. In Conference on Neural Information Processing Systems (NeurIPS)

  21. [29]

    Li, Y.; Yosinski, J.; Clune, J.; Lipson, H.; and Hopcroft, J. 2015. Convergent Learning: Do different neural networks learn the same representations? In Proceedings of the 1st International Workshop on Feature Extraction: Modern Questions and Challenges at NIPS 2015, volume 44...

  22. [30]

    Li, Z.; et al. 2019. Learning from brains how to regularize machines. In Advances in Neural Information Processing Systems 32 (NeurIPS 2019)

  23. [31]

    Likic, V. 2008. The Needleman-Wunsch algorithm for sequence alignment. Lecture given at the 7th Melbourne Bioinformatics Course, Bi021 Molecular Science and Biotechnology Institute, University of Melbourne

  24. [32]

    Mahajan, D.; Tople, S.; and Sharma, A. 2021. Domain generalization using causal matching. In International Conference on Machine Learning (ICML)

  25. [33]

    H.; et al

    Marshel, J. H.; et al. 2011. Functional specialization of seven mouse visual cortical areas. Neuron, 72(6): 1040--1054

  26. [34]

    G.; Raeder, T.; Alaiz-Rodr ' guez, R.; Chawla, N

    Moreno-Torres, J. G.; Raeder, T.; Alaiz-Rodr ' guez, R.; Chawla, N. V.; and Herrera, F. 2012. A unifying view on dataset shift in classification. Pattern Recognition, 45(1): 327--336

  27. [35]

    A.; and Doretto, G

    Motiian, S.; Piccirilli, M.; Adjeroh, D. A.; and Doretto, G. 2017. Unified deep supervised domain adaptation and generalization. In International Conference on Computer Vision (ICCV), 5715--5725

  28. [36]

    Muandet, K.; Balduzzi, D.; and Sch \"o lkopf, B. 2013. Domain generalization via invariant feature representation. In International Conference on Machine Learning (ICML)

  29. [37]

    H.; and Kovashka, A

    Nazari, N. H.; and Kovashka, A. 2020. Domain generalization using shape representation. In European Conference on Computer Vision (ECCV), 666--670

  30. [38]

    Netzer, Y.; Wang, T.; Coates, A.; Bissacco, A.; Wu, B.; and Ng, A. Y. 2011. Reading Digits in Natural Images with Unsupervised Feature Learning. In NIPS Workshop on Deep Learning and Unsupervised Feature Learning

  31. [39]

    Recht, B.; Roelofs, R.; Schmidt, L.; and Shankar, V. 2019. Do imagenet classifiers generalize to imagenet? In International Conference on Machine Learning, 5401--5410

  32. [40]

    Sandler, M.; Howard, A.; Zhu, M.; Zhmoginov, A.; and Chen, L.-C. 2018. MobileNetV2: Inverted Residuals and Linear Bottlenecks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)

  33. [41]

    Sawada, T.; and Petrov, A. 2016. Emulating and predicting physiological results of neurons in the primary visual cortex (V1) based on the divisive normalization model. Journal of Vision, 16(12): 958

  34. [42]

    B.; Kar, K.; Bashivan, P.; Prescott-Roy, J.; Schmidt, K.; Yamins, D

    Schrimpf, M.; Kubilius, J.; Hong, H.; Majaj, N.; Rajalingham, R.; Issa, E. B.; Kar, K.; Bashivan, P.; Prescott-Roy, J.; Schmidt, K.; Yamins, D. L.; and DiCarlo, J. J. 2018. Brain-Score: Which Artificial Neural Network for Object Recognition is most Brain-Like? bioRxiv

  35. [43]

    Segu, M.; Tonioni, A.; and Tombari, F. 2020. Batch normalization embeddings for deep domain generalization. arXiv preprint arXiv:2011.12672

  36. [44]

    Shi, J.; Shea-Brown, E.; and Buice, M. 2019. Comparison against task driven artificial neural networks reveals functional properties in mouse visual cortex. Advances in Neural Information Processing Systems, 32

  37. [45]

    Shi, J.; et al. 2022. MouseNet: A biologically constrained convolutional neural network model for the mouse visual cortex. PLOS Computational Biology

  38. [46]

    Simonyan, K.; and Zisserman, A. 2015. Very Deep Convolutional Networks for Large-Scale Image Recognition. In 3rd International Conference on Learning Representations (ICLR 2015), 1--14

  39. [47]

    Szegedy, C.; Vanhoucke, V.; Ioffe, S.; Shlens, J.; and Wojna, Z. 2015. Rethinking the Inception Architecture for Computer Vision. arXiv:1512.00567

  40. [48]

    Tan, M.; and Le, Q. V. 2019. EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks. In Proceedings of the 36th International Conference on Machine Learning, ICML 2019, 6105--6114

  41. [49]

    Taori, R.; Dave, A.; Shankar, V.; Carlini, N.; Recht, B.; and Schmidt, L. 2020. Measuring robustness to natural distribution shifts in image classification. In Advances in Neural Information Processing Systems, volume 33, 10581--10591

  42. [50]

    N.; Kaiser, .; and Polosukhin, I

    Vaswani, A.; Shazeer, N.; Parmar, N.; Uszkoreit, J.; Jones, L.; Gomez, A. N.; Kaiser, .; and Polosukhin, I. 2017. Attention is all you need. In Proceedings of the 31st International Conference on Neural Information Processing Systems (NIPS'17), 6000--6010. Curran Associates Inc

  43. [51]

    Veerabadran, V.; Raina, R.; and Sa, V. D. ???? Bio-inspired learnable divisive normalization for ANNs. No additional publication details available

  44. [52]

    Wang, B.; Lapata, M.; and Titov, I. 2021. Meta-learning for domain generalization in semantic parsing. In Proceedings of the North American Chapter of the Association for Computational Linguistics (NAACL)

  45. [53]

    Wang, J.; Lan, C.; Liu, C.; Ouyang, Y.; Qin, T.; Lu, W.; Chen, Y.; Zeng, W.; and Yu, P. S. 2022. Generalizing to Unseen Domains: A Survey on Domain Generalization. arXiv:2103.03097

  46. [54]

    Wang, Z.; Loog, M.; and van Gemert, J. 2020. Respecting domain relations: Hypothesis invariance for domain generalization. arXiv preprint arXiv:2010.07591

  47. [55]

    Xu, K.; Zhang, L.; Li, Z.; Qin, Z.; Li, J.; and Hu, Y. 2021. AutoFormer: Searching Transformers for Visual Recognition

  48. [56]

    L.; Hong, H.; Cadieu, C

    Yamins, D. L.; Hong, H.; Cadieu, C. F.; Solomon, E. A.; Seibert, D.; and DiCarlo, J. J. 2014. Performance-optimized hierarchical models predict neural responses in higher visual cortex. Proceedings of the National Academy of Sciences of the United States of America, 111(23): 8...

  49. [57]

    A.; Maunsell, J

    Zayyad, Z. A.; Maunsell, J. H. R.; and MacLean, J. N. 2023. Normalization in mouse primary visual cortex. bioRxiv. The complete version history of this preprint is available at bioRxiv

  50. [58]

    Not Provided

    Zhang, W.; Ragab, M.; and Sagarna, R. Not Provided. Robust domain-free domain generalization. Missing Conference/Journal

  51. [59]

    Zhang, X.; Zhou, X.; Lin, M.; and Sun, J. 2018. ShuffleNet: An Extremely Efficient Convolutional Neural Network for Mobile Devices. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)

  52. [60]

    Zhao, Y.; Zhong, Z.; Yang, F.; Luo, Z.; Lin, Y.; Li, S.; and Sebe, N. 2021. Learning to generalize unseen domains via memory-based multi-source meta-learning for person re-identification. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVP...

  53. [61]

    Zhou, K.; Liu, Z.; Qiao, Y.; Xiang, T.; and Loy, C. C. 2022. Domain Generalization: A Survey. IEEE Transactions on Pattern Analysis and Machine Intelligence, 1–20

  54. [62]

    Zoph, B.; and Le, Q. V. 2017. Neural Architecture Search with Reinforcement Learning

  55. [63]

    Zoph, B.; Vasudevan, V.; Shlens, J.; and Le, Q. V. 2018. Learning Transferable Architectures for Scalable Image Recognition. arXiv:1707.07012

  56. [64]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all...

  57. [65]

    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 gl...

  58. [66]

    U 7 KjD _C朱 |rrr(IԨ-H[ ̧=MΊD ق E8h ZxTW1e&< j Qy@8h Z 8_T #56j3v#<Y[y -hA h Z#5 U oW兛 R5SdlyҶ\5'т -hŅ2w6thh V q z*ރkт

    document figures/0000775000000000000000000000000015010046416011217 5ustar rootrootfigures/figure_1.pdf0000664000000000000000002505015615010046416013431 0ustar rootroot 7 0 obj << /Type /XObject /Subtype /Image /Width 132 /Height 132 /ColorSpace /DeviceRGB /BitsPerComponent 8 /...

Pith tools

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