Pith. sign in

REVIEW 3 major objections 4 minor 300 references

Learning from Limited and Imperfect Data

T0 review · 3 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read This thesis shows that deep networks can learn effectively from long-tailed and domain-shifted data when the training loop has balanced feedback, covering GAN generation, classifier regularization, semi-supervised metric optimization, and…

desk verdict A transparent, well-organized compilation thesis of nine strong peer-reviewed papers; the new framing is honest but the practical-algorithms claim outruns the balanced-feedback assumptions the methods actually require. read the letter →

arxiv 2507.21205 v1 pith:A3SNGKK7 submitted 2025-07-28 cs.LG cs.AIcs.CV

classification cs.LGcs.AIcs.CV
keywords long-tailedlearningdomainadaptationgenerativeadversarialnetworkssemi-supervisedsharpness-awareminimizationstyleganclassimbalanceself-training
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

This thesis asks whether deep neural networks can be trained on the imbalanced, uncurated data found in the real world—where a few head classes dominate and many tail classes have few samples—and still perform well on all classes. It answers yes, and supports the answer with four families of methods: classifier-guided training and latent decorrelation so GANs generate diverse images for tail classes; sharpness-aware optimization that escapes saddle points in tail-class loss surfaces; cost-sensitive self-training and selective mixup for semi-supervised long-tailed learning with non-decomposable metrics; and smooth adversarial training with submodular sample selection for efficient domain adaptation. The headline evidence is a set of state-of-the-art benchmark results, including NoisyTwins scaling high-resolution StyleGANs to ImageNet-LT and iNaturalist2019 with roughly a 19 percent relative FID improvement.

What carries the argument

The unifying mechanism is a regularization prior that transfers a well-behaved property from data-rich classes (head classes, source domain) to data-poor ones (tail classes, target domain). Concretely, the thesis uses spectral norm bounds on grouped conditional BatchNorm parameters to prevent class-specific mode collapse, a BarlowTwins-style cross-correlation objective to decorrelate StyleGAN W-space latents, sharpness-aware minimization on re-weighted losses to escape saddle points, a weighted consistency regularizer with a held-out balanced set to guide self-training, a selected mixup distribution to optimize non-decomposable metrics, submodular score functions for representative sample selection, and a smoothing radius for domain adversarial training. Each of these is inexpensive relative to re-curating or re-generating data.

What would settle it

Retrain NoisyTwins and its StyleGAN2-ADA baseline on ImageNet-LT with identical hyperparameters and random seeds; if the reported relative FID improvement of roughly 19 percent and the iFID-CLIP gains do not reproduce, the thesis's strongest generative claim fails.

Watch

Extended reading notes

Core claim

The central claim is that the failures of deep models on imperfect data are systematic, hence correctable. On long-tailed data, conditional GANs collapse on tail classes because class-specific conditional BatchNorm parameters explode in spectral norm and because StyleGAN latents collapse in W-space; classifiers converge to saddle points on tail-class losses; self-training ignores minority classes; and domain-adversarial training lands in sharp minima. Each part of the thesis identifies the mechanism and introduces a targeted fix—a class-balancing regularizer that uses a pretrained classifier's feedback, a group spectral regularizer on cBN parameters, a NoisyTwins contrastive decorrelation of W-space latents, sharpness-aware minimization, cost-sensitive self-training, selective mixup, submodular subset selection, and smooth domain adversarial training—so that tail classes and target domains achieve the same kind of generalizable solutions as head classes and source domains.

Load-bearing premise

All of the reported gains assume that reliable balanced feedback is available during training or evaluation—a pretrained classifier that can recognize tail classes, or a balanced held-out set—so the methods may not transfer to deployments where no such balanced signal exists.

Editorial extensions

If this is right

  • Practitioners can train image generators and classifiers directly on raw long-tailed data instead of discarding samples from head classes to force balance.
  • Semi-supervised long-tailed learning can be steered by non-decomposable metrics such as worst-case recall using only a small balanced held-out set for feedback.
  • Domain adaptation can be made sample-efficient by labeling a few informative target points selected by submodular criteria and by converging to smooth minima in the source loss.
  • Vision Transformers can be trained from scratch on long-tailed datasets via distillation from flat CNN teachers rather than requiring large balanced pre-training.

Reading between the lines

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

  • The repeated pattern suggests a general recipe: identify a property that holds on data-rich classes and regularize to extend it to data-poor classes; this could transfer to other imbalance settings such as federated learning with skewed client data or foundation-model fine-tuning on rare categories.
  • The NoisyTwins finding that W-space collapse tracks mode collapse may carry over to other generative architectures, so a similar decorrelation objective might help class-conditional diffusion models on long-tailed data.
  • The CSST/SelMix idea of using a small balanced validation set to set training weights could be combined with foundation-model fine-tuning to adapt non-decomposable objectives without full re-training.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 4 minor

Summary. This thesis, submitted as a PhD dissertation and posted on arXiv, consolidates nine peer-reviewed papers on learning from long-tailed and domain-shifted data. Part I proposes CBGAN, gSR, and NoisyTwins to stabilize GAN training on long-tailed distributions; Part II applies sharpness-aware minimization to class-imbalanced classification and introduces DeiT-LT for vision transformers; Part III develops CSST and SelMix for semi-supervised optimization of non-decomposable metrics; Part IV contributes S3V AADA and SDAT for efficient domain adaptation. The abstract's central claim is that these methods enable deep networks to learn effectively from limited and imperfect data, with headline results such as NoisyTwins scaling StyleGAN2 to ImageNet-LT and CSST providing strong theoretical guarantees.

Significance. If the headline results hold, the thesis is significant. It offers a coherent toolbox for long-tail generation (NoisyTwins), recognition (SAM, DeiT-LT), semi-supervised metric optimization (CSST, SelMix), and efficient adaptation (S3V AADA, SDAT), each backed by peer review. The appendices include proofs of the main theoretical results, including weighted-expansion bounds for CSST, convergence analysis for SelMix, and edge-of-stability analyses for SDAT, as well as ablations for the key hyperparameters. Some chapters also report statistical analyses (App. C.3.1, E.5, F.13, H.11). The main caveat is that the end-to-end thesis claim is broader than the settings validated: most methods rely on balanced held-out feedback or a pretrained classifier, and the manuscript does not quantify behavior when that feedback is absent, noisy, or itself long-tailed.

major comments (3)
  1. [Abstract, Secs. 7.5, 8.4, 2.4.4] The headline claim that the methods are practical for real-world 'limited and imperfect data' is established only under curated balanced-feedback conditions. CSST sets its gain matrix from a balanced held-out set (Sec. 7.5), SelMix selects its mixup distribution by optimizing the target metric on a balanced held-out set (Sec. 8.4), CBGAN requires a pretrained classifier and diverges when tail accuracy is zero (Sec. 2.4.4), and SDAT chooses its perturbation radius per dataset (App. H.9). No experiment in the thesis varies the quality or distribution of this feedback, for example by using long-tailed, noisy, or absent validation sets. The thesis-level claim should be re-scoped or supplemented with such a sensitivity analysis; otherwise the reported gains cannot be expected to transfer to the uncurated deployment scenario emphasized in the motivation.
  2. [Secs. 7.5 and 8.4] There is a potential validation-fitting circularity. In CSST and SelMix, the held-out set is used both to choose training weights (or the mixup distribution) and to report the final non-decomposable metric. If the numbers in Tables 7.2-7.4 and 8.2-8.4 are computed on the same set used for this feedback, the reported improvements are optimistically biased. Please clarify explicitly whether a separate test set was used for the reported numbers. If a separate test set was used, report the held-out selection curves as well; if not, add an evaluation on a disjoint held-out set to support the state-of-the-art claims.
  3. [Sec. 7.3.3 and Theorem 7.4] The 'strong guarantees' claimed for CSST depend on a weighted expansion property of the unlabeled data. This property is assumed, not verified on CIFAR-LT, ImageNet, or the NLP datasets, and no diagnostic is reported. Since the guarantee is conditional on an unmeasured condition, the abstract's wording overstates what is established. Either verify the property empirically, or rephrase the theoretical claim as a conditional guarantee with the expansion assumption clearly stated in the abstract and introduction.
minor comments (4)
  1. [Sec. 2.3.2, Eq. (2.15)] The displayed bound in Eq. (2.15) is ambiguous because the typesetting of the denominator, involving N^k and a sum of inverse N^k terms, makes the direction and scaling of the bound hard to parse. Please rewrite the expression with explicit parentheses and define all quantities in the display.
  2. [Tables 6.3, 8.2, 10.1] Several headline tables report a single number for each method, while standard deviations appear only in appendices. For claims of state-of-the-art performance by small margins, please include error bars or significance tests in the main text, or clearly indicate which numbers are already reported with uncertainty in the appendix.
  3. [Sec. 2.4.3] The semi-supervised experiment uses a classifier fine-tuned with 0.1% labeled data. The text should state more explicitly whether the same classifier provides the labels used for the regularizer during GAN training and for the annotator used to compute KL divergence, since the two roles could lead to different conclusions about the method's data efficiency.
  4. [General] The thesis does not provide a single runnable artifact; individual chapters refer to different project pages or provide no code link. For reproducibility, include one consolidated code release or a table listing the available code repositories for each chapter.

Circularity Check

2 steps flagged · score 4.0 of 10

Partial evaluation-loop circularity: CBGAN's class-balance metric is the same classifier signal it optimizes, and CSST/SelMix tune on the same family of metrics they report; core FID/accuracy results remain externally benchmarked.

  1. self definitional [Sec. 2.3.2 (Eq. 2.7) and Sec. 2.4 'Evaluation metrics' (Table 2.1)]
    "The regularizer objective is defined as the minimization of the term ( Lreg) below: min ˆp X k ˆpk log( ˆpk) N t k (2.7) ... where ˆp = Pn i=1 C(G(zi)) n ... KL Divergence w.r.t. Uniform Distribution of labels : Labels for the generated samples are obtained by using the pre-trained classifier (trained on balanced data) as an annotator."

    The training regularizer in Eq. (2.7) is a weighted entropy of the pretrained classifier's predicted class distribution over generated images; the KL-Divergence evaluation in Sec. 2.4 is computed from the same classifier-predicted label distribution over generated samples. A generator that makes the classifier's outputs uniform therefore scores low KL by construction, so the reported 'balanced distribution' improvement in Table 2.1 is partly the training objective itself. FID and classifier accuracy on real labels are external and keep the core result non-circular.

  2. fitted input called prediction [Abstract; Sec. 1.3.3; Sec. 7.3.4-7.5; Sec. 8.4]
    "we introduce a paradigm where we measure the performance using relevant non-decomposable metrics such as worst-case recall and recall H-mean on a held-out set, and we use their feedback to learn in a semi-supervised long-tailed setting. ... We introduce an online algorithm that periodically measures the model performance on the held-out set and then dynamically adjusts the self-training regularizer to effectively optimize the desired metric objective."

    The headline metrics of CSST and SelMix (worst-case recall, H-mean, mean recall under coverage) are the same quantities computed on the held-out set and used to update the gain matrix or mixup distribution. Thus the reported gains are partially a direct optimization of the evaluation statistic rather than an independent prediction of it. Whether this is fully circular depends on whether the reported test set is disjoint from the feedback set; the thesis does not demonstrate that, and the limitations appendices (F.1.1, G.13) concede reliance on a balanced held-out set. This is a mild validation-fitting burden, not a mathematical reduction.

full rationale

The thesis is a compilation of externally benchmarked works: gSR, SAM for class-imbalanced learning, DeiT-LT, SDAT, and S3VAADA derive their regularizers or objectives from stated assumptions and evaluate on standard datasets (CIFAR-LT, ImageNet-LT, iNaturalist, Office-Home, VisDA), so most chapters are self-contained empirical derivations. No load-bearing self-citation chain or imported uniqueness theorem was found; citations of the author's prior papers are contextual. The clearest circularity is in CBGAN: the class-balance regularizer and the KL-Divergence evaluation are both classifier-predicted label distributions over generated images, making the KL result partly self-definitional. CSST and SelMix are transparent about using held-out metric feedback to set training weights, but this creates a mild validation-fitting burden because the reported metric is the same family as the feedback signal; the appendices acknowledge the balanced-validation assumption. NoisyTwins proposes a CLIP-based iFID metric, but standard FID also improves, so the main state-of-the-art claim does not rest solely on the self-defined metric. Overall score 4 reflects partial evaluation-loop circularity while the core benchmark results remain independent.

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

The central results rest on standard ML assumptions plus a number of tuned hyperparameters. There are no new physical or conceptual entities introduced; the proposed regularizers and objectives are modeling choices, not invented entities. The main domain assumptions are balanced held-out feedback and cluster structure in target domains.

free parameters (8)
  • CBGAN exponential forgetting factor alpha = 0.5
    Controls how quickly effective class frequency tracks recent GAN output; set by default, not derived (Sec. 2.3.1).
  • CBGAN regularizer weight lambda = scaled by imbalance ratio (Table A.6)
    Chosen per dataset and imbalance; central to the balancing behavior (Sec. 2.3.3).
  • gSR effective-number alpha = 0.99
    Smooths inverse-frequency weighting for cBN spectral regularization (Sec. 3.3.3).
  • gSR group size ng = 16
    Ablated; ng=16 gives the best FID and compute trade-off (Table 3.6).
  • NoisyTwins noise std sigma and loss weight lambda = ablated ranges in Fig. 4.7
    Strength of twin augmentation and decorrelation loss; tuned per dataset (Sec. 4.6).
  • SAM perturbation radius rho = dataset-specific values (App. D.1, H.8)
    Controls flatness of the loss landscape; chosen per dataset and method.
  • SelMix inverse temperature s = ablated in App. G.11
    Sharpness of the mixup selection distribution; tuned for each objective.
  • SDAT perturbation radius rho = dataset-specific values (App. H.9)
    Smoothing radius for the task loss; tuned per benchmark.
