Skip to Content
BioengineeringBioengineering
  • Article
  • Open Access

29 June 2026

Active Learning Under Expert-Budget Constraints: A Human-in-the-Loop Pipeline for Diabetic Retinopathy Lesion Detection

,
,
,
and
1
Department of Industrial Engineering, Seoul National University of Science and Technology, 232 Gongneung-ro, Nowon-gu, Seoul 01811, Republic of Korea
2
Department of Data Science, Seoul National University of Science and Technology, 232 Gongneung-ro, Nowon-gu, Seoul 01811, Republic of Korea
3
Department of Ophthalmology, National Medical Center, Seoul 04564, Republic of Korea
*
Author to whom correspondence should be addressed.

Abstract

Early diagnosis of Diabetic Retinopathy (DR) is critical for preventing irreversible vision loss, but precise lesion annotation by ophthalmologists is the dominant cost in building any clinical-grade DR detection model. The structural problem in real hospital settings is not labeling cost per se, but expert availability: ophthalmologists’ time is bounded by clinical duties, so the active-learning (AL) cycle can iterate only a handful of times in practice. We frame this constraint explicitly and ask which AL designs work best under a tight expert budget. We propose Virtuous Cycle, a Human-in-the-Loop (HITL) pipeline that integrates (i) a YOLOv8x-based object detector for microaneurysms, hemorrhages, and exudates, (ii) four AL sampling strategies (Average Confidence, Random, Hybrid-Diversity, Monte Carlo Dropout), and (iii) an in-hospital annotation platform (Diavision Studio) in which clinicians refine AI pre-labels rather than draw from scratch. We evaluate Virtuous Cycle on a real-world fundus dataset from the National Medical Center (NMC) across eight AL rounds, expanding the labeled pool from 81 images (R0) to 481 images (R8) within the actual expert-time budget of two ophthalmologists. Across three independent random seeds, random sampling dominates at cold start (mean mAP@50 0.14 0.25 over R0–R1), whereas Hybrid-Diversity converges to the highest mAP@50, Precision, and Recall by R7 (431 images; mAP@50 0.40 , Precision 0.55 , Recall 0.41 ), with MC Dropout close behind; by R8, the labeled pool is exhausted and all strategies converge to the same final model. A clinician crossover analysis of 36 paired clinical images, controlling for per-clinician speed bias and per-image difficulty bias, shows no statistically significant difference in overall per-image labeling time between AI-assisted and manual annotation ( p = 0.52 ), but a statistically significant increase in confirmed lesion detections under AI assistance ( p = 0.0058 ), driven predominantly (84– 100 % of the net increase) by microaneurysms, the lesion type most prone to being missed unaided. The results indicate that, under expert-budget constraints, AL strategy choice should be staged: random sampling for cold start, uncertainty-and-diversity sampling once the model has matured, and that AI assistance trades a modest, lesion-burden-dependent time cost for a measurable gain in the sensitivity of microaneurysm detection.

1. Introduction

Diabetic Retinopathy (DR) is a microvascular complication of diabetes that currently affects more than one hundred million people worldwide and remains a leading cause of adult blindness [1,2]. According to the World Health Organization, the global patient population is projected to exceed 130 million by 2030 [3]. Yet a shortage of ophthalmologists and limited access to screening leave many patients without routine examinations; in Korea, only about half of eligible patients receive early DR screening on schedule [4].
Recent work in deep-learning-based medical artificial intelligence (AI) has demonstrated that automated reading of color fundus images can classify DR severity with accuracy approaching that of specialists [5,6]. Wolf et al. deployed an autonomous AI-based DR screening system in a real clinical trial and raised the screening completion rate to 100% [5], while Dai et al. introduced the DeepDR Plus model, which predicts the five-year risk of DR progression from a single patient’s fundus image [6]. Dow et al. further showed that a two-stage reading workflow combining AI and specialist review achieves a sensitivity of 95.5% and a specificity of 98.2% [7].
Despite these advances, real-world deployment of medical AI still faces three fundamental obstacles: domain shift between training and target hospitals, predictive uncertainty on rare or borderline lesions, and the high cost of acquiring large-scale precisely annotated datasets [8,9,10,11]. To address these issues, the medical-imaging community has converged on two complementary ideas: active learning (AL) [12,13,14], which selects the most informative samples for expert labeling, and human-in-the-loop (HITL) learning [15,16], which keeps clinicians as the decision authority over uncertain model predictions.

1.1. The Expert-Budget Bottleneck

On paper, AL and HITL together promise a self-improving “virtuous cycle”: the model proposes labels, the expert corrects them, the corrections become training data, and the next iteration is better. In practice, that cycle is bounded by a quantity the literature rarely names explicitly expert availability. Ophthalmologists in a working hospital cannot label on demand: their time is allocated to clinical duties, and the marginal cost of recalling them for an additional AL round is not trivial. As a result, even a well-engineered AL pipeline only completes a handful of rounds before the expert budget is exhausted. This is qualitatively different from the unconstrained AL regimes studied in benchmark settings [17,18,19], where the next round of acquisitions is essentially free. The right question for hospital deployment is therefore not “can we keep iterating until convergence?” but “which AL strategies make the best use of a small, fixed number of expert-time slices?”

1.2. Summary of Identified Gaps

The discussion above reveals three concrete gaps in the existing DR-AI literature: (1) fully autonomous DR readers [5,6,20] maximize throughput but discard the clinician’s marginal expertise, leaving no mechanism for continual model improvement; (2) AI–specialist collaborative workflows [7,21] reintroduce the clinician but lack any sample-selection mechanism, so expert time is spent on whichever images happen to arrive next rather than on the images that would most improve the model; (3) the AL literature in medical imaging [12,14,22,23] concentrates on classification tasks under unconstrained iteration budgets, leaving open the question of whether—and which—AL strategies still work on the harder lesion-detection setting of DR and under a tight expert budget that only permits a handful of rounds.

1.3. Our Contributions

