ConceptioArchivearXiv CS
arXiv CSopen access

DiZiNER: Disagreement-guided Instruction Refinement via Pilot Annotation Simulation for Zero-shot Named Entity Recognition

2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
neural-networks
machine learning, deep learning, neural networks

DiZiNER: Disagreement-guided Instruction Refinement via Pilot Annotation Simulation for Zero-shot Named Entity Recognition Siun Kim* Seltasquare Seoul, Korea [email protected]

Hyung-Jin Yoon Seoul National University College of Medicine Seoul, Korea [email protected]

Abstract

arXiv:2604.15866v1 [cs.CL] 17 Apr 2026

Large language models (LLMs) have advanced information extraction (IE) by enabling zeroshot and few-shot named entity recognition (NER), yet their generative outputs still show persistent and systematic errors. Despite progress through instruction fine-tuning, zeroshot NER still lags far behind supervised systems. These recurring errors mirror inconsistencies observed in early-stage human annotation processes that resolve disagreements through pilot annotation. Motivated by this analogy, we introduce DiZiNER (Disagreementguided Instruction Refinement via Pilot Annotation Simulation for Zero-shot Named Entity Recognition), a framework that simulates the pilot annotation process, employing LLMs to act as both annotators and supervisors. Multiple heterogeneous LLMs annotate shared texts, and a supervisor model analyzes intermodel disagreements to refine task instructions. Across 18 benchmarks, DiZiNER achieves zero-shot SOTA results on 14 datasets, improving prior bests by +8.0 F1 and reducing the zero-shot to supervised gap by over +11 points. It also consistently outperforms its supervisor, GPT-5 mini, indicating that improvements stem from disagreement-guided instruction refinement rather than model capacity. Pairwise agreement between models shows a strong correlation with NER performance, further supporting this finding.1

1

Introduction

Information extraction (IE) converts unstructured text into structured data, with named entity recognition (NER) serving as the entry point that identifies and categorizes entity spans. Recent advances in large language models (LLMs) have greatly expanded the potential of IE (Lu et al., 2022; Bog* This work was primarily conducted at the Biomedical

Research Institute, Seoul National University Hospital. 1 The code and prompts are available at https://github. com/SiunKim/diziner-ner/.

danov et al., 2024), enabling in-context learning (ICL) strategies for NER such as few-shot (Chen et al., 2023; Jiang et al., 2024) and zero-shot learning (Xie et al., 2023a; Sainz et al., 2023). Despite this progress, state-of-the-art (SOTA) models still depend heavily on human-labeled data, with a wide performance gap remaining between supervised fine-tuning (SFT) and ICL (Xie et al., 2023a; Naguib et al., 2024). LLMs exhibit recurring NER error patterns, including difficulty following complex guidelines (Pang et al., 2023; Sainz et al., 2023; Qi et al., 2024), ambiguity in span boundary detection (Guo et al., 2024a; Ding et al., 2024), and frequent confusion of entity types (Li et al., 2024a; Kim et al., 2024). Prior efforts have addressed these issues through instruction fine-tuning on diverse datasets (Wang et al., 2023a), open NER frameworks (Sainz et al., 2023), and large-scale synthetic data generation (Zhou et al., 2023). Yet, supervised methods still outperform them by a considerable margin (Table 2). In this context, we note that these LLM errors parallel those observed during the early stages of human annotation (Tanabe et al., 2005; BernierColborne and Vajjala, 2024). Gold-standard datasets are typically built through pilot annotation, an iterative process of resolving annotator disagreements and refining guidelines (Walker et al., 2006; Weischedel et al., 2011; Finlayson and Erjavec, 2017). Supervisors analyze disagreements, update ambiguous instructions, and align the annotations with downstream application needs (Fort et al., 2009, Figure 1). Building on this analogy, we propose DiZiNER (Disagreement-guided Instruction Refinement via Pilot Annotation Simulation for Zero-shot Named Entity Recognition), a framework that simulates pilot annotation using LLMs as both annotators and supervisors. Multiple heterogeneous open-source LLMs act as annotators labeling shared texts, and

a supervisor LLM analyzes and categorizes intermodel disagreements to refine both common and model-specific instructions. This iterative cycle of annotation, disagreement analysis, and instruction refinement parallels the workflow of human pilot annotation, allowing LLMs to adapt to individual NER tasks without any parameter updates. Across 18 NER benchmarks, DiZiNER achieves zero-shot SOTA results on 14 datasets, improving prior bests by +8.0 F1 on average and narrowing the gap between zero-shot and supervised performance from -32.0 to -20.9 points. Agreement metrics between LLM annotators consistently increase across iterations and show a strong correlation with NER performance. Notably, DiZiNER surpasses its GPT-5 mini supervisor, indicating that the observed improvements arise from disagreement-guided refinement rather than from the supervisor’s inherent capability.

2

Related Works

Instruction tuning for NER Standard instruction fine-tuning often struggles to follow complex annotation guidelines and to produce structured outputs in IE tasks (Qi et al., 2024). InstructUIE and GoLLIE address these challenges by curating NER datasets for instruction fine-tuning, thereby improving zero-shot performance and guideline adherence (Wang et al., 2023b; Sainz et al., 2023). Open NER frameworks relax label constraints, allowing LLMs to better exploit their language understanding capabilities for NER (Etzioni et al., 2011). UniversalNER distills ChatGPT on synthetic data (Zhou et al., 2023), while GLiNER and NuNER adopt encoder-only architectures to reduce inference costs (Zaratiana et al., 2023; Bogdanov et al., 2024). Recent work has sought to unify heterogeneous corpora and to address span ambiguity through boundary-aware learning (Yang et al., 2024; Ding et al., 2024; Guo et al., 2024a). Despite these advances, the performance gap with supervised systems remains large, and reliance on finetuning limits rapid adaptation to evolving LLMs. Generative NER without instruction tuning In parallel, researchers have explored leveraging LLMs’ inherent instruction-following capabilities to perform generative NER without requiring additional instruction fine-tuning. Early work constrained outputs via code-like schema representations (Li et al., 2023; Sainz et al., 2023; Guo et al., 2024b; Li et al., 2024b) or reformulated tagging as

token generation (Wang et al., 2023a). Subsequent approaches introduced reasoning-based prompting such as self-consistency and self-verification methods to better convey complex annotation instructions (Xie et al., 2023a; Kim et al., 2024; Pang et al., 2023). Building on the success of self-consistency and ICL, recent methods for generative NER adopt iterative self-improving strategies by generating pseudo-examples, filtering them, and providing them as in-context demonstrations (Xie et al., 2023b; Tong et al., 2025). Our work follows this iterative, fine-tuning-free line of research yet distinctly utilizes inter-model disagreement as a signal for improving NER performance, paralleling how human annotators refine guidelines and reconcile judgments during gold-standard dataset construction.

3

DiZiNER

The DiZiNER framework operates through iterative pilot annotation cycles consisting of three stages: (1) Independent Cross-Annotation, where multiple LLM annotators independently perform NER tagging on the same set of documents; (2) Disagreement Analysis, which identifies hotspot spans with high annotation disagreement, categorizes and summarizes disagreement patterns into structured reports; and (3) Instruction Refinement, where a supervisor model leverages the resulting structured reports to refine task instructions and reduces inter-model disagreement across iterations. 3.1

Task Formulation

LLM annotators form a heterogeneous pool M = {Mk }K k=1 composed of independently developed models to minimize correlated errors. The label set is L = {ℓi }ni=1 , and the NER schema is  Σ = (ℓ, dℓ , Pℓ , Nℓ ) ℓ∈L , where dℓ is a definition for entity type ℓ, and Pℓ , Nℓ are positive and negative examples. The schema Σ remains fixed across iterations to maintain task consistency and prevent task drift. At iteration t, annotator Mk receives a task configuration  (t) (t) Θk = Σ, C (t) , Rk , G(t) , (t)

where C (t) are common instructions, Rk are model-specific instructions, and G(t) is the final

Human Pilot Annotation Process 1. Preparation

2. Instruction refinement via iterative pilot annotations

Define NER task & goal

Pilot annotation

• Define task, entity types, • document pool • Specify downstream applications • Draft guideline

• Representative sample documents • Independent labeling under initial schema & instruction

Instruction refinement

Guideline finalization • Repeat until sufficient interannotator agreement

Large-scale annotation

• Summarize disagreement patterns • Supervisor resolve disagreements • Update instruction aligned with final task goal

Recruit qualitied, multiple annotators

3. Gold dataset construction

• Drop annotator with persistent disagreements

DiZiNER (Disagreement-guided Instruction refinement for Zero-shot NER via Pilot Annotation Simulation) 1. Preparation Initialize NER schema & goal

2. Instruction refinement via pilot annotation simulation Pilot annotation simulation • Independent LLM annotation • Use initial schema & instructions

Disagreement analysis & documentation

Prepare diverse LLM annotators

by supervisor models Sample

Independent LLM annotators NER labeling • Phase 1: Pattern analysisdocs from disagreement

Disagreement analysis document

• Quantify disagreement • Categorize disagree types • Identify conflict samples

Instruction refinement by supervisor models

3. Final evaluation Select best models by agreement scores Refine instruction across iteration & Drop lowest-reliability model (optional)

• Phase 1: Pattern analysis from disagreement docs • Phase 2: Model-specific error analysis vs. major voting • Phase 3: Instruction generation (common + model-specific) • Phase 4: Guideline organization & final task goal update

Figure 1: Overview of the DiZiNER framework. Multiple heterogeneous LLMs act as independent annotators. Disagreement profiles are constructed from their outputs, and a supervisor LLM iteratively refines the schema and annotator-specific instructions until convergence.

task goal. Given an input sentence x, the annotator predicts (t)  y ∼ PMk y x, Θk , with labeled outputs y = {(ej , ℓej )}, where ej is an entity span and ℓej ∈ L denotes its label. 3.2

