Pith. sign in

REVIEW 5 major objections 6 minor 89 references

Integrating Deep Metric Learning with Coreset for Active Learning in 3D Segmentation

T0 review · 5 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash

Pith's one-line read This paper claims that a contrastively learned, group-aware metric makes slice-based active learning for 3D medical segmentation substantially more efficient at annotation budgets of 2-5%.

desk verdict Useful idea and thorough experiments, but the headline ACDC results are selected on the test set and the main/appendix numbers disagree, so the paper needs a clean revision before the claims hold. read the letter →

arxiv 2411.15763 v1 pith:2J3OWCZ4 submitted 2024-11-24 cs.CV cs.LG

classification cs.CVcs.LG
keywords activelearning3Dmedicalsegmentationcoresetcontrastivemetricweaksupervisionslice-basedannotationdeep
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

Deep learning segmentation of 3D medical volumes is annotation-hungry, and active learning is meant to cut that cost. This paper argues that the standard Coreset strategy, which picks diverse slices by Euclidean distance, picks the wrong slices because that distance ignores medically meaningful structure. The authors replace it with a learned metric $d_\phi(x_1,x_2)=\ell_2(g_\phi(x_1),g_\phi(x_2))$ trained by a Group-based Contrastive Learning loss that pulls slices from the same patient, volume, or adjacent-slice group together. They report that this group-aware Coreset beats existing active learning methods on both weak and full annotations at low budgets, for example 52.3 versus 45.2 DICE at 2% weak supervision on ACDC. If correct, the method would let clinicians train usable 3D segmentation models from a tiny fraction of labeled slices.

What carries the argument

The load-bearing object is the learned metric $d_\phi(x_1,x_2)=\ell_2(g_\phi(x_1),g_\phi(x_2))$, produced by a SimCLR-style encoder trained with Group-based Contrastive Learning. The group loss modifies NT-Xent so that slices from the same patient, volume, or adjacent-slice group are treated as positives while non-group slices from the same patient are excluded from the denominator, allowing several group losses to be summed without cancelling. This metric replaces the Euclidean distance in the Coreset objective $\arg\min_{\Delta s} \max_{x_1\in D}\min_{x_2\in s\cup\Delta s} d_\phi(x_1,x_2)$, solved by K-Center Greedy, a 2-approximation algorithm. The paper adapts the Coreset radius bound, assuming the loss and label function are Lipschitz in $d_\phi$ with zero training and generalization error, to justify the choice.

What would settle it

On the ACDC dataset, compare the 2% weak-supervision DICE of the full method (52.3 in the main table) against the same pipeline with the metric replaced by raw-pixel Euclidean distance and by an embedding trained on randomly shuffled group labels. If either replacement retains the same gap over vanilla Coreset (45.2), the group-aware metric itself is not the cause of the gain; additionally, measuring the ratio $|L(\hat y_1,y_1)-L(\hat y_2,y_2)|/d_\phi(x_1,x_2)$ on selected pairs would test the proportionality assumption directly.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central discovery is that injecting inherent data groups into metric learning fixes the main weakness of Coreset-based active learning for slice-based 3D segmentation. The paper proposes the loss $L_{\text{contrastive}} = L_{\text{NT-Xent}} + \lambda_1 L_{\text{patient}} + \lambda_2 L_{\text{volume}} + \lambda_3 L_{\text{slice}}$, where each group loss is an NT-Xent-style contrastive term over slices sharing that grouping, with a batch sampler that guarantees group mates appear in each batch. The learned encoder $g_\phi$ defines the Coreset distance, and K-Center Greedy then selects slices so that every unlabeled slice is close to some selected slice in that metric. Across ACDC, MS-CMR, CHAOS, and DAVIS, the paper reports that this approach achieves the highest or near-highest DICE at low annotation budgets under both weak and full supervision, with the best ablation combining patient, volume, and NT-Xent losses.

Load-bearing premise

The method assumes that Euclidean distance in the learned embedding is a faithful proxy for how much a slice will improve the segmentation model, and the formal bound additionally assumes that small changes in the learned distance guarantee small changes in the loss and label function, with the model perfectly fitting the training data.

Editorial extensions

If this is right

  • At annotation budgets of 2-5%, group-aware Coreset gives the largest reported gains; for example, ACDC weak supervision jumps from 45.2 DICE with vanilla Coreset to 52.3 DICE at 2% annotation.
  • Combining active learning with weak supervision works: the method is competitive or best in both weak and full annotation settings, suggesting scribble-based active learning is a viable cost cut.
  • Slice-based selection with the learned metric outperforms volume-based random sampling for equal annotation time, per the paper's Figure 2.
  • The grouping idea transfers to video: treating videos as volumes and frames as slices yields strong results on DAVIS, so the method is not confined to medical images.
  • With pre-trained segmentation backbones, the method still improves mean DICE over baselines on ACDC, CHAOS, and DAVIS, though the gains shrink.
  • Inference: the same group-contrastive encoder could be trained once and reused across active learning rounds without retraining, which would cut the reported 24-hour ACDC experiment cost; the paper does not test this.
  • Inference: patient, volume, and slice groupings are proxies for covariate shift, so at a deployment site with different anatomy distributions the metric's diversity may miss task-relevant slices; a testable extension would build groups from clustering the embedding itself.
  • Inference: the ablation ranking, with volume group best and adjacent-slice group worst, suggests the diversity signal matters more than local redundancy; one could test this by weighting group losses by measured within-group variance rather than tuning weights.
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

5 major / 6 minor

