Pith. sign in

REVIEW 3 major objections 5 minor 40 references

Stain-aware Domain Alignment for Imbalance Blood Cell Classification

T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read This paper claims that a two-stage, stain-aware training procedure can make blood-cell classifiers robust to both domain shift and class imbalance.

desk verdict Useful practical method for imbalanced blood cell classification, but the reported edge over baselines is likely inflated because hyperparameters were tuned on the held-out test domains. read the letter →

arxiv 2412.02976 v1 pith:2B3FRY2W submitted 2024-12-04 cs.CV

classification cs.CV
keywords domaingeneralizationdataimbalancebloodcellclassificationstainnormalizationcontrastivelearningBeer-Lambertdecompositionfeaturealignmentlong-tailedrecognition
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper introduces SADA, a blood-cell classification method built around the idea that stain color is the main domain-specific appearance factor while cell morphology is domain-invariant. It tries to establish that by decomposing blood-cell images into stain color and structure, recoloring the structure with other domains' stain profiles, and then aligning features between original and recolored views, a classifier can transfer to unseen hospital datasets and still handle rare cell classes. The reported evidence is a leave-one-out evaluation across four public blood-cell datasets, where SADA reaches average F1-micro of 84.4% and F1-macro of 68.6%, beating the second-best method by 4.4 and 3.9 points, plus a private hospital dataset where it scores 85.4% and 85.1%. A sympathetic reader would care because the method targets exactly the two obstacles that keep automated blood-cell counting out of clinical practice: instruments and staining protocols differ across sites, and rare cell types are easily crushed by common ones.

What carries the argument

The load-bearing object is the Beer-Lambert optical-density factorization $V = W H$, obtained via sparse non-negative matrix factorization, which splits a blood-cell image into a stain color matrix $W$ and a density map $H$ that is assumed to carry the cell structure. The method clusters the $W$ matrices in each mini-batch, then re-stains a sample's density map with the $W$ from other clusters to create synthetic domain variants while leaving morphology intact. A pixel-wise local alignment loss and a contrastive loss whose anchors are averages of original and re-stained embeddings then drive the feature extractor to ignore the differences between these views.

What would settle it

Take a single blood-cell image, decompose it via the paper's SNMF procedure, re-stain its density map with stain matrices from the other k-means clusters, and compare a cell-morphology measurement such as nucleus segmentation overlap or cell boundary IoU between the original and re-stained versions; if morphology shifts systematically with the chosen stain matrix, the separation premise fails.

Watch

Extended reading notes

Core claim

SADA's central claim is that domain-invariant features can be learned by exploiting the Beer-Lambert structure of stained microscopy images. The method first factorizes each image's optical density into a stain color matrix and a structure density map using sparse non-negative matrix factorization, clusters the stain colors in each mini-batch, and then generates synthetic domain-transformed samples by re-staining the original structure with stain colors from other clusters. A pixel-wise local alignment loss forces the backbone's feature maps to agree between original and re-stained views, and a domain-invariant supervised contrastive loss builds anchors by averaging the embeddings of all views of the same cell, diluting domain-specific content. The paper reports that this training, followed by a second stage of classifier training on frozen features, yields the highest F1-micro and F1-macro scores on each of the four public datasets under leave-one-out evaluation, and also on a held-out private clinical dataset, with the largest gains over prior methods on the datasets where stain variation is most visible.

Load-bearing premise

The whole method relies on the Beer-Lambert sparse factorization cleanly separating stain color from cell structure, so that recoloring the density map with another cluster's stain colors preserves the morphology that defines the cell type.

Editorial extensions

