Research
NurseLLM: The First Specialized Language Model for Nursing
Overview Research area: Natural language processing / domain-specialized large language models for healthcare, specifically nursing question-answering. Technical level: Intermediate. The paper is read
- arXiv
- 2510.07173
- Published
- 2025-10-08
- Authors
- Md Tawkat Islam Khondaker, Julia Harrington, Shady Shehata
AI summary
Overview
Research area: Natural language processing / domain-specialized large language models for healthcare, specifically nursing question-answering.
Technical level: Intermediate. The paper is readable without deep ML background, but assumes familiarity with fine-tuning, benchmarks, and multi-agent systems.
Scope: The paper introduces NurseLLM, an 8B-parameter language model fine-tuned for nursing multiple-choice question-answering, along with a synthetic NCLEX-style training dataset and three nursing benchmarks.
What This Paper Is About
Large language models have been adapted for medicine, but nursing — a distinct discipline centered on holistic, person-centered care rather than diagnosis and treatment — has received almost no specialized model or benchmark attention. The authors build the first nursing-specialized LLM, generate a large-scale NCLEX-equivalent training corpus, and create nursing evaluation benchmarks to test whether domain specialization actually helps.
Key Contributions
- NurseLLM, described by the authors as the first LLM specifically designed for nursing question-answering. Given a nursing multiple-choice question, it returns both an answer and a rationale for transparency and credibility.
- A multi-stage data generation pipeline producing what the authors call the first large-scale, topic-diverse nursing QA dataset, built from a taxonomy of 7 specializations, 60 domains, 232 topics, and 1,830 concepts.
- Three nursing MCQ benchmarks: NCLEX-Test (1,726 human-written, nurse-verified questions), GPT4o-Test (1,830 GPT-4o-generated questions), and MultiNurseQA (a nursing-relevant subset of MultiMedQA mined with GPT-4o).
- An investigation of reasoning-based training and multi-agent collaboration in nursing, showing both approaches improve accuracy over a single NurseLLM instance.
Main Findings
- NCLEX-Test dominance: NurseLLM scores above 76% accuracy, while medical-specialized baselines such as Med42 and OpenBioLLM fail to reach 70%.
- GPT4o-Test near-parity with a larger model: NurseLLM (8B parameters) exceeds 91% accuracy, approaching GPT-4o-mini's 94.97%.
- MultiMedQA trade-off: On the generic medical benchmark, Med42 leads with 72.41 average accuracy and OpenBioLLM follows at 71.99; NurseLLM reaches 71.01. The authors attribute NurseLLM's drop below its own base model to catastrophic forgetting during nursing-domain adaptation, despite applying MergeKit with the DARE method at a 60% merging proportion.
- MultiNurseQA ranking: Med42 remains first with 69.96 average accuracy; NurseLLM is second at 69.77, trailing by 0.19%. Across models, performance declines versus MultiMedQA, and NurseLLM shows the smallest degradation.
- Reasoning helps at a fraction of the data: A reasoning-trained variant trained on 4,683 samples (filtered from 5,000 sampled examples with DeepSeek-R1-Distill-Qwen-32B traces) scores 72.01% on NCLEX-Test — 4.24% behind the full NurseLLM while using only 1/30th of the data.
- Multi-agent system improves accuracy: Deploying NurseLLM as a multi-agent collaborative system (orchestrator, dynamically assigned expert agents, moderator) reaches 79.87% on NCLEX-Test, a 3.62% gain over the single-model NurseLLM.
- Data scaling: Using a 100-sample human-labeled validation set, accuracy improves monotonically with more training data, with the improvement rate declining after 90K samples; the paper states performance peaks at 125K and the authors limited the synthetic dataset to 140K samples.
- Base model choice matters: With the same validation set, Med42 as the base model yields 76 accuracy, OpenBioLLM 73, and LLaMA 72, indicating a medical-specialized base helps nursing adaptation.
- Runtime cost of the added approaches: Single-LLM 5.6 seconds (1×), reasoning LLM 8.8 seconds (1.57×), multi-agent on easy questions 6.1 seconds (1.09×), and multi-agent on hard questions 28.3 seconds (5.05×).
Methodology in Plain English
Two Registered Nurses with NCLEX expertise first built an exhaustive topic taxonomy from NCLEX books and web corpora, organizing content into 7 specializations, 60 domains, 232 topics, and 1,830 concepts. Using that taxonomy as prompts, the authors had GPT-4o generate NCLEX-style multiple-choice questions along with rationales explaining the correct answers — producing a dataset the introduction describes as 125K samples.
To keep the training data clean, they used a two-step decontamination filter: each generated question is first compared against the GPT4o-Test and NCLEX-Test benchmarks, then against other generated samples under the same concept. Comparisons use ROUGE-L with a 0.5 threshold, following the Alpaca approach.
For training, they started from Llama3-Med42-8B, set maximum sequence length to 2,048, batch size to 1 with gradient accumulation of 8, and trained for 2 epochs with a cosine scheduler at a learning rate of 2e-5 using QLoRA with 4-bit quantization on an NVIDIA 10G GPU on AWS SageMaker for 4 days. To limit catastrophic forgetting, they merged the fine-tuned model back with base Med42 using MergeKit and the DARE method at a 60% merge proportion, chosen by validation performance.
Evaluation compared NurseLLM against nine open-source baselines (Med42, Gemma, Apollo, LLaMA, OpenBioLLM, Mistral, BioMistral, MedAlpaca, DeepSeek-LLaMA) across four benchmarks. Closed-source models such as ChatGPT were deliberately excluded because their sizes are not comparable and because the authors did not want to expose their proprietary NCLEX-Test benchmark.
Why This Matters
The paper argues that nursing and medicine are genuinely different knowledge domains — medicine follows a biomedical diagnosis-and-treatment model, while nursing emphasizes holistic, person-centered care including advocacy, education, and emotional support — and that the same patient may be viewed differently by nurses and physicians. With more than 28 million nurses worldwide forming the largest segment of the global health workforce, the authors argue the profession needs AI tools built around its own values and decision-making.
Real-world applications:
- Preparing nurses for the NCLEX, a standardized entry-to-practice exam required in the United States and Canada for RN and LPN licensure, which uses computer-adaptive testing to measure clinical judgment.
- Clinical decision support that reflects nursing-specific reasoning rather than generic medical reasoning.
- Nursing education and rationale-based learning, since the model explains why an answer is correct.
- Triaging or question-routing in nursing workflows via the multi-agent system, where easy questions go to a single model and harder ones go to a debate among specialist agents.
Industry relevance: Prior work cited in the paper reports that general LLMs such as ChatGPT-3.5 show indecisiveness in clinical assessments, suggest unnecessary diagnostic tests, and misunderstand nursing concepts, with a tendency toward over-triage compared to human clinicians. NurseLLM offers a specialized, open alternative and a reproducible data pipeline that health-tech and clinical-education companies could build on.
Future Directions
- Scaling reasoning-incorporated nursing training: The authors state they are currently expanding the reasoning dataset to build a nursing-specialized large reasoning model, since the 4,683-sample reasoning variant already reached 72.01% with roughly 1/30th the data.
- Reducing forgetting of general medical knowledge: NurseLLM's average on MultiMedQA (71.01) sits below its own base model Med42 (72.41), leaving open how to adapt to nursing without losing medical capability.
- Improving raw nursing accuracy: The limitations section states there is still room for improvement, and that NurseLLM can produce inaccurate responses and should be deployed with caution in a sensitive field.
- Data quality and reproducibility: Because the pipeline is automated, the authors recommend human inspection to remove low-quality samples, and they note results depend on the GPT-4o version from May 2024, which can change over time. They also plan to release the synthetic test benchmarks and training dataset upon acceptance.
Target Audience
Researchers and engineers building healthcare-specialized LLMs; nursing educators and clinical informatics teams evaluating AI for licensure preparation or decision support; and benchmark developers interested in how domain-specific evaluation exposes gaps that generic medical benchmarks miss. Clinicians and administrators considering AI deployment in nursing contexts will also benefit, especially from the limitations and ethics discussion.
Authors’ abstract
Recent advancements in large language models (LLMs) have significantly transformed medical systems. However, their potential within specialized domains such as nursing remains largely underexplored. In this work, we introduce NurseLLM, the first nursing-specialized LLM tailored for multiple choice question-answering (MCQ) tasks. We develop a multi-stage data generation pipeline to build the first large scale nursing MCQ dataset to train LLMs on a broad spectrum of nursing topics. We further introduce multiple nursing benchmarks to enable rigorous evaluation. Our extensive experiments demonstrate that NurseLLM outperforms SoTA general-purpose and medical-specialized LLMs of comparable size on different benchmarks, underscoring the importance of a specialized LLM for the nursing domain. Finally, we explore the role of reasoning and multi-agent collaboration systems in nursing, highlighting their promise for future research and applications.