Evaluates biomedical named entity recognition (NER) capabilities on scientific literature. It probes a model's ability to identify and classify nine distinct bioentity types (e.g., genes, cell lines, diseases) within text extracted from published biological figures and captions. Use when the user wants to benchmark on SourceData-NLP, or asks about evaluating this task. Reports F1 score.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill sourcedata-nlp-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Sourcedata Nlp Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-sourcedata-nlp-eval)More formats (shields.io, HTML) on the badges page.
---
name: sourcedata-nlp-eval
description: Evaluates biomedical named entity recognition (NER) capabilities on scientific literature. It probes a model's ability to identify and classify nine distinct bioentity types (e.g., genes, cell lines, diseases) within text extracted from published biological figures and captions. Use when the user wants to benchmark on SourceData-NLP, or asks about evaluating this task. Reports F1 score.
metadata:
skill_kind: dataset_eval
source_arxiv: 2310.20440
bibtex_key: abreu2023sourcedatanlp
confidence: high
---
# sourcedata-nlp-eval
> Integrating curation into scientific publishing to train AI models — Abreu Vicente et al. (2023) (arXiv:2310.20440, 2023)
## What this evaluates
Evaluates biomedical named entity recognition (NER) capabilities on scientific literature. It probes a model's ability to identify and classify nine distinct bioentity types (e.g., genes, cell lines, diseases) within text extracted from published biological figures and captions.
## Datasets
- **SourceData-NLP** — total 801818; splits: train (-1), val (-1), test (-1); repo https://github.com/source-data/soda-data
## Metrics
- `F1 score` **(primary)** — range: percent
- Harmonic mean of precision and recall. Calculated per entity class and aggregated via micro, macro, or weighted averaging. Reported as the mean across 5 inference rounds.
## Input / output format
**Input**: Text spans from scientific articles and figure captions containing biological entities.
**Output**: Span-level labels from a fixed set of nine entity categories (Gene product, Cell line, Organism, Small molecule, Tissue, Subcellular, Cell type, Disease, Exp. Assay) and optional external database identifiers.
## Scoring recipe
```python
def compute_f1(preds, golds):
tp = sum(1 for p, g in zip(preds, golds) if p == g)
fp = sum(1 for p, g in zip(preds, golds) if p != g and p != 'O')
fn = sum(1 for p, g in zip(preds, golds) if p != g and g != 'O')
prec = tp / (tp + fp) if (tp + fp) > 0 else 0
rec = tp / (tp + fn) if (tp + fn) > 0 else 0
return 2 * prec * rec / (prec + rec) if (prec + rec) > 0 else 0
```
## Common pitfalls
- Entity classes are highly imbalanced (e.g., gene products vs. diseases), causing macro-averaged F1 to differ significantly from micro-averaged F1.
- Splits are stratified by article/figure rather than randomly shuffled, risking data leakage if related papers share similar terminology or experimental designs.
- The paper also evaluates a separate semantic role classification task and figure segmentation task, which are sometimes conflated with the core NER benchmark.
## Evidence (verbatim from paper)
> The dataset is segmented into training, evaluation, and test sets in an 80-10-10 ratio. In total, 801,818 entities are provided, including 686,846 entities linked to identifiers in external databases. ... The results show the average F1 scores obtained through 5 inference rounds.
## Citation
```bibtex
@misc{abreu2023sourcedatanlp,
title={Integrating curation into scientific publishing to train AI models},
author={Abreu Vicente et al. (2023)},
year={2023},
note={arXiv:2310.20440}
}
```
- arXiv: 2310.20440
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!