If this is right

  • A classifier trained on multi-source blood-cell images can generalize to a new hospital's staining protocol, making automated hematology models potentially deployable without per-site retraining.
  • Minority classes receive more effective training exposure because each image generates multiple stain variants, which the paper argues helps with rare cell types without harming majority-class accuracy.
  • The gains are achieved without changing the inference-time architecture or adding extra experts, so the improvement does not come with added deployment cost.
  • The ablation results show that replacing the averaged-anchor contrastive loss with standard supervised contrastive learning drops F1-macro by 6.4 points, indicating that the domain-invariant anchor construction is a genuine contributor.
  • The two-stage decoupling of feature learning from classifier training means the method can be bolted onto existing backbones and classification heads.

Reading between the lines

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

  • The same re-staining operation could be applied at test time to normalize an incoming image into a canonical stain profile before classification, a post-deployment robustness measure the paper does not explore.
  • A factorial ablation separating the diversity benefit of the augmentation from the alignment benefit of the losses would clarify whether the 4.4-point gain comes from seeing more stain variants or from the feature-level constraints.
  • The averaged-anchor contrastive idea may transfer to other microscopy domains where appearance factors such as fixation, magnification, or fluorophore can be separated from the structure being classified.
  • The paper's evaluation does not isolate whether the SNMF decomposition truly preserves morphology, so a direct measurement of morphological consistency under re-staining would be a natural follow-up test.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 5 minor

Summary. The paper proposes SADA, a two-stage method for blood cell classification under domain shift and class imbalance. In Stage 1, the method performs stain-based augmentation by decomposing images into stain color matrices and density maps via Beer-Lambert and sparse non-negative matrix factorization, clustering the color bases, and re-staining density maps with color bases from other clusters. A pixel-wise local alignment loss and a domain-invariant supervised contrastive loss are then applied to the raw and augmented samples. In Stage 2, a classifier is trained with standard cross-entropy. The method is evaluated with a leave-one-out protocol on four public blood cell datasets and on a private hospital dataset, reporting F1-micro and F1-macro. The central claim is state-of-the-art performance, with average F1-micro of 84.4% and F1-macro of 68.6% on the public datasets, exceeding the second-best method BoDA by 4.4% and 3.9%, respectively.

Significance. If the reported results are valid, SADA would be a useful practical contribution to hematological image analysis, where both domain shift and data imbalance are common. The paper has several strengths: it uses a standard and challenging cross-dataset evaluation protocol, reports results over three trials, includes an ablation study, and provides a source code URL. The proposed components are simple and additive, which makes the method easy to reproduce. However, the validity of the headline claim depends on two load-bearing issues: hyperparameter selection appears to use the same held-out target domains as the final evaluation, and the stain decomposition assumption underlying the augmentation is not independently validated. These issues, if left unaddressed, make the reported margins over the baselines difficult to interpret as honest generalization performance.

major comments (3)
  1. [Section IV-D, Table I] Hyperparameter selection in Section IV-D is performed using the same leave-one-out protocol that produces the final results in Table I. The text states that k and beta were tuned by measuring F1-micro and F1-macro 'under the framework outlined in Section IV-A,' and Section IV-A is the leave-one-out evaluation protocol. Therefore the values k=3 and beta=0.1 were selected using the held-out target domains, and the reported averages of 84.4% F1-micro and 68.6% F1-macro are the result of target-aware selection rather than independent prediction. This selection bias directly affects the central state-of-the-art claim. The paper should either use a nested or source-validation protocol for hyperparameter selection, or report results for a fixed, pre-specified configuration, and should clarify whether the baseline methods in Tables I and II were given equivalent target-aware tuning.
  2. [Section III-A, Eqs. (1)-(3)] The stain-based augmentation method assumes that the SNMF decomposition in Eq. (1) separates stain appearance W from cell structure H, so that recoloring H with W from another k-means cluster preserves morphology while simulating domain shift. This assumption is load-bearing because the local alignment loss and the domain-invariant supervised contrastive loss both train on the reconstructed samples. The paper provides no independent validation that the decomposition preserves labels or morphological structure. Since the ablation study in Table III does not include a variant without the stain-based augmentation module, the contribution of this assumption is not isolated. A concrete validation would be to have the generated samples checked by a human expert, or to measure classification-consistent morphology before and after re-staining, or to run an ablation that removes SBA while keeping the other losses.
  3. [Section III-D, Eq. (8), Table I] The paper repeatedly states that decoupling training into two stages alleviates data imbalance, but Stage 2 trains the classifier with plain cross-entropy, Eq. (8), and no class-balanced sampling, re-weighting, or other imbalance-aware mechanism is described. The only imbalance-aware components are the supervised contrastive loss, which considers all positives regardless of class frequency, and the macro-F1 metric. The reported improvement in macro-F1 is therefore not attributable to the two-stage schedule unless an ablation or analysis isolates it. The authors should either add a class-balanced classifier stage or provide a dedicated experiment showing that the two-stage procedure, beyond the proposed losses, is responsible for the macro-F1 gains.