assumptions (5)
  • domain assumption Evaluation uses balanced held-out sets as ground truth for all classes.
    Throughout, metrics such as FID, worst-case recall, and H-mean are computed on a balanced set; real deployments may not have such a set. Stated in Sec. 1.2.1 and 1.3.3.
  • domain assumption A pretrained classifier's predicted labels are a reliable proxy for the true class of generated images.
    CBGAN regularizes to balance classifier predictions; if tail-class accuracy is zero, the method diverges (Sec. 2.4.4).
  • ad hoc to paper A weighted expansion property holds for the unlabeled data in semi-supervised long-tail learning.
    CSST's theoretical guarantees rely on a weighted consistency and expansion assumption, adapted from prior work; examples and proofs are in App. F.3.
  • domain assumption Cluster assumption: target-domain unlabeled samples form class-consistent clusters in feature space.
    S3V AADA's representativeness and diversity scores assume such structure (Sec. 9.3.2).
  • standard math Standard GAN convergence and loss landscape analyses, including power iteration for spectral norms and Hessian eigenvalue computations.
    gSR uses power iteration to estimate spectral norms; the saddle-point analysis assumes standard Hessian computations (Ch. 3, 5, 10).

how reviews work

0 comments
Cite this review

Pith. "Pith review of Learning from Limited and Imperfect Data." pith.science (2026). https://pith.science/paper/A3SNGKK7

@misc{pith2026250721205,
  author       = {Pith},
  title        = {Pith review of: Learning from Limited and Imperfect Data},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/A3SNGKK7}},
  note         = {Machine review of arXiv:2507.21205}
}
read the original abstract

The distribution of data in the world (eg, internet, etc.) significantly differs from the well-curated datasets and is often over-populated with samples from common categories. The algorithms designed for well-curated datasets perform suboptimally when used for learning from imperfect datasets with long-tailed imbalances and distribution shifts. To expand the use of deep models, it is essential to overcome the labor-intensive curation process by developing robust algorithms that can learn from diverse, real-world data distributions. Toward this goal, we develop practical algorithms for Deep Neural Networks which can learn from limited and imperfect data present in the real world. This thesis is divided into four segments, each covering a scenario of learning from limited or imperfect data. The first part of the thesis focuses on Learning Generative Models from Long-Tail Data, where we mitigate the mode-collapse and enable diverse aesthetic image generations for tail (minority) classes. In the second part, we enable effective generalization on tail classes through Inductive Regularization schemes, which allow tail classes to generalize as effectively as the head classes without requiring explicit generation of images. In the third part, we develop algorithms for Optimizing Relevant Metrics for learning from long-tailed data with limited annotation (semi-supervised), followed by the fourth part, which focuses on the Efficient Domain Adaptation of the model to various domains with very few to zero labeled samples.

Figures

Figures reproduced from arXiv: 2507.21205 by the authors.

Figure 2.1
Figure 2.1. Distribution of classes and corresponding FID scores on long-tailed CIFAR-10. [PITH_FULL_IMAGE:figures/full_fig_p052_2_1.png] view at source ↗
Figure 2.2
Figure 2.2. Class Balancing Regularizer aims to help GANs generate balanced distribution [PITH_FULL_IMAGE:figures/full_fig_p054_2_2.png] view at source ↗
Figure 2.3
Figure 2.3. Shows the percentage of generated samples for class 0 by SNDCGAN on CIFAR [PITH_FULL_IMAGE:figures/full_fig_p058_2_3.png] view at source ↗
Figures from the paper (48 more)
Figure 2.4
Figure 2.4. Figure 2.4: Images generated by different GANs for CIFAR-10 with imbalance ratio ( [PITH_FULL_IMAGE:figures/full_fig_p061_2_4.png]
Figure 2.5
Figure 2.5. Figure 2.5: Shows the 64×64 generated images for the iNat-2019 dataset for different baselines. stable in balanced scenario, it is unstable in case of long-tailed version of the given dataset. 2) Biased Distribution: Contrary to cGAN, we find that the distribution of classes gen…
Figure 2.6
Figure 2.6. Figure 2.6: Analysis of Classifier Performance on long-tailed CIFAR-10 ( [PITH_FULL_IMAGE:figures/full_fig_p065_2_6.png]
Figure 3.1
Figure 3.1. Figure 3.1: Regularizing GANs on long-tailed training data. [PITH_FULL_IMAGE:figures/full_fig_p068_3_1.png]
Figure 3.2
Figure 3.2. Figure 3.2: Correlation between class-specific mode collapse and spectral explosion. [PITH_FULL_IMAGE:figures/full_fig_p070_3_2.png]
Figure 3.3
Figure 3.3. Figure 3.3: Algorithmic overview. During each training step, 1) we extract the gain [PITH_FULL_IMAGE:figures/full_fig_p072_3_3.png]
Figure 3.4
Figure 3.4. Figure 3.4: Covariance matrices of Γ l y for (l = 1) for SNGAN baseline. After using gSR (for tail classes with high λ) the covariance matrix converges to a diagonal matrix in comparison to without gSR (where large correlations exist). This demonstrates the decorrelation effect …
Figure 3.6
Figure 3.6. Figure 3.6: Qualitative evaluations of SNGAN baseline on [PITH_FULL_IMAGE:figures/full_fig_p076_3_6.png]
Figure 3.7
Figure 3.7. Figure 3.7: Class-Wise FID and mean FID (Intra-FID) of Big￾GAN on CIFAR-10 over 5K gen￾erated images(ρ = 100) [PITH_FULL_IMAGE:figures/full_fig_p077_3_7.png]
Figure 3.8
Figure 3.8. Figure 3.8: Qualitative comparison of BigGAN variants on LSUN dataset ( [PITH_FULL_IMAGE:figures/full_fig_p078_3_8.png]
Figure 3.9
Figure 3.9. Figure 3.9: Effect of gSR on spectral norms of Γ l y (CIFAR-10). We observe a spectral explosion both for SNGAN(left) and BigGAN(right) baselines of tail classes’ cBN parameters. This is prevented by addition of gSR as shown on corresponding right. 3.5.3 Comparison with related …
Figure 3.10
Figure 3.10. Figure 3.10: StyleGAN2-ADA On CIFAR-10 (ρ = 100), comparison of gSR with the baseline. Can gSR work with StyleGAN-2? We train and analyze the StyleGAN2-ADA implemen￾tation available [136] on long-tailed datasets, where we find it also suffers from class-specific mode collapse. W…
Figure 4.1
Figure 4.1. Figure 4.1: Qualitative Comparison on tail classes (T1-T4) for iNaturalist 2019. We provide [PITH_FULL_IMAGE:figures/full_fig_p083_4_1.png]
Figure 4.2
Figure 4.2. Figure 4.2: Schematic illustration of W space for different GANs. Existing conditioning methods either suffer from mode collapse [142] or lead to class confusion [259] in W space. With proposed NoisyTwins, we achieve intra class diversity while avoiding class confusion. recent c…
Figure 4.3
Figure 4.3. Figure 4.3: Comparison of GANs and their W space for CIFAR10-LT. We plot the generated images on (left) and generate a t-SNE plot of w latents for generated images in W space (right). We find that mode collapse and class confusion in images is linked to the corresponding collaps…
Figure 4.4
Figure 4.4. Figure 4.4: Overview of NoisyTwins. For the i th sample of class c i , we create twin augmenta￾tions (c˜ i a , c˜ i b ), by sampling from a Gaussian centered at class embedding (µc i). After this, we concatenate them with the same z i and obtain (w˜ i a , w˜ i b ) from the mappi…
Figure 4.5
Figure 4.5. Figure 4.5: Choice of Eval. backbone: intra-FID (iFID) of a class based on InceptionV3 [PITH_FULL_IMAGE:figures/full_fig_p091_4_5.png]
Figure 4.6
Figure 4.6. Figure 4.6: Qualitative results on ImageNet-LT for tail classes. We find that existing SotA [PITH_FULL_IMAGE:figures/full_fig_p093_4_6.png]
Figure 4.7
Figure 4.7. Figure 4.7: Ablation of Hyperparameters. Quantitative comparison on CIFAR10-LT for stan [PITH_FULL_IMAGE:figures/full_fig_p095_4_7.png]
Figure 5.1
Figure 5.1. Figure 5.1: With class-wise Hessian analysis of loss, we observe that when deep neural networks [PITH_FULL_IMAGE:figures/full_fig_p100_5_1.png]
Figure 5.2
Figure 5.2. Figure 5.2: Eigen Spectral Density (Class-wise) on the head class (Class 0) and tail class (Class [PITH_FULL_IMAGE:figures/full_fig_p103_5_2.png]
Figure 5.3
Figure 5.3. Figure 5.3: A) In CE+DRW, the tail class loss landscapes show significant non-convexity [PITH_FULL_IMAGE:figures/full_fig_p105_5_3.png]
Figure 5.4
Figure 5.4. Figure 5.4: Impact of ρ (regular￾ization factor) on Overall Accu￾racy and Tail Accuracy (CIFAR￾10 LT). Baselines: a) Cross-Entropy (CE): CE minimizes the average loss across all samples, and thus, the performance of tail classes is much lower than that of head classes. b) CE + D…
Figure 6.1
Figure 6.1. Figure 6.1: We propose DeiT-LT (Fig [PITH_FULL_IMAGE:figures/full_fig_p114_6_1.png]
Figure 6.2
Figure 6.2. Figure 6.2: Overview of DeiT-LT. The Head Expert classifier trains using CE loss against [PITH_FULL_IMAGE:figures/full_fig_p116_6_2.png]
Figure 6.3
Figure 6.3. Figure 6.3: Entropy of teacher outputs: Comparison of the entropy of in-distribution samples [PITH_FULL_IMAGE:figures/full_fig_p119_6_3.png]
Figure 6.4
Figure 6.4. Figure 6.4: Effect of Distillation in DeiT-LT. In a) we train DeiT-B with teachers trained on in-distribution images (RegNetY-16GF) and out-of-distribution images (ResNet32). The out￾of-distribution distillation leads to diverse experts, which become more diverse with deferred r…
Figure 6.5
Figure 6.5. Figure 6.5: Visual comparison of the attention maps with respect to the [PITH_FULL_IMAGE:figures/full_fig_p126_6_5.png]
Figure 7.1
Figure 7.1. Figure 7.1: We show a comparison of the SOTA CSL [222] method with the Self￾training-based Semi-Supervised methods, for optimizing the minimum recall objec￾tive on the CIFAR10-LT dataset. Our pro￾posed CSST framework produces significant gains in the desired metric leveraging ad…
Figure 7.2
Figure 7.2. Figure 7.2: Using a simple example, we explain a difference in theoretical assumptions compared [PITH_FULL_IMAGE:figures/full_fig_p135_7_2.png]
Figure 7.3
Figure 7.3. Figure 7.3: CIFAR-10 [PITH_FULL_IMAGE:figures/full_fig_p140_7_3.png]
Figure 7.5
Figure 7.5. Figure 7.5: Maximizing average recall under coverage con [PITH_FULL_IMAGE:figures/full_fig_p143_7_5.png]
Figure 8.1
Figure 8.1. Figure 8.1: Overview of Results on CIFAR-10 LT (Semi-supervised). We evaluate the models from SotA Semi￾supervised techniques of DASO [232], ABC [180], CSST [260] and proposed SelMix on different non-decomposable objectives. We find that SelMix pro￾duces the best performance for…
Figure 8.2
Figure 8.2. Figure 8.2: We demonstrate the effect of the variants of mixup on feature representations (a). [PITH_FULL_IMAGE:figures/full_fig_p148_8_2.png]
Figure 8.3
Figure 8.3. Figure 8.3: Comparison of metric for semi-supervised CIFAR-10 LT under [PITH_FULL_IMAGE:figures/full_fig_p156_8_3.png]
Figure 9.1
Figure 9.1. Figure 9.1: We pose sample selection for labeling in [PITH_FULL_IMAGE:figures/full_fig_p160_9_1.png]
Figure 9.2
Figure 9.2. Figure 9.2: Overview of Submodular Subset Selection for Virtual Adversarial Active Adaptation [PITH_FULL_IMAGE:figures/full_fig_p161_9_2.png]
Figure 9.3
Figure 9.3. Figure 9.3: Our sampling technique incorporates uncertainty, diversity and representativeness. [PITH_FULL_IMAGE:figures/full_fig_p163_9_3.png]
Figure 9.4
Figure 9.4. Figure 9.4: Active DA target accuracy on two adaptation tasks from Office-31 dataset. [PITH_FULL_IMAGE:figures/full_fig_p169_9_4.png]
Figure 9.5
Figure 9.5. Figure 9.5: Active DA performance on three different Office-Home domain shifts. We see a [PITH_FULL_IMAGE:figures/full_fig_p170_9_5.png]
Figure 9.7
Figure 9.7. Figure 9.7: Trade off between Uncertainty, Diversity and Repre￾sentativeness (i.e., Pa￾rameter sensitivity to α, β). 0 45 90 135 180 225 Number of Labeled Samples 64 67 70 73 76 79 82 Target Accuracy (in %) Webcam Amazon 0 71 142 213 284 355 Number of Labeled Samples 67 70 73 76…
Figure 9.8
Figure 9.8. Figure 9.8: Ablation on sampling methods on different domain shifts. In both cases, we train [PITH_FULL_IMAGE:figures/full_fig_p171_9_8.png]
Figure 9.9
Figure 9.9. Figure 9.9: Active DA Results on VisDA-18 dataset. [300] due to a severe domain shift. Our method ( [PITH_FULL_IMAGE:figures/full_fig_p172_9_9.png]
Figure 9.10
Figure 9.10. Figure 9.10: Comparison of different DA methods for Active DA on Webcam [PITH_FULL_IMAGE:figures/full_fig_p173_9_10.png]
Figure 10.1
Figure 10.1. Figure 10.1: Overview of Smooth Domain Adversarial Training (SDAT). We demonstrate that [PITH_FULL_IMAGE:figures/full_fig_p175_10_1.png]
Figure 10.2
Figure 10.2. Figure 10.2: Eigen Spectral Density plots of Hessian ( [PITH_FULL_IMAGE:figures/full_fig_p177_10_2.png]
Figure 10.3
Figure 10.3. Figure 10.3: A) Error on Target Domain (y-axis) for Office-Home dataset against maximum eigenvalue λmax of classification loss in DAT. When compared to SGD, Adam converges to a non-smooth minima (high λmax), leading to a high error on target. Using Adam in comparison to SGD, con…
Figure 10.4
Figure 10.4. Figure 10.4: Analysis of SDAT for Ar → Cl split of Office-Home dataset. A) Variation of target accuracy with maximum perturbation ρ. B) Comparison of accuracy of SDAT with DAT for different ratio of label noise. C) Comparison of accuracy when smoothing is applied to various loss…

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