Independent Cross-Annotation

At each iteration, documents are grouped by lexical diversity, and a representative subset is randomly sampled across groups to form the iteration document set D(t) . All annotators in M independently label each sample in the set according to (t) their task configuration Θk . To enable token-level comparison across models, span-level annotations are converted into a BIO sequence representation. For input x = (w1 , . . . , wm ), the tag set is defined as T = {B−ℓ, I−ℓ, O | ℓ ∈ L}. The conversion yields a BIO sequence zk (x) = (zk,1 (x), . . . , zk,m (x)),

zk,i (x) ∈ T ,

representing the token-level tagging output derived from the span-level annotation y of annotator Mk .

3.3

Disagreement Analysis

This stage identifies hotspot spans that exhibit strong inter-model disagreement. Token-level inconsistencies across annotators are quantified to mark high-disagreement regions. Model Weights and Consensus Model weights are computed from pairwise strict span F1 scores between annotators, where for models Mi and Mj , F1ij =

2 |Si ∩ Sj | , |Si | + |Sj |

where Sk denotes the set of predicted entity spans from model Mk . Each model’s weight, wk , is computed as the average of its pairwise F1 scores with all others, normalized so that the weights sum to one. The elite set is defined as the subset of annotators with the highest weights whose cumulative weight first reaches 0.5 when sorted in descending order. The computed model weights are also used as each annotator’s agreement score in subsequent analyses. The consensus label for token i in sentence x is obtained via weighted majority voting, τb(x, i) = arg max pτ (x, i), τ ∈T

P where pτ (x, i) = k wk 1[zk,i (x) = τ ] represents the weighted token-wise probability for tag τ .

1. Disagreement pattern analysis. Identify recurring disagreement patterns in hotspot summaries and infer their underlying causes. Extract generalizable correction principles rather than case-specific fixes (Table 5).

Hotspot Span Identification We compute three complementary token-level measures capturing distinct forms of annotation disagreement. (1) Label conflict quantifies dispersion among BIO tags, X Dconf (x, i) = 1 − pτ (x, i)2 .

2. Model-specific diagnosis. Examine residual errors for each non-elite model using the consensus output τb(x, i), excluding patterns already addressed in Phase 1. Identify modelspecific weaknesses and formulate targeted adjustments (Table 6).

τ ∈T

(2) Type confusion reflects disagreement over entity types, Dtype (x, i) = 1−

3. Guideline integration and conflict resolution. Integrate the refined instructions from the current supervision cycle with those from previous iterations, resolving any conflicts based on the final task goal, which aims to maximize performance in downstream applications (Table 7).

X  pB−ℓ (x, i) + pI−ℓ (x, i) 2 ℓ∈L

1 − pO (x, i)

(3) Boundary uncertainty measures inconsistency at entity boundaries, X X qs (x, i) = pB−ℓ (x, i), qi (x, i) = pI−ℓ (x, i). ℓ∈L

4. Hierarchical organization. Reorganize refined instructions into a hierarchical structure where general rules precede specific or conditional cases. This restructuring enhances clarity and readability (Table 8).

ℓ∈L

n Ubnd (x, i) = max 4qs (x, i)(1 − qs (x, i)), o 4qi (x, i)(1 − qi (x, i)) . The final token-level disagreement score is defined as U⋆ (x, i) = max{Dconf , Dtype , Ubnd }. Tokens are ranked by their U⋆ (x, i) scores, and the top 20% are identified as high-disagreement regions. Neighboring tokens in this range are merged into hotspot spans, which are subsequently flagged for supervisor review and used for refining instructions. Documentation Each iteration produces a summary report detailing hotspot statistics and model differences between elite and non-elite groups, outlining disagreement types and error categories (O→Ent, Ent→O, Ent→Ent, Span Error). Representative examples with brief reasoning traces demonstrate characteristic disagreement patterns that inform targeted instruction refinement. 3.4

Instruction Refinement

The supervisor model iteratively refines task instructions based on disagreement documents and instructions from the previous iteration to improve annotator agreement. Each cycle proceeds through four phases:

A small set of tuning parameters was introduced to regulate the stability of iterative updates, and three parameter configurations were explored to ensure consistency across heterogeneous benchmarks (see Appendix A). For supervised ablations, the same procedure is executed with gold-standard labels replacing the consensus outputs. 3.5 Identification of Best Model Configuration DiZiNER selects the optimal iteration–model configuration, defined as the combination of a specific refinement iteration and an individual annotator model, in the absence of human-labeled data. We observe that pairwise annotator agreement, measured by strict span-level F1, is strongly correlated with NER performance (Figure 2), and thus use agreement statistics to guide configuration selection. Accordingly, all available iteration–model pairs are ranked by their mean agreement, and we report the average performance of the top three candidates on the test set.

4

Experiments

4.1

Settings

Datasets We evaluate our framework on a total of 18 NER datasets spanning diverse domains, in-

Methods

AI

Literature

Music

Politics

Science

Average

ChatGPT (Zhou et al., 2023) GPT-4 (Yang et al., 2024) InstructUIE (Wang et al., 2023b) UniNER-7B (Zhou et al., 2023) UniNER-13B (Zhou et al., 2023) GLiNER (Zaratiana et al., 2023) GoLLIE (Sainz et al., 2023) KnowCoder-7B (Li et al., 2024b) IRRA (Xie et al., 2024) GNER (Ding et al., 2024) B2NER (Yang et al., 2024)

52.4 50.0 49.0 53.6 54.2 57.2 61.6 60.3 57.5 68.2 64.7

39.8 55.2 47.2 59.3 60.9 64.4 62.7 61.1 59.3 68.7 71.6

66.6 59.2 53.2 67.0 64.5 69.6 68.4 70.0 69.4 81.2 82.4

68.5 63.4 48.1 60.9 61.4 72.6 60.2 72.2 74.0 75.1 78.2

67.0 63.2 49.2 61.1 63.5 62.6 56.3 59.1 68.3 76.7 79.4

58.9 58.2 49.3 60.4 60.9 65.3 61.8 64.5 65.7 74.0 75.3

GPT-5 mini (supervisor model)

64.3

67.6

73.3

72.8

68.4

69.3

DiZiNER Avg. Gain from Iteration 0

71.1 +2.7

72.7 +3.6

80.6 +11.1

79.4 +2.2

74.8 +4.5

75.7 +4.8

∆DiZiNER - GPT-5 mini ∆DiZiNER - Best Prior Zero-shot

+6.8 +2.9

+5.1 +1.1

+7.3 -1.8

+6.6 +1.2

+6.4 -4.6

+6.4 -0.2

Table 1: Zero-shot NER performance on the CrossNER dataset. Best scores per domain are shown in bold, and second-best scores are underlined. Avg. Gain from Iteration 0 denotes the mean improvement across eight annotator models, computed as the mean difference between each model’s Iteration-0 score and its best-performing iteration within the iterative document set.

cluding the CrossNER suite (AI, Literature, Music, Politics, and Science; Liu et al., 2021), generalpurpose corpora such as CoNLL2003 (Sang and De Meulder, 2003), ACE2005 (Walker et al., 2006), OntoNotes (Pradhan et al., 2013), and MultiNERD (Tedeschi and Navigli, 2022); biomedical corpora including AnatEM (Pyysalo and Ananiadou, 2014), BC2GM (Smith et al., 2008), BC4CHEMD (Wang et al., 2019), BC5CDR (Li et al., 2016), and GENIA (Kim et al., 2003); a STEM-oriented corpus FabNER (Kumar and Starly, 2022); and social or conversational datasets such as BroadTwitter (Derczynski et al., 2016), MIT-Movie, and MITRestaurant (Liu et al., 2013). To simulate pilot annotation, we use the training splits to refine task instructions, while the final performance was evaluated on the corresponding test sets (Table 4). Baselines We compare DiZiNER against representative baselines under both zero-shot and supervised settings. The zero-shot setting excludes models that rely on task-specific fine-tuning or retrievalbased ICL, namely ChatGPT (Zhou et al., 2023), GPT-4 (Yang et al., 2024), InstructUIE (Wang et al., 2023b), UniNER-7B/13B (Zhou et al., 2023), GLiNER (Zaratiana et al., 2023), GoLLIE (Sainz et al., 2023), KnowCoder-7B (Li et al., 2024b),

GNER (Ding et al., 2024), B2NER (Yang et al., 2024), IRRA (Xie et al., 2024), EvoPrompt (Tong et al., 2025), and GPT-5 mini. For the supervised setting, we include SFT models trained on gold annotations, including BERT-base and InstructUIE (Wang et al., 2023b), UniNER, GLiNER, KnowCoder-7B, GNER, and B2NER. Ensemble Baselines To decouple the benefits of iterative refinement from potential ensemble effects, we compare DiZiNER against four consensus aggregation methods applied to the backbone models’ initial outputs (Iteration 0). We include Majority Voting (MV), Dawid-Skene (DS) (Dawid and Skene, 1979), GLAD (Whitehill et al., 2009), and MACE (Hovy et al., 2013). These baselines represent static "wisdom of the crowd" benchmarks, allowing us to isolate performance gains specifically attributable to our disagreement-guided instruction refinement process. Backbones and Implementation DiZiNER employs a heterogeneous pool of eight opensource LLMs that were independently developed by different organizations, have distinct training architectures, datasets, and optimization pipelines, and are accessed