minor comments (5)
  1. [Section III-A] In the sentence introducing density maps and stain color matrices, the text says 'density maps Hs (i.e. stain color) and stain color matrices Ws (i.e. structure)', which reverses the definitions given in the same section and in Eq. (1). Density maps should be associated with structure and stain color matrices with appearance.
  2. [Section III-C, Eq. (6)] The summation index k in the denominator of Eq. (6) conflicts with the hyperparameter k used for the number of stain-color clusters in Section III-A. A different index, such as m or j, should be used for the summation.
  3. [Section I, contribution list] Contribution 2 says the local alignment constraint makes 'the target sample and generated samples' consistent, but no target-domain samples are used during training. The intended meaning appears to be 'raw sample and generated samples,' and the wording should be corrected.
  4. [Section IV-D, Fig. 7] Figure 7 reports only the hyperparameter tuning results averaged over the four public datasets, without per-dataset curves or error bars. It would be clearer to state how the optimal k and beta were selected from the plotted curves and whether the same values were used without further tuning for the SYSU3H external test in Table II.
  5. [Section II-A] The sentence 'Regarding Loss re-weighting addresses data imbalance by adjusting the loss contribution of each class' is grammatically incomplete; it should be rewritten, for example as 'Regarding loss re-weighting, it addresses data imbalance by adjusting the loss contribution of each class.'

Circularity Check

1 steps flagged · score 4.0 of 10

No derivation-level circularity; the headline improvements are partly selected by tuning k and β on the leave-one-out target folds.

  1. fitted input called prediction [Section IV-D 'Hyperparameter Tuning' with Section IV-A 'Experimental Settings' and Table I]
    "This investigation is carried out under a rigorous framework outlined in Section IV-A. The results of hyperparameter tuning averaged across four public datasets, are presented in Fig. 7. We identify k = 3 and β = 0.1 as the optimal parameters, achieving an impressive F1-micro score of 84.45% and a competitive F1-macro score of 68.65%. ... For all datasets, we adopt the leave-one-out strategy for evaluation, where one dataset serves as the hold-out target domain, and the remaining datasets act as source domains."

    The hyperparameters k and beta are tuned by measuring F1-micro/F1-macro under the leave-one-out protocol of Section IV-A, whose held-out target datasets are exactly the datasets used to produce the headline results in Table I. Thus the reported average F1-micro of 84.4% and F1-macro of 68.6% are not independent predictions for a fixed method; they are the best values selected by maximizing the evaluation metrics on the target domains. The performance claim is therefore partly forced by the selection criterion, i.e., target-aware hyperparameter fitting is presented as state-of-the-art performance. This is a statistical-selection circularity rather than an equation-level equivalence; the losses in Eq. (7) are heuristic and do not contain target labels by construction.

full rationale