The incremental contribution of this study lies in empirically quantifying the trade-off between annotation efficiency and diagnostic recall under strict expert-budget constraints, demonstrating that AI assistance fundamentally shifts the clinical annotation paradigm toward quality enhancement for subtle microvascular lesions rather than simple time reduction. This work makes three contributions:
  • Expert-Budget-Aware AL + HITL Pipeline (Virtuous Cycle). We design and deploy an AL + HITL pipeline whose query strategy and per-round training hyperparameters are calibrated for a small, fixed number of expert-time rounds rather than for unconstrained iteration. The pipeline integrates a YOLOv8x detector [24], four AL sampling strategies, and an in-hospital annotation platform (Diavision Studio) currently operational on the intranet of the National Medical Center (NMC), Seoul. We surface the expert-budget constraint as a first-class design parameter rather than an implicit limit. This addresses the labeling-cost obstacle highlighted by [8,10].
  • Few-Round AL Convergence Analysis on Clinical DR Lesion Detection. We provide an 8-round empirical comparison of four AL sampling strategies—Average Confidence, Random Sampling, Hybrid-Diversity, and MC Dropout [25,26]—on real NMC fundus images (pool size R0 = 81 → R8 = 481 labeled images, + 50 per round), averaged across three independent random seeds, revealing that Random dominates at cold start while Hybrid (mAP@50 = 0.40 at R7) and MC Dropout (mAP@50 = 0.38 at R7) converge to the highest accuracy before all strategies necessarily collapse to the same final model once the pool is exhausted at R8 (see Section 4.2.1). To our knowledge, this is the first such comparison reported on the object-detection variant of DR, in contrast to existing AL-on-DR work that targets image-level classification only [22], and the round budget reported here reflects what is actually feasible inside one ophthalmology service.
  • Crossover-Validated HITL Labeling-Cost and Quality Analysis with Real Clinicians. Through a 2   ×   2 crossover with two NMC ophthalmologists, with a 36-image-pair log analysis of the deployed Diavision Studio platform (version 1.0), we show that AI-assisted pre-labeling yields no statistically significant change in overall per-image annotation time relative to manual labeling ( p = 0.52 ), but a statistically significant increase in confirmed lesion detections ( p = 0.0058 ) driven predominantly by microaneurysms—the lesion type clinicians are most prone to miss unaided (Section 4.2.2). The crossover design controls for both per-clinician speed bias and per-image difficulty bias—a measurement discipline absent from prior HITL labeling-cost studies [15].

3. Methodology

3.1. Systematic Overview

Figure 1 illustrates the overall architecture, Virtuous Cycle, proposed in this study. The proposed pipeline integrates active learning and HITL labeling into a cyclical framework. Initially, a YOLOv8x-based object detection model [24] is trained using a small subset of manually labeled data. Subsequently, the trained model actively selects highly informative samples from an unlabeled dataset based on specific strategies and requests expert labeling. Physicians then review and refine the model’s predictions via an integrated annotation platform to generate final labels, which are appended to the training dataset. Retraining the model with this updated data improves its performance, and this iterative process progressively refines the model. The key steps are outlined as follows:
Figure 1. Overall framework architecture.
  • Model Initialization: The YOLOv8x object detector is initially trained on a small number of fundus images using expert-provided bounding box annotations.
  • Active Learning Sampling: The system selects the next batch of unlabeled images using one of four sampling strategies (Section 3.3); strategies are chosen per round to balance uncertainty and data diversity.
  • Human-in-the-Loop Labeling: Ophthalmologists perform annotations on the platform, utilizing the AI-generated predictions as initial drafts.
  • Model Update: The model is retrained with the newly acquired labels to enhance detection performance.
Through this cycle, the proposed framework maximizes model accuracy while minimizing annotation costs subject to the expert-budget constraint described in Section 1. The initial model in this study was trained on a cold-start pool of 81 high-quality fundus images from the National Medical Center (NMC) dataset; the pool was expanded to 481 cumulative images over eight rounds of active learning (50 acquisitions per round; see Section 4). Algorithm 1 states the outer loop formally; the sampling step (line 3 of Algorithm 1) is detailed by Algorithm 2 in Section 3.3.
Algorithm 1 Virtuous Cycle—Expert-Budget-Aware AL + HITL Round Loop
Require: 
Initial labeled set L 0 ; unlabeled pool U 0 ; number of rounds R; per-round acquisition budget k; strategy schedule σ : { 0 , , R } {Rand, AvgC, Hyb, MCD}; training hyperparameter schedule θ : { 0 , , R } Θ (Table 2 and Table 3); clinicians E available for HITL review.
Ensure: 
Trained detector f R and labeled corpus L R .
  1:
f0 ← Tranin ( L 0 , θ ( 0 ) )                                           ▹ cold start on | L 0 |   =   81 images
  2:
for  r   =   1   to  R  do
  3:
     S r SamplingStrategy σ ( r ) , f r 1 , U r 1 , k                                  ▹ Algorithm 2
  4:
     Y ˜ r { f r 1 ( x ) : x S r }                   ▹ AI pre-labels surfaced in Diavision Studio
  5:
     Y r ExpertReview ( S r , Y ˜ r , E )                   ▹ HITL: clinician edits the pre-labels
  6:
     L r L r 1 { ( x , y ) : x S r , y Y r }
  7:
     U r U r 1 S r
  8:
     f r Train ( L r , θ ( r ) )                   ▹ hyperparameters adapt with | L r | per Table 3
  9:
end for
10:
return  f R , L R
Table 2. Training hyperparameters for YOLOv8x.
Table 3. Adaptive Hyperparameters by Round Number.
Two design choices in Algorithm 1 are direct consequences of the expert-budget framing: R is small and fixed (we use R = 8 , the budget two NMC ophthalmologists could realistically devote across the deployment period), and the strategy schedule σ is allowed to switch across rounds rather than being held constant—a key empirical finding in Section 4.2.1 is that no single strategy dominates throughout, so the schedule should drift from Random at r = 0 , 1 toward Hybrid-Diversity/MC Dropout at later rounds.

3.2. Object Detection Model

At the core of the proposed pipeline lies the YOLOv8x object-detection model [24]. With its strong backbone network, YOLOv8x efficiently detects a range of abnormalities, including microvascular lesions, in complex retinal images. The model is chosen for its trade-off between near-real-time inference and high detection accuracy on high-resolution medical images. During training, active learning starts from pre-trained weights obtained on standard object-detection datasets, and we tune the hyperparameters empirically to ensure stable convergence. Table 2 and Table 3 list the configurations used. The parameters in Table 3 are adjusted across rounds to track the size of the labeled pool. All four AL strategies share the identical round-r hyperparameter configuration in Table 3 at every round r; the round-to-round schedule (epochs, batch size, mosaic augmentation) is a function of the labeled-pool size only, regardless of which sampling strategy produced that pool, so that any two strategies compared at the same round are trained under strictly identical settings.