300 extracted references · 32 canonical work pages

  1. [1]

    Sharp-maml: Sharpness- aware model-agnostic meta learning

    Momin Abbas, Quan Xiao, Lisha Chen, Pin-Yu Chen, and Tianyi Chen. Sharp-maml: Sharpness- aware model-agnostic meta learning. arXiv preprint arXiv:2206.03996 , 2022. 61

  2. [2]

    Labels4free: Unsupervised seg- mentation using stylegan

    Rameen Abdal, Peihao Zhu, Niloy J Mitra, and Peter Wonka. Labels4free: Unsupervised seg- mentation using stylegan. In IEEE/CVF International Conference on Computer Vision (ICCV), pages 13970–13979, 2021. 3

  3. [3]

    Quantifying attention flow in transformers

    Samira Abnar and Willem Zuidema. Quantifying attention flow in transformers. arXiv preprint arXiv:2005.00928, 2020. xxi, xxvi, 85, 203

  4. [4]

    f-Domain-Adversarial Learning: Theory and Algorithms

    David Acuna, Guojun Zhang, Marc T Law, and Sanja Fidler. f-domain-adversarial learning: Theory and algorithms. arXiv preprint arXiv:2106.11344 , 2021. 134, 135, 136, 137, 141, 269, 270, 272

  5. [5]

    Degan: Data-enriching gan for retrieving representative samples from a trained classifier

    Sravanti Addepalli, Gaurav Kumar Nayak, Anirban Chakraborty, and Venkatesh Babu Rad- hakrishnan. Degan: Data-enriching gan for retrieving representative samples from a trained classifier. In AAAI Conference on Artificial Intelligence , volume 34, pages 3130–3137, 2020. 16

  6. [6]

    One-network adversarial fairness

    Tameem Adel, Isabel Valera, Zoubin Ghahramani, and Adrian Weller. One-network adversarial fairness. In AAAI Conference on Artificial Intelligence , volume 33, pages 2412–2420, 2019. 133

  7. [7]

    Evaluating clip: towards characterization of broader capabilities and downstream implications

    Sandhini Agarwal, Gretchen Krueger, Jack Clark, Alec Radford, Jong Wook Kim, and Miles Brundage. Evaluating clip: towards characterization of broader capabilities and downstream implications. arXiv preprint arXiv:2108.02818 , 2021. 74

  8. [8]

    Negative eigenvalues of the hessian in deep neural networks

    Guillaume Alain, Nicolas Le Roux, and Pierre-Antoine Manzagol. Negative eigenvalues of the hessian in deep neural networks. arXiv preprint arXiv:1902.02366 , 2019. 61

