CoNLL-2003 is the benchmark dataset and shared task from the 2003 Conference on Computational Natural Language Learning that established the standard evaluation methodology for Named Entity Recognition (NER). It defines a language-independent annotation schema with four entity types: persons (PER), locations (LOC), organizations (ORG), and miscellaneous (MISC). The dataset provides English and German language corpora composed of Reuters news wire articles, annotated using the BIO tagging scheme where each token is labeled as Beginning, Inside, or Outside of an entity span.
Glossary
CoNLL-2003

What is CoNLL-2003?
The foundational benchmark for language-independent named entity recognition that established the standard evaluation methodology and four entity types.
The shared task formalized mention-level F1 as the primary evaluation metric, requiring exact matches of both entity span boundaries and type classifications. The English dataset contains approximately 300,000 tokens across training, development, and test splits, with the test set serving as a long-standing benchmark for comparing sequence labeling architectures from Conditional Random Fields (CRF) to modern BERT-NER fine-tuning approaches.
Key Characteristics of CoNLL-2003
The CoNLL-2003 shared task established the foundational blueprint for modern Named Entity Recognition evaluation, defining the data format, entity taxonomy, and scoring methodology that remain standard today.
The Four-Class Taxonomy
CoNLL-2003 defines a rigid semantic ontology of four entity types, establishing the baseline complexity for information extraction.
- PER (Person): Named individuals, including fictional characters.
- ORG (Organization): Companies, agencies, institutions, and formal groups.
- LOC (Location): Geopolitical entities, geographical features, and facilities.
- MISC (Miscellaneous): A catch-all for proper nouns not fitting the other three classes, such as events, nationalities, products, and laws. This coarse-grained schema forces models to learn broad semantic boundaries rather than fine-grained distinctions.
Language-Independent Design
The shared task was explicitly structured to evaluate language-independent NER systems. Data was provided for English and German, requiring participants to build models that generalized across linguistic boundaries.
- English Dataset: Sourced from Reuters newswire articles, representing formal journalistic prose.
- German Dataset: Sourced from the ECI multilingual corpus, introducing compound nouns and different capitalization rules. This cross-lingual setup tested the robustness of feature engineering beyond English-specific heuristics.
I-O-B Tagging Scheme
CoNLL-2003 popularized the Inside-Outside-Beginning (IOB2) format for token-level sequence labeling, which became the de facto standard for NER data annotation.
- B-ORG: Marks the first token of an organization entity.
- I-ORG: Marks subsequent tokens inside the same organization entity.
- O: Marks tokens outside any entity span. This scheme explicitly encodes entity boundaries, allowing models to learn both segmentation and classification simultaneously without ambiguity.
Strict Evaluation Protocol
The task established a rigorous evaluation script that computes entity-level precision, recall, and F1-score. A prediction is considered correct only if both the span boundaries and the entity type match the gold standard exactly.
- Boundary Error: Predicting the correct type but wrong span (e.g., 'Bank' vs 'Bank of England') counts as a false positive and a false negative.
- Type Error: Predicting the correct span but wrong type (e.g., 'Washington' as PER instead of LOC) is a complete miss. This strict exact-match criterion penalizes partially correct answers, setting a high bar for production-grade systems.
Baseline and State-of-the-Art Trajectory
CoNLL-2003 served as the primary benchmark for tracking NER progress for over a decade.
- Early Systems: Relied heavily on hand-crafted features, gazetteers, and Maximum Entropy Markov Models.
- Deep Learning Era: BiLSTM-CRF architectures with pre-trained word embeddings (GloVe, word2vec) pushed F1 scores above 91%.
- Transformer Revolution: Fine-tuned BERT models and SpanBERT achieved near-human performance, exceeding 93% F1 on the English test set. The dataset's saturation at human-level performance prompted the community to develop more challenging benchmarks like OntoNotes.
Data Distribution and Splits
The English dataset comprises a standard train-validation-test split derived from Reuters news, ensuring consistent evaluation across research papers.
- Training Set: 14,987 sentences used for model parameter optimization.
- Validation Set (Dev): 3,466 sentences used for hyperparameter tuning and early stopping.
- Test Set: 3,684 sentences held out for final evaluation, with labels never observed during training. The fixed split eliminates variance from random partitioning, enabling direct and fair comparison between different published approaches.
Frequently Asked Questions
Answers to the most common technical questions about the CoNLL-2003 shared task, its annotation schema, evaluation methodology, and its enduring impact on modern Named Entity Recognition systems.
The CoNLL-2003 dataset is the foundational benchmark corpus for the Named Entity Recognition (NER) shared task introduced at the Conference on Computational Natural Language Learning in 2003. It established the standard evaluation methodology for language-independent NER by defining four core entity types: persons (PER), organizations (ORG), locations (LOC), and miscellaneous (MISC). The corpus consists of Reuters newswire articles annotated with these entity types, split into a standard training set (approximately 15,000 sentences), a development set (3,466 sentences), and a test set (3,684 sentences). Its importance stems from being the first widely adopted, rigorous benchmark that allowed the global NLP community to directly compare sequence labeling architectures—from early Maximum Entropy Markov Models and Conditional Random Fields (CRF) to modern Transformer-based systems—on a shared, language-independent task definition. Nearly every major NER architecture, including BERT-NER and SpanBERT, reports its primary results on the CoNLL-2003 English test set, making it the de facto standard for measuring progress in entity extraction.
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
CoNLL-2003 vs. Other NER Benchmarks
A feature-level comparison of the CoNLL-2003 shared task against other widely-used named entity recognition evaluation datasets.
| Feature | CoNLL-2003 | OntoNotes 5.0 | WNUT-2017 |
|---|---|---|---|
Primary Domain | Newswire (Reuters) | Multi-domain (news, web, broadcast) | Social media (Twitter) |
Entity Types | 4 (PER, LOC, ORG, MISC) | 18 (coarse + fine-grained) | 6 (person, location, corporation, product, creative-work, group) |
Annotation Scheme | BIO2 (IOB2) | BIOES | BIO |
Total Tokens | ~300,000 | ~2.5 million | ~40,000 |
Nested Entities | |||
Multilingual Support | English + German | English + Chinese + Arabic | English only |
State-of-the-Art F1 | 94.6% (ACE + document-level) | 92.8% (BERT + Flair embeddings) | 55.3% (Cross-View Training) |
Standard Evaluation Metric | Mention-level F1 (exact span + type) | Mention-level F1 (exact span + type) | Mention-level F1 (exact span + type) |
Related Terms
Key concepts, architectures, and evaluation methodologies that form the technical foundation for the CoNLL-2003 shared task and modern Named Entity Recognition systems.

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us