3.3. Sampling Strategy in Active Learning

During the active-learning phase, information-based sampling chooses which unlabeled images to send for expert review, with the aim of maximizing model improvement under the per-round acquisition budget k. We implement and compare four strategies.

Notation

Let X be the pool of unlabeled fundus images and k N be the per-round acquisition budget (in this work, k = 50 ). For an input image x X , let B ( x ) be the set of bounding boxes predicted by the YOLOv8x model, N = | B ( x ) | , and let conf ( b ) denote the (softmax-normalized) confidence score of box b. We write conf ¯ ( x ) = 1 N b B ( x ) conf ( b ) for the image-level mean confidence. The operators bottom - k and top - k return the subset of X whose per-image scores are the k smallest/largest, breaking ties uniformly at random. All set unions below are interpreted as set unions (not multisets) and we enforce disjointness by drawing the two component sets without replacement from a shared pool.
  • Average Confidence: Prioritizes images with a low average confidence score across all predicted bounding boxes. This instantiates the classical least-confidence/uncertainty-sampling paradigm [13,40]:
    s A ( x ) : = conf ¯ ( x ) , S A = bottom - k ( s A ) ,
    where S A denotes the subset of images selected by choosing the k samples with the lowest (bottom-k) average confidence scores.
  • Random Sampling: Serves as a comparative baseline where all images are selected uniformly at random. This approach is advantageous for securing diverse data during the initial stages:
    S B i . i . d . Uniform ( X ) , | S B | = k ( sampled without replacement ) ,
    where X denotes the entire pool of unlabeled datasets available for sampling.
  • Hybrid-Diversity: Selects samples from highly uncertain images while preserving data diversity; conceptually related to the diversity-plus-informativeness combination of Gaillochet et al. [36] and the diversity-to-uncertainty curriculum of Ma et al. [23] discussed in Section 2.2. Let ρ ( 0 , 1 ) be the uncertainty fraction; in our experiments ρ = 0.7 , selected empirically during preliminary tests to provide the optimal balance between exploiting uncertainty and maintaining data diversity within our limited per-round batch size. We first select the ρ k images with the lowest mean confidence, then complete the budget with random draws disjoint from S unc :
    S unc = bottom - ( ρ k ) conf ¯ , S rand = Sample X S unc , ( 1 ρ ) k ,
    S C = S unc S rand , | S C | = k .
    Because S rand is sampled from X S unc , the two component sets are disjoint by construction and | S C | = ρ k + ( 1 ρ ) k = k holds exactly. This balances exploring uncertain decision boundaries with maintaining global data diversity.
  • Monte Carlo Dropout: Following Gal and Ghahramani [25], we keep dropout active during inference and run T stochastic forward passes per image (we set T = 10 , following the standard range used by Gal and Ghahramani [25] for efficient epistemic-uncertainty estimation). Let p ( t ) ( x ) [ 0 , 1 ] C be the per-class detection-confidence vector produced by the t-th pass, i.e., [ 0 , 1 ] C denotes the C-dimensional unit hypercube in which each entry is the softmax probability for one of the C lesion classes, where C is the number of lesion classes (MA, HE, EX); p c ( t ) ( x ) denotes the c-th scalar entry of p ( t ) ( x ) , i.e., the confidence specifically for class c. We combine a low-confidence term with an epistemic-uncertainty term:  
    u ( x ) = 1 C c = 1 C Var t p c ( t ) ( x ) ,
    s D ( x ) = λ 1 conf ¯ ( x ) + ( 1 λ ) u ( x ) ,
    S D = top - k ( s D ) ,
    where Var t ( · ) is the empirical variance across the T stochastic passes, computed per class and then averaged over the C classes; λ ( 0 , 1 ) is the convex-combination weight (set to the same value as ρ in our experiments; both ρ and λ were chosen empirically during preliminary tests to balance the diversity and uncertainty terms within the limited per-round batch size, rather than via a systematic sweep). The score u ( x ) quantifies epistemic uncertainty in the sense of approximate Bayesian inference via MC Dropout [25]; the final subset S D is the top-k images by combined score s D ( x ) . We use the symbol λ here, rather than α , to avoid clashing with the Hybrid-Diversity fraction ρ introduced above.
Each strategy selects informative samples based on uncertainty, diversity, or both, thereby reducing redundant labeling effort. Prior medical-imaging studies show that such active-learning regimes can achieve accuracy comparable to fully supervised training while using only a fraction of the available training data [12,22,36].
Algorithm 2 states the four strategies as a single routine indexed by the strategy enum σ {AvgC, Rand,Hyb,MCD} that Algorithm 1 hands in at every round. Notation follows the Notation Section above.
Algorithm 2 SamplingStrategy—unified acquisition for the four AL strategies
Require: 
Strategy σ {AvgC, Rand, Hyb, MCD}; current detector f; unlabeled pool X ; acquisition budget k; hybrid fraction ρ ( 0 , 1 ) ; MC Dropout passes T N ; MC Dropout weight λ ( 0 , 1 ) ; number of lesion classes C.
Ensure: 
S X with | S | = k .
  1:
For each  x X : compute predicted boxes B ( x ) f ( x ) and the per-image mean confidence conf ¯ ( x ) 1 | B ( x ) | b B ( x ) conf ( b ) .
  2:
if σ =  AvgC then                                                                                                ▹ Average-Confidence
  3:
     S bottom - k conf ¯
  4:
else if  σ =   Rand then                                                                         ▹ uniform Random sampling
  5:
     S AmpleWithoutReplacement ( X , k )
  6:
else if  σ =   Hyb then                                                                                            ▹ Hybrid-Diversity
  7:
     S unc bottom - ( ρ k ) conf ¯
  8:
     S rand AmpleWithoutReplacement ( X S unc , ( 1 ρ ) k )
  9:
     S S unc S rand                                                                             ▹ disjoint by construction; | S | = k
10:
else if  σ =  MCD then                                                                                    ▹ Monte-Carlo Dropout
11:
    for  x X  do
12:
        for  t = 1  to T do
13:
            p ( t ) ( x ) f dropout ( x )                                                             ▹ dropout kept active at inference