The method's core components are heuristic and externally grounded: the Beer-Lambert SNMF decomposition is attributed to Vahadane et al. [33], the local alignment loss (Eqs. 4-5) and domain-invariant supervised contrastive loss (Eq. 6) are new training objectives, and no equation in the paper is defined in terms of the reported F1 values. There is no self-citation chain, no imported uniqueness theorem, and no ansatz smuggled in from the authors' prior work. The only load-bearing step connecting the inputs to the reported results is Section IV-D, where k and beta are selected using the same leave-one-out target folds later reported in Table I. This makes the headline margins optimistically biased and is a legitimate evaluation-leakage concern, but it does not make the proposed derivation equivalent to its inputs. The unvalidated assumption that W captures stain and H captures structure is a modeling risk rather than a circular step. Overall, the central method has independent content, so the circularity score is moderate rather than high.

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

The central method rests on the assumed separability of stain color and cell structure, plus the heuristic that averaging embeddings removes domain-specific signal. No new physical entities are introduced. The free parameters are standard training hyperparameters, but two of them (k and beta) are tuned on the evaluation metric used for the headline results.

free parameters (3)
  • k (number of stain-color clusters) = 3
    Chosen by hyperparameter tuning on the leave-one-out evaluation metrics (Fig. 7); the number of generated domain-transformed samples depends on k.
  • beta (local alignment loss weight) = 0.1
    Selected with k via hyperparameter tuning on the same target-domain evaluation used for the reported results (Fig. 7).
  • tau (contrastive temperature)
    Not specified in the manuscript, though Eq. (6) makes the contrastive loss depend on tau; this is a free hyperparameter required for reproduction.
assumptions (4)
  • standard math Beer-Lambert law V = -log(X/X0) = WH, with W as stain color and H as structure, is separable by SNMF.
    Invoked in Eq. (1) and following the SNMF method of Vahadane et al. [33].
  • domain assumption Blood cell morphology (density maps H) is domain-invariant, and stain color variation is the dominant domain shift.
    Motivates the entire stain-based augmentation; stated in the Introduction and Section III-A.
  • domain assumption k-means clusters of stain color matrices within a mini-batch define meaningful pseudo-domain labels.
    Section III-A uses these clusters to select stain colors for re-staining; no validation that clusters correspond to real domains is given.
  • domain assumption Averaging raw and stain-transformed embeddings removes domain-specific components from the contrastive anchor.
    Section III-C states this without proof; the average is treated as a domain-invariant anchor.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Stain-aware Domain Alignment for Imbalance Blood Cell Classification." pith.science (2026). https://pith.science/paper/2B3FRY2W

@misc{pith2026241202976,
  author       = {Pith},
  title        = {Pith review of: Stain-aware Domain Alignment for Imbalance Blood Cell Classification},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/2B3FRY2W}},
  note         = {Machine review of arXiv:2412.02976}
}
read the original abstract

