Short answer. These are two separate decisions that get bundled together. Active learning decides which unlabelled items to send for annotation; pre-labelling decides what the annotator sees when the item arrives. The evidence on pre-labelling is genuinely positive — a clinical NER study measured time savings of 13.85–21.5% per entity with no statistically significant difference in agreement or annotator performance — but with one crucial caveat: errors surviving a pre-annotation workflow are systematic where human-only errors are random, and agreement scores can overstate quality precisely because every annotator saw the same suggestion.
Why separate selection from pre-labelling?
Because they fail in opposite directions. One skews which examples exist in your dataset; the other skews what the labels on those examples say.
Active learning rests on a simple principle: models can reach high accuracy with fewer labelled samples if you strategically select the most informative points to train on. Rather than annotating random documents to build a comprehensive corpus, the learner nominates the instances expected to benefit it most — commonly through uncertainty sampling, which measures learner confidence on unlabelled instances and queries the least confident.
Pre-labelling is a different intervention entirely. A trained model runs inference first, and the annotator receives a populated screen to accept, correct or reject. The two combine well, but they need to be evaluated separately: an active-learning strategy that over-samples one region of the feature space produces a training set that is not representative of the underlying distribution, while a pre-label that is subtly wrong produces a label the annotator never independently considered. Neither problem shows up in the other's metrics.
When do pre-labels genuinely help?
On high-volume, well-specified tasks where a competent model already exists — and the measured gains are real.
The strongest evidence comes from a JAMIA study that built a gold standard from 1,400 randomly selected clinical trial announcements, double-annotated for diagnoses, signs, symptoms and clinical codes, with pre-annotation drawn from dictionary-based methods and tested using F-measures, ANOVA and Bonferroni correction.
A second study reached a compatible conclusion on a harder task. Analysing dependency syntax annotation — mid-level complexity, pre-annotated with a high-accuracy parser — researchers found pre-annotation to be an efficient tool for faster manual annotation that increased the consistency of the resulting annotation without reducing its quality. Earlier Penn Treebank work pointed the same way, with the semi-automatic approach delivering both a significant reduction in annotation time and increased inter-annotator agreement and accuracy.
So the efficiency case is well supported. The nuance is in what "quality" was measured with.
When do they bias the data?
When the model is confidently wrong in a consistent way, and when you use agreement alone to check.
PRE-LABELS HELP WHEN PRE-LABELS BIAS WHEN
The task is well specified and the label set stable
The model is systematically wrong on a subgroup
A competent model or dictionary already exists
The task is subjective — sentiment, toxicity, preference
The work is high-volume and repetitive
Omissions matter: a missing span is invisible
Errors are visible — a wrong span is obvious on screen
Every annotator sees the same suggestion
Annotators are trained to reject, not just accept
Quality is judged by agreement alone The model does the typing.
Pre-annotation errors are systematic; human-only errors are random. Systematic errors survive averaging.
13.85–21.5% time saved per entity, with agreement between 93.4% and 95.5%.
Two findings deserve to be read together. First, the measurement problem: studies inferring high quality from pre-annotation often measure it with inter-rater agreement, which may overestimate quality when multiple annotators are influenced by the same pre-annotations. Two annotators agreeing because they both accepted the same model suggestion is not independent corroboration. Second, the error-shape problem: errors arising from pre-annotation workflows follow a more systematic pattern, whereas errors from human-only annotation tend to be more random — and random error washes out in aggregate while systematic error propagates straight into the model.
The cognitive mechanism is documented too. Human-in-the-loop review is not a neutral filter; it introduces additional biases because annotators carry cognitive biases of their own. Research simulating behavioural biases — including anchoring — within an active-learning loop on a real pancreatic cancer dataset found classification performance deteriorated significantly when human decisions were influenced by those biases, relative to an unbiased reference case. Anchoring is precisely what a populated screen invites.
How should you choose what to annotate next?
Deliberately, and with a check that your selected set still resembles the world.
Selection strategies, and what each one costs you STRATEGY HOW IT SELECTS THE RISK IT CARRIES VERDICT RANDOM SAMPLING Uniformly from the pool Inefficient — spends budget on examples the model already handles Your baseline and your control set UNCERTAINTY SAMPLING Lowest model confidence; points near the decision boundary Over- or under-samples regions, producing an unrepresentative training set Efficient, but watch coverage DIVERSITY / GRADIENT-BASED Batch selection balancing informativeness with spread across the space More computation; still no guarantee of subgroup coverage Better for batch labelling HYBRID + SEMISUPERVISED Active queries plus unlabelled data folded back into learning Added pipeline complexity Demonstrated to reduce sampling-bias effects Evidence is not one-sided: an empirical study found active set selection using posterior entropy from deep models robust to sampling biases and to query size and strategy choices, contrary to earlier literature. Test on your own data rather than assuming either result.
The compounding risk is worth naming plainly. Active acquisition assumes the labels it collects are sound, but many active-learning applications rely on human-generated labels that are highly bias-prone — and research into active data acquisition under label bias documents several patterns in which more data leads models astray rather than improving them. Volume does not correct a biased selection rule; it entrenches it.
One more caution specific to multilingual programmes: a model used for pre-labelling almost always performs worse in lower-resource languages, so the same workflow that saves 20% of the time in English can quietly anchor annotators to poor suggestions elsewhere. Per-language model evaluation before enabling pre-labels, and native-speaker review of the accepted labels, are exactly the human-in-the-loop discipline Lifewood applies across 50+ languages and dialects.
Evaluate the pre-label model before you trust it. Measure its error profile by class and subgroup — a model that is 92% accurate overall can be 40% accurate on the cases that matter.
Hold out a blind control set. Have a portion annotated from scratch, without suggestions, and compare. It is the only way to detect anchoring.
Do not judge pre-labelled data by agreement alone. Shared suggestions inflate agreement; pair it with accuracy against an independently annotated reference.
Track the accept rate as a warning signal. An acceptance rate near 100% means annotators have stopped reviewing.
Keep random sampling in the mix. A random slice alongside the active queries preserves a representative view and gives you an unbiased evaluation set.
Audit coverage, not just accuracy. Check that the selected set still spans your subgroups, languages and rare classes after each acquisition round.
Turn pre-labels off for subjective tasks. Sentiment, toxicity and preference judgements are where anchoring does the most damage and shows the least.
Evaluate the pre-label model per language. Enable suggestions only where the model has earned them.
Key takeaways
- Active learning selects which data to annotate; pre-labelling shapes what the annotator sees. Evaluate them separately.
- Pre-annotation saved 13.85–21.5% of annotation time per entity in a 1,400-document clinical NER study, with IAA of 93.4– 95.5% and no statistically significant difference in agreement or performance.
- On dependency syntax annotation, pre-annotation increased consistency without reducing quality; Penn Treebank work found similar gains in time, agreement and accuracy.
- The caveat: agreement may overestimate quality when every annotator sees the same suggestion.
- Pre-annotation errors are systematic while human-only errors are random — and systematic error survives aggregation.
- Simulated anchoring and related biases in an active-learning loop significantly degraded model accuracy versus an unbiased reference.
- Uncertainty sampling can over- or under-sample regions, producing unrepresentative training sets; semi-supervised methods have been shown to reduce this.
- Evidence is mixed: posterior-entropy selection with deep models proved robust to sampling bias in one large empirical study, so test on your own data.
Sources and further reading
- Lingren et al., "Evaluating the impact of pre-annotation on annotation speed and potential bias: NLP gold standard development for clinical named entity recognition in clinical trial announcements", JAMIA 21(3), 2014 — 1,400 double-annotated announcements; time savings 13.85–21.5% per entity; IAA 93.4–95.5%; no statistically significant bias effect
- Mikulová, Straka, Štěpánek, Štěpánková & Hajič, "Quality and Efficiency of Manual Annotation: Pre-annotation Bias", LREC 2022 / arXiv:2306.09307 — on faster dependency-syntax annotation with increased consistency and no quality loss, and the Penn Treebank comparison
- "Bias in the Loop: How Humans Evaluate AI-Generated Suggestions", arXiv:2509.08514 — on IAA potentially overestimating quality under shared preannotations, and on pre-annotation errors being systematic where human-only errors are random (citing Fort & Sagot, 2010)
- Agarwal et al., "Impacts of Behavioral Biases on Active Learning Strategies" — simulation of anchoring, gambler's fallacy and regret-aversion within an active-learning loop on a pancreatic cancer dataset; significant performance deterioration versus an unbiased reference
- Hughes, Bull, Gardner, Dervilis & Worden, "Mitigating sampling bias in risk-based active learning via an EM algorithm", arXiv:2206.12598 — on active learning over- or under-sampling feature-space regions and semi-supervised learning reducing the effect
- Prabhu, Dognin & Singh, "Sampling Bias in Deep Active Classification: An Empirical Study", EMNLP-IJCNLP 2019 — posterior-entropy active selection found robust to sampling bias across query sizes and strategies
- "More Data Can Lead Us Astray: Active Data Acquisition in the Presence of Label Bias", arXiv:2207.07723 — on label bias in active data collection and the patterns in which additional data degrades outcomes
- "Blind Spots and Biases: Exploring the Role of Annotator Cognitive Biases in NLP", arXiv:2404.19071 — on human-in-the-loop validation of prelabelled data introducing additional cognitive biases
- "A drop-out mechanism for active learning based on one-attribute heuristics", Frontiers in Artificial Intelligence (2025) — on annotators relying on fast-and-frugal single-attribute heuristics and the resulting systematic label bias in active learners. frontiersin.org/journals/artificial-intelligence/articles/10.3389/frai.2025.1562916/full "Deep Active Learning with Manifold-preserving Trajectory Sampling", arXiv:2410.15605 — on uncertainty, decision-boundary, influence-based and gradient-based (BADGE) selection criteria
- Lifewood, AI data and annotation services