arXiv is now an independent nonprofit! Learn more
License: arXiv.org perpetual non-exclusive license
arXiv:2608.00538v1 [cs.CL] 01 Aug 2026

DE-NER : Zero-shot Named Entity Recognition via Dialogue Elicitation of Large Language Models

Xuankang Zhang Affiliation: Yunnan University Email: zhangxuankang@stu.ynu.edu.cn    Jiangming Liu thanks: *Corresponding author. Affiliation: Yunnan University Email: jiangmingliu@ynu.edu.cn
Abstract

Recent advancements of zero-shot Named Entity Recognition (NER) establish strong baselines by formulating sequence labeling into question answering where Large Language Models (LLMs) can be naturally adopted. However, existing LLM-based zero-shot NER methods suffer from the limitations of prompt and demonstration engineering. To address these issues with minimal human interventions, we introduce DE-NER, a dialogue elicitation framework which elicits the chatting ability of LLMs to fully extract the knowledge encoded in LLMs. Our experiments demonstrate that the proposed method outperform the competitive baselines in zero-shot settings across multiple benchmarks, with an average improvement of 3.75% F1 points. Codes are released in https://github.com/kkkenshi/DE-NER.

1 Introduction

Large Language Models (LLMs) demonstrate remarkable zero-shot generalization across a wide range of NLP tasks Brown et al. (2020). Recent advancements of zero-shot Named Entity Recognition (NER) transform the traditional sequence labeling into the tasks where LLMs can be naturally adopted, such as question-answering Wei et al. (2023), template generation Cui et al. (2021), and instruction designing Wang et al. (2023). However, existing methods rely on labor-intensive prompt engineering or in-context learning with demonstrations that are sensitive to human design.

Recent research in broader NLP domains shift towards dialogue-based paradigms Liang et al. (2024); Li et al. (2023). By allowing models to engage in multi-turn interactions, these frameworks can clarify implicit information and integrate context effectively Shinn et al. (2023). Andukuri et al. (2024) show that teaching models to ask clarifying questions significantly improves their ability to elicit latent constraints and resolve ambiguity in reasoning tasks. The interactive capability of LLMs holds the key to addressing the precision and boundary challenges in zero-shot NER.

Refer to caption
Figure 1: Conventional NER methods and our proposed DE-NER framework.

Motivated by the success of interaction with LLMs, we explore whether LLMs can improve their own ability to extract entities by engaging in dialogues with LLMs. To this end, we introduce DE-NER, a Dialogue Elicitation of LLMs for zero-shot NER. As shown in Figure 1, previous single-turn paradigms struggle with high uncertainty, while our framework elicits the LLMs by self-play to clarify the implicit boundary information that is required by NER. For each iteration, a questioner generates questions that can be answered by a roleplayer, and a final responser model integrates the entire dialogue to refine NER predictions without any human engagement. This process automatically elicits the model to reduce ambiguity in entity boundaries without relying on external knowledge bases or manual annotations.

We evaluate our method on CoNLL03, WikiGold, and GENIA in zero-shot settings. Our proposed models demonstrate that the strong NER ability for challenging domain-specific entities by outperforming the conventional zero-shot prompting methods. The main contributions are summarized as follows:

  • We present a novel Dialogue Elicitation of LLMs for zero-shot NER without depending on external retrieval or knowledge bases.

  • We propose an efficient dialogue trajectory optimization method to enable DE-NER ask clarifying elicited questions to LLMs that can response correctly for NER.

  • Experimental results show that the proposed model outperforms the competitive baselines across benchmarks in zero-shot settings.

Refer to caption
Figure 2: Framework of DE-NER.

2 Related Work

2.1 Zero-Shot Named Entity Recognition

Prompt-Based

Early LLM-based methods formulate NER as a template-based generation task Cui et al. (2021); Ding et al. (2022) or a question-answering task Wei et al. (2023), converting label descriptions into natural language queries to achieve extraction. More recent works fine-tune LLMs on diverse task collections to explicitly follow zero-shot extraction instructions Wang et al. (2023). However, they suffer from prompt sensitivity where minor variations in instruction wording can lead to unstable predictions.

Self-annotated Demonstrations

A recent trend involves converting zero-shot tasks into dynamic few-shot settings by generating demonstrations. ReverseNER Wang et al. (2024) constructs a reliable example library by reversing the generation process from entity definitions, while LLMaAA Zhang et al. (2023) utilizes LLMs as active annotators to synthesize pseudo-labels. Although these generate-then-retrieve pipelines alleviate the lack of supervision, they incur computational overhead due to the requirement for offline data synthesis.

Knowledge-Enhanced