14:
        end for
15:
         u ( x ) 1 C c = 1 C Var t p c ( t ) ( x )
16:
         s D ( x ) λ 1 conf ¯ ( x ) + ( 1 λ ) u ( x )
17:
    end for
18:
     S top - k ( s D )
19:
end if
20:
return  S
Two implementation notes. First, the T inner loop of the MCD branch dominates the per-round wall-clock cost ( T = 10 multiplies inference time by an order of magnitude); when the per-round expert budget is tight, this cost is acceptable because the expert work that follows is far slower than the AI inference. Second, the Rand branch is a strict generalization-vs-bias baseline rather than a degenerate case: as shown in Section 4.2.1, it dominates the other three strategies in the cold-start regime (R0→R1) and is the strategy of choice at r = 0 .

3.4. HITL Platform

Figure 2 illustrates the “Diavision Studio” service, which is currently deployed on the NMC intranet in South Korea. For the annotation phase, we developed a HITL annotation platform that operates securely within the hospital intranet environment. To tailor the system to clinical use, multiple rounds of user experience (UX) interviews with ophthalmologists, feedback sessions, and quality assurance tests were conducted.
Figure 2. HITL Annotation Platform Used at NMC.
The platform is designed to allow physicians to compare and refine AI-generated predictive labels against manual annotations within a single, unified interface. It features an intuitive, keyboard-shortcut-driven workflow, along with version control and logging capabilities, optimized to accelerate the expert annotation process while ensuring high-quality standards. Notably, by automatically presenting AI-generated pre-labels, the system enables physicians to finalize accurate annotations with only minor adjustments, thereby significantly reducing both the time and cost associated with the labeling process.

4. Performance Evaluation

4.1. Dataset

To evaluate the effectiveness of the object-detection model in reducing lesion-annotation time in a real-world clinical setting, this study uses the NMC dataset, made available under official NMC approval and comprising three lesion classes: microaneurysms (MA), hemorrhages (HE), and exudates (EX). The dataset is curated by ophthalmologists Dr. Ho-Gil Jung and Dr. Soo Young Lee of the NMC using the Diavision Studio platform. Although the clinical inference system itself is beyond the scope of this experiment, the annotation framework described here is in clinical use at the NMC, and the labels collected during routine reading continue to feed model updates. The same held-out test set is used to evaluate every active-learning round (R0 through R8) and the final converged model, ensuring a fair, round-invariant comparison across strategies.

4.2. Experimental Results

4.2.1. Model Performance Convergence Analysis Based on Sampling Strategy

We analyze the performance differences among the four active-learning sampling strategies (Average Confidence, Random Sampling, Hybrid-Diversity, and MC Dropout) on the NMC dataset. Each strategy starts from the cold-start pool of 81 images (R0) and acquires 50 additional samples per round. The model is retrained iteratively across R = 8 rounds indexed r = 0 , , 8 , so the labeled pool grows from 81 at R0 to 431 at R7 and to 81 + 8 × 50 = 481 at R8. Because R8 covers the entire available (non-test) NMC pool, all four strategies necessarily converge to the same final model at R8, regardless of the sampling sequence. We therefore report this converged performance in the R8 column of Table 4 as the reference baseline. To distinguish genuine strategy effects from single-seed variance, we repeated the full 8-round pipeline across three independent random seeds and report mean ± std at every round in Table 4 and Figure 3. The experimental results, summarized in Figure 3, are compared on four representative metrics: mAP@50, mAP@50–95, Precision, and Recall. Detailed per-strategy numerical results are reported in Table 4.
Table 4. Per-strategy detection metrics (mean ± std across three independent random seeds) across active-learning rounds on the NMC dataset. Ri denotes the i-th active-learning round; the labeled pool grows from 81 images at R0 to 431 at R7 and 481 at R8. Since R8 utilizes the entire available (non-test) NMC pool, all four strategies necessarily converge to the same final model; we therefore report this converged performance as the reference baseline. Bold = best per metric at R7 (the last round at which the strategies still differ).
Figure 3. Model performance (mean ± std across three independent random seeds) across active-learning rounds for the four sampling strategies on the NMC dataset. Metrics: mAP@50, mAP@50–95, Precision, and Recall. Hybrid and, to a lesser extent, MC Dropout outperform Random and Average Confidence sampling in later rounds; all strategies converge at R8 once the labeled pool is exhausted.
For mAP@50, Random shows the fastest cold-start improvement (mean 0.14 to 0.25 over R0–R1). As demonstrated by the wide standard deviation bands in Figure 3, the model is severely underfitted at the cold-start phase (R1). Consequently, its predicted confidences and MC Dropout variances are highly unstable, rendering uncertainty-based sampling less effective than random sampling during the initial rounds. In later rounds, Hybrid consistently overtakes the other three, reaching a mean of 0.40 ± 0.08 at R7, with MC Dropout close behind at 0.38 ± 0.08 ; a paired t-test across the three seeds confirms Hybrid significantly outperforms MC Dropout at R7 ( t = 24.4 , p = 0.0017 ), though the comparison against Random did not reach significance at this seed count ( t = 1.45 , p = 0.28 ).
For Precision, Hybrid achieves the highest final-round Precision ( 0.55 ± 0.01 at R7), with Average Confidence close behind ( 0.55 ± 0.04 ) and Random and MC Dropout both around 0.51 (the Hybrid-vs-MC Dropout difference is marginal at this seed count: p = 0.069 ). The result is consistent with the hypothesis that uncertainty-aware sampling reduces false-positive detections. For Recall, Hybrid converges most rapidly, reaching a mean of 0.41 ± 0.08 in the R7 round ( p = 0.098 vs. MC Dropout) and confirming its capacity to detect lesions without omission.
The overall pattern is clear: Random is efficient in the cold-start regime, but transitioning to Hybrid or MC Dropout as the model matures accelerates convergence and improves the final detection metrics, though with the modest seed-to-seed variance reported above, the strategy ranking among Hybrid, MC Dropout, and Average Confidence should be read as a trend rather than a sharply significant ordering at every metric. This is the empirical basis for the round-switchable schedule σ in Algorithm 1: in the deployed system, Random and Hybrid are used in the initial rounds, while MC Dropout is used from the mid- to late-rounds.

4.2.2. Effect of AI-Assisted Labeling System on Reducing Labeling Time