Summary. The paper proposes Group-based Contrastive Learning (GCL) combined with the Coreset algorithm for slice-based active learning in 3D medical segmentation. The contrastive encoder is trained with a sum of NT-Xent and group-contrastive losses defined over patient, volume, and adjacent-slice groupings; the learned embedding distance is then used by K-Center Greedy Coreset to select slices for annotation. The authors evaluate on ACDC, CHAOS, MS-CMR, and DAVIS under both weak (scribble) and full supervision, and report results from scratch and with pretrained encoders. They claim superior performance over existing active learning methods at low annotation budgets, and additionally compare weak-supervised slice-based AL with fully-supervised volume-based AL in terms of annotation time.

Significance. If the empirical claims held, the paper would make a useful contribution: combining metric learning with Coreset for slice-based AL in medical segmentation is a sensible direction, and the use of inherent data groupings (patient/volume/slice) is a reasonable inductive bias. The paper ships source code, reports bootstrap standard errors in the appendix, and includes a t-SNE visualization and an ablation over loss combinations. The main weakness is that the central empirical claim is currently not established because the loss weights were apparently selected on the evaluation set, and the reported ACDC numbers are internally inconsistent between the main text and the appendix. The theoretical guarantee in Appendix B rests on unverified Lipschitz and zero-error assumptions, so the contribution's practical value depends on the empirical evidence, which needs substantial clarification.

major comments (5)
  1. [Appendix A and Section 4.6] The selection of contrastive loss weights is performed on the evaluation set rather than on a held-out validation split. Appendix A states that in the ablation study on ACDC the authors tried different combinations of weights and "reported the best results," then "utilized the best loss/weight combination for our ACDC experiments." No validation split is described anywhere in Section 4.2. Because the baseline methods are reported at their default settings, the "Ours" row in Table 1 is effectively the maximum over a hyperparameter grid on the test set. This is a form of test-set fitting and can inflate the reported margins, undermining the abstract's claim that the approach "surpasses existing active learning techniques." The authors should either describe a proper validation procedure or re-run the comparison with weights selected on a validation split.
  2. [Table 1 versus Appendix D Table 5] The ACDC weakly-supervised results are inconsistent between the two tables. Table 1 reports Ours = 52.3/59.8/73.3/76.1 at 2–5%, while Table 5 in Appendix D reports Ours = 55.6/61.4/73.7/77.5 for the same setting. Both tables are presented as results of the same method and no explanation is given for the discrepancy. If the lower values are correct, the claimed advantage over Coreset is smaller than stated (e.g., 52.3 vs 45.2 at 2% instead of 55.6 vs 45.2); if the higher values are correct, the main text underreports the method's performance. Either way, the reader cannot determine which result is authoritative, and this undermines the central quantitative claim in Section 4.3.
  3. [Tables 1 and 2 and Section 4.5] The comparison is incomplete for several baselines the paper claims to evaluate. Section 4.2 lists VAAL, TypiClust, and CoreGCN as comparison methods, but VAAL and TypiClust are absent from the MS-CMR and CHAOS panels of Table 1, and all three are absent from the DAVIS results in Table 2. The summary in Section 4.5 says "our method achieves the best performance on 21 out of 27 comparison points" without accounting for these missing entries. The authors should clarify whether these baselines were run on those datasets and, if so, report the results; otherwise, the claim of a comprehensive comparison is not supported.
  4. [Table 2 and Abstract] The abstract and Section 4.3 claim the method "surpasses existing active learning techniques" on weak and full annotations, but Table 2 shows that on DAVIS at 30% and 40% annotation, Random sampling achieves higher DICE (47.4 and 48.5) than Ours (45.5 and 46.6). Similarly, in Table 3 the pretrained results on CHAOS (Ours 95.2 vs Coreset 95.1) and DAVIS (Ours 75.1 vs Stochastic Batches 75.1) are effectively ties. The claim of universal superiority is therefore too strong as stated and should be qualified to the low-budget regimes where the advantage actually appears.
  5. [Appendix B and Section 3.2] The theoretical bound in Theorem 1 assumes the loss function L and the segmentation function eta_c are Lipschitz continuous with respect to the learned metric d_phi, and it assumes both zero training error and zero generalization error. These assumptions are not verified experimentally or by construction, and the paper provides no evidence that the self-supervised contrastive embedding aligns with segmentation-task difficulty. As a result, the Coreset guarantee in Equation (2) is not established for the actual learned d_phi. This does not invalidate the empirical approach, but it should be stated more cautiously, and the authors should at least discuss whether the Lipschitz constants can be bounded in practice.
minor comments (6)
  1. [Section 4.1 and Table 8] The DAVIS dataset description says the 2016 train set was used and the 2016 val set was split into val and test, but it does not specify how many objects/videos appear in each split beyond the totals; please state the exact number of training and test videos used in the DAVIS experiments.
  2. [Section 4.4 and Figure 2] Figure 2's annotation-time comparison relies on the assumption that scribble annotation is 15x faster than full mask annotation, but no sensitivity analysis is given for this multiplier; a brief discussion of how the comparison changes with a different multiplier would strengthen the claim.
  3. [Section 4.6 and Table 4] The ablation table does not report standard errors, making it hard to judge whether the differences between loss combinations (e.g., 65.4 vs 64.1) are significant; please add error bars or state the number of seeds used for each ablation row.
  4. [Section 1] The paper claims to be "the first work to integrate deep metric learning with Coreset during active learning for 3D medical segmentation," but prior work on unsupervised Coreset selection with contrastive learning (e.g., [48] and [49]) exists; please soften the novelty claim or clearly distinguish the contribution from those methods.
  5. [Section 2] The related work section cites [42] for Random Sampling, but [42] is a paper on robust active learning, not a canonical random sampling reference; please provide an appropriate citation for uniform random selection.
  6. [Appendix D and Tables 5-11] The bootstrap standard errors in the appendix are reported as two standard deviations, but the main text never defines this convention; please define the error bars when they are first introduced.