via OpenRouter2 : mistral-small3.2:24b, gpt-oss:20b, phi4:14b, qwen3:14b, gemma3:12b, deepseek-r1:8b, llama3.1:8b, nemotron-nano:8b. This diversity promotes independent judgment among annotators and minimizes correlated errors. The supervisor model was GPT-5-mini-2025-08-07, accessed via the OpenAI API between August 7 and September 30, 2025. To ensure reproducibility and minimize variability from API-side updates, we utilized specific model snapshots (e.g., llama-3.1-8b-instruct) and a strictly deterministic decoding configuration: temperature 0.0, top-p 1.0, repetition penalty 1.0, and frequency/presence penalties 0.0, with a maximum output length of 8,000 tokens. Each iteration processes a document set of 25 samples, with up to five refinement cycles. Three parameter configurations are explored to ensure consistent application across heterogeneous benchmarks (Table 3). Metrics We report the entity-level micro-F1 under the strict span setting as our evaluation metric, requiring both entity boundary and type to be correctly predicted. 4.2

Main Results

Without any instruction fine-tuning, DiZiNER establishes new zero-shot SOTA results on 14 out of 18 benchmarks (Tables 1 and 2). On CrossNER, DiZiNER achieves SOTA performance in three of the five domains, excluding Music and Science, with an average F1 of 75.7, outperforming B2NER (Yang et al., 2024) by +0.4 F1 points. In addition, compared with its GPT-5 mini supervisor, DiZiNER yields an average improvement of +6.4 F1 (Table 1). Across benchmarks with available supervised results, DiZiNER improves the average zero-shot performance by +11.1 F1 points over the best prior zero-shot and narrows the gap between zero-shot and supervised performance from -32.0 to -20.9 F1 (Table 2). DiZiNER surpasses its GPT-5 mini supervisor by an average of +5.0 F1 points, demonstrating that the observed improvements arise from disagreement-guided refinement rather than the supervisor’s intrinsic capability. DiZiNER averages 69.6 on CrossNER AI and Literature, outperforming the four static ensemble 2

https://openrouter.ai

aggregators (Table 9). While these ensembles, including Majority Voting (66.6), already surpass prior zero-shot SOTA, DiZiNER consistently exceeds the strongest method, MACE (67.0). This confirms that iterative refinement is essential for driving performance gains beyond the reach of static consensus alone. In practice, NER performance on the iteration document sets consistently improved across iterations. When averaged over the eight annotator models, performance increased from Iteration 0 to each model’s best-performing iteration by as much as +25 F1 on several benchmarks, with an overall average gain of +14.9 F1 (Table 2) and +4.8 F1 on CrossNER (Table 1). Individual LLM annotators’ performance generally improves through refinement, a trend closely tracked by inter-model agreement. While performance typically peaks at 2.7 iterations on average, trajectories vary significantly across benchmarks (Figure 3). Early peaks (e.g., MIT-Movie) can decline due to overcorrection from the fixed 20% threshold, while complex or high-density tasks like OntoNotes 5.0 and Broad Twitter exhibit more gradual or volatile patterns. Notably, despite these diverse trajectories, intermodel agreement remains a consistently reliable proxy for NER performance. This reliability is substantiated by strong F1-agreement correlations, reaching ρ = 0.922 for CrossNER-Politics and 0.886 for OntoNotes 5.0 (Figure 2). This relationship validates model consensus as a robust, labelfree indicator of task quality, supporting the effectiveness of the DiZiNER framework. Sensitivity analysis across five seeds confirms the framework’s robustness to stochasticity in both token sampling and refinement pathways, yielding low standard deviations of 0.8% and 2.1% for CrossNER-AI and Literature, respectively. Furthermore, while precise instruction crafting is beneficial for maximizing performance, evaluations across five distinct initial instructions yield mean F1 scores of 67.2% [65.7%, 69.9%] for CrossNERAI and 70.4% [69.1%, 72.7%] for Literature, confirming the framework’s stability against variations in the initial task instructions. The average cost per iteration was $1.90 for inference and $0.77 for supervision, resulting in a total of $2.67 per iteration. Considering that an average of five iterations were conducted for each benchmark and three configuration settings were explored, the total cost amounts to $40.1 per bench-

Methods

Movie

Rest.

B-Twit

ACE05

CoNLL

M-NERD

Onto

FabNER

Anat

bc2

bc4

bc5

GENIA

Avg

Zero-shot ChatGPT (Zhou et al., 2023) GoLLIE (Sainz et al., 2023) UniNER-7B (Zhou et al., 2023) GLiNER (Zaratiana et al., 2023) EvoPrompt (Tong et al., 2025)

5.3 63.0 42.4 57.2 70.9

32.8 52.7 31.7 42.9 69.3

61.8 51.4 67.9 61.2 –

26.6 – 36.9 27.3 51.2

52.5 – 72.2 64.6 81.3

58.1 77.5 59.3 59.7 –

29.7 – 27.8 32.2 –

15.3 26.3 24.8 23.6 –

30.7 – 25.1 33.3 –

40.2 – 46.2 47.9 –

35.5 – 47.9 43.1 –

52.4 – 68.0 66.4 –

41.6 – 54.1 55.5 –

37.1 – 46.5 47.3 –

GPT-5 mini (supervisor model)

73.3

58.5

59.2

54.0

81.8

74.0

63.8

29.5

59.2

73.0

63.7

62.8

56.5

62.3

DiZiNER Avg. Gain from Iteration 0 ∆DiZiNER - GPT-5 mini

76.2 +5.6 +2.9

67.3 +22.9 +8.8

76.9 +20.1 +17.7

45.0 +2.1 -9.0

86.9 +28.3 +5.1

80.6 +2.6 +6.6

62.5 +24.8 -1.3

29.5 +0.9 +0.0

59.1 +25.3 -0.1

71.0 +12.7 -2.0

79.5 +26.9 +15.8

78.9 +16.4 +16.1

60.1 +4.5 +3.6

68.4 +14.9 +5.0

Supervised BERT-base (Wang et al., 2023b) InstructUIE (Wang et al., 2023b) UniNER-7B (Zhou et al., 2023) GLiNER (Zaratiana et al., 2023) KnowCoder-7B (Li et al., 2024b) GNER (Ding et al., 2024) B2NER (Yang et al., 2024)

88.8 89.6 90.2 87.9 90.6 90.2 90.8

81.0 82.6 82.3 83.6 81.3 83.8 83.7

58.6 80.3 81.2 82.7 78.3 81.3 82.2

87.3 79.9 86.7 82.8 86.1 – 83.0

92.4 91.5 93.3 92.6 95.1 93.6 92.6

91.3 90.3 93.7 93.8 93.1 94.4 94.0

91.1 88.6 89.9 89.0 88.2 91.8 84.3

64.2 78.4 81.9 77.8 82.9 85.4 78.8

85.8 88.5 88.5 88.9 86.4 90.3 89.2

80.9 80.7 82.4 83.7 82.0 84.3 82.0

86.7 87.6 89.2 87.9 – 90.0 89.0

85.3 89.0 89.3 88.7 89.3 90.3 88.5

73.3 75.7 77.5 78.9 76.7 – 76.4

82.1 84.8 86.6 86.0 – – 85.7

∆Best prior ZS - Best prior Sup. ∆DiZiNER - Best prior ZS ∆DiZiNER - Best prior Sup.

-19.9 +5.3 -14.6

-14.5 -2.0 -16.5

-14.8 +9.0 -5.8

-36.1 -6.2 -42.3

-13.8 +5.6 -8.2

-16.9 +3.1 -13.8

-59.6 +30.3 -29.3

-59.1 +3.2 -55.9

-57.0 +25.8 -31.2

-36.4 +23.1 -13.3

-42.1 +31.6 -10.5

-22.3 +10.9 -11.4

-23.4 +4.6 -18.8

-32.0 +11.1 -20.9

Table 2: Overall NER results across 13 benchmarks. ZS denotes our zero-shot pipeline without any gold labels, and all DiZiNER results are zero-shot. Within each setting (zero-shot and supervised), the best and second-best scores are highlighted in bold and underlined, respectively. GPT-5 mini results are excluded from this comparison. Avg. Gain from Iteration 0 denotes the average improvement averaged across eight backbone models, computed as the mean difference between each model’s Iteration-0 score and its best-performing iteration within the iterative document set. Overall performance is averaged only for models with complete results across all benchmarks. Abbreviations: Movie = MIT-Movie, Rest. = MIT-Restaurant, B-Twit = BroadTwitter, ACE05 = ACE2005, CoNLL = CoNLL2003, M-NERD = MultiNERD, Onto = OntoNotes, Anat = AnatEM, bc2 = BC2GM, bc4 = BC4CHEMD, bc5 = BC5CDR.

mark. 4.3

Ablation Study

Annotator Diversity and Scaling Diverse ensembles of smaller models (≤ 24B) consistently outperform single-family pools by 1.7–3.7 F1 points despite the latter’s larger scale (Table 14). Scaling from 4 to 8 annotators improves average F1 from 73.1 to 75.5, yet performance declines beyond 12 models (73.9) due to increased consensus noise (Table 15). Consequently, we recommend employing a heterogeneous pool of 8–12 annotator models from distinct lineages to optimally balance signal diversity and consensus stability. Supervisor model capacity. Evaluation across diverse high-capacity supervisors shows consistent improvements over the GPT-5 mini baseline, though a performance gap remains compared with the prior zero-shot SOTA (Table 10). These findings suggest that while the disagreement-guided refinement is effective across various models, the supervisor’s capability remains a relevant factor in determining the final performance levels achieved by the framework. Final task goal Skipping the final task goal consistently degraded performance, leading to a sig-

nificant average F1 drop from 77.6 to 71.9 across CrossNER and CoNLL2003 (Table 11). In our framework, this component was designed to serve as a global criterion that guides instruction refinement toward the overall task objective. We speculate that when it is omitted, the refined instructions may remain locally consistent yet diverge from the benchmark’s intended direction, leading to lower F1 scores across domains. Removing the least consistent annotator The effect of excluding the most disagreement-prone annotator varied across benchmarks, with no consistent trend (Table 12). Removing the least consistent annotator sometimes improved results but also risked destabilizing disagreement statistics by reducing diversity. Given these trade-offs, we treat this step as a tunable option rather than a fixed rule. Iteration set size Optimal performance was achieved with 15–25 samples (Table 13), while larger sets degraded results by expanding hotspot regions and obscuring distinct error patterns. Further scaling of the iteration document set size appears unnecessary under the current framework. DiZiNER with gold-standard data Incorporating gold supervision provided minimal benefits

