Pith. sign in

REVIEW 4 major objections 5 minor 51 references

Regularizing CNN Transfer Learning with Randomised Regression

T0 review · 4 major / 5 minor · reviewed 2026-08-14 · deepseek-v4-flash

Pith's one-line read A random regression target, dynamically weighted by gradient norms, regularizes a fine-tuned CNN as effectively as concrete auxiliary tasks.

desk verdict PtR is a simple, cheap regularizer with consistent gains over its own fine-tuning baseline, but the 'on par with SOTA' claim is weaker than presented because comparisons mix architectures and baselines. read the letter →

arxiv 1908.05997 v2 pith:M5MXJ7FT submitted 2019-08-16 cs.CV

classification cs.CV
keywords transferlearningfine-tuningregularizationpseudo-taskrandomregressiontargetsgradientnormbalancingconvolutionalneuralnetworkssmall-sample
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

The paper claims that a CNN being fine-tuned on a small target dataset can be regularized as effectively by a meaningless random task as by carefully designed auxiliary objectives. The method, Pseudo-task Regularization (PtR), adds a regression loss that tries to map the current image representation to random numbers, and weights that loss on-line so its gradient norm is a fixed ratio of the cross-entropy loss's gradient norm. Across several small classification benchmarks and two network families, this random distractor consistently improves on vanilla fine-tuning and matches or exceeds recent regularization methods that use real data, stored predictions, or concrete auxiliary tasks. The paper argues that this shows the essence of such regularization is distraction itself, not the convergence of a real task.

What carries the argument

The central object is the pseudo-task regression loss $L_{\mathrm{PtR}} = f_{\mathrm{reg}}(\mathrm{rep}, t)$, where rep is the feature-layer activation and $t$ is a vector of independent uniform random targets in $[0, 2m)$. The mechanism that controls it is gradient-norm balancing: before back-propagation, the paper computes $\|\partial L_{\mathrm{ce}}/\partial \mathrm{rep}\|_2$ and $\|\partial L_{\mathrm{PtR}}/\partial \mathrm{rep}\|_2$ averaged over the batch, sets $w = \bar{G}_{\mathrm{ce}} / (\bar{G}_{\mathrm{PtR}} R)$, and minimizes $L_{\mathrm{ce}} + w L_{\mathrm{PtR}}$. This gives a controlled distraction: the pseudo-task contributes a prescribed share $R$ of the target-task gradient norm, and because $t$ changes every batch, the gradient noise has variance increased by $\mathrm{Var}(t)$. That randomness is what distinguishes PtR from feature-norm penalization and is what the paper credits for helping the optimizer explore flatter or better minima.

What would settle it

On a fixed dataset and layer, multiply all feature activations by a constant before the regression head while keeping every other setting fixed. If accuracy gains are unchanged across several constants, the method is scale-invariant; if the gain shrinks or becomes negative, the fixed-$m$/fixed-$R$ premise fails and a scale-normalized regularizer would be required.

Watch

Extended reading notes

Core claim

PtR is a regularization method for transfer learning with limited target data. During fine-tuning, once the target cross-entropy loss falls below a threshold, the network is simultaneously trained to regress its feature representation at a chosen layer to uniformly random targets. The regularization weight is recomputed per batch as $w = \bar{G}_{\mathrm{ce}} / (\bar{G}_{\mathrm{PtR}} R)$, so the norm of the pseudo-task gradient is a fixed ratio $R$ of the target-task gradient norm. On five small datasets with VGG-16 and ResNet-50/101, PtR raised accuracy over vanilla fine-tuning by roughly 0.4 to 3.1 percentage points depending on dataset and architecture, delivered double-digit percentage error-rate reductions on the sparsest datasets, and performed on par with or better than JointTrain, LwF, BTfW, Inductive Bias, and FNP, with Pairwise Confusion sometimes ahead by a small margin. The paper also gives a variance argument: with a random target $t$, the gradient variance with respect to a neuron contains $\mathrm{Var}(t)$, so random targets inject more gradient noise than fixed-zero feature-norm penalties. On a CUB200 validation set, PtR lowered average prediction entropy from 1.33 to 1.15 bits, meaning predictions became more concentrated on the correct and visually similar classes.

Load-bearing premise