This line of work enhances zero-shot NER by incorporating external knowledge, such as label semantics, ontology descriptions, or structured resources, to support entity grounding and type disambiguation Liang et al. (2020); Jin et al. (2024); Cocchieri et al. (2025). These methods leverage descriptive knowledge rather than labeled instances, enabling annotation-free inference. Instead, our approach resolves ambiguity through multi-turn dialogues without accessing external knowledge sources.

2.2 Interactive Reasoning with LLMs

Chain of Thought Reasoning

CoT encourages LLMs to generate intermediate rationale before final prediction. This paradigm adapts to NER to enhance contextual understanding and few-shot generalization Wei et al. (2022). Recent works Xu and OuYang (2023) propose multi-task instruction frameworks that integrate reasoning steps to guide entity extraction. Li et al. (2024) combine retrieval mechanisms with chain-of-thought reasoning to boost performance on complex medical entities. However, the methods generally operate as a static generation process without any feedback from users, leading the challenge of error accumulation.

Agent Interaction

Recent studies extend interactive LLMs to agent-based reasoning, self-refinement, and multi-agent collaboration Shinn et al. (2023); Liang et al. (2024). This paradigm has recently been explored in information extraction, where agents are used for cross-agent debate in zero-shot extraction Lu et al. (2025) or for document-level extraction with external tools Li et al. (2025). Different from these post-refinement frameworks, DE-NER localizes agent interaction to entity-level clarification, where a trainable Questioner proactively asks about type ambiguity, missed entities, and type errors before final prediction

3 DE-NER

We propose a novel model for zero-shot NER that elicits LLMs to accomplish the task with self-play. As shown in Figure 2, the proposed DE-NER consists of three functional roles implemented by large language models: a Questioner (Q), a Roleplayer (P) and a Responser (R). The Questioner is responsible for raising clarifying questions; the Roleplayer provides answers based on the dialogue history. After several rounds of question answering, the Responser outputs the final predictions. The self-play pipeline of question and answer is without any human interactions.

3.1 Interaction with LLMs

Given an input sentence 𝐱={x1,,xn},\mathbf{x}=\{x_{1},\ldots,x_{n}\}, the goal of NER is to predict a corresponding sequence of entities 𝐲^={y1,,ym}.\hat{\mathbf{y}}=\{y_{1},\ldots,y_{m}\}. We formulate zero-shot NER as a dialogue-driven inference process. The Responser first produces an initial zero-shot NER prediction without any dialogue context 𝐲^(0)=R(𝐱).\hat{\mathbf{y}}^{(0)}=\mathrm{\textit{R}}(\mathbf{x}). This preliminary prediction serves as a hypothesis that will be examined and refined through interaction. The dialogue history is initialized as an empty set, 𝒟(0)=.\mathcal{D}^{(0)}=\emptyset.

For each dialogue turn t{1,,N}t\in\{1,\ldots,N\}, the Questioner generates a clarification question by conditioning on the initial prediction and the dialogue history accumulated so far: q(t)=Q(𝐲^(0),𝒟(t1),θ).q^{(t)}=\mathrm{\textit{Q}}\big(\hat{\mathbf{y}}^{(0)},\mathcal{D}^{(t-1)};\theta\big). The Roleplayer answers each clarification question by grounding its response strictly in the input sentence: a(t)=P(q(t),𝒟(t1)).a^{(t)}=\textit{P}\big(q^{(t)},\mathcal{D}^{(t-1)}\big). Each question–answer pair (q(t),a(t))(q^{(t)},a^{(t)}) is appended to the dialogue history: 𝒟(t)=𝒟(t1){(q(t),a(t))}.\mathcal{D}^{(t)}=\mathcal{D}^{(t-1)}\cup\{(q^{(t)},a^{(t)})\}.

Given NN clarification turns of interactions, the Responser produces the final NER prediction by conditioning on both the input sentence and the full dialogue history: 𝐲^(N)=R(𝐱,𝒟(N)).\hat{\mathbf{y}}^{(N)}=\textit{R}(\mathbf{x},\mathcal{D}^{(N)}). Through this structured interaction process, the model is able to surface implicit constraints in the input text, revise earlier decisions, and correct entity boundaries or types before producing the final zero-shot NER output.