in our framework (Table 16). Average performance increased by 0.3 F1, with consistent gains observed on ACE05 (+10.5) and OntoNotes (+5.6), where human annotations helped resolve errors arising from missing context and pronominal references. Replacing disagreement signals with gold labels shifted the objective from cross-model consensus to fixed-target fitting, thereby reducing diversity and weakening iterative refinement. Overall, the disagreement-guided setup without supervision achieved greater stability and stronger performance. 4.4

Instruction Refinement and NER Quality Analysis

Instruction analysis (Appendix D) reveals that span boundary, entityhood, and type disambiguation constitute approximately 60% of all refined instructions (Table 17). This concentration is consistent with prior observations of human annotator disagreements during pilot annotation, confirming that the simulated refinement effectively targets established bottlenecks. High-performing configurations further distinguish themselves by emphasizing global strategy (+2.8%) and entityhood (+4.7%) to better align with task objectives. These refinements are qualitatively evident in DiZiNER’s ability to address persistent errors by synthesizing valid rules from document-level signals (Table 18). For instance, by leveraging contextual cues, DiZiNER correctly classifies "Cambridge" as an organization within league tables and recovers previously missed publication names like "Nature," ensuring domain-wide consistency through instruction-based signal discovery.

5

task objective is essential for resolving conflicting instructions and that annotator diversity is critical for effective updates. The strong correlation between agreement metrics and gold-standard F1 indicates that disagreement-guided refinement is the primary driver of gains, suggesting that small open-source models can often surpass advanced proprietary baselines in a fully zero-shot setting without instruction fine-tuning.

Limitations Our framework exhibits varying gains across benchmarks. This variability likely stems from stochasticity and sampling differences that can alter the trajectory of iterative refinement. Because DiZiNER represents each dataset through its document pool and NER schema without accessing gold-labeled samples, refined instructions may gradually drift from dataset-specific annotation conventions. A hybrid approach that combines disagreement-guided refinement with a small number of supervised examples could anchor the process to the intended labeling criteria while preserving the efficiency and generality of zero-shot learning. We also keep the NER schema fixed across iterations to maintain comparability and evaluation consistency with benchmark datasets. This design departs from realistic pilot annotation workflows, where entity types are often added, merged, or removed to resolve ambiguities and better capture domain semantics. Extending DiZiNER to realworld corpus construction will therefore require a schema-refinement component that can propose, test, and validate type updates while ensuring backward compatibility with earlier iterations and maintaining evaluation continuity.

Conclusion

We introduce DiZiNER, a zero-shot NER framework that simulates human pilot annotation through disagreement-guided instruction refinement without any parameter updates. By employing multiple heterogeneous LLMs as annotators and a supervisor model for disagreement-driven refinement, DiZiNER reduces boundary ambiguity and type confusion. Across 18 benchmarks, it achieves zeroshot SOTA results on 14 datasets, improves over the previous best zero-shot systems by +11.1 F1 points on average, outperforms its GPT-5 mini supervisor, and narrows the zero-shot-to-supervised gap from -32.0 to -20.9 F1 points. Ablation studies show that aligning refinement with the final

Acknowledgments This work was supported by the Institute of Information & Communications Technology Planning & Evaluation(IITP)-Innovative Human Resource Development for Local Intellectualization program grant funded by the Korea government(MSIT)(IITP-2026-RS-202400441407) During the preparation of this paper, we utilized ChatGPT and Gemini for grammatical proofreading, and Claude and GitHub Copilot to assist with code generation. All AI-generated code was rigorously reviewed, tested, and publicly released to ensure reproducibility. The authors take full re-

sponsibility for all content and results presented in this work.

References Gabriel Bernier-Colborne and Sowmya Vajjala. 2024. Annotation errors and ner: A study with ontonotes 5.0. arXiv preprint arXiv:2406.19172. Sergei Bogdanov, Alexandre Constantin, Timothée Bernard, Benoit Crabbé, and Etienne Bernard. 2024. Nuner: Entity recognition encoder pretraining via llm-annotated data. arXiv preprint arXiv:2402.15343. Jiawei Chen, Yaojie Lu, Hongyu Lin, Jie Lou, Wei Jia, Dai Dai, Hua Wu, Boxi Cao, Xianpei Han, and Le Sun. 2023. Learning in-context learning for named entity recognition. arXiv preprint arXiv:2305.11038. Alexander Philip Dawid and Allan M Skene. 1979. Maximum likelihood estimation of observer errorrates using the em algorithm. Journal of the Royal Statistical Society: Series C (Applied Statistics), 28(1):20–28. Leon Derczynski, Kalina Bontcheva, and Ian Roberts. 2016. Broad twitter corpus: A diverse named entity recognition resource. In Proceedings of COLING 2016, the 26th international conference on computational linguistics: Technical papers, pages 1169– 1179. Yuyang Ding, Juntao Li, Pinzheng Wang, Zecheng Tang, Bowen Yan, and Min Zhang. 2024. Rethinking negative instances for generative named entity recognition. arXiv preprint arXiv:2402.16602. Oren Etzioni, Anthony Fader, Janara Christensen, Stephen Soderland, and Mausam Mausam. 2011. Open information extraction: The second generation. In IJCAI, volume 11, pages 3–10. Mark A Finlayson and Tomaž Erjavec. 2017. Overview of annotation creation: Processes and tools. In Handbook of linguistic annotation, pages 167–191. Springer. Karën Fort, Maud Ehrmann, and Adeline Nazarenko. 2009. Towards a methodology for named entities annotation. In Linguistic Annotation Workshop, pages 142–145. Quanjiang Guo, Yihong Dong, Ling Tian, Zhao Kang, Yu Zhang, and Sijie Wang. 2024a. Baner: Boundaryaware llms for few-shot named entity recognition. arXiv preprint arXiv:2412.02228. Yucan Guo, Zixuan Li, Xiaolong Jin, Yantao Liu, Yutao Zeng, Wenxuan Liu, Xiang Li, Pan Yang, Long Bai, Jiafeng Guo, and 1 others. 2024b. Retrievalaugmented code generation for universal information extraction. In CCF International Conference on Natural Language Processing and Chinese Computing, pages 30–42. Springer.

Dirk Hovy, Taylor Berg-Kirkpatrick, Ashish Vaswani, and Eduard Hovy. 2013. Learning whom to trust with mace. In Proceedings of the 2013 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, pages 1120–1130. Guochao Jiang, Zepeng Ding, Yuchen Shi, and Deqing Yang. 2024. P-icl: Point in-context learning for named entity recognition with large language models. arXiv preprint arXiv:2405.04960. J-D Kim, Tomoko Ohta, Yuka Tateisi, and Jun’ichi Tsujii. 2003. Genia corpus—a semantically annotated corpus for bio-textmining. Bioinformatics, 19(suppl_1):i180–i182. Seoyeon Kim, Kwangwook Seo, Hyungjoo Chae, Jinyoung Yeo, and Dongha Lee. 2024. Verifiner: verification-augmented ner via knowledge-grounded reasoning with large language models. arXiv preprint arXiv:2402.18374. Aman Kumar and Binil Starly. 2022. “fabner”: information extraction from manufacturing process science domain literature using named entity recognition. Journal of Intelligent Manufacturing, 33(8):2393– 2407. Jiao Li, Yueping Sun, Robin J Johnson, Daniela Sciaky, Chih-Hsuan Wei, Robert Leaman, Allan Peter Davis, Carolyn J Mattingly, Thomas C Wiegers, and Zhiyong Lu. 2016. Biocreative v cdr task corpus: a resource for chemical disease relation extraction. Database, 2016. Peng Li, Tianxiang Sun, Qiong Tang, Hang Yan, Yuanbin Wu, Xuanjing Huang, and Xipeng Qiu. 2023. Codeie: Large code generation models are better few-shot information extractors. arXiv preprint arXiv:2305.05711. Yuepei Li, Kang Zhou, Qiao Qiao, Qing Wang, and Qi Li. 2024a. Re-examine distantly supervised ner: a new benchmark and a simple approach. arXiv preprint arXiv:2402.14948. Zixuan Li, Yutao Zeng, Yuxin Zuo, Weicheng Ren, Wenxuan Liu, Miao Su, Yucan Guo, Yantao Liu, Xiang Li, Zhilei Hu, and 1 others. 2024b. Knowcoder: Coding structured knowledge into llms for universal information extraction. arXiv preprint arXiv:2403.07969. Jingjing Liu, Panupong Pasupat, Scott Cyphers, and Jim Glass. 2013. Asgard: A portable architecture for multilingual dialogue systems. In 2013 IEEE International Conference on Acoustics, Speech and Signal Processing, pages 8386–8390. IEEE. Zihan Liu, Yan Xu, Tiezheng Yu, Wenliang Dai, Ziwei Ji, Samuel Cahyawijaya, Andrea Madotto, and Pascale Fung. 2021. Crossner: Evaluating crossdomain named entity recognition. In Proceedings of the AAAI conference on artificial intelligence, volume 35, pages 13452–13460.