The load-bearing premise is that a single fixed choice of the pseudo-target range $m$ and the gradient-ratio $R$ creates the right amount of distraction across datasets and architectures, because PtR does not normalize the scale of the feature representations before computing the regression loss.

Editorial extensions

If this is right

  • PtR improves accuracy over vanilla fine-tuning on every dataset tested, with the largest relative error-rate reductions on the sparsest fine-grained sets, more than 10% on Flower102 and CUB200 with VGG-16.
  • The dynamic gradient-norm weighting makes the regularization strength self-adjusting during training, so the practitioner sets one gradient-ratio $R$ and one target scale $m$ instead of tuning a loss-weight schedule.
  • PtR reaches or exceeds the accuracy gain of JointTrain, LwF, BTfW, Inductive Bias, and FNP, and comes within about half a percentage point of Pairwise Confusion on CUB200, while needing none of the extra resources those methods use.
  • On a CUB200 validation set, PtR lowers average prediction entropy from 1.33 to 1.15 bits and reduces minor off-diagonal probabilities, so predictions become concentrated on the true class and visually similar ones.
  • Training from scratch with PtR produced larger relative gains than fine-tuning from ImageNet, suggesting the regularizer is not tied to a particular pre-trained initialization.

Reading between the lines

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

  • Because $R$ and $m$ are not scale-normalized, PtR is likely to need retuning whenever feature magnitudes change; the paper's own supplementary numbers, with VGG-16 plus BatchNorm gaining 4.03% against roughly 3% without, suggest the interaction with normalization is not neutral.
  • If the mechanism is purely gradient-noise variance, then injecting matched noise directly into the back-propagated gradients without any regression head should reproduce the gains; this experiment would separate the pseudo-task formulation from the noisy-gradient explanation.
  • PtR's success implies that concrete auxiliary tasks may be valuable mainly as well-calibrated distractors; if so, random-noise regularizers could replace auxiliary tasks in other low-data regimes such as semi-supervised learning or domain adaptation.
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

4 major / 5 minor

Summary. The paper proposes Pseudo-task Regularization (PtR), an auxiliary loss that regresses a CNN's representation layer to random pseudo-targets during fine-tuning, with the loss weight adjusted on-line by balancing gradient norms against the cross-entropy loss. The method is evaluated on Flower102, CUB200, MIT67, Stanford40, WebFace500, and Caltech256, using VGG-16 and ResNet backbones, and is compared with vanilla fine-tuning and several prior regularization methods. The authors report consistent gains over their own fine-tuning baselines and argue that these gains are greater than or on a par with recent state-of-the-art regularization methods, while requiring no extra data, annotations, or concrete auxiliary tasks.

Significance. If the central claim holds, PtR is an attractive regularization scheme: it is simple, architecture-agnostic in principle, requires no auxiliary data, and can be implemented by adding one regression head. The paper includes genuinely useful empirical evidence: the algorithm is clearly specified, all experiments average over five runs, standard deviations are reported, and the supplementary material contains ablations on the start threshold T, weight decay, batch normalization, and training from scratch. These internal comparisons constitute a strength. The main weakness is that the headline comparative claim is not supported by controlled comparisons, because the baselines for prior methods are taken from different papers with different architectures, splits, and training schedules. The method's value as a regularizer is plausible, but its claimed superiority over existing methods is not established by the current evidence.