To assess the impact of AI assistance on annotation efficiency and quality, we conducted a statistical analysis of the full annotation logs from the deployed Diavision Studio platform. This analysis comprises a total of 36 image-level AI-vs-Default labeling pairs (31 lesion-containing + 5 lesion-free images). The experiment utilized a 2 × 2 crossover design to isolate the effect of AI assistance from per-clinician speed bias and per-image difficulty bias; specifically, for any given image, the AI-assisted and manual sessions were performed by different clinicians to avoid same-clinician relabeling or memory bias. Figure 4 illustrates the representative workflow of this crossover design, where images were divided into two groups (Group 1 and Group 2), and two NMC ophthalmologists (Dr. Ho-Gil Jung and Dr. Soo Young Lee) performed annotations as follows: Dr. Jung annotated Group 1 with the AI-assisted system and Group 2 manually, while Dr. Lee annotated Group 1 manually and Group 2 with the AI-assisted system.
Figure 4. Visualization of the AI-assisted annotation workflow on diabetic-retinopathy images: (a) expert-annotated lesions (Dr. Ho-Gil Jung and Dr. Soo Young Lee); (b) model-predicted bounding boxes over the same fundus image.
A paired t-test on this sample shows no statistically significant difference in mean per-image labeling time (Figure 5B; t = 0.65 , p = 0.52 ; 95% CI for the mean difference: [ 7.4 s , + 14.3 s ] ; Wilcoxon signed-rank p = 0.70 ), indicating that the AI-assisted workflow does not significantly alter overall annotation speed. Stratifying the same sample by lesion burden (using the number of lesion boxes as a severity proxy, split at the median) suggests a crossover pattern: AI assistance trends faster on lesion-sparse images ( n = 18 , 7.1 s ) and trends slower on lesion-dense images ( n = 13 , + 18.0 s ), but neither subgroup difference reaches significance at this sample size ( p = 0.136 and p = 0.094 , respectively); we report this as a directional, hypothesis-generating observation rather than a confirmed effect, and flag the subgroup sample size as a limitation (Section 5).
Figure 5. Comparison of per-image annotation time with and without AI assistance. (A) Paired per-image labeling time, colored by lesion burden (mild = lesion-sparse, severe = lesion-dense). (B) Mean difference (AI-Default) with 95% confidence intervals for the pooled sample and for the mild/severe subgroups; none of the three differences reach statistical significance at this sample size.
Critically, the additional time on lesion-dense images is not wasted; AI assistance significantly increases the total number of confirmed lesion boxes (paired t-test, p = 0.0058 across the 36-pair sample). Figure 6 decomposes this net increase by class: microaneurysms account for 84– 100 % of the increase, while exudate counts slightly decreased, indicating that AI assistance surfaces additional instances of the lesion type clinicians are most prone to miss unaided. Repeating the same comparison on lesion-sparse images shows no significant difference ( p = 0.187 ).
Figure 6. Class-level breakdown of the additional lesion boxes confirmed under AI assistance, within the lesion-dense (severe) subgroup of the 36-pair HITL log analysis. (A) Total confirmed boxes per class, Default vs. AI-assisted. (B) Net change per class (AI−Default); microaneurysms account for the entire net increase.
A potential concern in object detection is that aggregate metrics like mAP might be dominated by ‘easy’ classes. To verify the robustness of our performance, we analyzed class-specific difficulty using a multi-class YOLOv8x detector evaluated on a held-out IDRiD validation split (Figure 7). The results show AP50 (MA) = 0.207 , AP50 (HE) = 0.288 , and AP50 (EX) = 0.224 . Since microaneurysms (the most clinically significant lesion) are indeed the most challenging class, these results confirm that our aggregate mAP (Table 4) is not artificially inflated by easier lesion types.
Figure 7. Per-class AP (AP50 and AP50–95) of the multi-class YOLOv8x detector (MA, HE, EX, SE, OD) evaluated on the held-out IDRiD validation split ( n = 27 images).
These findings indicate that integrating AI assistance into the clinical annotation workflow does not shorten annotation time but shifts clinicians’ effort toward verifying clinically important microaneurysm detections. This reframes the system’s value proposition from time savings to annotation quality enhancement, particularly on lesion-dense images.

5. Discussions