Model NN LOC. ORG. PER. MISC AVG.
CoNLL03
Prompt 72.08±\pm0.82 58.92±\pm2.19 91.15±\pm1.63 21.17±\pm7.34 70.58±\pm1.29
Base 2 71.34±\pm0.76 61.35±\pm1.77 93.60±\pm0.32 42.21±\pm7.88 72.28±\pm0.94
3 71.52±\pm0.67 61.65±\pm1.37 93.92±\pm0.30 22.22±\pm6.05 70.78±\pm0.20
4 70.08±\pm0.87 62.32±\pm1.19 93.44±\pm0.22 19.35±\pm4.07 70.72±\pm0.35
DE-NER 2 72.86±\pm0.22 63.08±\pm2.39 93.69±\pm0.78 49.59±\pm3.87 73.96±\pm0.92
3 72.55±\pm0.26 64.11±\pm2.33 93.73±\pm0.52 44.82±\pm8.04 73.85±\pm0.99
4 71.87±\pm0.16 65.08±\pm2.27 94.20±\pm0.41 49.12±\pm0.81 74.35±\pm0.39
WikiGold
Prompt 80.34±\pm1.36 69.53±\pm1.17 91.72±\pm1.23 36.14±\pm1.54 71.55±\pm1.14
Base 2 80.93±\pm0.06 71.95±\pm1.42 92.09±\pm1.21 42.90±\pm6.15 73.53±\pm1.26
3 79.79±\pm1.46 70.72±\pm0.27 91.86±\pm0.50 40.10±\pm1.40 72.43±\pm0.59
4 80.18±\pm1.44 69.11±\pm0.82 91.62±\pm1.27 40.73±\pm2.99 71.98±\pm0.89
DE-NER 2 82.76±\pm0.89 71.65±\pm1.15 92.28±\pm0.52 49.89±\pm5.11 74.97±\pm1.26
3 81.56±\pm0.96 70.58±\pm1.03 91.88±\pm0.61 48.35±\pm3.49 74.04±\pm0.91
4 81.17±\pm0.76 70.52±\pm2.09 92.32±\pm0.61 46.64±\pm5.30 73.53±\pm1.41
Model NN DNA RNA LINE. TYPE. PROT. AVG.
GENIA
Prompt 21.36 46.15 43.94 51.35 54.80 47.65
Base 2 33.62±\pm2.09 48.08±\pm2.72 45.55±\pm0.35 51.93±\pm2.44 57.97±\pm0.25 51.48±\pm0.09
3 30.16±\pm2.60 45.64±\pm2.45 42.98±\pm1.58 48.69±\pm0.70 59.03±\pm2.68 50.61±\pm1.06
4 29.95±\pm2.85 46.89±\pm2.67 44.19±\pm0.35 49.26±\pm0.16 57.43±\pm0.74 50.02±\pm0.13
DE-NER 2 28.78±\pm1.41 49.33±\pm2.76 44.80±\pm1.22 53.31±\pm1.21 59.16±\pm0.95 51.70±\pm0.01
3 27.52±\pm0.20 45.30±\pm2.92 44.86±\pm2.34 50.95±\pm0.75 58.62±\pm0.23 50.68±\pm0.18
4 25.33±\pm1.62 51.05±\pm12.65 42.21±\pm1.40 49.91±\pm1.34 58.68±\pm0.49 50.09±\pm0.08
Table 1: Results(%) with GPT-3.5-Turbo on CoNLL03, WikiGold , GENIA respectively. The best scores are bold.

3.2 Training with Dialogue Trajectory

To enhance the Questioner ability to ask effective questions under a zero-shot setting, we propose a self-training strategy that constructs supervision signals from dialogue trajectories. Given an unlabeled corpus, we sample a set of sentences {𝐱i}\{\mathbf{x}_{i}\}. For each sentence, we independently run the dialogue-based inference procedure KK times with a high temperature to encourage diverse questioning strategies: 𝒯i={(𝒟i,1(N),𝐲^i,1(N)),,(𝒟i,K(N),𝐲^i,K(N))},\mathcal{T}_{i}=\{(\mathcal{D}^{(N)}_{i,1},\hat{\mathbf{y}}^{(N)}_{i,1}),\ldots,(\mathcal{D}^{(N)}_{i,K},\hat{\mathbf{y}}^{(N)}_{i,K})\}, where 𝒟i,k(N)\mathcal{D}^{(N)}_{i,k} represents the sequence of question-answer pairs in the kk-th run, and 𝐲^i,k(N)\hat{\mathbf{y}}^{(N)}_{i,k} is the resulting entity prediction.

We derive a high-confidence pseudo-label 𝐲~i\tilde{\mathbf{y}}_{i} via entity-level majority voting: 𝐲~i=Vote({𝐲^i,k(N)}k=1K)\tilde{\mathbf{y}}_{i}=\mathrm{Vote}\big(\{\hat{\mathbf{y}}^{(N)}_{i,k}\}_{k=1}^{K}\big), where Vote()\mathrm{Vote}(\cdot) denotes an entity span and its associated type appear in more than half of the KK predictions.