major comments (4)
  1. [Abstract; §3.2, Tables 2–5] The claim that PtR's improvements are 'greater or on a par' with state-of-the-art methods is not supported by the reported evidence. The comparisons in Tables 2–5 are of accuracy gains, but each gain is measured relative to a different fine-tuning baseline coming from a different paper. For example, on CUB200 the JointTrain/LwF baseline is 72.1 while the PtR baseline is 75.1; on Flower102 the PC baseline is 85.2 while the PtR baseline is 83.9; and on Caltech256 BTfW uses ResNet-152 while PtR uses ResNet-101. A gain over a weaker baseline is not comparable to a gain over a stronger baseline, since the room for improvement differs. The statement in §3.1 that learning-rate schedules were 'slightly different' for PtR than for the fine-tuning baseline further complicates the internal baseline comparison. To support the comparative claim, the authors would need either to re-run the competing methods under the same protocol (same architecture, splits, augmentation, schedules) or to temper the claim to one about consistent improvement over vanilla fine-tuning. This is load-bearing for the abstract.
  2. [§3.1, Algorithm 1] The hyperparameter settings are not fully specified for reproducibility. For ResNet the paper reports R=3 and m=1, but for VGG-16 it states only that 'R varies in the range between 3 and 5, and m around 10 to 15'. Since the regularization strength depends directly on R and on the scale of the pseudo-targets, the per-dataset values should be listed. Without them, and without released code, the experiments cannot be reproduced. In addition, the sensitivity of the results to these values is not reported beyond the statement that hold-out sets were used; a figure showing accuracy versus R and m across datasets would substantiate the claim that the method does not require careful tuning.
  3. [§3.1, Algorithm 1] The 'plug-and-play' generality claim rests on an unstated scale assumption. The pseudo-target mean m is fixed at 1 for ResNet but 10–15 for VGG, and the gradient-norm balancing via w = G_ce / (G_PtR * R) normalizes the gradient norm but not the scale of the representation. If applied to a different architecture, normalization, or feature layer, the effective regularization strength will change because the magnitude of the regression loss gradients depends on the representation scale. The paper does not provide a scale-invariant choice of m or an automatic calibration mechanism, so the claim that PtR is an efficient alternative across arbitrary CNN transfer settings needs to be qualified or supported by experiments varying the representation layer and normalization.
  4. [§2.3, Eq. (6)–(7)] The toy variance derivation contains a mathematical slip. In Eq. (6), the gradient of the L2 regression loss through a ReLU is proportional to |f(o) − t|·x (when the unit is active), not to (f(o) − t)·x. The subsequent variance decomposition Var(∂E_reg/∂a) = Var(f(o)) + Var(t) holds for the signed difference f(o) − t, not for its absolute value, and it also ignores the dependence on whether the ReLU is active. This derivation is heuristic and not used to predict experimental outcomes, but as written it is not a valid explanation for why random targets increase gradient variance. It should be corrected or explicitly labeled as an informal intuition.
minor comments (5)
  1. [§1, Introduction] There is a typo: 'we aim to device a regularizer' should be 'we aim to devise a regularizer'.
  2. [Supplementary §7] The section title 'Case studies on the effect of the Psudo-task Regularization' contains a typo: 'Psudo' should be 'Pseudo'.
  3. [§5, Related Work] The abbreviation 'FPN' appears in the related-work paragraph on feature norm penalty, while the experiments and tables consistently use 'FNP'. The terminology should be unified.
  4. [§2.3, Eq. (7)] The statement 'Var(∂E_reg/∂a) = Var(f(o)) + Var(t)' assumes independence of t and f(o), but the pseudo-target t is drawn independently, so the independence assumption is fine; the issue is the absolute value, as noted in my major comment.
  5. [§3.1, Experimental Setup] When describing the validation split, the paper says '10% of the training images were randomly separated' but does not state whether the same split was used across the five runs. Clarifying this would help readers assess the reported standard deviations.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: PtR is an empirical regularization method whose reported gains come from external benchmark comparisons, not from fitting or self-citation.

full rationale

The paper's derivation chain is self-contained. The PtR total loss in Eq. (2) and the dynamic weight in Algorithm 1 / Eq. (5) are definitions: w is computed so that the gradient-norm ratio equals the chosen R; this is construction, not a prediction. Section 2.3's variance identity Var(dEreg/da)=Var(f(o))+Var(t) is a direct algebraic consequence of the toy model and the independence of t, and it is used only as motivation for why random targets add gradient variance relative to zero-target feature-norm penalties; it does not predict the experimental accuracies. The central evidence is the accuracy comparison in Tables 1-5 against the vanilla fine-tuning baseline and published methods (JointTrain, LwF, BTfW, Ind.Bias, PC, FNP), with hold-out selection of R and m described in Sec. 3.1. Tuning two hyperparameters on validation splits and then applying them to test sets is standard model selection, not fitting the reported test metric. The paper does cite work by the second author ([1], [19], [25]), but these citations appear in related-work and contextual comparisons (feature contraction, factors of transferability) and are not load-bearing for the claim that randomized regression targets regularize transfer learning. The skeptical concern about uncontrolled baselines across papers is a comparison-validity weakness, not a circularity; it is not a case where an equation reduces to its input or a fitted parameter is renamed a prediction. Therefore no circular step is present.

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