Yaojie Lu, Qing Liu, Dai Dai, Xinyan Xiao, Hongyu Lin, Xianpei Han, Le Sun, and Hua Wu. 2022. Unified structure generation for universal information extraction. arXiv preprint arXiv:2203.12277. Marco Naguib, Xavier Tannier, and Aurélie Névéol. 2024. Few-shot clinical entity recognition in english, french and spanish: masked language models outperform generative model prompting. arXiv preprint arXiv:2402.12801. Chaoxu Pang, Yixuan Cao, Qiang Ding, and Ping Luo. 2023. Guideline learning for in-context information extraction. arXiv preprint arXiv:2310.05066. Sameer Pradhan, Alessandro Moschitti, Nianwen Xue, Hwee Tou Ng, Anders Björkelund, Olga Uryupina, Yuchen Zhang, and Zhi Zhong. 2013. Towards robust linguistic analysis using ontonotes. In Proceedings of the Seventeenth Conference on Computational Natural Language Learning, pages 143–152. Sampo Pyysalo and Sophia Ananiadou. 2014. Anatomical entity mention recognition at literature scale. Bioinformatics, 30(6):868–875. Yunjia Qi, Hao Peng, Xiaozhi Wang, Bin Xu, Lei Hou, and Juanzi Li. 2024. Adelie: Aligning large language models on information extraction. arXiv preprint arXiv:2405.05008. Oscar Sainz, Iker García-Ferrero, Rodrigo Agerri, Oier Lopez de Lacalle, German Rigau, and Eneko Agirre. 2023. Gollie: Annotation guidelines improve zero-shot information-extraction. arXiv preprint arXiv:2310.03668. Erik F Sang and Fien De Meulder. 2003. Introduction to the conll-2003 shared task: Language-independent named entity recognition. arXiv preprint cs/0306050. Larry Smith, Lorraine K Tanabe, Rie Johnson Nee Ando, Cheng-Ju Kuo, I-Fang Chung, Chun-Nan Hsu, YuShi Lin, Roman Klinger, Christoph M Friedrich, Kuzman Ganchev, and 1 others. 2008. Overview of biocreative ii gene mention recognition. Genome biology, 9(Suppl 2):S2. Lorraine Tanabe, Natalie Xie, Lynne H Thom, Wayne Matten, and W John Wilbur. 2005. Genetag: a tagged corpus for gene/protein named entity recognition. BMC bioinformatics, 6(Suppl 1):S3. Simone Tedeschi and Roberto Navigli. 2022. Multinerd: A multilingual, multi-genre and fine-grained dataset for named entity recognition (and disambiguation). In Findings of the Association for Computational Linguistics: NAACL 2022, pages 801–812. Zeliang Tong, Zhuojun Ding, and Wei Wei. 2025. Evoprompt: Evolving prompts for enhanced zero-shot named entity recognition with large language models. In Proceedings of the 31st International Conference on Computational Linguistics, pages 5136–5153.

Christopher Walker, Stephanie Strassel, Julie Medero, and Kazuaki Maeda. 2006. Ace 2005 multilingual training corpus. (No Title). Shuhe Wang, Xiaofei Sun, Xiaoya Li, Rongbin Ouyang, Fei Wu, Tianwei Zhang, Jiwei Li, and Guoyin Wang. 2023a. Gpt-ner: Named entity recognition via large language models. arXiv preprint arXiv:2304.10428. Xiao Wang, Weikang Zhou, Can Zu, Han Xia, Tianze Chen, Yuansen Zhang, Rui Zheng, Junjie Ye, Qi Zhang, Tao Gui, and 1 others. 2023b. Instructuie: Multi-task instruction tuning for unified information extraction. arXiv preprint arXiv:2304.08085. Xuan Wang, Yu Zhang, Xiang Ren, Yuhao Zhang, Marinka Zitnik, Jingbo Shang, Curtis Langlotz, and Jiawei Han. 2019. Cross-type biomedical named entity recognition with deep multi-task learning. Bioinformatics, 35(10):1745–1752. Ralph Weischedel, Sameer Pradhan, Lance Ramshaw, Martha Palmer, Nianwen Xue, Mitchell Marcus, Ann Taylor, Craig Greenberg, Eduard Hovy, Robert Belvin, and 1 others. 2011. Ontonotes release 4.0. LDC2011T03, Philadelphia, Penn.: Linguistic Data Consortium, 17. Jacob Whitehill, Ting-fan Wu, Jacob Bergsma, Javier Movellan, and Paul Ruvolo. 2009. Whose vote should count more: Optimal integration of labels from labelers of unknown expertise. Advances in neural information processing systems, 22. Tingyu Xie, Qi Li, Jian Zhang, Yan Zhang, Zuozhu Liu, and Hongwei Wang. 2023a. Empirical study of zero-shot ner with chatgpt. arXiv preprint arXiv:2310.10035. Tingyu Xie, Qi Li, Yan Zhang, Zuozhu Liu, and Hongwei Wang. 2023b. Self-improving for zero-shot named entity recognition with large language models. arXiv preprint arXiv:2311.08921. Tingyu Xie, Jian Zhang, Yan Zhang, Yuanyuan Liang, Qi Li, and Hongwei Wang. 2024. Retrieval augmented instruction tuning for open ner with large language models. arXiv preprint arXiv:2406.17305. Yuming Yang, Wantong Zhao, Caishuang Huang, Junjie Ye, Xiao Wang, Huiyuan Zheng, Yang Nan, Yuran Wang, Xueying Xu, Kaixin Huang, and 1 others. 2024. Beyond boundaries: Learning a universal entity taxonomy across datasets and languages for open named entity recognition. arXiv preprint arXiv:2406.11192. Urchade Zaratiana, Nadi Tomeh, Pierre Holat, and Thierry Charnois. 2023. Gliner: Generalist model for named entity recognition using bidirectional transformer. arXiv preprint arXiv:2311.08526. Wenxuan Zhou, Sheng Zhang, Yu Gu, Muhao Chen, and Hoifung Poon. 2023. Universalner: Targeted distillation from large language models for open named entity recognition. arXiv preprint arXiv:2308.03279.

A

Tuning Parameters for Instruction Refinement

To stabilize instruction refinement and prevent excessive corrections during iterative updates, the supervisor employs a series of tuning parameters. Each parameter controls a distinct aspect of the refinement process, ensuring balanced evolution of the instruction set across different phases. Parameter Definitions • max_common_instructions Specifies the maximum number of newly generated shared principles per iteration. This prevents uncontrolled guideline expansion and is primarily active in Phase 1 and Phase 3. • max_patterns Determines the number of disagreement patterns considered in each cycle. By focusing only on the most recurrent inconsistencies, it guides efficient refinement during Phase 1.

C

Tables 5-8 summarize the four supervisory prompts used for instruction refinement: disagreement analysis, model-specific error review, instruction generation, and hierarchical organization. Each phase builds on the previous to ensure consistent, interpretable NER annotation. Full prompt templates and JSON schema are available on the project’s GitHub repository.

D

• Span Boundary & Composition: Rules for entity extent, including modifiers and punctuation within a span. • Entityhood & Referentiality: Criteria for distinguishing entities from common nouns or generic mentions.

• limit_instruction_changes Enables a controlled edit mode that constrains the degree of revision between refinement cycles, applied during Phase 4.

• Type Disambiguation Logic: Heuristics to resolve confusion between similar or overlapping entity types.

• max_change_ratio When controlled editing is active, this parameter limits the proportion of textual modifications to preserve continuity and prevent semantic drift, also enforced in Phase 4.

• Global Strategy & Purpose: Instructions defining the task’s overarching goal and guiding philosophy. • Formatting & Noise Handling: Rules for handling symbols, tokenization artifacts, and orthographic noise.

Representative Configurations Three parameter configurations were adopted across benchmarks to investigate varying levels of refinement adaptiveness (Table 3). All settings used a group size of 25 samples per iteration and a maximum of four refinement cycles.

• Annotator Workflow & Priority: Guidance on decision-making sequences and rule precedence. • Others & Specialized: Niche domainspecific technical rules that do not fit into other categories.

Dataset Statistics

Table 4 summarizes the datasets used across experiments, encompassing 18 NER benchmarks from general, biomedical, STEM, and social domains to ensure broad domain coverage and diversity of entity types.

Methodology for Instruction Categorization

To identify which instructions were introduced via inter-model disagreement and to assess their effectiveness across all 18 NER benchmarks, we categorized each “Common Instruction” generated by the supervisor model. This categorization helps explain how disagreement-guided refinement leads to performance gains. The categories are defined as follows:

• max_model_specific_instructions Sets an upper bound on model-specific adjustments per annotator model. This maintains an appropriate balance between general and specialized rules in Phase 2 and Phase 3.

B

Prompts

E

Supplementary Results

Figure 2 visualizes the correlation between interannotator agreement and NER performance across

Configuration Stable Relaxed Aggressive

max_common

max_patterns

max_model_spec.

limit_changes

max_ratio

max_iter.

3 5 10

5 8 20

2 3 10

True False False

0.10 0.20 0.50

5 5 5

Table 3: Tuning configurations for instruction refinement experiments. Domain

Dataset

# train

# dev

# test

# types

Avg. tokens

Avg. entities

Cross-domain (CrossNER)

AI (Liu et al., 2021) Literature (Liu et al., 2021) Music (Liu et al., 2021) Politics (Liu et al., 2021) Science (Liu et al., 2021)

100 100 100 199 200

350 400 380 540 450

431 416 465 650 543

14 12 13 9 17

52 54 57 61 54

5.3 5.4 6.5 6.5 5.4

Social Media / Dialogue

MIT-Movie (Liu et al., 2013) MIT-Restaurant (Liu et al., 2013) BroadTwitter (Derczynski et al., 2016)

9775 7660 5334

2442 1520 2001

2443 1521 2000

12 8 3

10 9 28

2.2 2.0 0.5

General

ACE2005 (Walker et al., 2006) CoNLL2003 (Sang and De Meulder, 2003) MultiNERD (Tedeschi and Navigli, 2022) OntoNotes (Pradhan et al., 2013)

7299 14041 134144 59924

971 3250 10000 8528

1060 3453 10000 8262

7 4 16 18

21 25 28 18

2.8 2.8 1.6 0.9

STEM

FabNER (Kumar and Starly, 2022)

9435

2182

2064

12

36

5.1