Finally, we identify the optimal dialogue trajectory 𝒟i\mathcal{D}^{*}_{i} by maximizing the overlap with the pseudo-label: 𝒟i=argmax𝒟i,k(N)𝒯iOverlap(𝐲^i,k(N),𝐲~i)\mathcal{D}^{*}_{i}=\arg\max_{\mathcal{D}^{(N)}_{i,k}\in\mathcal{T}_{i}}\mathrm{\text{Overlap}}(\hat{\mathbf{y}}^{(N)}_{i,k},\tilde{\mathbf{y}}_{i}). The Questioner is optimized according to 𝒟i={(q(1),a(1)),,(q(N),a(N))}\mathcal{D}_{i}^{*}=\{(q^{(1)},a^{(1)}),\ldots,(q^{(N)},a^{(N)})\}, while the Roleplayer and the Responser remain frozen. The training loss minimizes the negative log-likelihood of generating the clarification question q(t)q^{(t)} at each dialogue turn t(1,N)t\in(1,N): train=1Nt=1Nlogpθ(q(t)𝐱,𝒟(t1)),\mathcal{L}_{\text{train}}=-\frac{1}{N}\sum_{t=1}^{N}\log p_{\theta}\big(q^{(t)}\mid\mathbf{x},\mathcal{D}^{(t-1)}\big), where pθ()p_{\theta}(\cdot) is the probability of generating question of q(t)q^{(t)} by the questioner Q.

4 Experiments

We carry out experiments on zero-shot standard benchmarks of CoNLL03 Sang and De Meulder (2003), WikiGold Balasuriya et al. (2009) and GENIA Ohta et al. (2002) spanning general and biomedical domains.

4.1 Baselines and Settings

All baselines utilize the same base model for entity prediction to ensure fair comparison. Prompt is instructed to extract entities directly from the input text without any dialogue interaction or external examples. Base adopts a questioner to generate multi-turn questions without any self-training. DE-NER is our proposed model where the questioner is optimized using the dialogue trajectories selected via the voting process.

We use Mistral-7B-Instruct-v0.2 as the questioner, while both the Roleplayer and the Responser are implemented using GPT-3.5-Turbo. We take N{2,3,4}N\in\{2,3,4\} rounds of clarification dialogue. The temperature is 0.8 for questioners and 0.2 for roleplayer and responser with 3 runs.11 1 Detailed prompts can be found in Appendix A.

Prompt Base DE-NER
Mistral-7B-instruct-v0.2 36.85 48.59 25.56
GPT-3.5-Turbo 70.58 72.28 73.96
GPT-4o-mini 75.54 75.81 76.21
Table 2: Results(%) on CoNLL03 of the models for various LLMs.

4.2 Results

Main Result

Tables 1 show the results on CoNLL03, WikiGold, and GENIA, respectively. Base achieves consistent gains over the Prompt, validating the effectiveness of multi-turn interaction while DE-NER yields the best performance by obtaining 74.35, 74.97 and 51.70 F1 scores on CoNLL03, WikiGold and GENIA, respectively.

Model NN kk LOC. ORG. PER. MISC AVG.
Prompt 72.08±\pm0.82 58.92±\pm2.19 91.15±\pm1.63 21.17±\pm7.34 70.58±\pm1.29
DE-NER 2 0 72.86±\pm0.22 63.08±\pm2.39 93.69±\pm0.78 49.59±\pm3.87 73.96±\pm0.92
2 73.70±\pm0.75 62.27±\pm2.86 92.48±\pm1.31 39.66±\pm4.35 73.24±\pm0.36
5 72.97±\pm0.43 63.62±\pm2.32 92.94±\pm1.17 38.29±\pm6.49 73.41±\pm1.38
DE-NER 3 0 72.55±\pm0.26 64.11±\pm2.33 93.73±\pm0.52 44.82±\pm8.04 73.85±\pm0.99
2 73.15±\pm2.69 62.38±\pm2.63 92.61±\pm1.22 42.01±\pm6.69 73.39±\pm1.78
5 72.64±\pm1.30 64.01±\pm2.32 92.52±\pm1.57 33.68±\pm8.18 72.96±\pm2.46
DE-NER 4 0 71.87±\pm0.16 65.08±\pm2.27 94.20±\pm0.41 49.12±\pm0.81 74.35±\pm0.39
2 72.66±\pm0.90 62.36±\pm1.60 93.08±\pm1.30 37.32±\pm2.26 72.97±\pm1.23
5 73.34±\pm1.02 62.21±\pm1.12 92.86±\pm0.70 33.17±\pm4.05 72.73±\pm0.80
Table 3: Results(%) on CoNLL03 of DE-NER based on GPT-3.5-Turbo with numbers of demonstrations. The best scores are bold.