The central claim relies on no new entities. The main free parameters are the holdout-tuned R and m; T is a minor threshold chosen once. The key axioms are the domain assumption that distraction gradients help, and that comparisons to prior published methods are meaningful despite different baselines.

free parameters (3)
  • R (target gradient norm ratio) = 3 for ResNet; 3-5 for VGG-16
    Controls strength of PtR gradient relative to cross-entropy gradient. Tuned on holdout validation sets per architecture; VGG value reported as a range, not exact.
  • m (mean of uniform pseudo-target distribution) = 1 for ResNet; 10-15 for VGG-16
    Defines the scale of random regression targets t ~ Uniform[0,2m). Chosen on holdout sets; values depend on feature representation scale.
  • T (start threshold for PtR loss) = 1
    Mean epoch cross-entropy loss below which PtR branch is enabled. Paper says choice is not critical (supplementary Fig. 2), set to 1 across all experiments.
assumptions (3)
  • domain assumption ImageNet-pretrained weights provide a good initialization for transfer learning to the target datasets.
    All experiments start from ImageNet pretrained models (Section 3.1). This is standard but unproven for each target task.
  • domain assumption The 'distraction' gradient from the pseudo-task does not corrupt target-task optimization; gradient-norm balancing yields a proper regularization strength.
    Core conjecture of the paper (Section 1, Algorithm 1). The toy example in Sec 2.3 is not a proof of benefit.
  • domain assumption Comparison numbers from prior methods (JointTrain, LwF, PC, BTfW, Ind.Bias, FNP) are produced under comparable settings and are reliable.
    Tables 2-5 mix results from different papers, baselines, and network architectures; gains are compared across methods with differing baselines.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Regularizing CNN Transfer Learning with Randomised Regression." pith.science (2026). https://pith.science/paper/M5MXJ7FT

@misc{pith2026190805997,
  author       = {Pith},
  title        = {Pith review of: Regularizing CNN Transfer Learning with Randomised Regression},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/M5MXJ7FT}},
  note         = {Machine review of arXiv:1908.05997}
}
read the original abstract

This paper is about regularizing deep convolutional networks (CNNs) based on an adaptive framework for transfer learning with limited training data in the target domain. Recent advances of CNN regularization in this context are commonly due to the use of additional regularization objectives. They guide the training away from the target task using some forms of concrete tasks. Unlike those related approaches, we suggest that an objective without a concrete goal can still serve well as a regularized. In particular, we demonstrate Pseudo-task Regularization (PtR) which dynamically regularizes a network by simply attempting to regress image representations to pseudo-regression targets during fine-tuning. That is, a CNN is efficiently regularized without additional resources of data or prior domain expertise. In sum, the proposed PtR provides: a) an alternative for network regularization without dependence on the design of concrete regularization objectives or extra annotations; b) a dynamically adjusted and maintained strength of regularization effect by balancing the gradient norms between objectives on-line. Through numerous experiments, surprisingly, the improvements on classification accuracy by PtR are shown greater or on a par to the recent state-of-the-art methods.

Figures

Figures reproduced from arXiv: 1908.05997 by the authors.