AnatEM (Pyysalo and Ananiadou, 2014) BC2GM (Smith et al., 2008) BC4CHEMD (Wang et al., 2019) BC5CDR (Li et al., 2016) GENIA (Kim et al., 2003)

5861 12500 30682 4560 15022

2118 2500 30639 4581 1669

3830 5000 26364 4797 1855

1 1 1 2 5

37 36 45 41 46

0.7 0.4 0.9 2.2 3.5

Biomedical

Table 4: Statistics of datasets used in our experiments. We evaluate across 18 NER datasets covering general, biomedical, STEM, and social domains.

refinement iterations. Figure 3 tracks the progression of inter-annotator agreement and NER performance on the iteration document sets across iterations for each individual benchmark. Table 9 presents a comprehensive performance comparison against various ensemble methods, while Table 10 details the results across different supervisor models. The impact of the final task goal is examined in Table 11. Table 12 shows the comparison with and without the removal of the least consistent annotator. Table 13 summarizes the results under different document set sizes per iteration. Furthermore, Table 14 investigates performance across different annotator families, and Table 15 analyzes the effects of varying the number of annotator models. Table 16 provides a comparison between zero-shot and supervised evaluation settings. Finally, Table 17 provides a categorical distribution of the refined instructions, and Table 18 showcases qualitative NER results across diverse benchmarks.

CrossNER - AI

CrossNER - Literature

= 0.853

0.75

0.850

0.55 0.50 0.45

Gold Standard F1

0.60

0.65 0.60 0.55 0.50

0.40 0.45

0.50

0.55

0.60

0.65

0.70

Avg Pairwise Strict Span F1

0.75

= 0.922

0.750

0.55

0.60

0.65

0.70

0.75

Avg Pairwise Strict Span F1

0.80

0.74

0.76

0.78

0.65

Gold Standard F1

0.70

0.82

0.84

0.86

0.88

0.90

= 0.900

0.8

0.75

0.75

0.80

Avg Pairwise Strict Span F1

MIT - Movie

= 0.653

0.80

Gold Standard F1

Gold Standard F1

0.775

CrossNER - Science

0.80

0.70 0.65

0.7 0.6 0.5

0.60

0.60

0.4 0.55 0.600

0.55 0.65

0.70

0.75

0.80

Avg Pairwise Strict Span F1

0.625

0.650

MIT - Restaurant

0.675

0.700

0.725

Avg Pairwise Strict Span F1

0.750

0.775

0.4

0.5

0.70

0.8

Gold Standard F1

Gold Standard F1

0.5

0.60 0.55 0.50 0.45 0.40

0.4

0.8

= 0.839

0.9

0.65

0.6

0.7

CoNLL2003

= 0.796

0.75

0.7

0.6

Avg Pairwise Strict Span F1

Broad Twitter

= 0.684

0.8

Gold Standard F1

0.800

0.700 0.50

CrossNER - Politics

0.85

0.825

0.725

0.45 0.40

= 0.842

0.875

0.70

0.65

Gold Standard F1

Gold Standard F1

0.70

CrossNER - Music

0.900

= 0.854

0.75

0.7 0.6 0.5 0.4

0.35 0.45

0.50

0.55

0.60

0.65

Avg Pairwise Strict Span F1

0.70

0.75

0.80

0.4

FabNER

0.375

0.300 0.275 0.250

0.200

= 0.455

0.80 0.75

0.450

0.475

0.500

0.525

0.550

0.575

Avg Pairwise Strict Span F1

0.600

0.60

0.65

0.70

Avg Pairwise Strict Span F1

0.75

0.80

0.30 0.25

0.725

0.750

0.775

0.800

0.825

0.850

Avg Pairwise Strict Span F1

0.875

0.900

0.40

0.5 0.4

0.2

0.3

0.1

0.2 0.3

0.4

Avg Pairwise Strict Span F1

0.5

0.6

0.1

0.2

0.3

0.4

0.5

Avg Pairwise Strict Span F1

0.6

0.60 0.55

0.9

0.65 0.60 0.55

0.75

Avg Pairwise Strict Span F1

0.80

0.85

0.6

= 0.886

0.7

deepseek-r1:8b gemma3:12b gpt-oss:20b llama3.1:8b mistral-small3.2:24b nemotron-nano:8b phi4:14b qwen3:14b

0.6 0.5 0.4 0.3

0.45 0.70

0.5

0.8

0.50

0.65

0.4

Avg Pairwise Strict Span F1

OntoNotes 5.0

0.50 0.60

0.3

Gold Standard F1

Gold Standard F1

0.65

0.55

0.4

0.7

= 0.527

0.70

0.70

0.50

0.6

GENIA

0.75

0.65

0.2

BC5CDR

= 0.707

0.60

= 0.374 Gold Standard F1

Gold Standard F1

0.3

0.55

0.8

0.6

0.4

0.50

Avg Pairwise Strict Span F1

BC4CHEMD

= 0.711

0.7

0.5

0.2

0.45

BC2GM

= 0.657

0.6

0.35

0.20

0.700

AnatEM

Gold Standard F1

0.55

= 0.417

0.40

0.65 0.425

Gold Standard F1

0.50

ACE 2005

0.70

0.225

0.80

0.45

Gold Standard F1

Gold Standard F1

Gold Standard F1

Avg Pairwise Strict Span F1

0.7

0.85

0.325

0.85

0.6

MultiNERD

0.90

= 0.071

0.350

0.5

0.550

0.575

0.600

0.625

0.650

0.675

Avg Pairwise Strict Span F1

0.700

0.725

0.2

0.2

0.3

0.4

0.5

0.6

Avg Pairwise Strict Span F1

0.7

0.8

Figure 2: Correlation between pairwise agreement and NER performance across training iterations.Each subplot represents individual benchmarks, showing the Pearson correlation (ρ) between inter-annotator agreement (x-axis) and F1 performance on iteration document sets (y-axis). Strong positive correlations across diverse domains confirm that agreement statistics serve as a reliable, label-free indicator of NER performance during DiZiNER cycles.

&URVV1(5$,

&URVV1(5/LWHUDWXUH

 







  

 



,WHUDWLRQ







&URVV1(53ROLWLFV







6WULFW6SDQ)



  

 







,WHUDWLRQ















,WHUDWLRQ



 



0,75HVWDXUDQW





,WHUDWLRQ





6WULFW6SDQ)







,WHUDWLRQ





6WULFW6SDQ)

 







,WHUDWLRQ















 











,WHUDWLRQ

$&(









  







0XOWL1(5'





,WHUDWLRQ

 

)DE1(5



6WULFW6SDQ)



6WULFW6SDQ)

6WULFW6SDQ)

6WULFW6SDQ) 



&R1//

 













%URDG7ZLWWHU















 





,WHUDWLRQ

0,70RYLH















&URVV1(56FLHQFH

6WULFW6SDQ)







 

6WULFW6SDQ)



6WULFW6SDQ)

6WULFW6SDQ)

6WULFW6SDQ)



&URVV1(50XVLF

   

 





,WHUDWLRQ







$QDW(0

6WULFW6SDQ)

  















,WHUDWLRQ











  









,WHUDWLRQ



6WULFW6SDQ) 



,WHUDWLRQ















,WHUDWLRQ



  





2QWR1RWHV

 











,WHUDWLRQ

%&&+(0'

*(1,$







 









%&&'5

6WULFW6SDQ)



,WHUDWLRQ

6WULFW6SDQ)

6WULFW6SDQ)





%&*0









6WULFW6SDQ)





%HVW0RGHO 0DMRULW\9RWH $YHUDJH 3DLUZLVH$JUHHPHQW$YJ

  









,WHUDWLRQ













,WHUDWLRQ





Figure 3: Evolution of NER performance and inter-annotator agreement across iterations for 18 benchmarks. Each plot displays the strict span f1 score measured on the iteration document sets for: (1) the Best Model (topperforming individual annotator), (2) the Majority Vote consensus, and (3) the Average performance of the eight heterogeneous LLM annotators. The dashed line (Pairwise Agreement Avg.) represents the mean inter-model agreement, demonstrating its role as a reliable, label-free proxy for performance gains during the DiZiNER cycles.