Entity Type

Table 1 shows that DE-NER is beneficial for entities with high ambiguity, such as the MISC in CoNLL03 and WikiGold, with improvements of 27.95 scores and 13.75 scores, respectively. Additionally, for domain-specific entity, DE-NER achieves notable improvements on DNA (+7.42), Cell_type (+1.96), and Protein (+4.36).

4.3 Analysis and Discuss

Scaling Law

We base Roleplayer and Responser to LLMs with different sizes and keep Questioner unchanged to investigate the effect of scaling law on our models. As shown in Table 2, the performance of the DE-NER based on smaller language model (Mistral-7B-instruct-v0.2) significantly decreases, while the performance increases if the model based on larger language model (GPT-4o-mini), suggesting that our models follow and are heavily affected by the scaling law. We conclude that although the learnable questioner is small, the performance of our models can be enhanced as the knowledge of theEMNLP frozen Roleplayer and Responser increases.

In-Context Demonstrations

We equip our model with several demonstrations for kk-shot (k{2,5}k\in\{2,5\}) NER by in-context learning. The demonstrations are randomly sampled from the high-quality dialogue trajectories 𝒟i\mathcal{D}^{*}_{i} selected in Section 3.2. As shown in Table 3, demonstrations cannot improve DE-NER. As the number of demonstration increases, the performance decreases consistently. The main reason is that DE-NER explicitly trained to perform instance-specific reasoning is limited to static in-context demonstrations of encouraging the model to focus on fixed surface features derived from a small set of examples. We conclude that LLMs know what LLMs need to accomplish tasks, which could be lagged by manual interferences.

5 Conclusion

We propose a dialogue elicitation of LLMs framework for zero-shot Named Entity Recognition that elicit large language models to correctly generate responses about named entities. The proposed framework consisting of a learnable questioner, a frozen roleplayer and a frozen responser self-plays to effectively resolves latent ambiguity of named entity recognition without requiring annotated data or manual demonstrations. Additionally, we propose the training with dialogue trajectories to make the model to ask clarifying questions that can effectively elicit LLMs to output correct answers. Experiments carried out on standard benchmarks demonstrate that our proposed model consistently outperforms the competitive baselines.

Limitations

Despite the promising results achieved by our dialogue-based interaction framework, several limitations remain to be addressed in future work:

  • This work focuses on zero-shot named entity recognition, and the proposed DE-NER has not yet been evaluated on other information extraction tasks or more diverse domains.

  • Our experiments are mainly conducted with relatively strong large language models, and the effectiveness of the proposed method on smaller models remains an open question.