Circularity Check

1 steps flagged · score 6.0 of 10

ACDC low-budget superiority is partly a test-set-selected hyperparameter result, not an independent prediction; the learned metric itself is not definitionally circular.

  1. fitted input called prediction [Appendix A (Loss weights), Table 4 caption, and Table 1 ACDC rows]
    "In the ablation study on the ACDC dataset, for the experiments with multiple group contrastive losses, we tried different combinations of weights for the group contrastive losses and reported the best results. ... We utilized the best loss/weight combination for our ACDC experiments."

    Table 4 is captioned 'Ablation study based on the mean DICE scores for the 2-5% weak annotation datapoint', and its best row (NT-Xent + patient + volume, mDICE 65.4) is exactly the mean of the Table 1 ACDC 'Ours' weakly-supervised 2-5% entries (52.3 + 59.8 + 73.3 + 76.1)/4 = 65.4. Thus the loss weights used for the reported ACDC result were chosen by maximizing the same reported DICE values that are then presented as the method's prediction. The 'Ours' row is a post-selected maximum over a small weight grid on the evaluation metric, while baselines are reported without this selection; the claimed low-budget ACDC advantage is therefore partly forced by this construction.

full rationale

The core metric-learning contribution is not circular: g_phi is trained with self-supervised group contrastive losses on unlabeled slice groupings, and the resulting d_phi is then used in the standard Coreset/k-center objective; no target segmentation label is used to define the metric. The Appendix B bound is inherited from Sener and Savarese, and its Lipschitz and zero-error assumptions are unverified, which is an assumption risk rather than a circular reduction. There is no load-bearing self-citation or imported uniqueness theorem. The significant issue is the fitted-input-called-prediction pattern in Appendix A: the ACDC loss weights were selected by reporting the best ablation result on the evaluation metric, and that best setting produced Table 1's headline numbers. This is compounded by an internal inconsistency in which the same ACDC weak-supervision setting is reported as 52.3 in Table 1 but 55.6 in Table 5, so the claimed superiority is unstable. Because the central empirical claim is partly a test-set-selected maximum rather than an independent prediction, a partial-circularity score of 6 is appropriate.

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

The central method depends on several unverified assumptions: the equivalence of volume and slice level losses, zero training/generalization error, and Lipschitz continuity in the learned metric. The loss weights are free parameters tuned on the evaluation set. No new entities are introduced.

free parameters (2)
  • Contrastive loss weights (lambda1, lambda2, lambda3) = Best tuple selected from a small grid; exact values not printed in the text (Appendix A)
    The weight combination was chosen by reporting the best DICE on ACDC 2-5% weak annotation, which is effectively fitting to the evaluation set.
  • Choice of group losses (patient, volume, slice) and inclusion of NT-Xent = Patient+volume+NT-Xent for ACDC full; patient only for pretrained; two configurations tested on CHAOS/MS-CMR/DAVIS and…
    Selected via ablation on ACDC test performance; for other datasets, two configurations were tested and the better one is reported without a described validation split.
assumptions (4)
  • domain assumption Volume-level and slice-level loss expectations are equal (Appendix B).
    Required for the theoretical bound; stated without proof.
  • ad hoc to paper Generalization error and training error are zero (Appendix B).
    Used to drop terms and obtain the stated bound. This is not a standard assumption and is stated without justification.
  • ad hoc to paper Loss function and segmentation function are Lipschitz continuous with respect to the learned metric d_phi (Appendix B, Theorem 1).
    No evidence that the contrastive embedding satisfies this property.
  • domain assumption Self-supervised contrastive features capture task-relevant diversity for the segmentation model.
    The entire method relies on this; it is only indirectly validated by end-task results, not by a direct check.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Integrating Deep Metric Learning with Coreset for Active Learning in 3D Segmentation." pith.science (2026). https://pith.science/paper/2J3OWCZ4

@misc{pith2026241115763,
  author       = {Pith},
  title        = {Pith review of: Integrating Deep Metric Learning with Coreset for Active Learning in 3D Segmentation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/2J3OWCZ4}},
  note         = {Machine review of arXiv:2411.15763}
}
read the original abstract

Deep learning has seen remarkable advancements in machine learning, yet it often demands extensive annotated data. Tasks like 3D semantic segmentation impose a substantial annotation burden, especially in domains like medicine, where expert annotations drive up the cost. Active learning (AL) holds great potential to alleviate this annotation burden in 3D medical segmentation. The majority of existing AL methods, however, are not tailored to the medical domain. While weakly-supervised methods have been explored to reduce annotation burden, the fusion of AL with weak supervision remains unexplored, despite its potential to significantly reduce annotation costs. Additionally, there is little focus on slice-based AL for 3D segmentation, which can also significantly reduce costs in comparison to conventional volume-based AL. This paper introduces a novel metric learning method for Coreset to perform slice-based active learning in 3D medical segmentation. By merging contrastive learning with inherent data groupings in medical imaging, we learn a metric that emphasizes the relevant differences in samples for training 3D medical segmentation models. We perform comprehensive evaluations using both weak and full annotations across four datasets (medical and non-medical). Our findings demonstrate that our approach surpasses existing active learning techniques on both weak and full annotations and obtains superior performance with low-annotation budgets which is crucial in medical imaging. Source code for this project is available in the supplementary materials and on GitHub: https://github.com/arvindmvepa/al-seg.

Figures

Figures reproduced from arXiv: 2411.15763 by the authors.