The empirical evidence presented in Section 4 demonstrates that integrating active learning with a HITL annotation platform substantially reduces the labeling cost of constructing a clinically usable DR detection model. Nevertheless, several limitations remain that bound the generalizability of the present results.
First, the dataset is acquired with a single fundus camera at a single institution (the National Medical Center, Seoul). As a consequence, scene-level artifacts—lens illumination patterns, vignetting, and color calibration—are essentially constant across images while this homogeneity is convenient for benchmarking sampling strategies, it can mask domain-shift sensitivity that would emerge once the model is deployed at hospitals operating different acquisition pipelines. A multi-center evaluation that includes commodity smartphone-based fundus cameras and at least one external publicly available dataset (e.g., Messidor, EyePACS, IDRiD) is required before any claim of clinical generality. We commit to this multi-center, external-dataset validation as the immediate next step, and we have correspondingly softened the clinical generality language in the Abstract and Conclusion so that it does not extend beyond the single-center NMC results reported here. We treat this as the principal external-validity threat and an immediate item of future work.
As a first step toward external contextualization, we additionally evaluated our multi-class YOLOv8x detector (trained jointly on IDRiD and NMC data for MA, HE, and EX, plus soft exudates and optic disc) on IDRiD’s own held-out validation split, obtaining an overall mAP@50 of 0.44 (per-class AP50: MA 0.207 , HE 0.288 , EX 0.224 , SE 0.498 , OD 0.995 ; Figure 7), compared with mAP@50 = 0.40 at R7 for our single-class active-learning pipeline on the NMC pool (Table 4). The two numbers are only approximately comparable—IDRiD and NMC differ in camera, population, and label granularity (multi-class vs. unified lesion-presence)—but they place our NMC results in the same broad range as a directly evaluated IDRiD baseline rather than in a different regime entirely. A protocol-matched, head-to-head benchmark against published IDRiD and DDR leaderboard results is left for future work.
Second, our four active-learning sampling strategies (Average Confidence, Random, Hybrid-Diversity, MC Dropout) are evaluated under a fixed query budget of 50 images per round, an empirically chosen value matched to the throughput of two ophthalmologists at NMC. We deliberately did not co-optimize the per-round budget jointly with the sampling strategy. The convergence patterns observed in Figure 3 suggest that an automated mechanism that dynamically adjusts the per-round budget and switches sampling strategies as the model matures—for instance, Random in the cold-start regime and MC Dropout in later rounds—could further improve the cost–accuracy frontier. Designing such an adaptive controller is an open problem that we leave for subsequent work.
We consolidate here the justification for our key hyperparameter choices, which were described as empirical but not systematically validated. The per-round acquisition budget k = 50 was set to match the realistic per-round throughput of two ophthalmologists at NMC within the deployment window, as noted above. The number of MC Dropout forward passes T = 10 follows the standard range used by Gal and Ghahramani [25] for cheap epistemic-uncertainty estimation and was not separately tuned, since increasing T trades off directly against the per-round wall-clock budget (Section 3.3). The Hybrid-Diversity uncertainty fraction ρ = 0.7 and the MC Dropout convex-combination weight λ = 0.7 (set equal to ρ by design) were both chosen empirically during preliminary tests to balance uncertainty exploration against data diversity within our limited per-round batch size, rather than via a systematic sweep. We flag the non-exhaustive, empirical nature of the ρ / λ choice explicitly as a limitation; a sensitivity analysis over ρ , λ { 0.5 , 0.6 , 0.7 , 0.8 } is a natural and inexpensive extension for future work.
Third, the labeling-time experiment in Section 4.2.2 shows no statistically significant difference in overall per-image labeling time between AI-assisted and manual annotation ( p = 0.52 ), and a statistically significant increase in confirmed lesion detections ( p = 0.0058 ), concentrated in microaneurysms. While the mean mAP@50 of 0.40 represents a moderate performance level, our clinical HITL analysis confirms the system’s utility in reallocating cognitive effort toward identifying clinically important microvascular lesions rather than purely re-drawing boxes from scratch. The cumulative effect at the scale of a full dataset will be subject to nonlinear factors that our short-form experiment cannot capture: clinician fatigue over multi-hour sessions, inter-observer variance on hard cases, and the learning curve. As the subgroup sample sizes for lesion-burden stratification are small ( n = 18 and n = 13 ), the observed time trends should be treated as hypothesis-generating rather than confirmatory. A longitudinal study with a larger paired sample is needed to confirm both the time-neutrality finding and the detection-quality gain reported here.
Finally, the proposed pipeline assumes that an AI pre-label is always presented as the starting point of expert review. This design choice carries a known automation-bias risk: clinicians may anchor on a confident-but-wrong AI prediction more readily than they would correct a blank canvas. Our current HITL platform mitigates this through keyboard-shortcut-driven box deletion and forced two-clinician review on flagged cases, but a principled study of the false-confirmation rate—in particular for microaneurysms, where lesions are visually subtle—is a worthwhile direction for safety-oriented future work. Relatedly, the round-by-round active-learning comparison in Section 4.2.1 currently reports only aggregate detection metrics; instrumenting the pipeline for multi-class labels so that per-strategy, per-round AP-MA/AP-HE/AP-EX can be reported directly (rather than via the separate multi-class detector evaluated in Section 4.2.2) is a concrete extension we leave for future work.

6. Conclusions

To address the bottleneck problem of high-cost medical image labeling, this study proposes an active learning pipeline based on human-AI interaction. Experimental results using real-world clinical data demonstrate that this system does not significantly change overall annotation time ( p = 0.52 ) but significantly increases the number of confirmed lesion detections under AI assistance ( p = 0.0058 ), predominantly for microaneurysms. This confirms that high-performance diagnostic models can be effectively trained even under a limited annotation budget and redefines the system’s value proposition from simple time savings to annotation quality enhancement.
However, the scale of the current dataset remains limited, necessitating further expert collaboration and data acquisition to reflect a more diverse patient population and varied imaging conditions. Furthermore, introducing an automated tuning mechanism to dynamically optimize the sampling strategy and the HITL cycle during the active learning process remains a task for future work. Additionally, because the dataset itself is acquired using the same fundus camera within the NMC, identical artifacts may exist across the images, potentially posing challenges to the generalization performance of the model.
Future research aims to extend the efficient data construction process proposed in this study to other high-cost medical imaging modalities, such as CT and MRI, to verify its applicability and versatility. This approach is expected to accelerate the clinical integration of AI-based medical imaging technologies, ultimately contributing to simultaneous improvements in healthcare accessibility and diagnostic efficiency.

Author Contributions

Conceptualization, H.K., H.-G.J. and B.-Y.L.; methodology, H.K. and S.-M.C.; software, H.K. and S.-M.C.; validation, H.-G.J. and S.Y.L.; formal analysis, H.K.; investigation, H.K. and S.-M.C.; resources, H.-G.J.; data curation, H.-G.J. and S.Y.L.; writing—original draft preparation, H.K.; writing—review and editing, all authors; visualization, H.K.; supervision, H.-G.J. and B.-Y.L.; project administration, H.-G.J.; funding acquisition, H.-G.J. All authors have read and agreed to the published version of the manuscript.

Funding

This work was supported by a grant of National Medical Center, Republic of Korea (grant number: I_2024_0130001).

Institutional Review Board Statement

The study was conducted in accordance with the Declaration of Helsinki, and approved by the Institutional Review Board of the National Medical Center (protocol code NMC-2024-03-034 and date of approval 28 March 2024).

Data Availability Statement

The NMC diabetic retinopathy fundus image dataset analyzed in this study is not publicly available due to patient-privacy and institutional policies. Anonymized data are available from the corresponding author on reasonable request and subject to approval by the NMC Institutional Review Board. The pre-trained YOLOv8x backbone weights are publicly available from the Ultralytics project [24]. To ensure algorithmic reproducibility without compromising patient privacy, a clean implementation of the proposed active learning pipeline and the four sampling strategies is available at: https://github.com/bigbases/VIRTUOUS_CYCLE (accessed on 25 June 2026).

Acknowledgments

The authors thank the ophthalmology and informatics staff at the National Medical Center for facilitating the Diavision Studio deployment and the crossover labeling experiments.

Conflicts of Interest

The authors declare no conflicts of interest.

Abbreviations