Prompt Text You are a strict, methodical NER annotation supervisor. Your task in this phase is to analyze disagreement patterns using majority-vote as a reference point (NOT as ground truth), identify highyield error patterns, and classify them systematically. Focus on extracting actionable patterns that can inform instruction creation without generating instructions yet. Current NER Scheme: {current_ner_schema}. Final Task Goal: {final_task_goal}. Disagreement Analysis: {NER_disagreement_summaries}. Task: 1. Analyze disagreement patterns using MV as reference point, acknowledging that MV is not ground truth but a useful consensus measure. 2. Identify and quantify disagreement patterns, clustering them into maximum 8 high-impact categories. 3. For each pattern, determine root causes and assess whether existing instructions already address them. 4. Extract possible annotation approaches for each conflicting case, providing the rationale behind each approach. 5. Identify aspects of the final task goal that need clarification to resolve ambiguous annotation choices. 6. Do NOT generate instructions in this phase - focus on pattern analysis and candidate instruction principles. Output Format (JSON): { "disagreement_analysis_summary": { "major_disagreement_sources": [ "Source 1", ... ], "mv_reference_reliability": "Assessment of MV as reference point", "elite_vs_non_elite_patterns": "Comparison between elite and non-elite model behaviors" }, "identified_patterns": [ { "pattern_id": "P1", "pattern_name": "Descriptive pattern name", "frequency": "high|medium|low", "disagreement_subtypes": [ "Subtype A", ... ], "root_cause_analysis": "Fundamental principle-level explanation of disagreement source", "affected_entity_types": [ "PER", ... ], "annotation_approaches": [ { "approach": "Annotation approach A", "rationale": "Why this approach makes sense", "supporting_models": [ "model1", ... ] }, ... ], ... ] } Table 5: Prompt for instruction refinement in phase 1 (Disagreement Pattern Analysis).

Prompt Text You are a strict, methodical NER annotation supervisor. In this phase, you analyze error patterns specific to model_name based on the configuration, focusing on systematic deviations not covered by common disagreement patterns identified in Phase 1. IMPORTANT: You are analyzing only one model at a time, not multiple models. Inputs - Phase 1 results: phase1_results - Single model detailed disagreement data: model_disagreement_data - Elite model identification results: elite_models - Single model bias analysis: model_bias_analysis - Original NER scheme: current_ner_schema - Final task goal: final_task_goal - Existing model-specific instructions: existing_model_instructions Runtime Identifiers: model_name, model_type Task Focus - Identify model-unique patterns not covered by Phase 1 - Classify into systematic_bias | confusion_pattern | under_tagging | over_tagging | boundary_errors - Assess existing model-specific instructions and their effectiveness - Prepare instruction needs (do not generate instructions yet) Output Format (JSON): { "model_name": "{model_name}", "elite_or_not": true|false, "model_specific_patterns": [ { "pattern_id": "M1_{model_name}", "pattern_name": "Model-specific pattern description", "pattern_type": "systematic_bias|confusion_pattern|...", "not_covered_by_common_patterns": true, "pattern_characterization": "How this model behaves differently", "examples": [ "Context - MV: PER(\"...\"), {model_name}: MISC(\"...\")", ... ], "existing_instruction_assessment": { "covered_by_existing_model_specific": "true|false", "existing_instruction_reference": "instruction_id or null", "effectiveness_assessment": "qualitative note" } } ], "model_bias_summary": { "primary_systematic_biases": ["Bias 1", "Bias 2"], "model_strengths": ["Strength 1", "Strength 2"], "key_weaknesses": ["Weakness 1", "Weakness 2"], "deviation_from_mv_coalition": "narrative summary" }, ... "instruction_candidate_needs_max": "{max_model_specific_instructions}" } Table 6: Prompt for instruction refinement in phase 2 (Single-Model Error Analysis).

Prompt Text You are a strict, methodical NER annotation supervisor acting as an instruction generator and conflict resolver. Convert identified patterns into concrete instructions, resolve conflicts using the final task goal guidance, and run in either human-interactive or GPT-autonomous mode. Inputs - Phase 1 results: phase1_results - Phase 2 results: phase2_results - Final task goal: final_task_goal - Decision mode: decision_mode (human_interactive | gpt_autonomous) - Human input if interactive: human_input - Existing instructions: existing_common_instructions, existing_model_instructions Dynamic Parameters - max_common_instructions, max_model_specific_instructions Output Format (JSON): { "updated_final_goal": { "goal_updated": "true|false", "sections_updated": ["..."], "updated_final_goal_text": "..." }, "decision_mode_used": "human_interactive|gpt_autonomous", "conflict_resolutions": [ { "conflict_id": "C1", "conflicting_candidates": ["Candidate A", "Candidate B"], "resolution_rationale": "Why this choice was made", ... } ], "finalized_common_instructions": [ { "instruction_id": "CI1", "instruction_text": "Concrete common instruction", "addresses_patterns": ["P1", "P2"], "examples": [ ... ], "priority": "high|medium|low", "instruction_type": "new|improved|replacement", ... } ], "finalized_common_instructions_max": "{max_common_instructions}", "finalized_model_instructions": { "{model_name}": [ ... ] }, "finalized_model_instructions_max_per_model": "{max_model_specific_instructions}", "instruction_generation_summary": ... } Table 7: Prompt for instruction refinement in phase 3 (Instruction Generation and Decision).

Prompt Text You are a strict, methodical NER annotation supervisor acting as a guideline architect. Organize all instructions (existing + new) into a clear hierarchy, resolve remaining inconsistencies, and create the final guideline for the next iteration. Prioritize preservation of existing instructions and integrate new ones harmoniously. Inputs - Phase 3 results: phase3_results - Existing instructions: existing_instructions - Original NER scheme: current_ner_schema - Updated final task goal: updated_final_goal Dynamic Parameters - preserve_existing_instructions, limit_instruction_changes, max_change_ratio Output Format (JSON): { "instruction_integration_analysis": { "existing_instructions_retained": ... "preservation_score": "0.0-1.0" }, "contradiction_resolutions": [ { "contradiction_id": "CR1", "conflicting_instructions": ["Instruction A", "Instruction B"], ... } ], "hierarchical_common_instructions": [ { "level": "1", "instruction_number": "1", "instruction_text": "Top-level principle", ... "sub_instructions": [ { "level": "1.1", "instruction_number": "1.1", "instruction_text": "Sub-principle", "examples": [ {"text": "Example", "correct_annotation": "Gold", "explanation": "Note"} ], ... }]}], "prioritized_model_instructions": { "{model_name}": [ { "priority_rank": 1, "instruction_id": "MI1_{model_name}", "instruction_text": "Highest-priority instruction", ... }]}, "final_guideline_summary": { "total_hierarchical_common_instructions": 0, "max_hierarchy_depth": 2, ... } } Table 8: Prompt for instruction refinement in phase 4 (Hierarchical Guideline Organization.)

Benchmark

DiZiNER

MV

DS

GLAD

MACE

GPT-5 mini

Prior Best ZS

AI Literature Music Politics Science Movie Restaurant BroadTwitter ACE05 CoNLL2003 MultiNERD OntoNotes FabNER AnatEM BC2GM BC4CHEMD BC5CDR GENIA

71.1 [71.1, 71.1] 72.7 [72.0, 73.8] 80.6 [79.2, 82.9] 79.4 [77.6, 80.9] 74.8 [74.1, 75.4] 76.2 [74.4, 78.5] 67.3 [66.9, 68.1] 76.9 [75.5, 78.3] 45.0 [44.1, 46.2] 86.9 [85.8, 88.6] 80.6 [79.0, 83.7] 62.5 [61.5, 63.5] 29.5 [28.9, 30.5] 59.1 [56.1, 60.7] 71.0 [67.0, 73.0] 79.5 [78.4, 81.7] 78.9 [77.0, 81.3] 60.1 [59.6, 60.9]

73.0 69.3 83.1 79.1 72.6 74.2 66.2 67.8 22.1 93.2 81.5 54.4 32.6 60.4 62.3 71.6 77.1 58.0

69.3 66.8 80.7 77.0 72.4 71.1 62.6 55.9 24.9 86.5 68.3 46.4 33.4 42.1 57.0 54.9 65.9 54.2

72.3 69.4 83.5 79.0 73.8 73.8 68.0 62.3 22.6 92.9 81.8 58.1 33.2 62.8 63.9 70.0 77.5 58.9

71.9 69.1 83.3 78.8 73.1 74.2 67.7 61.5 23.5 92.9 81.5 58.6 33.7 63.8 63.8 72.7 77.6 58.4

64.3 67.6 73.3 72.8 68.4 73.3 58.5 59.2 54.0 81.8 74.0 63.8 29.5 59.2 73.0 63.7 62.8 56.5

68.2 71.6 82.4 78.2 79.4 70.9 69.3 67.9 51.2 81.3 77.5 32.2 26.3 33.3 47.9 47.9 68.0 55.5

Average

69.6 [68.2, 71.1]

66.6

60.5

66.9

67.0

64.2

61.6

Table 9: Performance comparison across 18 NER benchmarks including DiZiNER, various ensemble methods, GPT5 mini baseline, and previous zero-shot SOTA. The ensemble methods include Majority Voting (MV), Dawid-Skene (DS), Generative model of Labels, Abilities, and Difficulties (GLAD), and Multi-Annotator Competence Estimation (MACE). For DiZiNER ZS, values are reported as average F1 [min, max]. Best and second-best results for each individual benchmark are highlighted in bold and underlined, respectively.

Benchmark

Supervisor

F1 [min, max]

AI

gpt-5-mini-2025-08-07 gpt-oss-120b qwen-2.5-72b-instruct llama-3.3-70b-instruct

71.1 [71.1, 71.1] 65.1 [61.1, 67.3] 65.6 [56.5, 70.5] 66.0 [62.5, 69.3]

Prior Best ZS GPT-5 mini baseline

68.2 64.3

gpt-5-mini-2025-08-07 gpt-oss-120b qwen-2.5-72b-instruct llama-3.3-70b-instruct

72.7 [72.0, 73.8] 69.2 [65.2, 71.4] 71.0 [69.2, 72.0] 69.0 [66.2, 71.7]

Prior Best ZS GPT-5 mini baseline

71.6 67.6

Literature

Table 10: Performance comparison of DiZiNER across various supervisor models, alongside GPT-5 mini baselines and prior best results on CrossNER-AI and Literature. For DiZiNER configurations, values are reported as average F1 [min, max]. Best and second-best results for each individual benchmark are highlighted in bold and underlined, respectively.

Benchmark

Base

+sfg

AI Literature Music Politics Science CoNLL2003

71.1 [71.1, 71.1] 72.7 [72.0, 73.8] 80.6 [79.2, 82.9] 79.4 [77.6, 80.9] 74.8 [74.1, 75.4] 86.9 [85.8, 88.6]

65.0 [62.3, 68.3] 65.1 [62.8, 66.8] 75.8 [71.0, 78.9] 72.4 [67.2, 76.4] 70.8 [68.1, 73.4] 82.1 [81.5, 82.8]

Average

77.6 [76.6, 78.8]

71.9 [68.8, 74.4]

Table 11: Best NER performance with and without skipping the final task goal (+sfg). Values are reported as average F1 [min, max]. Best for each individual benchmark is highlighted in bold.

Benchmark

Base

+dwa

∆Base - dwa

AI Literature Music Politics Science Movie Restaurant BroadTwitter ACE05 CoNLL2003 MultiNERD OntoNotes FabNER AnatEM BC2GM BC4CHEMD BC5CDR GENIA

71.1 [71.1, 71.1] 72.7 [72.0, 73.8] 80.6 [79.2, 82.9] 79.4 [77.6, 80.9] 74.8 [74.1, 75.4] 76.2 [74.4, 78.5] 67.3 [66.9, 68.1] 76.9 [75.5, 78.3] 45.0 [44.1, 46.2] 86.9 [85.8, 88.6] 80.6 [79.0, 83.7] 62.5 [61.5, 63.5] 29.5 [28.9, 30.5] 59.1 [56.1, 60.7] 71.0 [67.0, 73.0] 79.5 [78.4, 81.7] 78.9 [77.0, 81.3] 60.1 [59.6, 60.9]

69.9 [69.4, 70.4] 72.6 [71.9, 73.8] 80.5 [80.0, 81.3] 77.3 [76.6, 77.7] 73.9 [73.5, 74.7] 70.2 [65.5, 73.7] 68.3 [67.8, 68.6] 66.5 [60.7, 69.5] 40.3 [35.4, 46.2] 86.7 [85.8, 88.6] 79.0 [78.4, 79.6] 62.8 [62.1, 63.2] 27.9 [25.9, 29.1] 55.1 [54.6, 55.6] 65.5 [60.1, 69.6] 79.1 [75.7, 81.7] 80.9 [80.2, 81.3] 57.8 [56.9, 59.5]

+0.0 +0.1 +0.1 +2.1 +0.9 +6.0 -1.0 +10.4 +4.7 +0.2 +1.6 -0.3 +1.6 +4.0 +5.5 +0.4 -2.0 +2.3

Average

69.6 [68.2, 71.1]

67.5 [65.6, 69.1]

+2.1

Table 12: Zero-shot NER performance of DiZiNER with and without dropping the worst annotator (dwa). The worst model is defined as the model showing the highest average disagreement with all others. Values are reported as average F1 [min, max]. Best for each individual benchmark is highlighted in bold.

Iteration Document Set Size

Benchmark 15

25

50

100

AI Literature

70.5 [67.9, 72.4] 70.6 [68.9, 72.5]

71.1 [71.1, 71.1] 72.7 [72.0, 73.8]

67.2 [65.8, 68.0] 69.8 [68.7, 71.8]

70.3 [69.4, 71.4] 69.0 [67.5, 71.9]

Average

70.6 [68.4, 72.5]

71.9 [71.6, 72.5]

68.5 [67.3, 69.9]

69.7 [68.5, 71.7]

Table 13: Zero-shot NER performance across different iteration document set sizes. Values are reported as average F1 [min, max]. Best and second-best results for each individual benchmark are highlighted in bold and underlined, respectively.

Benchmark

Base

Qwen

Llama

AI Literature

71.1 [71.1, 71.1] 72.7 [72.0, 73.8]

68.1 [66.1, 71.1] 68.2 [65.7, 70.6]

69.4 [68.8, 70.2] 71.0 [70.9, 71.1]

Average

71.9 [71.6, 72.5]

68.2 [65.9, 70.9]

70.2 [69.9, 70.7]

Table 14: Best zero-shot NER performance across different annotator families. The Base configuration utilizes eight heterogeneous models (all ≤ 24B parameters). In contrast, the Qwen and Llama configurations consist of eight models from their respective single families, including significantly larger models such as Llama 3.3-70B and Qwen 2.5-Coder-32B to meet the count requirement. Values are reported as average F1 [min, max]. Best for each individual benchmark is highlighted in bold.

Number of Annotator Models

Benchmark 4

8

12

16

AI Literature Music Politics Science

68.7 [67.5, 69.6] 72.3 [72.0, 72.7] 76.6 [75.3, 78.8] 76.5 [76.0, 77.4] 71.5 [64.0, 75.8]

69.9 [68.7, 71.1] 72.7 [72.0, 73.8] 80.6 [79.2, 82.9] 79.4 [77.6, 80.9] 74.8 [74.1, 75.4]

68.4 [66.9, 69.6] 70.4 [66.4, 73.0] 80.8 [79.2, 81.6] 77.7 [75.7, 79.9] 72.1 [69.5, 73.5]

67.4 [66.9, 68.0] 70.2 [68.7, 71.0] 80.2 [79.6, 80.6] 77.3 [76.0, 78.6] 74.6 [73.4, 75.8]

Average

73.1 [71.0, 74.9]

75.5 [74.3, 76.8]

73.9 [71.5, 75.5]

73.9 [72.9, 74.8]

Table 15: Zero-shot NER performance across different numbers of annotator models. Best and second-best results for each individual benchmark are highlighted in bold and underlined, respectively.

Benchmark

Zero-shot

Supervised

∆Sup. - ZS

AI Literature Music Politics Science Movie Restaurant BroadTwitter ACE05 CoNLL2003 MultiNERD OntoNotes FabNER AnatEM BC2GM BC4CHEMD BC5CDR GENIA

69.9 [68.7, 71.1] 72.7 [72.0, 73.8] 80.6 [79.2, 82.9] 79.4 [77.6, 80.9] 74.8 [74.1, 75.4] 76.2 [74.4, 78.5] 67.3 [66.9, 68.1] 76.9 [75.5, 78.3] 45.0 [44.1, 46.2] 86.9 [85.8, 88.6] 80.6 [79.0, 83.7] 62.5 [61.5, 63.5] 29.5 [28.9, 30.5] 59.1 [56.1, 60.7] 71.0 [67.0, 73.0] 79.5 [78.4, 81.7] 78.9 [77.0, 81.3] 60.1 [59.6, 60.9]

70.1 [68.8, 71.1] 71.1 [67.0, 73.5] 79.2 [78.6, 79.9] 76.4 [76.2, 76.6] 71.9 [71.6, 72.3] 77.1 [75.0, 78.7] 69.3 [67.0, 72.7] 74.3 [73.8, 75.2] 55.5 [55.0, 55.8] 86.1 [84.1, 87.9] 82.2 [81.5, 82.8] 68.1 [66.4, 69.0] 28.4 [28.0, 29.0] 59.4 [57.1, 60.9] 68.4 [67.2, 69.4] 80.1 [79.5, 80.9] 80.8 [79.9, 81.8] 57.5 [53.8, 61.1]

+0.2 -1.6 -1.4 -3.0 -2.9 +0.9 +2.0 -2.6 +10.5 -0.8 +1.6 +5.6 -1.1 +0.3 -2.6 +0.6 +1.9 -2.6

Average

69.5 [67.0, 71.1]

69.8 [67.9, 71.6]

+0.3

Table 16: Comparison of DiZiNER zero-shot and supervised performance across benchmarks. Best for each individual benchmark is highlighted in bold.

Category

High-perf. Conf.

Low-perf. Conf.

Difference

2.9 (29.4%) 2.3 (23.4%) 2.1 (20.7%) 1.3 (12.7%) 0.6 (6.2%) 0.5 (4.7%) 0.4 (3.8%)

2.6 (27.6%) 1.8 (18.7%) 2.8 (29.0%) 1.0 (9.9%) 0.6 (6.0%) 0.6 (6.4%) 0.3 (3.2%)

+0.3 (+1.8%) +0.5 (+4.7%) -0.7 (-8.3%) +0.3 (+2.8%) +0.0 (+0.2%) -0.1 (-1.7%) +0.1 (+0.6%)

10.0

9.6

+0.4

Span Boundary & Composition Entityhood & Referentiality Type Disambiguation Logic Global Strategy & Purpose Formatting & Noise Handling Annotator Workflow & Priority Others & Specialized Total

Table 17: Comparison of category distributions of refined common instruction between high-performing and low-performing iteration–model configurations.

Input Text [Benchmark]

Gold Entity

DiZiNER

Iteration 0

@scotthornsby10 to be clear, it’s only for people, not brands. [Broad Twitter]

scotthornsby10 (PER)

scotthornsby10

@scotthornsby10 Successfully removed @ symbols to align with standard person mention spans.

tissue

breast tissue

normal whole breast tissue

Excluded descriptive modifiers to isolate the core anatomical entity within the span.

Cambridge (ORG)

Cambridge

Cambridge (LOC)

Used league table context to correctly classify the city name as an organization.

G-CSF (10 microg/kg) was started G-CSF (GENE) on day + 1 and all patients engrafted... [BC2GM]

G-CSF

None

Detected a technical gene abbreviation.

are there any places left that al- allow smoking low smoking in a restaurant [MIT (AMEN) Restaurant]

allow smoking

None

Captured a long-form descriptive functional entity.

so are you going to get an article in Nature or something? [OntoNotes]

Nature

None

Identified a specific domain publication name previously missed in the initial result.

Ex vivo, estradiol exposure in- breast creased the IL-8 secretion of nor- (ANAT) mal whole breast tissue in culture. [AnatEM] Cambridge 22 13 3... [CoNLL2003]

Nature (ORG)

Remarks

Assessment of the abuse liability of ABT-288 (CHEM), ABT-288, his- ABT-288 ABT-288, a novel histamine H3 re- histamine (CHEM) tamine ceptor antagonist. [BC4CHEMD]

Identified missing chemical mentions.

In the busy Fucheng district, you find the Taiwanese bars, covered from door to rooftop with flashing lights [OntoNotes]

Removed generic district markers to isolate the specific geographical name as a GPE.

Fucheng (GPE)

A single grid can be analysed for eyeball inspection both content (eyeball inspection)... (TASK) [AI]

Fucheng

Fucheng district

eyeball inspec- None tion

A confusion matrix or matching ma- accuracy (METR), accuracy, k-NN trix is often used as a tool to validate k-NN classification classification the accuracy of k-NN classification. (ALG) [AI]

Captured specific task entities.

k-NN classifica- Improved recall for evaluation tion metrics within technical algorithmic descriptions.

Table 18: Qualitative NER results of DiZiNER compared with the results of Iteration 0 using the same annotator model and input text.

Record · ID 31296 · SHA-256 92f6f63c824652c8
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.