Figure 1
Figure 1. Overview of our active learning pipeline [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. Describes the relationship between model performance and annotation time for our method [PITH_FULL_IMAGE:figures/full_fig_p008_2.png] view at source ↗
Figure 3
Figure 3. Qualitative comparison of our method, CoreGCN, and Coreset. Blue indicates agreement [PITH_FULL_IMAGE:figures/full_fig_p008_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: t-SNE visualization of dataset clusters generated by different [PITH_FULL_IMAGE:figures/full_fig_p009_4.png]
Figure 5
Figure 5. Figure 5: Overview of the batch sampler for Group-based Contrastive Learning [PITH_FULL_IMAGE:figures/full_fig_p018_5.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

89 extracted references · 58 canonical work pages

  1. [1]

    Annotation-efficient deep learning for automatic medical image segmentation

    Shanshan Wang, Cheng Li, Rongpin Wang, Zaiyi Liu, Meiyun Wang, Hongna Tan, Yaping Wu, Xinfeng Liu, Hui Sun, Rui Yang, et al. Annotation-efficient deep learning for automatic medical image segmentation. Nature communications, 12(1):5915, 2021

  2. [2]

    Weakly-supervised convolu- tional neural networks for vessel segmentation in cerebral angiography

    Arvind Vepa, Andrew Choi, Noor Nakhaei, Wonjun Lee, Noah Stier, Andrew Vu, Greyson Jenkins, Xiaoyan Yang, Manjot Shergill, Moira Desphy, et al. Weakly-supervised convolu- tional neural networks for vessel segmentation in cerebral angiography. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 585–594, 2022

  3. [3]

    3d u-net: learning dense volumetric segmentation from sparse annotation

    Özgün Çiçek, Ahmed Abdulkadir, Soeren S Lienkamp, Thomas Brox, and Olaf Ronneberger. 3d u-net: learning dense volumetric segmentation from sparse annotation. In Medical Image Computing and Computer-Assisted Intervention–MICCAI 2016: 19th International Conference, Athens, Greece, October 17-21, 2016, Proceedings, Part II 19, pages 424–432. Springer, 2016

  4. [4]

    Auto-annotated deep segmentation for surface defect detection

    Du-Ming Tsai, Shu-Kai S Fan, and Yi-Hsiang Chou. Auto-annotated deep segmentation for surface defect detection. IEEE Transactions on Instrumentation and Measurement, 70:1–10, 2021

  5. [5]

    Less Is More: A Comparison of Active Learning Strategies for 3D Medical Image Segmentation

    Josafat-Mattias Burmeister, Marcel Fernandez Rosas, Johannes Hagemann, Jonas Kordt, Jasper Blum, Simon Shabo, Benjamin Bergner, and Christoph Lippert. Less is more: A comparison of active learning strategies for 3d medical image segmentation. arXiv preprint arXiv:2207.00845, 2022

  6. [6]

    Colossal: A benchmark for cold-start active learning for 3d medical image segmentation

    Han Liu, Hao Li, Xing Yao, Yubo Fan, Dewei Hu, Benoit M Dawant, Vishwesh Nath, Zhoubing Xu, and Ipek Oguz. Colossal: A benchmark for cold-start active learning for 3d medical image segmentation. In International Conference on Medical Image Computing and Computer- Assisted Intervention, pages 25–34. Springer, 2023

  7. [7]

    Universal weakly supervised segmentation by pixel-to-segment contrastive learning

    Tsung-Wei Ke, Jyh-Jing Hwang, and Stella X Yu. Universal weakly supervised segmentation by pixel-to-segment contrastive learning. arXiv preprint arXiv:2105.00957, 2021

  8. [8]

    Scribble-based hierarchical weakly supervised learning for brain tumor segmentation

    Zhanghexuan Ji, Yan Shen, Chunwei Ma, and Mingchen Gao. Scribble-based hierarchical weakly supervised learning for brain tumor segmentation. In Medical Image Computing and Computer Assisted Intervention–MICCAI 2019: 22nd International Conference, Shenzhen, China, October 13–17, 2019, Proceedings, Part III 22, pages 175–183. Springer, 2019

Show all 89 references
  1. [9]

    Scribble2d5: Weakly-supervised volumetric image segmentation via scribble annotations

    Qiuhui Chen and Yi Hong. Scribble2d5: Weakly-supervised volumetric image segmentation via scribble annotations. In International Conference on Medical Image Computing and Computer- Assisted Intervention, pages 234–243. Springer, 2022

  2. [10]

    Box2mask: Weakly supervised 3d semantic instance segmentation using bounding boxes

    Julian Chibane, Francis Engelmann, Tuan Anh Tran, and Gerard Pons-Moll. Box2mask: Weakly supervised 3d semantic instance segmentation using bounding boxes. In European Conference on Computer Vision, pages 681–699. Springer, 2022

  3. [11]

    Weakly supervised segmentation with point annotations for histopathology images via contrast-based variational model

    Hongrun Zhang, Liam Burrows, Yanda Meng, Declan Sculthorpe, Abhik Mukherjee, Sarah E Coupland, Ke Chen, and Yalin Zheng. Weakly supervised segmentation with point annotations for histopathology images via contrast-based variational model. InProceedings of the IEEE/CVF Conferen...

  4. [12]

    Affinity attention graph neural network for weakly supervised semantic segmentation

    Bingfeng Zhang, Jimin Xiao, Jianbo Jiao, Yunchao Wei, and Yao Zhao. Affinity attention graph neural network for weakly supervised semantic segmentation. IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(11):8082–8096, 2021

  5. [13]

    Comparative evaluation of conventional and deep learning methods for semi-automated segmentation of pulmonary nodules on ct

    Francesco Bianconi, Mario Luca Fravolini, Sofia Pizzoli, Isabella Palumbo, Matteo Minestrini, Maria Rondini, Susanna Nuvoli, Angela Spanu, and Barbara Palumbo. Comparative evaluation of conventional and deep learning methods for semi-automated segmentation of pulmonary nodules...

  6. [14]

    Semi-automated and interactive segmentation of contrast-enhancing masses on breast dce-mri using spatial fuzzy clustering

    Carmelo Militello, Leonardo Rundo, Mariangela Dimarco, Alessia Orlando, Vincenzo Conti, Ramona Woitek, Ildebrando D’Angelo, Tommaso Vincenzo Bartolotta, and Giorgio Russo. Semi-automated and interactive segmentation of contrast-enhancing masses on breast dce-mri using spatial ...

  7. [15]

    Interactive segmentation of medical images through fully convolutional neural networks

    Tomas Sakinis, Fausto Milletari, Holger Roth, Panagiotis Korfiatis, Petro Kostandy, Kenneth Philbrick, Zeynettin Akkus, Ziyue Xu, Daguang Xu, and Bradley J Erickson. Interactive segmentation of medical images through fully convolutional neural networks. arXiv preprint arXiv:19...

  8. [16]

    An unsupervised semi-automated pulmonary nodule segmentation method based on enhanced region growing

    He Ren, Lingxiao Zhou, Gang Liu, Xueqing Peng, Weiya Shi, Huilin Xu, Fei Shan, and Lei Liu. An unsupervised semi-automated pulmonary nodule segmentation method based on enhanced region growing. Quantitative Imaging in Medicine and Surgery, 10(1):233, 2020

  9. [17]

    Learning to segment from scrib- bles using multi-scale adversarial attention gates

    Gabriele Valvano, Andrea Leo, and Sotirios A Tsaftaris. Learning to segment from scrib- bles using multi-scale adversarial attention gates. IEEE Transactions on Medical Imaging , 40(8):1990–2001, 2021

  10. [18]

    Scribble-supervised medical image segmentation via dual-branch network and dynamically mixed pseudo labels supervision

    Xiangde Luo, Minhao Hu, Wenjun Liao, Shuwei Zhai, Tao Song, Guotai Wang, and Shaot- ing Zhang. Scribble-supervised medical image segmentation via dual-branch network and dynamically mixed pseudo labels supervision. In International Conference on Medical Image Computing and Com...

  11. [19]

    Transformer based multiple instance learning for weakly supervised histopathology image segmentation

    Ziniu Qian, Kailu Li, Maode Lai, Eric I-Chao Chang, Bingzheng Wei, Yubo Fan, and Yan Xu. Transformer based multiple instance learning for weakly supervised histopathology image segmentation. In International Conference on Medical Image Computing and Computer-Assisted Intervent...

  12. [20]

    Multi-scale feature similarity-based weakly supervised lymphoma segmentation in pet/ct images

    Zhengshan Huang, Yu Guo, Ning Zhang, Xian Huang, Pierre Decazes, Stephanie Becker, and Su Ruan. Multi-scale feature similarity-based weakly supervised lymphoma segmentation in pet/ct images. Computers in Biology and Medicine, 151:106230, 2022

  13. [21]

    Max pooling with vision transformers reconciles class and shape in weakly supervised semantic segmentation

    Simone Rossetti, Damiano Zappia, Marta Sanzari, Marco Schaerf, and Fiora Pirri. Max pooling with vision transformers reconciles class and shape in weakly supervised semantic segmentation. In European Conference on Computer Vision, pages 446–463. Springer, 2022

  14. [22]

    Boosting active learning via improving test performance

    Tianyang Wang, Xingjian Li, Pengkun Yang, Guosheng Hu, Xiangrui Zeng, Siyu Huang, Cheng-Zhong Xu, and Min Xu. Boosting active learning via improving test performance. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 36, pages 8566–8574, 2022

  15. [23]

    Deep bayesian active learning with image data

    Yarin Gal, Riashat Islam, and Zoubin Ghahramani. Deep bayesian active learning with image data. In International conference on machine learning, pages 1183–1192. PMLR, 2017

  16. [24]

    Deep bayesian active learning, a brief survey on recent advances

    Salman Mohamadi and Hamidreza Amindavar. Deep bayesian active learning, a brief survey on recent advances. arXiv preprint arXiv:2012.08044, 2020

  17. [25]

    Batchbald: Efficient and diverse batch acquisition for deep bayesian active learning

    Andreas Kirsch, Joost Van Amersfoort, and Yarin Gal. Batchbald: Efficient and diverse batch acquisition for deep bayesian active learning. Advances in neural information processing systems, 32, 2019

  18. [26]

    Deep bayesian active learning for natural language processing: Results of a large-scale empirical study

    Aditya Siddhant and Zachary C Lipton. Deep bayesian active learning for natural language processing: Results of a large-scale empirical study. arXiv preprint arXiv:1808.05697, 2018

  19. [27]

    The power of ensembles for active learning in image classification

    William H Beluch, Tim Genewein, Andreas Nürnberger, and Jan M Köhler. The power of ensembles for active learning in image classification. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 9368–9377, 2018

  20. [28]

    Large-scale visual active learning with deep probabilistic ensembles

    Kashyap Chitta, Jose M Alvarez, and Adam Lesnikowski. Large-scale visual active learning with deep probabilistic ensembles. arXiv preprint arXiv:1811.03575, 2018

  21. [29]

    Deep ensemble bayesian active learning: Addressing the mode collapse issue in monte carlo dropout via ensembles

    Remus Pop and Patric Fulop. Deep ensemble bayesian active learning: Addressing the mode collapse issue in monte carlo dropout via ensembles. arXiv preprint arXiv:1811.03897, 2018

  22. [30]

    A simple yet powerful deep active learning with snapshots ensembles

    Seohyeon Jung, Sanghyun Kim, and Juho Lee. A simple yet powerful deep active learning with snapshots ensembles. In The Eleventh International Conference on Learning Representations, 2022

  23. [31]

    Active learning for medical image segmentation with stochastic batches

    Mélanie Gaillochet, Christian Desrosiers, and Hervé Lombaert. Active learning for medical image segmentation with stochastic batches. arXiv preprint arXiv:2301.07670, 2023

  24. [32]

    One-bit active query with contrastive pairs

    Yuhang Zhang, Xiaopeng Zhang, Lingxi Xie, Jie Li, Robert C Qiu, Hengtong Hu, and Qi Tian. One-bit active query with contrastive pairs. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 9697–9705, 2022

  25. [33]

    Active learning by acquiring contrastive examples

    Katerina Margatina, Giorgos Vernikos, Loïc Barrault, and Nikolaos Aletras. Active learning by acquiring contrastive examples. arXiv preprint arXiv:2109.03764, 2021

  26. [34]

    When contrastive learning meets ac- tive learning: A novel graph active learning paradigm with self-supervision

    Yanqiao Zhu, Weizhi Xu, Qiang Liu, and Shu Wu. When contrastive learning meets ac- tive learning: A novel graph active learning paradigm with self-supervision. arXiv preprint arXiv:2010.16091, 2020. 12

  27. [35]

    Deep active learning with contrastive learning under realistic data pool assumptions

    Jihyo Kim, Jeonghyeon Kim, and Sangheum Hwang. Deep active learning with contrastive learning under realistic data pool assumptions. arXiv preprint arXiv:2303.14433, 2023

  28. [36]

    Hyperbolic active learning for semantic segmentation under domain shift

    Luca Franco, Paolo Mandica, Konstantinos Kallidromitis, Devin Guillory, Yu-Teng Li, and Fabio Galasso. Hyperbolic active learning for semantic segmentation under domain shift. arXiv preprint arXiv:2306.11180, 2023

  29. [37]

    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. arXiv preprint arXiv:1708.00489, 2017

  30. [38]

    Sequential graph convolutional network for active learning

    Razvan Caramalau, Binod Bhattarai, and Tae-Kyun Kim. Sequential graph convolutional network for active learning. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 9583–9592, 2021

  31. [39]

    Active learning on a budget: Opposite strategies suit high and low budgets

    Guy Hacohen, Avihu Dekel, and Daphna Weinshall. Active learning on a budget: Opposite strategies suit high and low budgets. arXiv preprint arXiv:2202.02794, 2022

  32. [40]

    Variational adversarial active learning

    Samarth Sinha, Sayna Ebrahimi, and Trevor Darrell. Variational adversarial active learning. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 5972–5981, 2019

  33. [41]

    Task-aware variational adversarial active learning

    Kwanyoung Kim, Dongwon Park, Kwang In Kim, and Se Young Chun. Task-aware variational adversarial active learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 8166–8175, 2021

  34. [42]

    Towards robust and reproducible active learning using neural networks

    Prateek Munjal, Nasir Hayat, Munawar Hayat, Jamshid Sourati, and Shadab Khan. Towards robust and reproducible active learning using neural networks. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 223–232, 2022

  35. [43]

    Improved deep metric learning with multi-class n-pair loss objective

    Kihyuk Sohn. Improved deep metric learning with multi-class n-pair loss objective. Advances in neural information processing systems, 29, 2016

  36. [44]

    Contrastive learning of global and local features for medical image segmentation with limited annotations

    Krishna Chaitanya, Ertunc Erdil, Neerav Karani, and Ender Konukoglu. Contrastive learning of global and local features for medical image segmentation with limited annotations. Advances in neural information processing systems, 33:12546–12558, 2020

  37. [45]

    3d self-supervised methods for medical imaging

    Aiham Taleb, Winfried Loetzsch, Noel Danz, Julius Severin, Thomas Gaertner, Benjamin Bergner, and Christoph Lippert. 3d self-supervised methods for medical imaging. Advances in neural information processing systems, 33:18158–18172, 2020

  38. [46]

    Are binary annotations sufficient? video moment retrieval via hier- archical uncertainty-based active learning

    Wei Ji, Renjie Liang, Zhedong Zheng, Wenqiao Zhang, Shengyu Zhang, Juncheng Li, Mengze Li, and Tat-seng Chua. Are binary annotations sufficient? video moment retrieval via hier- archical uncertainty-based active learning. In Proceedings of the IEEE/CVF Conference on Computer V...

  39. [47]

    Active learning for domain adaptation: An energy-based approach

    Binhui Xie, Longhui Yuan, Shuang Li, Chi Harold Liu, Xinjing Cheng, and Guoren Wang. Active learning for domain adaptation: An energy-based approach. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 36, pages 8708–8716, 2022

  40. [48]

    Extending contrastive learning to unsupervised coreset selection

    Jeongwoo Ju, Heechul Jung, Yoonju Oh, and Junmo Kim. Extending contrastive learning to unsupervised coreset selection. IEEE Access, 10:7704–7715, 2022

  41. [49]

    One-shot active learning for image segmentation via contrastive learning and diversity-based sampling

    Qiuye Jin, Mingzhi Yuan, Qin Qiao, and Zhijian Song. One-shot active learning for image segmentation via contrastive learning and diversity-based sampling. Knowledge-Based Systems, 241:108278, 2022

  42. [50]

    Deep metric learning for computer vision: A brief overview

    Deen Dayal Mohan, Bhavin Jawade, Srirangaraj Setlur, and Venu Govindaraju. Deep metric learning for computer vision: A brief overview. Handbook of Statistics, 48:59–79, 2023

  43. [51]

    Facenet: A unified embedding for face recognition and clustering

    Florian Schroff, Dmitry Kalenichenko, and James Philbin. Facenet: A unified embedding for face recognition and clustering. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 815–823, 2015

  44. [52]

    A discriminative feature learning approach for deep face recognition

    Yandong Wen, Kaipeng Zhang, Zhifeng Li, and Yu Qiao. A discriminative feature learning approach for deep face recognition. InComputer vision–ECCV 2016: 14th European conference, amsterdam, the netherlands, October 11–14, 2016, proceedings, part VII 14, pages 499–515. Springer, 2016

  45. [53]

    Arcface: Additive angular margin loss for deep face recognition

    Jiankang Deng, Jia Guo, Niannan Xue, and Stefanos Zafeiriou. Arcface: Additive angular margin loss for deep face recognition. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 4690–4699, 2019. 13

  46. [54]

    Sub-center arcface: Boosting face recognition by large-scale noisy web faces

    Jiankang Deng, Jia Guo, Tongliang Liu, Mingming Gong, and Stefanos Zafeiriou. Sub-center arcface: Boosting face recognition by large-scale noisy web faces. In Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part XI 16, pages 7...

  47. [55]

    No fuss distance metric learning using proxies

    Yair Movshovitz-Attias, Alexander Toshev, Thomas K Leung, Sergey Ioffe, and Saurabh Singh. No fuss distance metric learning using proxies. In Proceedings of the IEEE international conference on computer vision, pages 360–368, 2017

  48. [56]

    Proxynca++: Revisiting and revitalizing proxy neighborhood component analysis

    Eu Wern Teh, Terrance DeVries, and Graham W Taylor. Proxynca++: Revisiting and revitalizing proxy neighborhood component analysis. In Computer Vision–ECCV 2020: 16th European Conference, Glasgow, UK, August 23–28, 2020, Proceedings, Part XXIV 16, pages 448–464. Springer, 2020

  49. [57]

    Napreg: nouns as proxies regularization for semantically aware cross-modal embeddings

    Bhavin Jawade, Deen Dayal Mohan, Naji Mohamed Ali, Srirangaraj Setlur, and Venu Govin- daraju. Napreg: nouns as proxies regularization for semantically aware cross-modal embeddings. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 1135...

  50. [58]

    Integrating language guidance into vision- based deep metric learning

    Karsten Roth, Oriol Vinyals, and Zeynep Akata. Integrating language guidance into vision- based deep metric learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 16177–16189, 2022

  51. [59]

    Ensemble deep manifold similarity learning using hard proxies

    Nicolas Aziere and Sinisa Todorovic. Ensemble deep manifold similarity learning using hard proxies. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 7299–7307, 2019

  52. [60]

    Deep metric learning with bier: Boosting independent embeddings robustly

    Opitz Michael, Waltner Georg, Possegger Horst, and Bischof Horst. Deep metric learning with bier: Boosting independent embeddings robustly. IEEE TPAMI, 42(2):276–290, 2018

  53. [61]

    Softtriple loss: Deep metric learning without triplet sampling

    Qi Qian, Lei Shang, Baigui Sun, Juhua Hu, Hao Li, and Rong Jin. Softtriple loss: Deep metric learning without triplet sampling. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 6450–6458, 2019

  54. [62]

    Mic: Mining interclass characteristics for improved metric learning

    Karsten Roth, Biagio Brattoli, and Bjorn Ommer. Mic: Mining interclass characteristics for improved metric learning. In Proceedings of the IEEE/CVF international conference on computer vision, pages 8000–8009, 2019

  55. [63]

    Deep randomized ensembles for metric learning

    Hong Xuan, Richard Souvenir, and Robert Pless. Deep randomized ensembles for metric learning. In Proceedings of the European conference on computer vision (ECCV) , pages 723–734, 2018

  56. [64]

    Deep factorized metric learning

    Chengkun Wang, Wenzhao Zheng, Junlong Li, Jie Zhou, and Jiwen Lu. Deep factorized metric learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 7672–7682, 2023

  57. [65]

    Deep semi-supervised metric learning with mixed label propagation

    Furen Zhuang and Pierre Moulin. Deep semi-supervised metric learning with mixed label propagation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 3429–3438, 2023

  58. [66]

    Semi-supervised metric learning: A deep resurrection

    Ujjal Kr Dutta, Mehrtash Harandi, and C Chandra Shekhar. Semi-supervised metric learning: A deep resurrection. In Proceedings of the AAAI Conference on artificial intelligence, volume 35, pages 7279–7287, 2021

  59. [67]

    Self-supervised learning for medical image analysis using image context restoration

    Liang Chen, Paul Bentley, Kensaku Mori, Kazunari Misawa, Michitaka Fujiwara, and Daniel Rueckert. Self-supervised learning for medical image analysis using image context restoration. Medical image analysis, 58:101539, 2019

  60. [68]

    wav2vec 2.0: A framework for self-supervised learning of speech representations

    Alexei Baevski, Yuhao Zhou, Abdelrahman Mohamed, and Michael Auli. wav2vec 2.0: A framework for self-supervised learning of speech representations. Advances in neural information processing systems, 33:12449–12460, 2020

  61. [69]

    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, pa...

  62. [70]

    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. In International conference on machine learning, pages 1597–1607. PMLR, 2020. 14

  63. [71]

    Suggestive annotation: A deep active learning framework for biomedical image segmentation

    Lin Yang, Yizhe Zhang, Jianxu Chen, Siyuan Zhang, and Danny Z Chen. Suggestive annotation: A deep active learning framework for biomedical image segmentation. In Medical Image Computing and Computer Assisted Intervention- MICCAI 2017: 20th International Conference, Quebec City...

  64. [72]

    Diminishing uncertainty within the training pool: Active learning for medical image segmentation

    Vishwesh Nath, Dong Yang, Bennett A Landman, Daguang Xu, and Holger R Roth. Diminishing uncertainty within the training pool: Active learning for medical image segmentation. IEEE Transactions on Medical Imaging, 40(10):2534–2547, 2020

  65. [73]

    Hierarchical self-supervised learning for medical image segmentation based on multi-domain data aggregation

    Hao Zheng, Jun Han, Hongxiao Wang, Lin Yang, Zhuo Zhao, Chaoli Wang, and Danny Z Chen. Hierarchical self-supervised learning for medical image segmentation based on multi-domain data aggregation. In Medical Image Computing and Computer Assisted Intervention–MICCAI 2021: 24th I...

  66. [74]

    Supervised contrastive learning

    Prannay Khosla, Piotr Teterwak, Chen Wang, Aaron Sarna, Yonglong Tian, Phillip Isola, Aaron Maschinot, Ce Liu, and Dilip Krishnan. Supervised contrastive learning. Advances in neural information processing systems, 33:18661–18673, 2020

  67. [75]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016

  68. [76]

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

  69. [77]

    Lvm-med: Learning large-scale self-supervised vision models for medical imaging via second-order graph matching

    Duy MH Nguyen, Hoang Nguyen, Nghiem Diep, Tan Ngoc Pham, Tri Cao, Binh Nguyen, Paul Swoboda, Nhat Ho, Shadi Albarqouni, Pengtao Xie, et al. Lvm-med: Learning large-scale self-supervised vision models for medical imaging via second-order graph matching. Advances in Neural Infor...

  70. [78]

    Deep learning techniques for automatic mri cardiac multi-structures segmentation and diagnosis: is the problem solved? IEEE transactions on medical imaging, 37(11):2514–2525, 2018

    Olivier Bernard, Alain Lalande, Clement Zotti, Frederick Cervenansky, Xin Yang, Pheng-Ann Heng, Irem Cetin, Karim Lekadir, Oscar Camara, Miguel Angel Gonzalez Ballester, et al. Deep learning techniques for automatic mri cardiac multi-structures segmentation and diagnosis: is t...

  71. [79]

    Alper Selver, O˘guz Dicle, Mustafa Barı¸ s, and N

    Ali Emre Kavur, M. Alper Selver, O˘guz Dicle, Mustafa Barı¸ s, and N. Sinem Gezer. CHAOS - Combined (CT-MR) Healthy Abdominal Organ Segmentation Challenge Data, April 2019

  72. [80]

    Bayeseg: Bayesian modeling for medical image segmentation with interpretable generalizability, 2023

    Shangqi Gao, Hangqi Zhou, Yibo Gao, and Xiahai Zhuang. Bayeseg: Bayesian modeling for medical image segmentation with interpretable generalizability, 2023

  73. [81]

    Multivariate mixture model for myocardial segmentation combining multi- source images

    Xiahai Zhuang. Multivariate mixture model for myocardial segmentation combining multi- source images. IEEE transactions on pattern analysis and machine intelligence, 41(12):2933– 2946, 2018

  74. [82]

    Minimizing estimated risks on unlabeled data: A new formula- tion for semi-supervised medical image segmentation

    Fuping Wu and Xiahai Zhuang. Minimizing estimated risks on unlabeled data: A new formula- tion for semi-supervised medical image segmentation. IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(5):6021–6036, 2022

  75. [83]

    Cyclemix: A holistic strategy for medical image segmentation from scribble supervision

    Ke Zhang and Xiahai Zhuang. Cyclemix: A holistic strategy for medical image segmentation from scribble supervision. arXiv preprint arXiv:2203.01475, 2022

  76. [84]

    A benchmark dataset and evaluation methodology for video object segmentation

    Federico Perazzi, Jordi Pont-Tuset, Brian McWilliams, Luc Van Gool, Markus Gross, and Alexander Sorkine-Hornung. A benchmark dataset and evaluation methodology for video object segmentation. In Proceedings of the IEEE conference on computer vision and pattern recognition, page...

  77. [85]

    The 2017 davis challenge on video object segmentation

    Jordi Pont-Tuset, Federico Perazzi, Sergi Caelles, Pablo Arbeláez, Alex Sorkine-Hornung, and Luc Van Gool. The 2017 davis challenge on video object segmentation. arXiv preprint arXiv:1704.00675, 2017

  78. [86]

    Reliable delineation of clinical target volumes for cervical cancer radiotherapy on ct/mr dual-modality images

    Ying Sun, Yuening Wang, Kexin Gan, Yuxin Wang, Ying Chen, Yun Ge, Jie Yuan, and Hanzi Xu. Reliable delineation of clinical target volumes for cervical cancer radiotherapy on ct/mr dual-modality images. Journal of Imaging Informatics in Medicine, pages 1–14, 2024. 15

  79. [87]

    Domain and User-Centered Machine Learning for Medical Image Analysis

    Katharina Viktoria Hoebel. Domain and User-Centered Machine Learning for Medical Image Analysis. PhD thesis, Massachusetts Institute of Technology, 2023

  80. [88]

    Deep learning algorithm for auto-delineation of high-risk oropharyngeal clinical target volumes with built-in dice similarity coefficient parameter optimization function

    Carlos E Cardenas, Rachel E McCarroll, Laurence E Court, Baher A Elgohari, Hesham Elha- lawani, Clifton D Fuller, Mona J Kamal, Mohamed AM Meheissen, Abdallah SR Mohamed, Arvind Rao, et al. Deep learning algorithm for auto-delineation of high-risk oropharyngeal clinical target...

  81. [89]

    Automatic detection of contouring errors using convolutional neural networks

    Dong Joo Rhee, Carlos E Cardenas, Hesham Elhalawani, Rachel McCarroll, Lifei Zhang, Jinzhong Yang, Adam S Garden, Christine B Peterson, Beth M Beadle, and Laurence E Court. Automatic detection of contouring errors using convolutional neural networks. Medical physics, 46(11):50...

Pith tools

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