Blood cell identification is critical for hematological analysis as it aids physicians in diagnosing various blood-related diseases. In real-world scenarios, blood cell image datasets often present the issues of domain shift and data imbalance, posing challenges for accurate blood cell identification. To address these issues, we propose a novel blood cell classification method termed SADA via stain-aware domain alignment. The primary objective of this work is to mine domain-invariant features in the presence of domain shifts and data imbalances. To accomplish this objective, we propose a stain-based augmentation approach and a local alignment constraint to learn domain-invariant features. Furthermore, we propose a domain-invariant supervised contrastive learning strategy to capture discriminative features. We decouple the training process into two stages of domain-invariant feature learning and classification training, alleviating the problem of data imbalance. Experiment results on four public blood cell datasets and a private real dataset collected from the Third Affiliated Hospital of Sun Yat-sen University demonstrate that SADA can achieve a new state-of-the-art baseline, which is superior to the existing cutting-edge methods with a big margin. The source code can be available at the URL (\url{https://github.com/AnoK3111/SADA}).

Figures

Figures reproduced from arXiv: 2412.02976 by the authors.

Figure 1
Figure 1. Blood cell image datasets often exhibit significant domain shifts and data imbalance, resulting in suboptimal performance in classifica￾tion. anemia, infections, autoimmune disorders, and other blood￾related diseases [1]. Therefore, the accurate and prompt clas￾sification of blood cells is crucial in clinical practice, playing a pivotal role in the timely detection of blood cell disorders. This process is at the for… view at source ↗
Figure 2
Figure 2. The pipeline of the proposed SADA. It is composed of two stages: domain-invariant feature learning and blood cell classification. In stage 1, we first leverage the stain-based augmentation module to generate domain-transformed samples. To enable the model to learn domain-invariant features, the corresponding generated feature maps are fed into the local alignment module after passing through the backbone network. Fi… view at source ↗
Figure 4
Figure 4. ). Formally, let Fi,p, Ft i,p ∈ R Db represent the feature maps extracted from original and domain-transformed samples 𝐹i 𝐹i 1 𝐹i 𝑘−1 𝟏 𝟐 𝟑 𝟏 𝟐 𝟑 𝟏 𝟐 𝟑 Projector Projector Projector ℒ𝑎 Pixel-wise alignment loss ... ℒ𝑎 ℒ𝑎 ℒ𝑎 ℒ𝑎 𝟏 𝟏 𝟏 𝟏 . . . . . . ... ... ... ... ℒ𝑎 ℒ𝑎 ℒ𝑎 ℒ𝑎 𝟐 𝟐 𝟐 𝟐 [PITH_FULL_IMAGE:figures/full_fig_p004_4.png] view at source ↗
Figures from the paper (3 more)
Figure 5
Figure 5. Figure 5: The overview of domain-invariant contrastive learning. where N denotes the size of the mini-batch. C. Domain-Invariant Supervised Contrastive Learning In the presence of domain shift, the selected anchors may include domain-specific features, leading to the failure of …
Figure 6
Figure 6. Figure 6: Visualizations of Grad-CAM for ERM, CORAL, Mixup, SelfReg, BoDA, and our proposed method (SADA) on four public datasets and the SYSU3H dataset. (a) (b) [PITH_FULL_IMAGE:figures/full_fig_p007_6.png]
Figure 7
Figure 7. Figure 7: Hyperparameters tuning for SADA. (a) F1-micro score. (b) F1-macro score. This investigation is carried out under a rigorous framework outlined in Section IV-A. The results of hyperparameter tuning averaged across four public datasets, are presented in [PITH_FULL_IMAGE…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

40 extracted references · 38 canonical work pages

  1. [1]

    Research progress of using micro/nanomotors in the detection and therapy of dis- eases related to the blood environment,

    Q. Wang, T. Shi, M. Wan, J. Wei, F. Wang, and C. Mao, “Research progress of using micro/nanomotors in the detection and therapy of dis- eases related to the blood environment,” Journal of Materials Chemistry B, vol. 9, no. 2, pp. 283–294, 2021

  2. [2]

    Revisiting foreground and background separation in weakly-supervised temporal action local- ization: A clustering-based approach,

    Q. Liu, Z. Wang, S. Rong, J. Li, and Y . Zhang, “Revisiting foreground and background separation in weakly-supervised temporal action local- ization: A clustering-based approach,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , pp. 10433–10443, 2023

  3. [3]

    Pdisconet: Semantically consistent part discovery for fine-grained recognition,

    R. van der Klis, S. Alaniz, M. Mancini, C. F. Dantas, D. Ienco, Z. Akata, and D. Marcos, “Pdisconet: Semantically consistent part discovery for fine-grained recognition,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , pp. 1866–1876, 2023

  4. [4]

    Imbalanced Domain Generalization for Robust Single Cell Classification in Hematological Cytomorphology

    R. M. Umer, A. Gruber, S. S. Boushehri, C. Metak, and C. Marr, “Imbalanced domain generalization for robust single cell classification in hematological cytomorphology,” arXiv preprint arXiv:2303.07771 , 2023

  5. [5]

    Explainable ai identifies diagnostic cells of genetic aml subtypes,

    M. Hehr, A. Sadafi, C. Matek, P. Lienemann, C. Pohlkamp, T. Haferlach, K. Spiekermann, and C. Marr, “Explainable ai identifies diagnostic cells of genetic aml subtypes,” PLOS Digital Health , vol. 2, no. 3, p. e0000187, 2023

  6. [6]

    Re- thinking class-balanced methods for long-tailed visual recognition from a domain adaptation perspective,

    M. A. Jamal, M. Brown, M.-H. Yang, L. Wang, and B. Gong, “Re- thinking class-balanced methods for long-tailed visual recognition from a domain adaptation perspective,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pp. 7610– 7619, 2020

  7. [7]

    Constructing balance from imbalance for long-tailed image recognition,

    Y . Xu, Y .-L. Li, J. Li, and C. Lu, “Constructing balance from imbalance for long-tailed image recognition,” in European Conference on Com- puter Vision, pp. 38–56, Springer, 2022

  8. [8]

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

    J. Cai, Y . Wang, and J.-N. Hwang, “Ace: Ally complementary experts for solving long-tailed recognition in one-shot,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , pp. 112–121, 2021

Show all 40 references
  1. [9]

    Nested collaborative learning for long-tailed visual recognition,

    J. Li, Z. Tan, J. Wan, Z. Lei, and G. Guo, “Nested collaborative learning for long-tailed visual recognition,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pp. 6949– 6958, 2022

  2. [10]

    Decoupling representation and classifier for long-tailed recognition,

    B. Kang, S. Xie, M. Rohrbach, Z. Yan, A. Gordo, J. Feng, and Y . Kalantidis, “Decoupling representation and classifier for long-tailed recognition,” in International Conference on Learning Representations , 2019

  3. [11]

    Learning imbalanced datasets with maximum margin loss,

    H. Kang, T. Vu, and C. D. Yoo, “Learning imbalanced datasets with maximum margin loss,” in 2021 IEEE International Conference on Image Processing (ICIP) , IEEE, 2021

  4. [12]

    Adversarial domain adaptation with domain mixup,

    M. Xu, J. Zhang, B. Ni, T. Li, C. Wang, Q. Tian, and W. Zhang, “Adversarial domain adaptation with domain mixup,” in Proceedings of the AAAI Conference on Artificial Intelligence , vol. 34, pp. 6502–6509, 2020

  5. [13]

    Autoaug- ment: Learning augmentation strategies from data,

    E. D. Cubuk, B. Zoph, D. Mane, V . Vasudevan, and Q. V . Le, “Autoaug- ment: Learning augmentation strategies from data,” in 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), IEEE, 2019

  6. [14]

    Pcl: Proxy-based contrastive learning for domain generalization,

    X. Yao, Y . Bai, X. Zhang, Y . Zhang, Q. Sun, R. Chen, R. Li, and B. Yu, “Pcl: Proxy-based contrastive learning for domain generalization,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 7097–7107, 2022

  7. [15]

    Selfreg: Self-supervised contrastive regularization for domain generalization,

    D. Kim, Y . Yoo, S. Park, J. Kim, and J. Lee, “Selfreg: Self-supervised contrastive regularization for domain generalization,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , pp. 9619– 9628, 2021

  8. [16]

    Learning imbal- anced datasets with label-distribution-aware margin loss,

    K. Cao, C. Wei, A. Gaidon, N. Arechiga, and T. Ma, “Learning imbal- anced datasets with label-distribution-aware margin loss,” Advances in Neural Information Processing Systems , vol. 32, 2019. AUTHOR et al.: TITLE 9

  9. [17]

    Focal loss for dense object detection,

    T.-Y . Lin, P. Goyal, R. Girshick, K. He, and P. Doll ´ar, “Focal loss for dense object detection,” in Proceedings of the IEEE International Conference on Computer Vision , pp. 2980–2988, 2017

  10. [18]

    Overcoming classifier imbalance for long-tail object detection with balanced group softmax,

    Y . Li, T. Wang, B. Kang, S. Tang, C. Wang, J. Li, and J. Feng, “Overcoming classifier imbalance for long-tail object detection with balanced group softmax,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pp. 10991–11000, 2020

  11. [19]

    Mdcs: More diverse experts with consistency self-distillation for long-tailed recognition,

    Q. Zhao, C. Jiang, W. Hu, F. Zhang, and J. Liu, “Mdcs: More diverse experts with consistency self-distillation for long-tailed recognition,” in Proceedings of the IEEE/CVF International Conference on Computer Vision, pp. 11597–11608, 2023

  12. [20]

    Contrastive learning based hybrid networks for long-tailed image classification,

    P. Wang, K. Han, X.-S. Wei, L. Zhang, and L. Wang, “Contrastive learning based hybrid networks for long-tailed image classification,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 943–952, 2021

  13. [21]

    A simple feature augmentation for domain generalization,

    P. Li, D. Li, W. Li, S. Gong, Y . Fu, and T. M. Hospedales, “A simple feature augmentation for domain generalization,” in Proceedings of the IEEE/CVF International Conference on Computer Vision , pp. 8886– 8895, 2021

  14. [22]

    Reducing domain gap by reducing style bias,

    H. Nam, H. Lee, J. Park, W. Yoon, and D. Yoo, “Reducing domain gap by reducing style bias,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pp. 8690–8699, 2021

  15. [23]

    Cross- domain feature augmentation for domain generalization,

    Y . Liu, Y . Zou, R. Qiao, F. Liu, M. L. Lee, and W. Hsu, “Cross- domain feature augmentation for domain generalization,” arXiv preprint arXiv:2405.08586, 2024

  16. [24]

    Stain mix-up: Unsupervised domain generalization for histopathology images,

    J.-R. Chang, M.-S. Wu, W.-H. Yu, C.-C. Chen, C.-K. Yang, Y .-Y . Lin, and C.-Y . Yeh, “Stain mix-up: Unsupervised domain generalization for histopathology images,” in Medical Image Computing and Computer Assisted Intervention–MICCAI 2021: 24th International Conference, Strasbo...

  17. [25]

    Style neophile: Constantly seeking novel styles for domain generalization,

    J. Kang, S. Lee, N. Kim, and S. Kwak, “Style neophile: Constantly seeking novel styles for domain generalization,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pp. 7130–7140, 2022

  18. [26]

    Randstainna: Learning stain- agnostic features from histology slides by bridging stain augmentation and normalization,

    Y . Shen, Y . Luo, D. Shen, and J. Ke, “Randstainna: Learning stain- agnostic features from histology slides by bridging stain augmentation and normalization,” in International Conference on Medical Image Computing and Computer-Assisted Intervention , pp. 212–221, Springer, 2022

  19. [27]

    Rethinking multi-domain generaliza- tion with a general learning objective,

    Z. Tan, X. Yang, and K. Huang, “Rethinking multi-domain generaliza- tion with a general learning objective,”arXiv preprint arXiv:2402.18853, 2024

  20. [28]

    Domain generalization with adversarial feature learning,

    H. Li, S. J. Pan, S. Wang, and A. C. Kot, “Domain generalization with adversarial feature learning,” in Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pp. 5400–5409, 2018

  21. [29]

    Supervised contrastive learn- ing,

    P. Khosla, P. Teterwak, C. Wang, A. Sarna, Y . Tian, P. Isola, A. Maschinot, C. Liu, and D. Krishnan, “Supervised contrastive learn- ing,” Advances in Neural Information Processing Systems , vol. 33, pp. 18661–18673, 2020

  22. [30]

    Learning from extrin- sic and intrinsic supervisions for domain generalization,

    S. Wang, L. Yu, C. Li, C.-W. Fu, and P.-A. Heng, “Learning from extrin- sic and intrinsic supervisions for domain generalization,” in European Conference on Computer Vision , pp. 159–176, Springer, 2020

  23. [31]

    Feature stylization and domain-aware contrastive learning for domain generalization,

    S. Jeon, K. Hong, P. Lee, J. Lee, and H. Byun, “Feature stylization and domain-aware contrastive learning for domain generalization,” in Proceedings of the 29th ACM International Conference on Multimedia , pp. 22–31, 2021

  24. [32]

    Progressive domain expansion network for single domain gen- eralization,

    L. Li, K. Gao, J. Cao, Z. Huang, Y . Weng, X. Mi, Z. Yu, X. Li, and B. Xia, “Progressive domain expansion network for single domain gen- eralization,” in Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pp. 224–233, 2021

  25. [33]

    Structure- preserving color normalization and sparse stain separation for histolog- ical images,

    A. Vahadane, T. Peng, A. Sethi, S. Albarqouni, L. Wang, M. Baust, K. Steiger, A. M. Schlitter, I. Esposito, and N. Navab, “Structure- preserving color normalization and sparse stain separation for histolog- ical images,” IEEE Transactions on Medical Imaging , vol. 35, no. 8, p...

  26. [34]

    An overview of statistical learning theory,

    V . N. Vapnik, “An overview of statistical learning theory,” IEEE Trans- actions on Neural Networks , vol. 10, no. 5, pp. 988–999, 1999

  27. [35]

    Deep coral: Correlation alignment for deep domain adaptation,

    B. Sun and K. Saenko, “Deep coral: Correlation alignment for deep domain adaptation,” in Computer Vision–ECCV 2016 Workshops: Ams- terdam, The Netherlands, October 8-10 and 15-16, 2016, Proceedings, Part III 14, pp. 443–450, Springer, 2016

  28. [36]

    A dataset of microscopic peripheral blood cell images for development of automatic recognition systems,

    A. Acevedo, A. Merino Gonz ´alez, E. S. Alf ´erez Baquero, ´A. Molina Borr ´as, L. Bold ´u Nebot, and J. Rodellar Bened ´e, “A dataset of microscopic peripheral blood cell images for development of automatic recognition systems,” Data in Brief , vol. 30, p. 105474, 2020

  29. [37]

    A large dataset of white blood cells containing cell locations and types, along with segmented nuclei and cytoplasm,

    Z. M. Kouzehkanan, S. Saghari, S. Tavakoli, P. Rostami, M. Abaszadeh, F. Mirzadeh, E. S. Satlsar, M. Gheidishahran, F. Gorgi, S. Mohammadi, et al., “A large dataset of white blood cells containing cell locations and types, along with segmented nuclei and cytoplasm,” Scientific...

  30. [38]

    Transmixnet: an attention based double-branch model for white blood cell classification and its training with the fuzzified training data,

    H. Chen, J. Liu, C. Hua, Z. Zuo, J. Feng, B. Pang, and D. Xiao, “Transmixnet: an attention based double-branch model for white blood cell classification and its training with the fuzzified training data,” in 2021 IEEE International Conference on Bioinformatics and Biomedicine ...

  31. [39]

    Fast and robust segmenta- tion of white blood cell images by self-supervised learning,

    X. Zheng, Y . Wang, G. Wang, and J. Liu, “Fast and robust segmenta- tion of white blood cell images by self-supervised learning,” Micron, vol. 107, pp. 55–71, 2018

  32. [40]

    Swad: Domain generalization by seeking flat minima,

    J. Cha, S. Chun, K. Lee, H.-C. Cho, S. Park, Y . Lee, and S. Park, “Swad: Domain generalization by seeking flat minima,” Advances in Neural Information Processing Systems , vol. 34, pp. 22405–22418, 2021

Pith tools

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