Figure 1
Figure 1. An overview of the proposed Pseudo-task Regularization [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. A sample from the validation set of CUB200 that PtR correctly rectified mis-classification caused in the vanilla fine-tuning. [PITH_FULL_IMAGE:figures/full_fig_p007_2.png] view at source ↗
Figure 3
Figure 3. A sample from the validation set of CUB200 that the standard fine-tuning correctly classified but PtR wrongly predicted. See [PITH_FULL_IMAGE:figures/full_fig_p008_3.png] view at source ↗
Figures from the paper (6 more)
Figure 2
Figure 2. Figure 2: Validation accuracy (in %) on Flower and Stan￾ford40, according to different timing when PtR joins the net￾work training on the course of model convergence using a varying threshold, T, for the mean epoch cross-entropy loss (with SML1 regression). As shown in [PITH_FU…
Figure 1
Figure 1. Figure 1: The scales of datasets used in our experiments (in the magenta shadowed area) among other popular transfer learning benchmarks, e.g. CIFAR10 and MNIST, as well as the commonly used source datasets such as ImageNet [1] and CelebA datasets [8]. The average number of per-…
Figure 3
Figure 3. Figure 3: Examples of True Rectifications [PITH_FULL_IMAGE:figures/full_fig_p014_3.png]
Figure 4
Figure 4. Figure 4: Examples of False Rectifications [PITH_FULL_IMAGE:figures/full_fig_p015_4.png]
Figure 5
Figure 5. Figure 5: Examples of Correct Predictions by Both Methods. (a) Both FT and PtR make correct predictions at the second rank. PtR still predicts fewer minor probability and makes less noisy predictions than FT. (b) Although both rank-1 predictions are wrong, PtR correctly identifi…
Figure 6
Figure 6. Figure 6: Examples of Wrong Predictions by Both Methods [PITH_FULL_IMAGE:figures/full_fig_p016_6.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

51 extracted references · 41 canonical work pages

  1. [1]

    Factors of transferability for a generic convnet representation

    Hossein Azizpour, Ali Sharif Razavian, Josephine Sullivan, Atsuto Maki, and Stefan Carlsson. Factors of transferability for a generic convnet representation. IEEE Transactions on Pattern Analysis and Machine Intelligence , 2016

  2. [2]

    Gradnorm: Gradient normalization for adaptive loss balancing in deep multitask networks

    Zhao Chen, Vijay Badrinarayanan, Chen-Yu Lee, and Andrew Rabinovich. Gradnorm: Gradient normalization for adaptive loss balancing in deep multitask networks. In International Conference on Machine Learning (ICML) , 2018

  3. [3]

    Imagenet: A large-scale hierarchical image database

    Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Fei-Fei Li. Imagenet: A large-scale hierarchical image database. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2009

  4. [4]

    Decaf: A deep convolutional activation feature for generic visual recognition

    Jeff Donahue, Yangqing Jia, Oriol Vinyals, Judy Hoffman, Ning Zhang, Eric Tzeng, and Trevor Darrell. Decaf: A deep convolutional activation feature for generic visual recognition. In International Conference on Machine Learning (ICML) , 2014

  5. [5]

    Pairwise confusion for fine-grained visual classification

    Abhimanyu Dubey, Otkrist Gupta, Pei Guo, Ramesh Raskar, Ryan Farrell, and Nikhil Naik. Pairwise confusion for fine-grained visual classification. In European Conference on Computer Vision (ECCV) , 2018

  6. [6]

    Borrowing treasures from the wealthy: Deep transfer learning through selective joint fine-tuning

    Weifeng Ge and Yizhou Yu. Borrowing treasures from the wealthy: Deep transfer learning through selective joint fine-tuning. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2017

  7. [7]

    Girshick, Pieter Noordhuis, Lukasz Wesolowski, Aapo Kyrola, Andrew Tulloch, Yangqing Jia, and Kaiming He

    Priya Goyal, Piotr Doll \' a r, Ross B. Girshick, Pieter Noordhuis, Lukasz Wesolowski, Aapo Kyrola, Andrew Tulloch, Yangqing Jia, and Kaiming He. Accurate, large minibatch SGD: training imagenet in 1 hour. Arxiv preprint 1706.02677 , 2017

  8. [8]

    Caltech-256 object category dataset

    Gregory Griffin, Alex Holub, and Pietro Perona. Caltech-256 object category dataset. Technical report, California Institute of Technology, 2007

Show all 51 references
  1. [9]

    Weinberger

    Chuan Guo, Geoff Pleiss, Yu Sun, and Kilian Q. Weinberger. On calibration of modern neural networks. In International Conference on Machine Learning (ICML) , 2017

  2. [10]

    Low-shot visual recognition by shrinking and hallucinating features

    Bharath Hariharan and Ross Girshick. Low-shot visual recognition by shrinking and hallucinating features. In The IEEE International Conference on Computer Vision (ICCV) , 2017

  3. [11]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2016

  4. [12]

    Weinberger

    Gao Huang, Zhuang Liu, Laurens van der Maaten, and Kilian Q. Weinberger. Densely connected convolutional networks. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2017

  5. [13]

    Batch normalization: Accelerating deep network training by reducing internal covariate shift

    Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint 1502.03167 , 2015

  6. [14]

    Three factors influencing minima in SGD

    Stanislaw Jastrzebski, Zachary Kenton, Devansh Arpit, Nicolas Ballas, Asja Fischer, Yoshua Bengio, and Amos Storkey. Three factors influencing minima in SGD . Arxiv 1711.04623 , 2018

  7. [15]

    One millisecond face alignment with an ensemble of regression trees

    Vahdat Kazemi and Josephine Sullivan. One millisecond face alignment with an ensemble of regression trees. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2014

  8. [16]

    Pose N et: A convolutional network for real-time 6-dof camera relocalization

    Alex Kendall, Matthew Grimes, and Roberto Cipolla. Pose N et: A convolutional network for real-time 6-dof camera relocalization. In Proc. of the International Conference on Computer Vision ( ICCV ) . 2015

  9. [17]

    On large-batch training for deep learning: Generalization gap and sharp minima

    Nitish Shirish Keskar, Dheevatsa Mudigere, Jorge Nocedal, Mikhail Smelyanskiy, and Ping Tak Peter Tang. On large-batch training for deep learning: Generalization gap and sharp minima. In Proc. of the International Conference on Learning Representations (ICLR) , 2017

  10. [18]

    Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems . 2012

  11. [19]

    Feature contraction: New convnet regularization in image classification

    Vladimir Li and Atsuto Maki. Feature contraction: New convnet regularization in image classification. In British Machine Vision Conference (BMVC) , 2018

  12. [20]

    Explicit inductive bias for transfer learning with convolutional networks

    Xuhong Li, Yves Grandvalet, and Franck Davoine. Explicit inductive bias for transfer learning with convolutional networks. In International Conference on Machine Learning (ICML) , 2018

  13. [21]

    Learning without forgetting

    Zhizhong Li and Derek Hoiem. Learning without forgetting. In European Conference on Computer Vision (ECCV) , 2016

  14. [22]

    Lawrence Zitnick

    Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Doll \'a r, and C. Lawrence Zitnick. Microsoft COCO : Common objects in context. In European Conference on Computer Vision (ECCV) , 2014

  15. [23]

    Deep learning face attributes in the wild

    Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild. In The IEEE International Conference on Computer Vision (ICCV) , 2015

  16. [24]

    Learning transferable features with deep adaptation networks

    Mingsheng Long, Yue Cao, Jianmin Wang, and Michael Jordan. Learning transferable features with deep adaptation networks. In International Conference on Machine Learning (ICML) , 2015

  17. [25]

    Toward principled regularization of deep networks—from weight decay to feature contraction

    Atsuto Maki. Toward principled regularization of deep networks—from weight decay to feature contraction. Science Robotics , 4(30), 2019

  18. [26]

    Curriculum dropout

    Pietro Morerio, Jacopo Cavazza, Riccardo Volpi, Rene Vidal, and Vittorio Murino. Curriculum dropout. In IEEE International Conference on Computer Vision (ICCV) , 2017

  19. [27]

    Automated flower classification over a large number of classes

    Maria-Elena Nilsback and Andrew Zisserman. Automated flower classification over a large number of classes. In Proc. of the Indian Conference on Computer Vision, Graphics and Image Processing , 2008

  20. [28]

    Learning and transferring mid-level image representations using convolutional neural networks

    Maxime Oquab, Leon Bottou, Ivan Laptev, and Josef Sivic. Learning and transferring mid-level image representations using convolutional neural networks. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2014

  21. [29]

    Automatic differentiation in pytorch

    Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito, Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in pytorch. In NIPS-W , 2017

  22. [30]

    Recognizing indoor scenes

    Ariadna Quattoni and Antonio Torralba. Recognizing indoor scenes. 2009 IEEE Computer Society Conference on Computer Vision and Pattern Recognition Workshops (CVPR Workshops) , 2009

  23. [31]

    Very deep convolutional networks for large-scale image recognition

    Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. Arxiv preprint 1409.1556 , 2014

  24. [32]

    Dropout: A simple way to prevent neural networks from overfitting

    Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: A simple way to prevent neural networks from overfitting. Journal of Machine Learning Research , 2014

  25. [33]

    Going deeper with convolutions

    Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In The IEEE International Conference on Computer Vision (ICCV) , 2014

  26. [34]

    Simultaneous deep transfer across domains and tasks

    Eric Tzeng, Judy Hoffman, Trevor Darrell, and Kate Saenko. Simultaneous deep transfer across domains and tasks. In The IEEE International Conference on Computer Vision (ICCV) , 2015

  27. [35]

    The Caltech-UCSD Birds-200-2011 Dataset

    Catherine Wah, Steve Branson, Peter Welinder, Pietro Perona, and Serge Belongie. The Caltech-UCSD Birds-200-2011 Dataset . Technical Report CNS-TR-2011-001, California Institute of Technology, 2011

  28. [36]

    Disturblabel: Regularizing cnn on the loss layer

    Lingxi Xie, Jingdong Wang, Zhen Wei, Meng Wang, and Qi Tian. Disturblabel: Regularizing cnn on the loss layer. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2016

  29. [37]

    Human action recognition by learning bases of action attributes and parts

    Bangpeng Yao, Xiaoye Jiang, Aditya Khosla, Andy Lai Lin, Leonidas Guibas, and Li Fei-Fei. Human action recognition by learning bases of action attributes and parts. In The IEEE International Conference on Computer Vision (ICCV) , 2011

  30. [38]

    Learning face representation from scratch

    Dong Yi, Zhen Lei, Shengcai Liao, and Stan Z Li. Learning face representation from scratch. Arxiv preprint 1411.7923 , 2014

  31. [39]

    How transferable are features in deep neural networks? In Advances in Neural Information Processing Systems 27

    Jason Yosinski, Jeff Clune, Yoshua Bengio, and Hod Lipson. How transferable are features in deep neural networks? In Advances in Neural Information Processing Systems 27 . 2014

  32. [40]

    Zeiler and Rob Fergus

    Matthew D. Zeiler and Rob Fergus. Visualizing and understanding convolutional networks. In European Conference on Computer Vision (ECCV) , 2014

  33. [41]

    A modulation module for multi-task learning with applications in image retrieval

    Xiangyun Zhao, Haoxiang Li, Xiaohui Shen, Xiaodan Liang, and Ying Wu. A modulation module for multi-task learning with applications in image retrieval. In Proceedings of the European Conference on Computer Vision (ECCV) , 2018

  34. [42]

    The anisotropic noise in stochastic gradient descent: Its behavior of escaping from sharp minima and regularization effects

    Zhanxing Zhu, Jingfeng Wu, Bing Yu, Lei Wu, and Jinwen Ma. The anisotropic noise in stochastic gradient descent: Its behavior of escaping from sharp minima and regularization effects. In Proc. of the Interational Conference on Machine Learning (ICML) , 2019

  35. [43]

    write newline

    " write newline "" before.all 'output.state := FUNCTION fin.entry add.period write newline FUNCTION new.block output.state before.all = 'skip after.block 'output.state := if FUNCTION new.sentence output.state after.block = 'skip output.state before.all = 'skip after.sentence '...

  36. [44]

    J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and F.-F. Li. Imagenet: A large-scale hierarchical image database. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2009

  37. [45]

    Dubey, O

    A. Dubey, O. Gupta, P. Guo, R. Raskar, R. Farrell, and N. Naik. Pairwise confusion for fine-grained visual classification. In European Conference on Computer Vision (ECCV) , 2018

  38. [46]

    Ge and Y

    W. Ge and Y. Yu. Borrowing treasures from the wealthy: Deep transfer learning through selective joint fine-tuning. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2017

  39. [47]

    Krizhevsky

    A. Krizhevsky. Learning multiple layers of features from tiny images. 2009

  40. [48]

    LeCun and C

    Y. LeCun and C. Cortes. MNIST handwritten digit database. 2010

  41. [49]

    X. Li, Y. Grandvalet, and F. Davoine. Explicit inductive bias for transfer learning with convolutional networks. In International Conference on Machine Learning (ICML) , 2018

  42. [50]

    Li and D

    Z. Li and D. Hoiem. Learning without forgetting. In European Conference on Computer Vision (ECCV) , 2016

  43. [51]

    Z. Liu, P. Luo, X. Wang, and X. Tang. Deep learning face attributes in the wild. In The IEEE International Conference on Computer Vision (ICCV) , 2015

Pith tools

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