References

  • Andukuri et al. (2024) Chinmaya Andukuri, Jan-Philipp Fränken, Tobias Gerstenberg, and Noah D. Goodman. 2024. Star-gate: Teaching language models to ask clarifying questions. ArXiv, abs/2403.19154.
  • Balasuriya et al. (2009) Dominic Balasuriya, Nicky Ringland, Joel Nothman, Tara Murphy, and James R Curran. 2009. Named entity recognition in wikipedia. In Proceedings of the 2009 workshop on the people’s web meets NLP: Collaboratively constructed semantic resources (People’s Web), pages 10–18.
  • Brown et al. (2020) Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, Sandhini Agarwal, Ariel Herbert-Voss, Gretchen Krueger, T. J. Henighan, Rewon Child, Aditya Ramesh, Daniel M. Ziegler, Jeff Wu, Clemens Winter, and 12 others. 2020. Language models are few-shot learners. ArXiv, abs/2005.14165.
  • Cocchieri et al. (2025) Alessio Cocchieri, Marcos Martínez Galindo, Giacomo Frisoni, Gianluca Moro, Claudio Sartori, and Giuseppe Tagliavini. 2025. ZeroNER: Fueling zero-shot named entity recognition via entity type descriptions. In Findings of the Association for Computational Linguistics: ACL 2025, pages 15594–15616, Vienna, Austria. Association for Computational Linguistics.
  • Cui et al. (2021) Leyang Cui, Yu Wu, Jian Liu, Sen Yang, and Yue Zhang. 2021. Template-based named entity recognition using bart. In Findings.
  • Ding et al. (2022) Ning Ding, Yulin Chen, Xu Han, Guangwei Xu, Xiaobin Wang, Pengjun Xie, Haitao Zheng, Zhiyuan Liu, Juanzi Li, and Hong-Gee Kim. 2022. Prompt-learning for fine-grained entity typing. In Findings of the Association for Computational Linguistics: EMNLP 2022, pages 6888–6901, Abu Dhabi, United Arab Emirates. Association for Computational Linguistics.
  • Jin et al. (2024) Qiao Jin, Yifan Yang, Qingyu Chen, and Zhiyong Lu. 2024. Genegpt: Augmenting large language models with domain tools for improved access to biomedical information. Bioinformatics, 40(2):btae075.
  • Li et al. (2025) Bin Li, Jannis Conen, and Felix Aller. 2025. Aid-agent: An llm-agent for advanced extraction and integration of documents. In Proceedings of the 1st Workshop for Research on Agent Language Models (REALM 2025), pages 80–88.
  • Li et al. (2023) G. Li, Hasan Hammoud, Hani Itani, Dmitrii Khizbullin, and Bernard Ghanem. 2023. Camel: Communicative agents for "mind" exploration of large language model society. In Neural Information Processing Systems.
  • Li et al. (2024) Mingchen Li, Huixue Zhou, Han Yang, and Rui Zhang. 2024. Rt: a retrieving and chain-of-thought framework for few-shot medical named entity recognition. Journal of the American Medical Informatics Association, 31(9):1929–1938.
  • Liang et al. (2020) Chen Liang, Yue Yu, Haoming Jiang, Siawpeng Er, Ruijia Wang, Tuo Zhao, and Chao Zhang. 2020. Bond: Bert-assisted open-domain named entity recognition with distant supervision. In Proceedings of the 26th ACM SIGKDD international conference on knowledge discovery & data mining, pages 1054–1064.
  • Liang et al. (2024) Tian Liang, Zhiwei He, Wenxiang Jiao, Xing Wang, Yan Wang, Rui Wang, Yujiu Yang, Shuming Shi, and Zhaopeng Tu. 2024. Encouraging divergent thinking in large language models through multi-agent debate. In Proceedings of the 2024 conference on empirical methods in natural language processing, pages 17889–17904.
  • Lu et al. (2025) Meng Lu, Yuzhang Xie, Zhenyu Bi, Shuxiang Cao, and Xuan Wang. 2025. Crossagentie: Cross-type and cross-task multi-agent llm collaboration for zero-shot information extraction. In Findings of the Association for Computational Linguistics: ACL 2025, pages 13953–13977.
  • Ohta et al. (2002) Tomoko Ohta, Yuka Tateisi, Jin-Dong Kim, Hideki Mima, and Junichi Tsujii. 2002. The genia corpus: An annotated research abstract corpus in molecular biology domain. In Proceedings of the human language technology conference, pages 73–77. Morgan Kaufmann Publishers Inc. San Francisco.
  • Sang and De Meulder (2003) Erik Tjong Kim Sang and Fien De Meulder. 2003. Introduction to the conll-2003 shared task: Language-independent named entity recognition. In Proceedings of the seventh conference on Natural language learning at HLT-NAACL 2003, pages 142–147.
  • Shinn et al. (2023) Noah Shinn, Federico Cassano, Ashwin Gopinath, Karthik Narasimhan, and Shunyu Yao. 2023. Reflexion: Language agents with verbal reinforcement learning. Advances in Neural Information Processing Systems, 36:8634–8652.
  • Wang et al. (2024) Anbang Wang, Difei Mei, Zhichao Zhang, Xiuxiu Bai, Ran Yao, Zewen Fang, Min Hu, Zhirui Cao, Haitao Sun, Yifeng Guo, and 1 others. 2024. Reversener: A self-generated example-driven framework for zero-shot named entity recognition with large language models. arXiv preprint arXiv:2411.00533.
  • Wang et al. (2023) Xiao Wang, Weikang Zhou, Can Zu, Han Xia, Tianze Chen, Yuansen Zhang, Rui Zheng, Junjie Ye, Qi Zhang, Tao Gui, and 1 others. 2023. Instructuie: Multi-task instruction tuning for unified information extraction. arXiv preprint arXiv:2304.08085.
  • Wang et al. (2025) Zihan Wang, Ziqi Zhao, Yougang Lyu, Zhumin Chen, Maarten de Rijke, and Zhaochun Ren. 2025. A cooperative multi-agent framework for zero-shot named entity recognition. In Proceedings of the ACM on Web Conference 2025, pages 4183–4195.
  • Wei et al. (2022) Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, and 1 others. 2022. Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems, 35:24824–24837.
  • Wei et al. (2023) Xiang Wei, Xingyu Cui, Ning Cheng, Xiaobin Wang, Xin Zhang, Shen Huang, Pengjun Xie, Jinan Xu, Yufeng Chen, Meishan Zhang, and 1 others. 2023. Chatie: Zero-shot information extraction via chatting with chatgpt. arXiv preprint arXiv:2302.10205.
  • Xie et al. (2024) Tingyu Xie, Qi Li, Yan Zhang, Zuozhu Liu, and Hongwei Wang. 2024. Self-improving for zero-shot named entity recognition with large language models. In Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 2: Short Papers), pages 583–593, Mexico City, Mexico. Association for Computational Linguistics.
  • Xu and OuYang (2023) WenJie Xu and JianQuan OuYang. 2023. A multi-task instruction with chain of thought prompting generative framework for few-shot named entity recognition. In International conference on artificial neural networks, pages 1–15. Springer.
  • Zhang et al. (2023) Ruoyu Zhang, Yanzeng Li, Yongliang Ma, Ming Zhou, and Lei Zou. 2023. Llmaaa: Making large language models as active annotators. arXiv preprint arXiv:2310.19596.