The following abbreviations are used in this manuscript:
AIArtificial Intelligence
ALActive Learning
CECE marking (Conformité Européenne)
DRDiabetic Retinopathy
EXExudates
HEHemorrhages
HITLHuman-in-the-Loop
IRBInstitutional Review Board
MAMicroaneurysms
mAPmean Average Precision
MCMonte Carlo
NMCNational Medical Center
ODOptic Disc
SESoft Exudates
UQUncertainty Quantification
WHOWorld Health Organization
YOLOYou Only Look Once

References

  1. World Health Organization. Diabetes Country Profiles 2023; Report; World Health Organization: Geneva, Switzerland, 2023. [Google Scholar]
  2. Yau, J.W.Y.; Rogers, S.L.; Kawasaki, R.; Lamoureux, E.L.; Kowalski, J.W.; Bek, T.; Chen, S.J.; Dekker, J.M.; Fletcher, A.; Grauslund, J.; et al. Global prevalence and major risk factors of diabetic retinopathy. Diabetes Care 2012, 35, 556–564. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  3. Magliano, D.J.; Boyko, E.J. IDF Diabetes Atlas, 10th ed.; IDF Diabetes Atlas 10th Edition Scientific Committee, Ed.; International Diabetes Federation: Brussels, Belgium, 2021. [Google Scholar]
  4. Kim, M.S.; Nam, S.; Lee, J.; Woo, S.J. Nationwide Trends and Future Projections of Diabetes and Diabetic Retinopathy Prevalence in Korea: Korean National Health and Nutrition Examination Survey Study. J. Korean Med. Sci. 2026, 41, e31. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  5. Wolf, R.M.; Channa, R.; Liu, T.Y.A.; Zehra, A.B.; Bromberger, L.; Patel, D.; Ananthakrishnan, A.; Brown, E.A.; Prichett, L.; Lehmann, H.P.; et al. Autonomous artificial intelligence increases screening and follow-up for diabetic retinopathy in youth: The ACCESS randomized control trial. Nat. Commun. 2024, 15, 421. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  6. Dai, L.; Sheng, B.; Chen, T.; Wu, Q.; Liu, R.; Cai, C.; Wu, L.; Yang, D.; Hamzah, H.; Liu, Y.; et al. A deep learning system for predicting time to progression of diabetic retinopathy. Nat. Med. 2024, 30, 584–594. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  7. Dow, E.R.; Khan, N.C.; Chen, K.M.; Mishra, K.; Perera, C.; Narala, R.; Basina, M.; Dang, J.; Kim, M.; Levine, M.; et al. AI-Human Hybrid Workflow Enhances Teleophthalmology for the Detection of Diabetic Retinopathy. Ophthalmol. Sci. 2023, 3, 100330. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  8. Xu, X.; Zhang, M.; Huang, S.; Li, X.; Kui, X.; Liu, J. The application of artificial intelligence in diabetic retinopathy: Progress and prospects. Front. Cell Dev. Biol. 2024, 12, 1473176. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  9. Lambert, B.; Forbes, F.; Tucholka, A.; Doyle, S.; Dehaene, H.; Dojat, M. Trustworthy clinical AI solutions: A unified review of uncertainty quantification in Deep Learning models for medical image analysis. Artif. Intell. Med. 2024, 150, 102830. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  10. Tajbakhsh, N.; Jeyaseelan, L.; Li, Q.; Chiang, J.N.; Wu, Z.; Ding, X. Embracing imperfect datasets: A review of deep learning solutions for medical image segmentation. Med. Image Anal. 2020, 63, 101693. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  11. Cheplygina, V.; de Bruijne, M.; Pluim, J.P.W. Not-so-supervised: A survey of semi-supervised, multi-instance, and transfer learning in medical image analysis. Med. Image Anal. 2019, 54, 280–296. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  12. Wang, H.; Jin, Q.; Li, S.; Liu, S.; Wang, M.; Song, Z. A comprehensive survey on deep active learning in medical image analysis. Med. Image Anal. 2024, 95, 103201. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  13. Settles, B. Active Learning Literature Survey; Computer Sciences Technical Report 1648; University of Wisconsin–Madison, Computer Sciences Department: Madison, WI, USA, 2009. [Google Scholar]
  14. Budd, S.; Robinson, E.C.; Kainz, B. A survey on active learning and human-in-the-loop deep learning for medical image analysis. Med. Image Anal. 2021, 71, 102062. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  15. Vásquez-Venegas, C.; Sotomayor, C.G.; Ramos, B.; Castañeda, V.; Pereira, G.; Cabrera-Vives, G.; Härtel, S. Human-in-the-Loop—A Deep Learning Strategy in Combination with a Patient-Specific Gaussian Mixture Model Leads to the Fast Characterization of Volumetric Ground-Glass Opacity and Consolidation in the Computed Tomography Scans of COVID-19 Patients. J. Clin. Med. 2024, 13, 5231. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  16. Yalcinkaya, D.M.; Youssef, K.; Heydari, B.; Simonetti, O.; Dharmakumar, R.; Raman, S.; Sharif, B. Temporal Uncertainty Localization to Enable Human-in-the-loop Analysis of Dynamic Contrast-enhanced Cardiac MRI Datasets. In Proceedings of the Medical Image Computing and Computer Assisted Intervention—MICCAI 2023; Lecture Notes in Computer Science; Springer: Cham, Switzerland, 2023. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  17. Sener, O.; Savarese, S. Active Learning for Convolutional Neural Networks: A Core-Set Approach. In Proceedings of the International Conference on Learning Representations (ICLR), Vancouver, BC, Canada, 30 April–3 May 2018. [Google Scholar]
  18. Kirsch, A.; van Amersfoort, J.; Gal, Y. BatchBALD: Efficient and Diverse Batch Acquisition for Deep Bayesian Active Learning. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Vancouver, BC, Canada, 8–14 December 2019; Volume 32, pp. 7024–7035. [Google Scholar]
  19. Yoo, D.; Kweon, I. Learning Loss for Active Learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, 16–20 June 2019; pp. 93–102. [Google Scholar] [CrossRef] [Scilit]
  20. Abràmoff, M.D.; Lavin, P.T.; Birch, M.; Shah, N.; Folk, J.C. Pivotal trial of an autonomous AI-based diagnostic system for detection of diabetic retinopathy in primary care offices. npj Digit. Med. 2018, 1, 39. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  21. Heydon, P.; Egan, C.; Bolter, L.; Chambers, R.; Anderson, J.; Aldington, S.; Stratton, I.M.; Scanlon, P.H.; Webster, L.; Mann, S.; et al. Prospective evaluation of an artificial intelligence-enabled algorithm for automated diabetic retinopathy screening of 30 000 patients. Br. J. Ophthalmol. 2021, 105, 723–728. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  22. Paul, S.K.; Pan, I.; Sobol, W.M. Efficient labeling of retinal fundus photographs using deep active learning. J. Med. Imaging 2022, 9, 064001. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  23. Ma, S.; Du, H.; Curran, K.M.; Lawlor, A.; Dong, R. Adaptive Curriculum Query Strategy for Active Learning in Medical Image Classification. In Proceedings of the Medical Image Computing and Computer Assisted Intervention—MICCAI 2024; Lecture Notes in Computer Science; Springer: Cham, Switzerland, 2024; Volume 15011, pp. 48–57. [Google Scholar] [CrossRef] [Scilit]
  24. Jocher, G.; Chaurasia, A.; Qiu, J. YOLOv8 by Ultralytics. Software, AGPL-3.0 License. 2023. Available online: https://github.com/ultralytics/ultralytics (accessed on 25 June 2026).
  25. Gal, Y.; Ghahramani, Z. Dropout as a Bayesian Approximation: Representing Model Uncertainty in Deep Learning. In Proceedings of the 33rd International Conference on Machine Learning, New York, NY, USA, 20–22 June 2016; Volume 48, pp. 1050–1059. [Google Scholar]
  26. Kendall, A.; Gal, Y. What Uncertainties Do We Need in Bayesian Deep Learning for Computer Vision? In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Long Beach, CA, USA, 4–9 December 2017; Volume 30, pp. 5574–5584. [Google Scholar]
  27. Gulshan, V.; Peng, L.; Coram, M.; Stumpe, M.C.; Wu, D.; Narayanaswamy, A.; Venugopalan, S.; Widner, K.; Madams, T.; Cuadros, J.; et al. Development and Validation of a Deep Learning Algorithm for Detection of Diabetic Retinopathy in Retinal Fundus Photographs. JAMA 2016, 316, 2402–2410. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  28. Ting, D.S.W.; Cheung, C.Y.L.; Lim, G.; Tan, G.S.W.; Quang, N.D.; Gan, A.; Hamzah, H.; Garcia-Franco, R.; Yeo, I.Y.S.; Lee, S.Y.; et al. Development and Validation of a Deep Learning System for Diabetic Retinopathy and Related Eye Diseases Using Retinal Images from Multiethnic Populations with Diabetes. JAMA 2017, 318, 2211–2223. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  29. Bellemo, V.; Lim, Z.W.; Lim, G.; Nguyen, Q.D.; Xie, Y.; Yip, M.Y.T.; Hamzah, H.; Ho, J.; Lee, X.Q.; Hsu, W.; et al. Artificial intelligence using deep learning to screen for referable and vision-threatening diabetic retinopathy in Africa: A clinical validation study. Lancet Digit. Health 2019, 1, e35–e44. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  30. Gulshan, V.; Rajan, R.P.; Widner, K.; Wu, D.; Wubbels, P.; Rhodes, T.; Whitehouse, K.; Coram, M.; Corrado, G.; Ramasamy, K.; et al. Performance of a Deep-Learning Algorithm vs Manual Grading for Detecting Diabetic Retinopathy in India. JAMA Ophthalmol. 2019, 137, 987–993. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  31. Krause, J.; Gulshan, V.; Rahimy, E.; Karth, P.; Widner, K.; Corrado, G.S.; Peng, L.; Webster, D.R. Grader Variability and the Importance of Reference Standards for Evaluating Machine Learning Models for Diabetic Retinopathy. Ophthalmology 2018, 125, 1264–1272. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  32. Decencière, E.; Zhang, X.; Cazuguel, G.; Laÿ, B.; Cochener, B.; Trone, C.; Gain, P.; Ordonez, R.; Massin, P.; Erginay, A.; et al. Feedback on a publicly distributed image database: The Messidor database. Image Anal. Stereol. 2014, 33, 231–234. [Google Scholar] [CrossRef] [Scilit]
  33. Porwal, P.; Pachade, S.; Kokare, M.; Deshmukh, G.; Son, J.; Bae, W.; Liu, L.; Wang, J.; Liu, X.; Gao, L.; et al. IDRiD: Diabetic Retinopathy—Segmentation and Grading Challenge. Med. Image Anal. 2020, 59, 101561. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  34. Li, T.; Gao, Y.; Wang, K.; Guo, S.; Liu, H.; Kang, H. Diagnostic assessment of deep learning algorithms for diabetic retinopathy screening. Inf. Sci. 2019, 501, 511–522. [Google Scholar] [CrossRef] [Scilit]
  35. Houlsby, N.; Huszár, F.; Ghahramani, Z.; Lengyel, M. Bayesian Active Learning for Classification and Preference Learning. arXiv 2011, arXiv:1112.5745. [Google Scholar]
  36. Gaillochet, M.; Desrosiers, C.; Lombaert, H. Active learning for medical image segmentation with stochastic batches. Med. Image Anal. 2023, 90, 102958. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  37. Yuan, T.; Wan, F.; Fu, M.; Liu, J.; Xu, S.; Ji, X.; Ye, Q. Multiple Instance Active Learning for Object Detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Nashville, TN, USA, 20–25 June 2021; pp. 5330–5339. [Google Scholar] [CrossRef] [Scilit]
  38. Yu, W.; Zhu, S.; Yang, T.; Chen, C. Consistency-based Active Learning for Object Detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Workshops, New Orleans, LA, USA, 19–20 June 2022. [Google Scholar]
  39. Lakshminarayanan, B.; Pritzel, A.; Blundell, C. Simple and Scalable Predictive Uncertainty Estimation using Deep Ensembles. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Long Beach, CA, USA, 4–9 December 2017; Volume 30, pp. 6402–6413. [Google Scholar]
  40. Lewis, D.D.; Gale, W.A. A Sequential Algorithm for Training Text Classifiers. In SIGIR ’94; Springer: London, UK, 1994; pp. 3–12. [Google Scholar]
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Article Metrics

Citations

Article Access Statistics

Multiple requests from the same IP address are counted as one view.