Show all 300 references
  1. [9]

    Hyperstyle: Stylegan inversion with hypernetworks for real image editing

    Yuval Alaluf, Omer Tov, Ron Mokady, Rinon Gal, and Amit Bermano. Hyperstyle: Stylegan inversion with hypernetworks for real image editing. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 18511–18521, June 2022. 44

  2. [10]

    The long tail: Why the future of business is selling less of more

    Chris Anderson. The long tail: Why the future of business is selling less of more. Wired, 12(10),

  3. [11]

    Understanding sharpness-aware minimiza- tion, 2022

    Maksym Andriushchenko and Nicolas Flammarion. Understanding sharpness-aware minimiza- tion, 2022. URL https://openreview.net/forum?id=qXa0nhTRZGV. 63, 64 282

  4. [12]

    Sharpness- aware minimization leads to low-rank features

    Maksym Andriushchenko, Dara Bahri, Hossein Mobahi, and Nicolas Flammarion. Sharpness- aware minimization leads to low-rank features. arXiv preprint arXiv:2305.16292 , 2023. 79, 204

  5. [13]

    Wasserstein GAN

    Martin Arjovsky, Soumith Chintala, and L´ eon Bottou. Wasserstein GAN. arXiv preprint arXiv:1701.07875, 2017. 10

  6. [14]

    Theory of deep learn- ing, 2020

    Raman Arora, SANJEEV Arora, Joan Bruna, NADA V Cohen, SIMON DU, RONG GE, SURIYA GUNASEKAR, C Jin, JASON LEE, TENGYU MA, et al. Theory of deep learn- ing, 2020. 59

  7. [15]

    Ash, Chicheng Zhang, Akshay Krishnamurthy, John Langford, and Alekh Agarwal

    Jordan T. Ash, Chicheng Zhang, Akshay Krishnamurthy, John Langford, and Alekh Agarwal. Deep batch active learning by diverse, uncertain gradient lower bounds. In International Con- ference on Learning Representations (ICLR), 2020. URL https://openreview.net/forum?id= ryghZJBKP...

  8. [16]

    Schapire

    Peter Auer, Nicolo Cesa-Bianch, Yoav Freund, and Robert E. Schapire. The non-stochastic multi-armed bandit problem. SIAM Journal of Computing , 32(1):48–77, 2002. 237

  9. [17]

    Sharpness-aware minimization improves language model generalization

    Dara Bahri, Hossein Mobahi, and Yi Tay. Sharpness-aware minimization improves language model generalization. arXiv preprint arXiv:2110.08529 , 2021. 61

  10. [18]

    Can we gain more from orthogonality regularizations in training deep networks? Advances in Neural Information Processing Systems (NeurIPS), 31, 2018

    Nitin Bansal, Xiaohan Chen, and Zhangyang Wang. Can we gain more from orthogonality regularizations in training deep networks? Advances in Neural Information Processing Systems (NeurIPS), 31, 2018. 32, 38, 40

  11. [19]

    VICReg: Variance-invariance-covariance regu- larization for self-supervised learning

    Adrien Bardes, Jean Ponce, and Yann LeCun. VICReg: Variance-invariance-covariance regu- larization for self-supervised learning. In International Conference on Learning Representations (ICLR), 2022. URL https://openreview.net/forum?id=xm6YD62D1Ub. xx, 43, 48

  12. [20]

    A theory of learning from different domains

    Shai Ben-David, John Blitzer, Koby Crammer, Alex Kulesza, Fernando Pereira, and Jen- nifer Wortman Vaughan. A theory of learning from different domains. Machine learning, 79(1): 151–175, 2010. 136, 141

  13. [21]

    Cubuk, Alex Kurakin, Kihyuk Sohn, Han Zhang, and Colin Raffel

    David Berthelot, Nicholas Carlini, Ekin D. Cubuk, Alex Kurakin, Kihyuk Sohn, Han Zhang, and Colin Raffel. Remixmatch: Semi-supervised learning with distribution alignment and aug- mentation anchoring. CoRR, abs/1911.09785, 2019. 106

  14. [22]

    Mixmatch: A holistic approach to semi-supervised learning

    David Berthelot, Nicholas Carlini, Ian Goodfellow, Nicolas Papernot, Avital Oliver, and Colin A Raffel. Mixmatch: A holistic approach to semi-supervised learning. In H. Wallach, H. Larochelle, A. Beygelzimer, F. d 'Alch´ e-Buc, E. Fox, and R. Garnett, editors,Advances in Neura...

  15. [23]

    Adamatch: A unified approach to semi-supervised learning and domain adaptation

    David Berthelot, Rebecca Roelofs, Kihyuk Sohn, Nicholas Carlini, and Alex Kurakin. Adamatch: A unified approach to semi-supervised learning and domain adaptation. arXiv preprint arXiv:2106.04732, 2021. 280

  16. [24]

    Bhattacharyya

    A. Bhattacharyya. On a measure of divergence between two multinomial populations. Sankhy¯ a: The Indian Journal of Statistics (1933-1960) , 7(4):401–406, 1946. ISSN 00364452. URL http: //www.jstor.org/stable/25047882. 124

  17. [25]

    Stylegan knows normal, depth, albedo, and more

    Anand Bhattad, Daniel McKee, Derek Hoiem, and David Forsyth. Stylegan knows normal, depth, albedo, and more. Advances in Neural Information Processing Systems , 36, 2024. 3

  18. [26]

    Experiment tracking with weights and biases, 2020

    Lukas Biewald. Experiment tracking with weights and biases, 2020. URL https://www.wandb. com/. Software available from wandb.com. 190, 264, 275

  19. [27]

    Low-pass filtering sgd for recovering flat optima in the deep learning optimization landscape

    Devansh Bisla, Jing Wang, and Anna Choromanska. Low-pass filtering sgd for recovering flat optima in the deep learning optimization landscape. arXiv preprint arXiv:2201.08025, 2022. 61, 70, 190

  20. [28]

    An isoperimetric inequality on the discrete cube, and an elementary proof of the isoperimetric inequality in gauss space

    Sergey G Bobkov. An isoperimetric inequality on the discrete cube, and an elementary proof of the isoperimetric inequality in gauss space. The Annals of Probability , 25(1):206–214, 1997. 208

  21. [29]

    Finding directions in gan’s latent space for neural face reenactment

    Stella Bounareli, Vasileios Argyriou, and Georgios Tzimiropoulos. Finding directions in gan’s latent space for neural face reenactment. arXiv preprint arXiv:2202.00046 , 2022. 41

  22. [30]

    Large scale GAN training for high fidelity natural image synthesis

    Andrew Brock, Jeff Donahue, and Karen Simonyan. Large scale GAN training for high fidelity natural image synthesis. In International Conference on Learning Representations (ICLR), 2019. URL https://openreview.net/forum?id=B1xsqj09Fm. xviii, xxv, 6, 21, 27, 28, 30, 34, 36, 38, ...

  23. [31]

    A systematic study of the class im- balance problem in convolutional neural networks

    Mateusz Buda, Atsuto Maki, and Maciej A Mazurowski. A systematic study of the class im- balance problem in convolutional neural networks. Neural Networks , 106:249–259, 2018. 57, 60

  24. [32]

    What is the effect of importance weighting in deep learning? In International Conference on Machine Learning (ICML) , pages 872–881

    Jonathon Byrd and Zachary Lipton. What is the effect of importance weighting in deep learning? In International Conference on Machine Learning (ICML) , pages 872–881. PMLR, 2019. 58

  25. [33]

    Ace: Ally complementary experts for solving long-tailed recognition in one-shot

    Jiarui Cai, Yizhou Wang, and Jenq-Neng Hwang. Ace: Ally complementary experts for solving long-tailed recognition in one-shot. In IEEE/CVF International Conference on Computer Vision (ICCV), 2021. 81

  26. [34]

    Learning imbalanced datasets with label-distribution-aware margin loss

    Kaidi Cao, Colin Wei, Adrien Gaidon, Nikos Arechiga, and Tengyu Ma. Learning imbalanced datasets with label-distribution-aware margin loss. InAdvances in Neural Information Processing Systems (NeurIPS) , volume 32, 2019. 18, 19, 28, 32, 33, 58, 60, 66, 67, 68, 73, 75, 78, 80, ...

  27. [35]

    End-to-end object detection with transformers

    Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-to-end object detection with transformers. In European Conference on Computer Vision (ECCV) , pages 213–229. Springer, 2020. 73

  28. [36]

    Lower bounds for finding stationary points I

    Yair Carmon, John C Duchi, Oliver Hinder, and Aaron Sidford. Lower bounds for finding stationary points I. Mathematical Programming, 184(1):71–120, 2020. 140, 271

  29. [37]

    Unsupervised learning of visual features by contrasting cluster assignments

    Mathilde Caron, Ishan Misra, Julien Mairal, Priya Goyal, Piotr Bojanowski, and Armand Joulin. Unsupervised learning of visual features by contrasting cluster assignments. 2020. 45

  30. [38]

    Emerging properties in self-supervised vision transformers

    Mathilde Caron, Hugo Touvron, Ishan Misra, Herv´ e J´ egou, Julien Mairal, Piotr Bojanowski, and Armand Joulin. Emerging properties in self-supervised vision transformers. In International Conference on Computer Vision (ICCV) , 2021. 7

  31. [39]

    Instance-conditioned gan

    Arantxa Casanova, Marl` ene Careil, Jakob Verbeek, Michal Drozdzal, and Adriana Romero- Soriano. Instance-conditioned gan. In Advances in Neural Information Processing Systems (NeurIPS), 2021. 45, 51, 53

  32. [40]

    Is facial recognition too biased to be let loose? Nature, 587(7834):347–350,

    Davide Castelvecchi. Is facial recognition too biased to be let loose? Nature, 587(7834):347–350,

  33. [41]

    Swad: Domain generalization by seeking flat minima

    Junbum Cha, Sanghyuk Chun, Kyungjae Lee, Han-Cheol Cho, Seunghyun Park, Yunsung Lee, and Sungrae Park. Swad: Domain generalization by seeking flat minima. arXiv preprint arXiv:2102.08604, 2021. 134, 146, 277

  34. [42]

    Adaptive batch mode active learning

    Shayok Chakraborty, Vineeth Balasubramanian, and Sethuraman Panchanathan. Adaptive batch mode active learning. IEEE transactions on neural networks and learning systems , 26 (8):1747–1760, 2014. 125

  35. [43]

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

  36. [44]

    Joint transfer and batch-mode active learning

    Rita Chattopadhyay, Wei Fan, Ian Davidson, Sethuraman Panchanathan, and Jieping Ye. Joint transfer and batch-mode active learning. In International Conference on Machine Learning (ICML), pages 253–261. PMLR, 2013. 121, 264

  37. [45]

    Entropy-sgd: Biasing gradient descent into wide valleys

    Pratik Chaudhari, Anna Choromanska, Stefano Soatto, Yann LeCun, Carlo Baldassi, Christian Borgs, Jennifer Chayes, Levent Sagun, and Riccardo Zecchina. Entropy-sgd: Biasing gradient descent into wide valleys. Journal of Statistical Mechanics: Theory and Experiment , 2019(12): 1...

  38. [46]

    Smote: synthetic minority over-sampling technique

    Nitesh V Chawla, Kevin W Bowyer, Lawrence O Hall, and W Philip Kegelmeyer. Smote: synthetic minority over-sampling technique. Journal of artificial intelligence research , 16:321– 357, 2002. 60 285

  39. [47]

    Transmix: Attend to mix for vision transformers

    Jie-Neng Chen, Shuyang Sun, Ju He, Philip HS Torr, Alan Yuille, and Song Bai. Transmix: Attend to mix for vision transformers. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 12135–12144, 2022. 107

  40. [48]

    Reltrans- former: A transformer-based long-tail visual relationship recognition

    Jun Chen, Aniket Agarwal, Sherif Abdelkarim, Deyao Zhu, and Mohamed Elhoseiny. Reltrans- former: A transformer-based long-tail visual relationship recognition. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2022. 74, 82

  41. [49]

    Adversarial-learned loss for domain adaptation

    Minghao Chen, Shuai Zhao, Haifeng Liu, and Deng Cai. Adversarial-learned loss for domain adaptation. In AAAI Conference on Artificial Intelligence , volume 34, pages 3521–3528, 2020. 118

  42. [50]

    Adversarial-learned loss for domain adaptation

    Minghao Chen, Shuai Zhao, Haifeng Liu, and Deng Cai. Adversarial-learned loss for domain adaptation. arXiv, abs/2001.01046, 2020. 128

  43. [51]

    A simple framework for contrastive learning of visual representations

    Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. arXiv preprint arXiv:2002.05709 , 2020. 53

  44. [52]

    When vision transformers outperform resnets without pretraining or strong data augmentations

    Xiangning Chen, Cho-Jui Hsieh, and Boqing Gong. When vision transformers outperform resnets without pretraining or strong data augmentations. arXiv preprint arXiv:2106.01548 , 2021. 143, 273

  45. [53]

    Domain adaptive faster r-cnn for object detection in the wild

    Yuhua Chen, Wen Li, Christos Sakaridis, Dengxin Dai, and Luc Van Gool. Domain adaptive faster r-cnn for object detection in the wild. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 3339–3348, 2018. 144, 146, 275

  46. [54]

    New exponential bounds and approx- imations for the computation of error probability in fading channels

    Marco Chiani, Davide Dardari, and Marvin K Simon. New exponential bounds and approx- imations for the computation of error probability in fading channels. IEEE Transactions on Wireless Communications, 2(4):840–845, 2003. 214

  47. [55]

    Smoothness and stability in gans

    Casey Chu, Kentaro Minami, and Kenji Fukumizu. Smoothness and stability in gans. arXiv preprint arXiv:2002.04185, 2020. 138

  48. [56]

    Improving generalization with active learning

    David Cohn, Les Atlas, and Richard Ladner. Improving generalization with active learning. Machine learning, 15(2):201–221, 1994. 119

  49. [57]

    Facility location problem — Wikipedia, the free encyclopedia,

    Wikipedia contributors. Facility location problem — Wikipedia, the free encyclopedia,

  50. [58]

    The cityscapes dataset for seman- tic urban scene understanding

    Marius Cordts, Mohamed Omran, Sebastian Ramos, Timo Rehfeld, Markus Enzweiler, Rodrigo Benenson, Uwe Franke, Stefan Roth, and Bernt Schiele. The cityscapes dataset for seman- tic urban scene understanding. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR...

  51. [59]

    Training well-generalizing classifiers for fairness metrics and other data-dependent constraints

    Andrew Cotter, Maya Gupta, Heinrich Jiang, Nathan Srebro, Karthik Sridharan, Serena Wang, Blake Woodworth, and Seungil You. Training well-generalizing classifiers for fairness metrics and other data-dependent constraints. In International Conference on Machine Learning (ICML) ...

  52. [60]

    Optimization with non-differentiable constraints with applications to fairness, recall, churn, and other goals

    Andrew Cotter, Heinrich Jiang, Maya R Gupta, Serena Wang, Taman Narayan, Seungil You, and Karthik Sridharan. Optimization with non-differentiable constraints with applications to fairness, recall, churn, and other goals. J. Mach. Learn. Res. , 20(172):1–59, 2019. 91, 108, 109, 207

  53. [61]

    Parametric contrastive learning

    Jiequan Cui, Zhisheng Zhong, Shu Liu, Bei Yu, and Jiaya Jia. Parametric contrastive learning. In IEEE/CVF International Conference on Computer Vision (ICCV) , pages 715–724, 2021. 70, 75, 80, 81, 83, 193, 196, 197, 198, 199

  54. [62]

    Gradually vanishing bridge for adversarial domain adaptation

    Shuhao Cui, Shuhui Wang, Junbao Zhuo, Chi Su, Qingming Huang, and Tian Qi. Gradually vanishing bridge for adversarial domain adaptation. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , 2020. 133, 147

  55. [63]

    Class-balanced loss based on effective number of samples

    Yin Cui, Menglin Jia, Tsung-Yi Lin, Yang Song, and Serge Belongie. Class-balanced loss based on effective number of samples. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 9268–9277, 2019. 47, 58, 73, 75, 78, 81, 83, 102

  56. [64]

    Class-balanced loss based on effective number of samples

    Yin Cui, Menglin Jia, Tsung-Yi Lin, Yang Song, and Serge Belongie. Class-balanced loss based on effective number of samples. In IEEE Conference on Computer Vision and Pattern Recogni- tion (CVPR) , 2019. 18, 19, 28, 32, 33

  57. [65]

    Escaping saddles with stochastic gradients

    Hadi Daneshmand, Jonas Kohler, Aurelien Lucchi, and Thomas Hofmann. Escaping saddles with stochastic gradients. In International Conference on Machine Learning (ICML) , pages 1155–1164. PMLR, 2018. 58, 61, 65, 66, 187

  58. [66]

    Identifying and attacking the saddle point problem in high-dimensional non- convex optimization

    Yann N Dauphin, Razvan Pascanu, Caglar Gulcehre, Kyunghyun Cho, Surya Ganguli, and Yoshua Bengio. Identifying and attacking the saddle point problem in high-dimensional non- convex optimization. Advances in Neural Information Processing Systems (NeurIPS) , 27, 2014. 58, 61, 63

  59. [67]

    Modulating early visual processing by language

    Harm De Vries, Florian Strub, J´ er´ emie Mary, Hugo Larochelle, Olivier Pietquin, and Aaron C Courville. Modulating early visual processing by language. In Advances in Neural Information Processing Systems (NeurIPS), pages 6594–6604, 2017. 13, 26

  60. [68]

    J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. Imagenet: A large-scale hierarchical image database. In CVPR09, 2009. 10

  61. [69]

    Imagenet: A large-scale hierarchical image database

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

  62. [70]

    Cluster alignment with a teacher for unsupervised domain adaptation

    Zhijie Deng, Yucen Luo, and Jun Zhu. Cluster alignment with a teacher for unsupervised domain adaptation. In IEEE/CVF International Conference on Computer Vision (ICCV) , pages 9944– 9953, 2019. 120

  63. [71]

    Discriminative unsupervised feature learning with exemplar convolutional neural networks

    Alexey Dosovitskiy, Philipp Fischer, Jost Tobias Springenberg, Martin Riedmiller, and Thomas Brox. Discriminative unsupervised feature learning with exemplar convolutional neural networks. IEEE TPAMI, 2015. 73

  64. [72]

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

    Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. In International Con...

  65. [73]

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

    Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. In International Con...

  66. [74]

    Global and local mixture consistency cumulative learning for long-tailed visual recognitions

    Fei Du, Peng Yang, Qi Jia, Fengtao Nan, Xiaoting Chen, and Yun Yang. Global and local mixture consistency cumulative learning for long-tailed visual recognitions. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 15814–15823, 2023. 153

  67. [75]

    Adversarial active learning for deep networks: a margin based approach

    Melanie Ducoffe and Frederic Precioso. Adversarial active learning for deep networks: a margin based approach. arXiv preprint arXiv:1802.09841 , 2018. 264

  68. [76]

    Computing nonvacuous generalization bounds for deep (stochastic) neural networks with many more parameters than training data

    Gintare Karolina Dziugaite and Daniel M Roy. Computing nonvacuous generalization bounds for deep (stochastic) neural networks with many more parameters than training data. arXiv preprint arXiv:1703.11008, 2017. 135

  69. [77]

    Scalable learning of non-decomposable objectives

    Elad Eban, Mariano Schain, Alan Mackey, Ariel Gordon, Ryan Rifkin, and Gal Elidan. Scalable learning of non-decomposable objectives. In Artificial intelligence and statistics , pages 832–840. PMLR, 2017. 107

  70. [78]

    The pascal visual object classes (voc) challenge

    Mark Everingham, Luc Van Gool, Christopher KI Williams, John Winn, and Andrew Zisserman. The pascal visual object classes (voc) challenge. International journal of computer vision , 88 (2):303–338, 2010. 145

  71. [79]

    Cossl: Co-learning of representation and classifier for imbalanced semi-supervised learning

    Yue Fan, Dengxin Dai, Anna Kukleva, and Bernt Schiele. Cossl: Co-learning of representation and classifier for imbalanced semi-supervised learning. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2022. 105, 106, 110, 114, 241

  72. [80]

    Sharpness-aware mini- mization for efficiently improving generalization

    Pierre Foret, Ariel Kleiner, Hossein Mobahi, and Behnam Neyshabur. Sharpness-aware mini- mization for efficiently improving generalization. arXiv preprint arXiv:2010.01412 , 2020. xxi, 6, 73, 74, 75, 79, 80, 153, 198, 199, 206 288

  73. [81]

    Sharpness-aware mini- mization for efficiently improving generalization

    Pierre Foret, Ariel Kleiner, Hossein Mobahi, and Behnam Neyshabur. Sharpness-aware mini- mization for efficiently improving generalization. In International Conference on Learning Rep- resentations (ICLR) , 2021. URL https://openreview.net/forum?id=6Tm1mposlrM. 58, 61, 134, 13...

  74. [82]

    A decision-theoretic generalization of on-line learning and an application to boosting

    Yoav Freund and Robert E Schapire. A decision-theoretic generalization of on-line learning and an application to boosting. Journal of computer and system sciences , 55(1):119–139, 1997. 113, 236, 237, 238

  75. [83]

    Unsupervised domain adaptation by backpropagation

    Yaroslav Ganin and Victor Lempitsky. Unsupervised domain adaptation by backpropagation. In International Conference on Machine Learning (ICML) , pages 1180–1189. PMLR, 2015. 118, 120, 121, 133, 135, 139, 258, 262, 276

  76. [84]

    Domain-adversarial training of neural net- works

    Yaroslav Ganin, Evgeniya Ustinova, Hana Ajakan, Pascal Germain, Hugo Larochelle, Fran¸ cois Laviolette, Mario Marchand, and Victor Lempitsky. Domain-adversarial training of neural net- works. The journal of machine learning research , 17(1):2096–2030, 2016. 141, 143, 147, 273, 274

  77. [85]

    Escaping from saddle points—online stochas- tic gradient for tensor decomposition

    Rong Ge, Furong Huang, Chi Jin, and Yang Yuan. Escaping from saddle points—online stochas- tic gradient for tensor decomposition. In Conference on learning theory, pages 797–842. PMLR,

  78. [86]

    An investigation into neural net optimiza- tion via hessian eigenvalue density

    Behrooz Ghorbani, Shankar Krishnan, and Ying Xiao. An investigation into neural net optimiza- tion via hessian eigenvalue density. In International Conference on Machine Learning (ICML) , pages 2232–2241. PMLR, 2019. 273

  79. [87]

    An investigation into neural net op- timization via hessian eigenvalue density

    Behrooz Ghorbani, Shankar Krishnan, and Ying Xiao. An investigation into neural net op- timization via hessian eigenvalue density. In Kamalika Chaudhuri and Ruslan Salakhutdi- nov, editors, 36th International Conference on Machine Learning (ICML) , volume 97 of Pro- ceedings o...

  80. [88]

    A loss curvature perspective on training instability in deep learning

    Justin Gilmer, Behrooz Ghorbani, Ankush Garg, Sneha Kudugunta, Behnam Neyshabur, David Cardoze, George Dahl, Zachary Nado, and Orhan Firat. A loss curvature perspective on training instability in deep learning. arXiv preprint arXiv:2110.04369 , 2021. 62, 190

  81. [89]

    Imagebind: One embedding space to bind them all

    Rohit Girdhar, Alaaeldin El-Nouby, Zhuang Liu, Mannat Singh, Kalyan Vasudev Alwala, Ar- mand Joulin, and Ishan Misra. Imagebind: One embedding space to bind them all. arXiv preprint arXiv:2305.05665, 2023. 104

  82. [90]

    Satisfying real-world goals with dataset constraints

    Gabriel Goh, Andrew Cotter, Maya Gupta, and Michael P Friedlander. Satisfying real-world goals with dataset constraints. Advances in Neural Information Processing Systems (NeurIPS) , 29, 2016. 90, 109

  83. [91]

    Goluba and Henk A

    H. Goluba and Henk A. van der Vorstb. Eigenvalue computation in the 20 th century gene

  84. [92]

    Generative adversarial nets

    Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in Neural In- formation Processing Systems (NeurIPS) , volume 27, pages 2672–2680, 2014. 3, 10, 26, 28, 134

  85. [93]

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

  86. [94]

    Bootstrap your own latent-a new approach to self-supervised learning

    Jean-Bastien Grill, Florian Strub, Florent Altch´ e, Corentin Tallec, Pierre Richemond, Elena Buchatskaya, Carl Doersch, Bernardo Avila Pires, Zhaohan Guo, Mohammad Gheshlaghi Azar, et al. Bootstrap your own latent-a new approach to self-supervised learning. Advances in Neural...

  87. [95]

    Weighted entropy

    Silviu Guia¸ su. Weighted entropy. Reports on Mathematical Physics , 2(3):165–179, 1971. 16, 157, 158

  88. [96]

    Improved training of wasserstein gans

    Ishaan Gulrajani, Faruk Ahmed, Martin Arjovsky, Vincent Dumoulin, and Aaron C Courville. Improved training of wasserstein gans. In Advances in Neural Information Processing Systems (NeurIPS), pages 5767–5777, 2017. xxxi, 10, 18, 28, 158, 160, 175

  89. [97]

    Ganspace: Discovering interpretable gan controls

    Erik H¨ ark¨ onen, Aaron Hertzmann, Jaakko Lehtinen, and Sylvain Paris. Ganspace: Discovering interpretable gan controls. Advances in Neural Information Processing Systems (NeurIPS) , 33: 9841–9850, 2020. 41

  90. [98]

    Haibo He and Edwardo A. Garcia. Learning from imbalanced data. IEEE Transactions on Knowledge and Data Engineering , 21(9):1263–1284, 2009. doi: 10.1109/TKDE.2008.239. 60

  91. [99]

    Asymmetric valleys: beyond sharp and flat local minima

    Haowei He, Gao Huang, and Yang Yuan. Asymmetric valleys: beyond sharp and flat local minima. In 33rd International Conference on Neural Information Processing Systems , pages 2553–2564, 2019. 135

  92. [100]

    Deep residual learning for image recognition

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

  93. [101]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 770–778, 2016. 19, 73, 99, 141, 143, 145

  94. [102]

    Masked autoencoders are scalable vision learners

    Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Doll´ ar, and Ross Girshick. Masked autoencoders are scalable vision learners. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 16000–16009, 2022. 104 290

  95. [103]

    Using self-supervised learning can improve model robustness and uncertainty

    Dan Hendrycks, Mantas Mazeika, Saurav Kadavath, and Dawn Song. Using self-supervised learning can improve model robustness and uncertainty. Advances in neural information pro- cessing systems, 32, 2019. 7

  96. [104]

    Gans trained by a two time-scale update rule converge to a local nash equilibrium

    Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. Gans trained by a two time-scale update rule converge to a local nash equilibrium. Advances in Neural Information Processing Systems (NeurIPS) , 30:6626–6637, 2017. 11, 20, 43, 49

  97. [105]

    Simplifying neural nets by discovering flat minima

    Sepp Hochreiter and J¨ urgen Schmidhuber. Simplifying neural nets by discovering flat minima. Advances in Neural Information Processing Systems (NeurIPS) , 7, 1994. 135

  98. [106]

    Flat minima

    Sepp Hochreiter and J¨ urgen Schmidhuber. Flat minima. Neural computation, 9(1):1–42, 1997. 61, 135

  99. [107]

    Safa:sample-adaptive feature augmentation for long-tailed image classification

    Yan Hong, Jianfu Zhang, Zhongyi Sun, and Ke Yan. Safa:sample-adaptive feature augmentation for long-tailed image classification. In European Conference on Computer Vision (ECCV), 2022. 83

  100. [108]

    Disentangling label distribution for long-tailed visual recognition

    Youngkyu Hong, Seungju Han, Kwanghee Choi, Seokjun Seo, Beomsu Kim, and Buru Chang. Disentangling label distribution for long-tailed visual recognition. In IEEE Conference on Com- puter Vision and Pattern Recognition (CVPR) , 2021. 75

  101. [109]

    Addressing the loss-metric mismatch with adaptive loss alignment

    Chen Huang, Shuangfei Zhai, Walter Talbott, Miguel Bautista Martin, Shih-Yu Sun, Carlos Guestrin, and Josh Susskind. Addressing the loss-metric mismatch with adaptive loss alignment. In International Conference on Machine Learning (ICML) , pages 2891–2900. PMLR, 2019. 103

  102. [110]

    Group whitening: Balancing learning efficiency and representational capacity

    Lei Huang, Yi Zhou, Li Liu, Fan Zhu, and Ling Shao. Group whitening: Balancing learning efficiency and representational capacity. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2021. 30, 32, 174

  103. [111]

    Arbitrary style transfer in real-time with adaptive instance normalization

    Xun Huang and Serge Belongie. Arbitrary style transfer in real-time with adaptive instance normalization. In IEEE international conference on computer vision , pages 1501–1510, 2017. 46

  104. [112]

    Selecmix: Debiased learning by contradicting-pair sampling

    Inwoo Hwang, Sangjun Lee, Yunhyeok Kwak, Seong Joon Oh, Damien Teney, Jin-Hwa Kim, and Byoung-Tak Zhang. Selecmix: Debiased learning by contradicting-pair sampling. Advances in Neural Information Processing Systems (NeurIPS) , 35:14345–14357, 2022. 251

  105. [113]

    The inaturalist 2019 competition dataset

    iNaturalist. The inaturalist 2019 competition dataset. https://github.com/visipedia/inat_ comp/tree/2019, 2019. 11, 21, 28, 33, 36, 158, 172

  106. [114]

    Cross-domain weakly- supervised object detection through progressive domain adaptation

    Naoto Inoue, Ryosuke Furuta, Toshihiko Yamasaki, and Kiyoharu Aizawa. Cross-domain weakly- supervised object detection through progressive domain adaptation. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 5001–5009, 2018. 145

  107. [115]

    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 arXiv:1502.03167 , 2015. 158 291

  108. [116]

    Class-balanced distillation for long-tailed visual recognition

    Ahmet Iscen, Andr´ e Araujo, Boqing Gong, and Cordelia Schmid. Class-balanced distillation for long-tailed visual recognition. 2021. 83, 84

  109. [117]

    Averaging weights leads to wider optima and better generalization

    Pavel Izmailov, Dmitrii Podoprikhin, Timur Garipov, Dmitry Vetrov, and Andrew Gordon Wilson. Averaging weights leads to wider optima and better generalization. arXiv preprint arXiv:1803.05407, 2018. 277

  110. [118]

    Rethinking class-balanced methods for long-tailed visual recognition from a domain adaptation perspective

    Muhammad Abdullah Jamal, Matthew Brown, Ming-Hsuan Yang, Liqiang Wang, and Boqing Gong. Rethinking class-balanced methods for long-tailed visual recognition from a domain adaptation perspective. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2020. 81

  111. [119]

    The break-even point on optimization trajectories of deep neural networks

    Stanislaw Jastrzebski, Maciej Szymczak, Stanislav Fort, Devansh Arpit, Jacek Tabor, Kyunghyun Cho*, and Krzysztof Geras*. The break-even point on optimization trajectories of deep neural networks. In International Conference on Learning Representations (ICLR) ,

  112. [120]

    Training GANs with stronger augmentations via contrastive discriminator

    Jongheon Jeong and Jinwoo Shin. Training GANs with stronger augmentations via contrastive discriminator. In International Conference on Learning Representations (ICLR) , 2021. URL https://openreview.net/forum?id=eo6U4CAwVmg. 46

  113. [121]

    Deceive D: Adaptive Pseudo Aug- mentation for GAN training with limited data

    Liming Jiang, Bo Dai, Wayne Wu, and Chen Change Loy. Deceive D: Adaptive Pseudo Aug- mentation for GAN training with limited data. In NeurIPS, 2021. 44

  114. [122]

    How to escape saddle points efficiently

    Chi Jin, Rong Ge, Praneeth Netrapalli, Sham M Kakade, and Michael I Jordan. How to escape saddle points efficiently. In International Conference on Machine Learning (ICML), pages 1724–

  115. [123]

    Kakade, and Michael I

    Chi Jin, Praneeth Netrapalli, Rong Ge, Sham M. Kakade, and Michael I. Jordan. Stochastic gradient descent escapes saddle points efficiently. ArXiv, abs/1902.04811, 2019. 58, 61, 190

  116. [124]

    How does weight correlation affect generalisation ability of deep neural networks? Advances in Neural Information Processing Systems (NeurIPS) , 33:21346–21356, 2020

    Gaojie Jin, Xinping Yi, Liang Zhang, Lijun Zhang, Sven Schewe, and Xiaowei Huang. How does weight correlation affect generalisation ability of deep neural networks? Advances in Neural Information Processing Systems (NeurIPS) , 33:21346–21356, 2020. 33

  117. [125]

    Minimum class confusion for versatile domain adaptation

    Ying Jin, Ximei Wang, Mingsheng Long, and Jianmin Wang. Minimum class confusion for versatile domain adaptation. In European Conference on Computer Vision (ECCV), pages 464–

  118. [126]

    The relativistic discriminator: a key element missing from standard gan

    Alexia Jolicoeur-Martineau. The relativistic discriminator: a key element missing from standard gan. arXiv preprint arXiv:1807.00734 , 2018. 10, 12

  119. [127]

    On relativistic f-divergences

    Alexia Jolicoeur-Martineau. On relativistic f-divergences. arXiv preprint arXiv:1901.02474 ,

  120. [128]

    Submodular batch selection for training deep neural networks

    KJ Joseph, Krishnakant Singh, Vineeth N Balasubramanian, et al. Submodular batch selection for training deep neural networks. arXiv preprint arXiv:1906.08771 , 2019. 125 292

  121. [129]

    A. J. Joshi, F. Porikli, and N. Papanikolopoulos. Multi-class active learning for image classifi- cation. In 2009 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 2372–2379, 2009. doi: 10.1109/CVPR.2009.5206627. 129

  122. [130]

    Marcin Junczys-Dowmunt, Roman Grundkiewicz, Tomasz Dwojak, Hieu Hoang, Kenneth Heafield, Tom Neckermann, Frank Seide, Ulrich Germann, Alham Fikri Aji, Nikolay Bogoy- chev, Andr´ e F. T. Martins, and Alexandra Birch. Marian: Fast neural machine translation in C++. In Proceeding...

  123. [131]

    Transfer-learning-library

    Bo Fu Junguang Jiang, Baixu Chen and Mingsheng Long. Transfer-learning-library. https: //github.com/thuml/Transfer-Learning-Library, 2020. 142, 275, 280

  124. [132]

    Decoupling representation and classifier for long-tailed recognition

    Bingyi Kang, Saining Xie, Marcus Rohrbach, Zhicheng Yan, Albert Gordo, Jiashi Feng, and Yannis Kalantidis. Decoupling representation and classifier for long-tailed recognition. In Inter- national Conference on Learning Representations (ICLR) , 2019. 28, 75, 81, 82, 83, 84

  125. [133]

    Exploring balanced feature spaces for representation learning

    Bingyi Kang, Yu Li, Sa Xie, Zehuan Yuan, and Jiashi Feng. Exploring balanced feature spaces for representation learning. In International Conference on Learning Representations (ICLR) ,

  126. [134]

    Decoupling representation and classifier for long-tailed recognition

    Bingyi Kang, Saining Xie, Marcus Rohrbach, Zhicheng Yan, Albert Gordo, Jiashi Feng, and Yannis Kalantidis. Decoupling representation and classifier for long-tailed recognition. In Inter- national Conference on Learning Representations (ICLR) , 2020. URL https://openreview. net...

  127. [135]

    Contragan: Contrastive learning for conditional image genera- tion

    Minguk Kang and Jaesik Park. Contragan: Contrastive learning for conditional image genera- tion. 2020. 45, 46, 50, 274

  128. [136]

    Contrastive generative adversarial networks

    Minguk Kang and Jaesik Park. Contrastive generative adversarial networks. arXiv preprint arXiv:2006.12681, 2020. 19, 27, 33, 39, 176

  129. [137]

    Rebooting acgan: Auxiliary clas- sifier gans with stable training

    Minguk Kang, Woohyeon Shim, Minsu Cho, and Jaesik Park. Rebooting acgan: Auxiliary clas- sifier gans with stable training. Advances in Neural Information Processing Systems (NeurIPS) , 34:23505–23518, 2021. 43, 45, 46, 51, 178, 181

  130. [138]

    Studiogan: A taxonomy and benchmark of gans for image synthesis

    MinGuk Kang, Joonghyuk Shin, and Jaesik Park. Studiogan: A taxonomy and benchmark of gans for image synthesis. 2206.09479 (arXiv) , 2022. 49, 50, 53, 179

  131. [139]

    Online optimization methods for the quantification problem

    Purushottam Kar, Shuai Li, Harikrishna Narasimhan, Sanjay Chawla, and Fabrizio Sebastiani. Online optimization methods for the quantification problem. In 22nd ACM SIGKDD interna- tional conference on knowledge discovery and data mining , pages 1625–1634, 2016. 107

  132. [140]

    Progressive growing of gans for improved quality, stability, and variation

    Tero Karras, Timo Aila, Samuli Laine, and Jaakko Lehtinen. Progressive growing of gans for improved quality, stability, and variation. arXiv preprint arXiv:1710.10196 , 2017. 45 293

  133. [141]

    A style-based generator architecture for generative adversarial networks

    Tero Karras, Samuli Laine, and Timo Aila. A style-based generator architecture for generative adversarial networks. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 4401–4410, 2019. 3, 41, 44, 45

  134. [142]

    Training generative adversarial networks with limited data

    Tero Karras, Miika Aittala, Janne Hellsten, Samuli Laine, Jaakko Lehtinen, and Timo Aila. Training generative adversarial networks with limited data. InConference on Neural Information Processing Systems (NeurIPS), 2020. xix, 28, 42, 43, 44, 46, 51, 54, 152, 181, 182, 185

  135. [143]

    Training generative adversarial networks with limited data

    Tero Karras, Miika Aittala, Janne Hellsten, Samuli Laine, Jaakko Lehtinen, and Timo Aila. Training generative adversarial networks with limited data. arXiv preprint arXiv:2006.06676 ,

  136. [144]

    An- alyzing and improving the image quality of StyleGAN

    Tero Karras, Samuli Laine, Miika Aittala, Janne Hellsten, Jaakko Lehtinen, and Timo Aila. An- alyzing and improving the image quality of StyleGAN. In Proc. IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2020. 4, 45, 51, 54

  137. [145]

    Analyzing and improving the image quality of stylegan

    Tero Karras, Samuli Laine, Miika Aittala, Janne Hellsten, Jaakko Lehtinen, and Timo Aila. Analyzing and improving the image quality of stylegan. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 8110–8119, 2020. 41

  138. [146]

    cgans with multi-hinge loss

    Ilya Kavalerov, Wojciech Czaja, and Rama Chellappa. cgans with multi-hinge loss. arXiv preprint arXiv:1912.04216, 2019. 28

  139. [147]

    Learning without default: A study of one-class classification and the low-default portfolio problem

    Kenneth Kennedy, Brian Mac Namee, and Sarah Jane Delany. Learning without default: A study of one-class classification and the low-default portfolio problem. In Artificial Intelligence and Cognitive Science: 20th Irish Conference, AICS 2009, Dublin, Ireland, August 19-21, 2009...

  140. [148]

    Improving generalization performance by switching from adam to sgd

    Nitish Shirish Keskar and Richard Socher. Improving generalization performance by switching from adam to sgd. arXiv preprint arXiv:1712.07628 , 2017. 134

  141. [149]

    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. arXiv preprint arXiv:1609.04836 , 2016. 61

  142. [150]

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

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

  143. [151]

    Distribution aligning refinery of pseudo-label for imbalanced semi-supervised learning

    Jaehyung Kim, Youngbum Hur, Sejun Park, Eunho Yang, Sung Ju Hwang, and Jinwoo Shin. Distribution aligning refinery of pseudo-label for imbalanced semi-supervised learning. In 34th International Conference on Neural Information Processing Systems , NIPS’20, Red Hook, NY, USA, 2...

  144. [152]

    Distribution aligning refinery of pseudo-label for imbalanced semi-supervised learning

    Jaehyung Kim, Youngbum Hur, Sejun Park, Eunho Yang, Sung Ju Hwang, and Jinwoo Shin. Distribution aligning refinery of pseudo-label for imbalanced semi-supervised learning. Advances in neural information processing systems , 33:14567–14579, 2020. 4

  145. [153]

    M2m: Imbalanced classification via major-to- minor translation

    Jaehyung Kim, Jongheon Jeong, and Jinwoo Shin. M2m: Imbalanced classification via major-to- minor translation. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR) ,

  146. [154]

    Puzzle mix: Exploiting saliency and local statistics for optimal mixup

    Jang-Hyun Kim, Wonho Choo, and Hyun Oh Song. Puzzle mix: Exploiting saliency and local statistics for optimal mixup. In International Conference on Machine Learning (ICML) , pages 5275–5285. PMLR, 2020. 107, 116, 249

  147. [155]

    Adam: A method for stochastic optimization

    Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. 134

  148. [156]

    Semi-supervised learning with deep generative models

    Durk P Kingma, Shakir Mohamed, Danilo Jimenez Rezende, and Max Welling. Semi-supervised learning with deep generative models. Advances in Neural Information Processing Systems (NeurIPS), 27, 2014. 89

  149. [157]

    Label-imbalanced and group-sensitive classification under overparameterization

    Ganesh Ramachandra Kini, Orestis Paraskevas, Samet Oymak, and Christos Thrampoulidis. Label-imbalanced and group-sensitive classification under overparameterization. Advances in Neural Information Processing Systems (NeurIPS) , 34, 2021. 58, 61, 67, 68, 69

  150. [158]

    Label-imbalanced and group-sensitive classification under overparameterization

    Ganesh Ramachandra Kini, Orestis Paraskevas, Samet Oymak, and Christos Thrampoulidis. Label-imbalanced and group-sensitive classification under overparameterization. In M. Ranzato, A. Beygelzimer, Y. Dauphin, P.S. Liang, and J. Wortman Vaughan, editors, Advances in Neural Info...

  151. [159]

    Segment anything

    Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer Whitehead, Alexander C Berg, Wan-Yen Lo, et al. Segment anything. arXiv preprint arXiv:2304.02643, 2023. 104

  152. [160]

    Overcoming catastrophic forgetting in neural networks

    James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, An- drei A Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, et al. Overcoming catastrophic forgetting in neural networks. national academy of sciences , 114(13): 35...

  153. [161]

    Large scale learning of general visual representations for transfer

    Alexander Kolesnikov, Lucas Beyer, Xiaohua Zhai, Joan Puigcerver, Jessica Yung, Sylvain Gelly, and Neil Houlsby. Large scale learning of general visual representations for transfer. arXiv preprint arXiv:1912.11370, 2019. 23

  154. [162]

    Big transfer (bit): General visual representation learning

    Alexander Kolesnikov, Lucas Beyer, Xiaohua Zhai, Joan Puigcerver, Jessica Yung, Sylvain Gelly, and Neil Houlsby. Big transfer (bit): General visual representation learning. In European Conference on Computer Vision (ECCV) , pages 491–507. Springer, 2020. 104 295

  155. [163]

    Sliced wasserstein kernels for probability distributions

    Soheil Kolouri, Yang Zou, and Gustavo K Rohde. Sliced wasserstein kernels for probability distributions. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR),

  156. [164]

    Optimizing sensing: From water to the web

    Andreas Krause and Carlos Guestrin. Optimizing sensing: From water to the web. Computer, 42(8):38–45, 2009. 255

  157. [165]

    Visual genome: Connecting language and vision using crowdsourced dense image annotations

    Ranjay Krishna, Yuke Zhu, Oliver Groth, Justin Johnson, Kenji Hata, Joshua Kravitz, Stephanie Chen, Yannis Kalantidis, Li-Jia Li, David A Shamma, et al. Visual genome: Connecting language and vision using crowdsourced dense image annotations. International journal of computer ...

  158. [166]

    Learning multiple layers of features from tiny images

    Alex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, 2009. 33, 158

  159. [167]

    Learning multiple layers of features from tiny images

    Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images

  160. [168]

    Imagenet classification with deep con- volutional neural networks

    Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep con- volutional neural networks. In Advances in Neural Information Processing Systems (NeurIPS) , pages 1097–1105, 2012. 1

  161. [169]

    Implicit rate-constrained op- timization of non-decomposable objectives

    Abhishek Kumar, Harikrishna Narasimhan, and Andrew Cotter. Implicit rate-constrained op- timization of non-decomposable objectives. In International Conference on Machine Learning (ICML), pages 5861–5871. PMLR, 2021. 103

  162. [170]

    Venkatesh Babu

    Jogendra Nath Kundu, Naveen Venkat, Ambareesh Revanur, Rahul M V, and R. Venkatesh Babu. Towards inheritable models for open-set domain adaptation. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , June 2020. 118, 135

  163. [171]

    Venkatesh Babu

    Jogendra Nath Kundu, Naveen Venkat, Rahul M V, and R. Venkatesh Babu. Universal source- free domain adaptation. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), June 2020. 118

  164. [172]

    Venkatesh Babu

    Jogendra Nath Kundu, Akshay Kulkarni, Amit Singh, Varun Jampani, and R. Venkatesh Babu. Generalize then adapt: Source-free domain adaptive semantic segmentation. In IEEE/CVF International Conference on Computer Vision (ICCV) , pages 7046–7056, October 2021. 135

  165. [173]

    A large-scale study on regularization and normalization in gans

    Karol Kurach, Mario Luˇ ci´ c, Xiaohua Zhai, Marcin Michalski, and Sylvain Gelly. A large-scale study on regularization and normalization in gans. In International Conference on Machine Learning (ICML), pages 3581–3590. PMLR, 2019. 19

  166. [174]

    Tuomas Kynk¨ a¨ anniemi, Tero Karras, Samuli Laine, Jaakko Lehtinen, and Timo Aila.Improved Precision and Recall Metric for Assessing Generative Models . 2019. 42 296

  167. [175]

    Improved precision and recall metric for assessing generative models

    Tuomas Kynk¨ a¨ anniemi, Tero Karras, Samuli Laine, Jaakko Lehtinen, and Timo Aila. Improved precision and recall metric for assessing generative models. Advances in Neural Information Processing Systems (NeurIPS), 32, 2019. 35, 50, 168

  168. [176]

    The role of imagenet classes in fr´ echet inception distance.CoRR, abs/2203.06026, 2022

    Tuomas Kynk¨ a¨ anniemi, Tero Karras, Miika Aittala, Timo Aila, and Jaakko Lehtinen. The role of imagenet classes in fr´ echet inception distance.CoRR, abs/2203.06026, 2022. 50

  169. [177]

    Temporal ensembling for semi-supervised learning

    Samuli Laine and Timo Aila. Temporal ensembling for semi-supervised learning. arXiv preprint arXiv:1610.02242, 2016. 102

  170. [178]

    Cambridge University Press, 2020

    Tor Lattimore and Csaba Szepesv´ ari.Bandit algorithms. Cambridge University Press, 2020. 237

  171. [179]

    Photo-realistic single image super-resolution using a generative adversarial network

    Christian Ledig, Lucas Theis, Ferenc Husz´ ar, Jose Caballero, Andrew Cunningham, Alejandro Acosta, Andrew Aitken, Alykhan Tejani, Johannes Totz, Zehan Wang, et al. Photo-realistic single image super-resolution using a generative adversarial network. In IEEE/CVF Conference on ...

  172. [180]

    Abc: Auxiliary balanced classifier for class- imbalanced semi-supervised learning

    Hyuck Lee, Seungjae Shin, and Heeyoung Kim. Abc: Auxiliary balanced classifier for class- imbalanced semi-supervised learning. Advances in Neural Information Processing Systems (NeurIPS), 34:7082–7094, 2021. xxii, 105, 106, 109, 114

  173. [181]

    Drop to adapt: Learn- ing discriminative features for unsupervised domain adaptation

    Seungmin Lee, Dongwan Kim, Namil Kim, and Seong-Gyun Jeong. Drop to adapt: Learn- ing discriminative features for unsupervised domain adaptation. In IEEE/CVF International Conference on Computer Vision (ICCV) , pages 91–100, 2019. 120

  174. [182]

    Dbpedia–a large- scale, multilingual knowledge base extracted from wikipedia

    Jens Lehmann, Robert Isele, Max Jakob, Anja Jentzsch, Dimitris Kontokostas, Pablo N Mendes, Sebastian Hellmann, Mohamed Morsey, Patrick Van Kleef, S¨ oren Auer, et al. Dbpedia–a large- scale, multilingual knowledge base extracted from wikipedia. Semantic web, 6(2):167–195, 201...

  175. [183]

    Freestylegan: Free-view editable portrait rendering with the camera manifold

    Thomas Leimk¨ uhler and George Drettakis. Freestylegan: Free-view editable portrait rendering with the camera manifold. 40(6), 2021. doi: 10.1145/3478513.3480538. 44

  176. [184]

    Online meta-learning for multi-source and semi-supervised domain adaptation

    Da Li and Timothy Hospedales. Online meta-learning for multi-source and semi-supervised domain adaptation. In European Conference on Computer Vision (ECCV) , pages 382–403. Springer, 2020. 119

  177. [185]

    Visualizing the loss landscape of neural nets

    Hao Li, Zheng Xu, Gavin Taylor, Christoph Studer, and Tom Goldstein. Visualizing the loss landscape of neural nets. Advances in Neural Information Processing Systems (NeurIPS) , 31,

  178. [186]

    Domain generalization with adver- sarial feature learning

    Haoliang Li, Sinno Jialin Pan, Shiqi Wang, and Alex C Kot. Domain generalization with adver- sarial feature learning. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 5400–5409, 2018. 133 297

  179. [187]

    Earning extra performance from restrictive feedbacks

    Jing Li, Yuangang Pan, Yueming Lyu, Yinghua Yao, Yulei Sui, and Ivor W Tsang. Earning extra performance from restrictive feedbacks. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2023. 251

  180. [188]

    Nested collaborative learning for long-tailed visual recognition

    Jun Li, Zichang Tan, Jun Wan, Zhen Lei, and Guodong Guo. Nested collaborative learning for long-tailed visual recognition. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 6949–6958, 2022. 73

  181. [189]

    Long tail visual recognition via gaussian clouded logit adjustment

    Mengke Li, Yiu-ming Cheung, and Yang Lu. Long tail visual recognition via gaussian clouded logit adjustment. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR) ,

  182. [190]

    Self supervision to distillation for long-tailed visual recognition

    Tianhao Li, Limin Wang, and Gangshan Wu. Self supervision to distillation for long-tailed visual recognition. In IEEE/CVF International Conference on Computer Vision (ICCV) , 2021. 81

  183. [191]

    Targeted supervised contrastive learning for long-tailed recognition

    Tianhong Li, Peng Cao, Yuan Yuan, Lijie Fan, Yuzhe Yang, Rogerio S Feris, Piotr Indyk, and Dina Katabi. Targeted supervised contrastive learning for long-tailed recognition. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 6918–6928, 2022. 83, 84

  184. [192]

    Hessian based analysis of sgd for deep nets: Dynamics and generalization

    Xinyan Li, Qilong Gu, Yingxue Zhou, Tiancong Chen, and Arindam Banerjee. Hessian based analysis of sgd for deep nets: Dynamics and generalization. In 2020 SIAM International Con- ference on Data Mining , pages 190–198. SIAM, 2020. 62

  185. [193]

    Support vector machines for classification in non- standard situations

    Yi Lin, Yoonkyung Lee, and Grace Wahba. Support vector machines for classification in non- standard situations. Machine learning, 46(1):191–202, 2002. 102

  186. [194]

    2d gans meet unsupervised single-view 3d reconstruction

    Feng Liu and Xiaoming Liu. 2d gans meet unsupervised single-view 3d reconstruction. In European Conference on Computer Vision (ECCV) , pages 497–514, 2022. 44

  187. [195]

    Spectral regularization for combating mode collapse in gans

    Kanglin Liu, Wenming Tang, Fei Zhou, and Guoping Qiu. Spectral regularization for combating mode collapse in gans. In IEEE/CVF International Conference on Computer Vision (ICCV) , pages 6382–6390, 2019. 28

  188. [196]

    Unsupervised image-to-image translation net- works

    Ming-Yu Liu, Thomas Breuel, and Jan Kautz. Unsupervised image-to-image translation net- works. In Advances in Neural Information Processing Systems (NeurIPS) , pages 700–708, 2017. 133

  189. [197]

    Few-shot unsupervised image-to-image translation

    Ming-Yu Liu, Xun Huang, Arun Mallya, Tero Karras, Timo Aila, Jaakko Lehtinen, and Jan Kautz. Few-shot unsupervised image-to-image translation. In IEEE/CVF International Con- ference on Computer Vision (ICCV) , pages 10551–10560, 2019. 53

  190. [198]

    Generative adversarial networks for image and video synthesis: Algorithms and applications

    Ming-Yu Liu, Xun Huang, Jiahui Yu, Ting-Chun Wang, and Arun Mallya. Generative adversarial networks for image and video synthesis: Algorithms and applications. IEEE, 109(5), 2021. 28, 30, 152 298

  191. [199]

    Towards efficient and scalable sharpness-aware minimization

    Yong Liu, Siqi Mai, Xiangning Chen, Cho-Jui Hsieh, and Yang You. Towards efficient and scalable sharpness-aware minimization. arXiv preprint arXiv:2203.02714 , 2022. 63

  192. [200]

    Ziwei Liu, Zhongqi Miao, Xiaohang Zhan, Jiayun Wang, Boqing Gong, and Stella X. Yu. Large- scale long-tailed recognition in an open world. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , June 2019. 18

  193. [201]

    Large- scale long-tailed recognition in an open world

    Ziwei Liu, Zhongqi Miao, Xiaohang Zhan, Jiayun Wang, Boqing Gong, and Stella X Yu. Large- scale long-tailed recognition in an open world. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 2537–2546, 2019. 43, 49, 66, 67, 80

  194. [202]

    Retrieval augmented classification for long-tail visual recognition

    Alexander Long, Wei Yin, Thalaiyasingam Ajanthan, Vu Nguyen, Pulak Purkait, Ravi Garg, Alan Blair, Chunhua Shen, and Anton van den Hengel. Retrieval augmented classification for long-tail visual recognition. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR),...

  195. [203]

    Conditional adversarial domain adaptation

    Mingsheng Long, Zhangjie Cao, Jianmin Wang, and Michael I Jordan. Conditional adversarial domain adaptation. In Advances in Neural Information Processing Systems (NeurIPS) , pages 1645–1655, 2018. 118, 126, 128, 133, 134, 135, 137, 139, 141, 142, 143, 258, 262, 273, 276

  196. [204]

    Decoupled weight decay regularization

    Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017. 80

  197. [205]

    High-fidelity image generation with fewer labels

    Mario Lucic, Michael Tschannen, Marvin Ritter, Xiaohua Zhai, Olivier Bachem, and Sylvain Gelly. High-fidelity image generation with fewer labels. arXiv preprint arXiv:1903.02271 , 2019. 23

  198. [206]

    Maas, Raymond E

    Andrew L. Maas, Raymond E. Daly, Peter T. Pham, Dan Huang, Andrew Y. Ng, and Christopher Potts. Learning word vectors for sentiment analysis. In 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies , pages 142– 150, Portland, Oregon...

  199. [207]

    Mode seeking gener- ative adversarial networks for diverse image synthesis

    Qi Mao, Hsin-Ying Lee, Hung-Yu Tseng, Siwei Ma, and Ming-Hsuan Yang. Mode seeking gener- ative adversarial networks for diverse image synthesis. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 1429–1437, 2019. 26, 28

  200. [208]

    Least squares generative adversarial networks

    Xudong Mao, Qing Li, Haoran Xie, Raymond YK Lau, Zhen Wang, and Stephen Paul Smolley. Least squares generative adversarial networks. In IEEE international conference on computer vision, 2017. 34, 175

  201. [209]

    Long-tail learning via logit adjustment

    Aditya Krishna Menon, Sadeep Jayasumana, Ankit Singh Rawat, Himanshu Jain, Andreas Veit, and Sanjiv Kumar. Long-tail learning via logit adjustment. arXiv preprint arXiv:2007.07314 ,

  202. [210]

    Long-tail learning via logit adjustment

    Aditya Krishna Menon, Sadeep Jayasumana, Ankit Singh Rawat, Himanshu Jain, Andreas Veit, and Sanjiv Kumar. Long-tail learning via logit adjustment. In International Conference on Learning Representations (ICLR), 2021. 28, 33

  203. [211]

    Empirical study of extreme overfitting points of neural networks

    DM Merkulov and Ivan V Oseledets. Empirical study of extreme overfitting points of neural networks. Journal of Communications Technology and Electronics , 64(12):1527–1534, 2019. 63

  204. [212]

    Which training methods for gans do actually converge? In International Conference on Machine Learning (ICML), pages 3481–3490

    Lars Mescheder, Andreas Geiger, and Sebastian Nowozin. Which training methods for gans do actually converge? In International Conference on Machine Learning (ICML), pages 3481–3490. PMLR, 2018. 49

  205. [213]

    Conditional generative adversarial nets, 2014

    Mehdi Mirza and Simon Osindero. Conditional generative adversarial nets, 2014. 10, 12

  206. [214]

    Miyato, S

    T. Miyato, S. Maeda, M. Koyama, and S. Ishii. Virtual adversarial training: A regularization method for supervised and semi-supervised learning. IEEE Transactions on Pattern Analysis and Machine Intelligence , 41(8):1979–1993, 2019. doi: 10.1109/TPAMI.2018.2858821. 123, 146, 277

  207. [215]

    cGANs with projection discriminator

    Takeru Miyato and Masanori Koyama. cGANs with projection discriminator. In International Conference on Learning Representations (ICLR), 2018. URL https://openreview.net/forum? id=ByS1VpgRZ. 6, 10, 13, 30, 34, 36, 40, 168

  208. [216]

    61, 73, 75, 81, 83, 92, 93, 99, 114 299

  209. [217]

    Virtual adversarial training: a regularization method for supervised and semi-supervised learning

    Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. IEEE transactions on pattern analysis and machine intelligence , 41(8):1979–1993, 2018. 90, 93, 97, 102

  210. [218]

    Agnostic federated learning

    Mehryar Mohri, Gary Sivek, and Ananda Theertha Suresh. Agnostic federated learning. In International Conference on Machine Learning (ICML) , pages 4615–4625. PMLR, 2019. 90, 105, 107

  211. [219]

    Moosavi-Dezfooli, A

    S. Moosavi-Dezfooli, A. Fawzi, and P. Frossard. Deepfool: A simple and accurate method to fool deep neural networks. In 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 2574–2582, 2016. doi: 10.1109/CVPR.2016.282. 264

  212. [220]

    Generative adversarial minority oversampling

    Sankha Subhra Mullick, Shounak Datta, and Swagatam Das. Generative adversarial minority oversampling. In The IEEE International Conference on Computer Vision (ICCV) , October

  213. [221]

    Reliable fidelity and diversity metrics for generative models

    Muhammad Ferjad Naeem, Seong Joon Oh, Youngjung Uh, Yunjey Choi, and Jaejun Yoo. Reliable fidelity and diversity metrics for generative models. 2020. 35 300

  214. [222]

    Training over-parameterized models with non- decomposable objectives

    Harikrishna Narasimhan and Aditya K Menon. Training over-parameterized models with non- decomposable objectives. Advances in Neural Information Processing Systems (NeurIPS) , 34,

  215. [223]

    Spectral normalization for generative adversarial networks

    Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization for generative adversarial networks. arXiv preprint arXiv:1802.05957, 2018. xxxi, 10, 16, 18, 19, 27, 28, 30, 34, 36, 38, 40, 158, 159, 160, 162, 168, 175, 273

  216. [224]

    Optimizing non-decomposable performance measures: A tale of two classes

    Harikrishna Narasimhan, Purushottam Kar, and Prateek Jain. Optimizing non-decomposable performance measures: A tale of two classes. In International Conference on Machine Learning (ICML), pages 199–208. PMLR, 2015. 105, 107

  217. [225]

    Consis- tent multiclass algorithms for complex performance measures

    Harikrishna Narasimhan, Harish Ramaswamy, Aadirupa Saha, and Shivani Agarwal. Consis- tent multiclass algorithms for complex performance measures. In International Conference on Machine Learning (ICML) , pages 2398–2407. PMLR, 2015. 92, 102, 112

  218. [226]

    Consistent multiclass algorithms for complex metrics and constraints

    Harikrishna Narasimhan, Harish G Ramaswamy, Shiv Kumar Tavker, Drona Khurana, Praneeth Netrapalli, and Shivani Agarwal. Consistent multiclass algorithms for complex metrics and constraints. arXiv preprint arXiv:2210.09695 , 2022. 108, 112, 113

  219. [227]

    Optimal classification with multivariate losses

    Nagarajan Natarajan, Oluwasanmi Koyejo, Pradeep Ravikumar, and Inderjit Dhillon. Optimal classification with multivariate losses. InInternational Conference on Machine Learning (ICML), pages 1530–1538. PMLR, 2016. 103

  220. [228]

    Effectiveness of ar- bitrary transfer sets for data-free knowledge distillation

    Gaurav Kumar Nayak, Konda Reddy Mopuri, and Anirban Chakraborty. Effectiveness of ar- bitrary transfer sets for data-free knowledge distillation. In IEEE/CVF Winter Conference on Applications of Computer Vision (WACV) , pages 1430–1438, 2021. 77

  221. [229]

    An analysis of approximations for maximizing submodular set functions—i

    George L Nemhauser, Laurence A Wolsey, and Marshall L Fisher. An analysis of approximations for maximizing submodular set functions—i. Mathematical programming, 14(1):265–294, 1978. 120, 255

  222. [230]

    xxii, 90, 92, 93, 94, 97, 98, 105, 106, 107, 109, 113, 208, 219, 225, 241

  223. [231]

    On the statistical consistency of plug-in classifiers for non-decomposable performance measures

    Harikrishna Narasimhan, Rohit Vaish, and Shivani Agarwal. On the statistical consistency of plug-in classifiers for non-decomposable performance measures. Advances in Neural Information Processing Systems (NeurIPS), 27, 2014. 99, 103, 105, 107

  224. [232]

    Daso: Distribution-aware semantics-oriented pseudo-label for imbalanced semi-supervised learning

    Youngtaek Oh, Dong-Jin Kim, and In So Kweon. Daso: Distribution-aware semantics-oriented pseudo-label for imbalanced semi-supervised learning. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 9786–9796, 2022. xxii, 4, 105, 106, 107, 114, 242

  225. [233]

    A class of discrete distributions suited to fitting very long-tailed data

    SH Ong and Subarau Muthaloo. A class of discrete distributions suited to fitting very long-tailed data. Communications in Statistics-Simulation and Computation , 24(4):929–945, 1995. 2 301

  226. [234]

    Probing toxic content in large pre-trained language models

    Nedjma Ousidhoum, Xinran Zhao, Tianqing Fang, Yangqiu Song, and Dit-Yan Yeung. Probing toxic content in large pre-trained language models. In 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Pr...

  227. [235]

    Improving domain generalization with interpolation robustness

    Ragja Palakkadavath, Thanh Nguyen-Tang, Sunil Gupta, and Svetha Venkatesh. Improving domain generalization with interpolation robustness. In NeurIPS 2022 Workshop on Distribution Shifts: Connecting Methods and Applications , 2022. 251

  228. [236]

    Venkatesh Babu

    Rishubh Parihar, Ankit Dhiman, Tejan Karmali, and R. Venkatesh Babu. Everything is there in latent space: Attribute editing and attribute style manipulation by stylegan latent space exploration. In 30th ACM International Conference on Multimedia , pages 1828–1836, 2022. 44

  229. [237]

    Influence-balanced loss for imbalanced visual classification

    Seulki Park, Jongin Lim, Younghan Jeon, and Jin Young Choi. Influence-balanced loss for imbalanced visual classification. In IEEE/CVF International Conference on Computer Vision (ICCV), pages 735–744, October 2021. 70, 193

  230. [238]

    Estimating divergence func- tionals and the likelihood ratio by convex risk minimization

    XuanLong Nguyen, Martin J Wainwright, and Michael I Jordan. Estimating divergence func- tionals and the likelihood ratio by convex risk minimization. IEEE Transactions on Information Theory, 56(11):5847–5861, 2010. 136

  231. [239]

    Conditional image synthesis with auxiliary classifier gans

    Augustus Odena, Christopher Olah, and Jonathon Shlens. Conditional image synthesis with auxiliary classifier gans. In 34th International Conference on Machine Learning (ICML) , pages 2642–2651. JMLR. org, 2017. 13, 36

  232. [240]

    Mak- ing deep neural networks robust to label noise: A loss correction approach

    Giorgio Patrini, Alessandro Rozza, Aditya Krishna Menon, Richard Nock, and Lizhen Qu. Mak- ing deep neural networks robust to label noise: A loss correction approach. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 1944–1952, 2017. 92

  233. [241]

    X. Peng, B. Usman, N. Kaushik, D. Wang, J. Hoffman, and K. Saenko. Visda: A synthetic- to-real benchmark for visual domain adaptation. In 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPR W), pages 2102–21025, 2018. doi: 10.1109/ CVPR W.2018.0...

  234. [242]

    Visda: The visual domain adaptation challenge, 2017

    Xingchao Peng, Ben Usman, Neela Kaushik, Judy Hoffman, Dequan Wang, and Kate Saenko. Visda: The visual domain adaptation challenge, 2017. 142

  235. [243]

    Moment matching for multi-source domain adaptation

    Xingchao Peng, Qinxun Bai, Xide Xia, Zijun Huang, Kate Saenko, and Bo Wang. Moment matching for multi-source domain adaptation. In IEEE International Conference on Computer Vision, pages 1406–1415, 2019. 131, 142, 265 302

  236. [244]

    Meta pseudo labels

    Hieu Pham, Zihang Dai, Qizhe Xie, and Quoc V Le. Meta pseudo labels. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 11557–11568, 2021. 90

  237. [245]

    Acceleration of stochastic approximation by averaging

    Boris T Polyak and Anatoli B Juditsky. Acceleration of stochastic approximation by averaging. SIAM journal on control and optimization , 30(4):838–855, 1992. 259

  238. [246]

    Pytorch: An imperative style, high-performance deep learning library

    Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, Alban Desmaison, Andreas Kopf, Edward Yang, Zachary DeVito, Martin Raison, Alykhan Tejani, Sasank Chilamkurthy, Benoit Steiner, Lu ...

  239. [247]

    Styleclip: Text-driven manipulation of stylegan imagery

    Or Patashnik, Zongze Wu, Eli Shechtman, Daniel Cohen-Or, and Dani Lischinski. Styleclip: Text-driven manipulation of stylegan imagery. InIEEE/CVF International Conference on Com- puter Vision (ICCV) , pages 2085–2094, October 2021. 44

  240. [248]

    Unsupervised representation learning with deep convolutional generative adversarial networks

    Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434 , 2015. xxxi, 10, 159

  241. [249]

    Learning transferable visual models from natural language supervision

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervision. In International conference on machine learning , p...

  242. [250]

    Learning transferable visual models from natural language supervision

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervision. In International Conference on Machine Learning (IC...

  243. [251]

    De- signing network design spaces

    Ilija Radosavovic, Raj Prateek Kosaraju, Ross Girshick, Kaiming He, and Piotr Doll´ ar. De- signing network design spaces. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 10428–10436, 2020. 77

  244. [252]

    Do vision transformers see like convolutional neural networks? Advances in Neural Information Processing Systems (NeurIPS), 34:12116–12128, 2021

    Maithra Raghu, Thomas Unterthiner, Simon Kornblith, Chiyuan Zhang, and Alexey Dosovitskiy. Do vision transformers see like convolutional neural networks? Advances in Neural Information Processing Systems (NeurIPS), 34:12116–12128, 2021. 79, 203, 204

  245. [253]

    Domain adaptation meets active learning

    Piyush Rai, Avishek Saha, Hal Daum´ e III, and Suresh Venkatasubramanian. Domain adaptation meets active learning. In NAACL HLT 2010 Workshop on Active Learning for Natural Language Processing, pages 27–32, 2010. 119, 121

  246. [254]

    Active domain adap- tation via clustering uncertainty-weighted embeddings, 2020

    Viraj Prabhu, Arjun Chandrasekaran, Kate Saenko, and Judy Hoffman. Active domain adap- tation via clustering uncertainty-weighted embeddings, 2020. 121

  247. [255]

    Optimizing f-measures by cost-sensitive classification

    Shameem Puthiya Parambath, Nicolas Usunier, and Yves Grandvalet. Optimizing f-measures by cost-sensitive classification. Advances in Neural Information Processing Systems (NeurIPS) , 27, 2014. 103

  248. [256]

    Venkatesh Babu

    Harsh Rangwani, Sumukh K Aithal, Mayank Mishra, Arihant Jain, and R. Venkatesh Babu. A closer look at smoothness in domain adversarial training. In 39th International Conference on Machine Learning (ICML) , 2022. 61

  249. [257]

    Escaping sad- dle points for effective generalization on class-imbalanced data

    Harsh Rangwani, Sumukh K Aithal, Mayank Mishra, and Venkatesh Babu R. Escaping sad- dle points for effective generalization on class-imbalanced data. In S. Koyejo, S. Mohamed, A. Agarwal, D. Belgrave, K. Cho, and A. Oh, editors, Advances in Neural Information Process- ing Syst...

  250. [258]

    Venkatesh Babu

    Harsh Rangwani, Naman Jaswani, Tejan Karmali, Varun Jampani, and R. Venkatesh Babu. Im- proving gans for long-tailed data through group spectral regularization. In European Conference on Computer Vision (ECCV) , 2022. 75

  251. [259]

    Venkatesh Babu

    Harsh Rangwani, Naman Jaswani, Tejan Karmali, Varun Jampani, and R. Venkatesh Babu. Im- proving gans for long-tailed data through group spectral regularization. In European Conference on Computer Vision (ECCV) , 2022. xix, 43, 44, 46, 47, 51, 52, 181

  252. [260]

    Cost-sensitive self-training for optimizing non-decomposable metrics

    Harsh Rangwani, Shrinivas Ramasubramanian, Sho Takemori, Kato Takashi, Yuhei Umeda, and Venkatesh Babu Radhakrishnan. Cost-sensitive self-training for optimizing non-decomposable metrics. In Alice H. Oh, Alekh Agarwal, Danielle Belgrave, and Kyunghyun Cho, editors, Advances in...

  253. [261]

    Venkatesh Babu

    Harsh Rangwani ∗, Lavish Bansal ∗, Kartik Sharma, Tejan Karmali, Varun Jampani, and R. Venkatesh Babu. Noisytwins: Class-consistent and diverse image generation through style- GANs. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2023. 75

  254. [262]

    Venkatesh Babu

    Harsh Rangwani, Arihant Jain, Sumukh K Aithal, and R. Venkatesh Babu. S3vaada: Submodu- lar subset selection for virtual adversarial active domain adaptation. InIEEE/CVF International Conference on Computer Vision (ICCV) , pages 7516–7525, October 2021. 133 303

  255. [263]

    Class balancing gan with a classifier in the loop

    Harsh Rangwani, Konda Reddy Mopuri, and R Venkatesh Babu. Class balancing gan with a classifier in the loop. In Uncertainty in Artificial Intelligence , pages 1618–1627. PMLR, 2021. 29, 33, 34, 36, 44, 75, 172, 174

  256. [264]

    Faster r-cnn: Towards real-time object detection with region proposal networks

    Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. Advances in Neural Information Processing Systems (NeurIPS), 28:91–99, 2015. 1, 145, 275

  257. [265]

    High- resolution image synthesis with latent diffusion models, 2021

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj¨ orn Ommer. High- resolution image synthesis with latent diffusion models, 2021. 3, 54 304

  258. [266]

    U-net: Convolutional networks for biomedical image segmentation

    Olaf Ronneberger, Philipp Fischer, and Thomas Brox. U-net: Convolutional networks for biomedical image segmentation. In Medical image computing and computer-assisted intervention–MICCAI 2015: 18th international conference, Munich, Germany, October 5-9, 2015, proceedings, part ...

  259. [267]

    Imagenet large scale visual recognition challenge

    Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual recognition challenge. International journal of computer vision , 115(3):211–252, 2015. 57, 67, ...

  260. [268]

    Adapting visual category models to new domains

    Kate Saenko, Brian Kulis, Mario Fritz, and Trevor Darrell. Adapting visual category models to new domains. In European Conference on Computer Vision (ECCV) , pages 213–226. Springer,

  261. [269]

    Empirical analysis of the hessian of over-parametrized neural networks

    Levent Sagun, Utku Evci, V Ugur Guney, Yann Dauphin, and Leon Bottou. Empirical analysis of the hessian of over-parametrized neural networks. arXiv preprint arXiv:1706.04454 , 2017. 61

  262. [270]

    Classification accuracy score for conditional generative models

    Suman Ravuri and Oriol Vinyals. Classification accuracy score for conditional generative models. In Advances in Neural Information Processing Systems (NeurIPS), pages 12268–12279, 2019. 11, 20, 21

  263. [271]

    Balanced meta-softmax for long-tailed visual recognition

    Jiawei Ren, Cunjun Yu, Shunan Sheng, Xiao Ma, Haiyu Zhao, Shuai Yi, and Hongsheng Li. Balanced meta-softmax for long-tailed visual recognition. arXiv preprint arXiv:2007.10740 ,

  264. [272]

    Maximum classifier discrepancy for unsupervised domain adaptation

    Kuniaki Saito, Kohei Watanabe, Yoshitaka Ushiku, and Tatsuya Harada. Maximum classifier discrepancy for unsupervised domain adaptation. InIEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 3723–3732, 2018. 120, 121, 125, 126, 143, 273

  265. [273]

    Semi-supervised domain adaptation via minimax entropy

    Kuniaki Saito, Donghyun Kim, Stan Sclaroff, Trevor Darrell, and Kate Saenko. Semi-supervised domain adaptation via minimax entropy. InIEEE International Conference on Computer Vision, pages 8050–8058, 2019. xxiii, 119, 121, 128, 129

  266. [274]

    Strong-weak distribution alignment for adaptive object detection

    Kuniaki Saito, Yoshitaka Ushiku, Tatsuya Harada, and Kate Saenko. Strong-weak distribution alignment for adaptive object detection. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 6956–6965, 2019. 133, 145

  267. [275]

    Semantic foggy scene understanding with synthetic data

    Christos Sakaridis, Dengxin Dai, and Luc Van Gool. Semantic foggy scene understanding with synthetic data. International Journal of Computer Vision , 126(9):973–992, 2018. 145

  268. [276]

    Improved techniques for training gans

    Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. In Advances in Neural Information Processing Systems (NeurIPS), pages 2234–2242, 2016. 11, 33

  269. [277]

    Distributional robustness loss for long-tail learning

    Dvir Samuel and Gal Chechik. Distributional robustness loss for long-tail learning. InIEEE/CVF International Conference on Computer Vision (ICCV) , pages 9495–9504, October 2021. 60, 69, 191, 194 305

  270. [278]

    Asymmetric tri-training for unsupervised domain adaptation

    Kuniaki Saito, Yoshitaka Ushiku, and Tatsuya Harada. Asymmetric tri-training for unsupervised domain adaptation. In International Conference on Machine Learning (ICML), pages 2988–2997. PMLR, 2017. 102

  271. [279]

    Adversarial dropout reg- ularization

    Kuniaki Saito, Yoshitaka Ushiku, Tatsuya Harada, and Kate Saenko. Adversarial dropout reg- ularization. In International Conference on Learning Representations (ICLR) , 2018. 118, 139

  272. [280]

    Optimizing non-decomposable measures with deep networks

    Amartya Sanyal, Pawan Kumar, Purushottam Kar, Sanjay Chawla, and Fabrizio Sebastiani. Optimizing non-decomposable measures with deep networks. Machine Learning, 107(8):1597– 1620, 2018. 90, 103, 107

  273. [281]

    Projected gans converge faster

    Axel Sauer, Kashyap Chitta, Jens M¨ uller, and Andreas Geiger. Projected gans converge faster. In Advances in Neural Information Processing Systems (NeurIPS) , 2021. 4, 42, 49

  274. [282]

    Stylegan-xl: Scaling stylegan to large diverse datasets

    Axel Sauer, Katja Schwarz, and Andreas Geiger. Stylegan-xl: Scaling stylegan to large diverse datasets. volume abs/2201.00273, 2022. URL https://arxiv.org/abs/2201.00273. 41, 49, 50, 179, 185

  275. [283]

    Adversarial diffusion distillation

    Axel Sauer, Dominik Lorenz, Andreas Blattmann, and Robin Rombach. Adversarial diffusion distillation. arXiv preprint arXiv:2311.17042 , 2023. 4

  276. [284]

    Active learning for convolutional neural networks: A core- set approach

    Ozan Sener and Silvio Savarese. Active learning for convolutional neural networks: A core- set approach. In International Conference on Learning Representations (ICLR) , 2018. URL https://openreview.net/forum?id=H1aIuk-RW. 121, 129, 256

  277. [285]

    Learning transferrable rep- resentations for unsupervised domain adaptation

    Ozan Sener, Hyun Oh Song, Ashutosh Saxena, and Silvio Savarese. Learning transferrable rep- resentations for unsupervised domain adaptation. In Advances in Neural Information Processing Systems (NeurIPS) , pages 2110–2118, 2016. 125, 256

  278. [286]

    Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter

    Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter. arXiv preprint arXiv:1910.01108 , 2019. 99, 224

  279. [287]

    A classification-based study of covariate shift in gan distributions

    Shibani Santurkar, Ludwig Schmidt, and Aleksander Madry. A classification-based study of covariate shift in gan distributions. In International Conference on Machine Learning (ICML) , pages 4480–4489. PMLR, 2018. 11, 12, 18, 33, 172

  280. [288]

    Closed-form factorization of latent semantics in gans

    Yujun Shen and Bolei Zhou. Closed-form factorization of latent semantics in gans. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , 2021. 44

  281. [289]

    Interpreting the latent space of gans for semantic face editing

    Yujun Shen, Jinjin Gu, Xiaoou Tang, and Bolei Zhou. Interpreting the latent space of gans for semantic face editing. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2020. 41

  282. [290]

    Interfacegan: Interpreting the disen- tangled face representation learned by gans

    Yujun Shen, Ceyuan Yang, Xiaoou Tang, and Bolei Zhou. Interfacegan: Interpreting the disen- tangled face representation learned by gans. IEEE TPAMI, 2020. 44 306

  283. [291]

    Parameter- efficient long-tailed recognition

    Jiang-Xin Shi, Tong Wei, Zhi Zhou, Xin-Yan Han, Jie-Jing Shao, and Yu-Feng Li. Parameter- efficient long-tailed recognition. arXiv preprint arXiv:2309.10019 , 2023. 202

  284. [292]

    Yichun Shi, Divyansh Aggarwal, and Anil K. Jain. Lifting 2d stylegan for 3d-aware face gen- eration. 2021 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 6254–6262, 2021. 44

  285. [294]

    Active learning literature survey

    Burr Settles. Active learning literature survey. 2009. 119

  286. [295]

    Collapse by conditioning: Training class-conditional GANs with limited data

    Mohamad Shahbazi, Martin Danelljan, Danda Pani Paudel, and Luc Van Gool. Collapse by conditioning: Training class-conditional GANs with limited data. In International Confer- ence on Learning Representations (ICLR) , 2022. URL https://openreview.net/forum?id= 7TZeCsNOUB_. 44, ...

  287. [480]

    142, 143, 273, 274, 276

    Springer, 2020. 142, 143, 273, 274, 276

  288. [1732]

    58, 61, 70, 190

    PMLR, 2017. 58, 61, 70, 190

  289. [2004]

    URL https://www.wired.com/2004/10/tail/. 2

  290. [2009]

    57, 80, 99, 158, 171, 221, 243, 274

    Technical report, University of Toronto. 57, 80, 99, 158, 171, 221, 243, 274

  291. [2020]

    URL https://openreview.net/forum?id=r1g87C4KwB. 138

  292. [2021]

    [Online; accessed 17-March-2021]

    URL https://en.wikipedia.org/w/index.php?title=Facility_location_problem& oldid=1012600046. [Online; accessed 17-March-2021]. 124

Pith tools

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