Appendix A Prompt Templates

We show the prompts use in this work in Table 4 , Table 5 and Tabel 6.

Prompts of Questioner model
You are an expert in Named Entity Recognition (NER).
Review the dialogue history. Then generate exactly ONE clarifying question that will most improve the accuracy of the NER result.
Text: {}
Preliminary NER result: {}
Dialogue History: {}
Requirements:
- Output only one question.
- Do not repeat questions in the dialogue history.
- Your question should directly address one of the following issues in the preliminary NER result:
\bullet [Entity Type Ambiguity]: If an entity’s type is uncertain.
\bullet [Entity Boundary Conflict]: If the span of an entity is unclear.
\bullet [Missed Entity]: If a potential entity might have been omitted.
\bullet [Entity Type Error]: If an entity might be mislabeled.
Table 4: Prompt template for the Questioner model.
Prompts of Roleplayer model
You are an expert in Named Entity Recognition (NER).
Dialogue History:{}
Your task is review the dialogue history, answer the question:{}
Table 5: Prompt template for the Roleplayer model.
Prompts of Responser model
You are an expert in Named Entity Recognition (NER).
You should refer to the dialogue history as contextual information to improve entity recognition accuracy.
Text: {}
Preliminary NER result: {}
Dialogue History: {}
Given the entity label set is: [’DNA’, ’RNA’, ’protein’,’cell_line’,’cell_type’]. Based on the given entity label set, according to the genia annotation guidelines, please recognize the named entities in the given text.
Provide answer in the following JSON format: [’Entity Name’: ’Entity Label’]. If there is no entity in the text, return the following empty list: []
Table 6: Prompt template for the Responser model. Entity sets from GENIA are displayed.

Appendix B Comparison Baselines

We compare DE-NER with several representative zero-shot NER methods. The comparison results are reported in Table 7.

  • Prompt-based This baseline directly prompts the LLM for zero-shot entity recognition without dialogue interaction or demonstrations.

  • Self-Improving Xie et al. (2024). This method constructs reliable self-annotated demonstrations from an unlabeled corpus via self-consistency.

  • CMAS Wang et al. (2025). This method uses a cooperative multi-agent framework with self-annotation, type-related feature extraction, demonstration discrimination, and final prediction.

  • ReverseNER Wang et al. (2024). This method builds an example library by reversing the NER process from entity definitions to labeled sentences.

Table 7: Results(%) on CoNLL03, WikiGold, and GENIA.
Method CoNLL03 WikiGold GENIA AVG.
Prompt-based 70.58 71.55 47.65 63.26
Self-Improving 74.51 73.98 52.06 66.85
CMAS 76.23 50.00
ReverseNER (GPT-4o mini) 77.78 78.45
DE-NER (Ours) 74.35 74.97 51.70 67.01

Appendix C Results on Additional Benchmarks

We further evaluate DE-NER on the MIT-Restaurant dataset to reduce the potential contamination risk of widely used NER benchmarks and to test the method. Table 8 reports results with both closed-source and open-source LLMs as Roleplayer and Responser.

Appendix D Case Study

Table 9 shows that the prediction on GENIA across different models. In the first example, prompt-based model recognize DCs as a cell_type, but fail to detect Sp1 while DE-NER identity correctly Sp1 as protein via dialogue interaction with LLMs of raising a question of "What is the biological role of Sp1 in the given context?" to elicit LLMs to make corrections. In the second examples, prompt-based model fails to detect any entity (TR and TREp) while DE-NER correctly both of them by clarifying the definition of named entity. In the third examples, DE-NER can correct the entity type via further clarify questions. These examples show two typical effects of dialogue elicitation: recovering missed entities, clarifying error entity types. The generated clarification questions guide the model to revisit the initial prediction and use its internal knowledge more effectively for zero-shot NER.

Table 8: Results(%) with closed-source LLMs and open-source LLMs on MIT-Restaurant dataset. The best scores are bold.
Model NN AME. CUI. DISH HOUR LOC. PRI. RAT. Name. Overall
GPT-4o-mini
Prompt 9.90 39.39 26.67 15.38 27.49 33.33 36.07 66.67 35.12
Base 2 20.33±\pm0.91 41.78±\pm1.43 39.03±\pm0.48 21.56±\pm3.66 29.26±\pm2.21 38.98±\pm1.57 41.60±\pm1.81 68.10±\pm0.51 40.00±\pm0.65
3 19.88±\pm1.58 41.79±\pm2.64 36.15±\pm1.71 24.71±\pm0.25 29.85±\pm0.72 37.66±\pm1.99 40.00±\pm2.18 68.30±\pm2.51 39.93±\pm0.59
4 21.95±\pm3.39 38.97±\pm1.93 33.63±\pm2.01 23.24±\pm3.79 29.70±\pm1.03 40.60±\pm1.20 39.10±\pm3.67 69.70±\pm0.70 39.72±\pm0.55
DE-NER 2 19.94±\pm2.61 45.10±\pm2.64 47.33±\pm1.88 18.95±\pm3.46 33.52±\pm2.88 40.19±\pm0.33 39.70±\pm1.33 70.30±\pm0.93 42.43±\pm1.06
3 20.04±\pm3.22 43.79±\pm0.53 46.11±\pm3.46 18.19±\pm4.65 33.19±\pm0.79 40.20±\pm3.39 38.25±\pm1.89 71.48±\pm0.50 42.24±\pm0.41
4 18.53±\pm6.16 43.75±\pm1.69 43.90±\pm3.21 19.37±\pm4.92 33.74±\pm2.23 39.80±\pm1.72 37.80±\pm1.52 71.46±\pm0.76 42.05±\pm0.51
Qwen3-14B
Prompt 21.24 66.67 43.18 18.87 30.91 44.12 36.07 83.24 47.85
Base 2 45.43±\pm2.95 71.99±\pm0.69 63.94±\pm2.89 32.55±\pm0.99 36.20±\pm1.10 60.51±\pm0.44 47.29±\pm0.40 70.07±\pm0.36 54.29±\pm0.44
3 43.71±\pm4.72 70.86±\pm0.07 63.23±\pm1.92 32.71±\pm4.26 35.45±\pm0.59 59.92±\pm2.92 44.75±\pm2.32 71.53±\pm1.82 53.79±\pm1.20
4 42.01±\pm2.62 71.25±\pm1.38 63.43±\pm2.81 33.92±\pm5.17 37.14±\pm1.63 58.69±\pm4.39 45.54±\pm0.80 70.81±\pm1.74 53.90±\pm1.49
DE-NER 2 44.77±\pm1.94 69.85±\pm1.18 62.39±\pm0.57 27.06±\pm1.67 35.78±\pm0.85 57.85±\pm1.90 39.18±\pm2.72 75.53±\pm1.09 53.81±\pm0.69
3 45.04±\pm2.66 69.56±\pm1.93 62.39±\pm0.57 27.15±\pm2.84 35.65±\pm0.89 57.26±\pm0.92 39.20±\pm0.33 75.64±\pm0.60 53.67±\pm0.63
4 44.14±\pm1.22 70.13±\pm0.85 62.73±\pm0.96 25.80±\pm2.14 36.19±\pm0.86 57.26±\pm0.92 38.38±\pm1.75 75.81±\pm0.81 53.76±\pm0.08
Input Sentence Baseline Prediction Dialogue Interaction DE-NER Prediction
However, [DCs]cell_type lack [Sp1]cell_type, which may explain the failure of HIV-1 to replicate in purified DCs. {"DCs": "cell_type"} Q: What is the biological role of Sp1 in the given context?
A: Sp1 is a transcription factor regulating gene expression.
{"DCs": "cell_type"}, {"Sp1": "protein"}
At high concentration of NE, all of the [TR]protein bound to [TREp]DNA was more greatly retarded than in the absence of NE. [] Q: What specific compound is referred to as NE in the text?
A: NE is norepinephrine, a neurotransmitter likely affecting TR binding to TREp.
{"TR": "protein"}, {"TREp": "DNA"}
Human immunodeficiency virus [vpr product]protein is a [virion-associated regulatory protein]protein. {’Human immunodeficiency virus’: ’protein’}, {’vpr product’: ’protein’}, {’virion-associated regulatory protein’: ’protein’} Q: What is the type of "Human immunodeficiency virus" in the text?
A: The entity Human immunodeficiency virus in the text is a virus, not a protein.
{’vpr product’: ’protein’}, {’virion-associated regulatory protein’: ’protein’}
Table 9: GENIA dataset examples show baseline NER prediction, dialogue interaction, and DE-NER prediction.