Specialized model for Cancer Genetics - Cancer-related genetic entities
This model is a state-of-the-art fine-tuned transformer engineered to deliver enterprise-grade accuracy for cancer genetics - cancer-related genetic entities. This specialized model excels at identifying and extracting biomedical entities from clinical texts, research papers, and healthcare documents, enabling applications such as drug interaction detection, medication extraction from patient records, adverse event monitoring, literature mining for drug discovery, and biomedical knowledge graph construction with production-ready reliability for clinical and research applications.
This model can identify and classify the following biomedical entities:
B-Amino_acidB-Anatomical_systemB-CancerB-CellB-Cellular_componentB-Developing_anatomical_structureB-Gene_or_gene_productB-Immaterial_anatomical_entityB-Multi-tissue_structureB-OrganB-OrganismB-Organism_subdivisionB-Organism_substanceB-Pathological_formationB-Simple_chemicalB-TissueI-Amino_acidI-Anatomical_systemI-CancerI-CellI-Cellular_componentI-Developing_anatomical_structureI-Gene_or_gene_productI-Immaterial_anatomical_entityI-Multi-tissue_structureI-OrganI-OrganismI-Organism_subdivisionI-Organism_substanceI-Pathological_formationI-Simple_chemicalI-TissueBioNLP 2013 CG corpus targets cancer genetics entities for oncology research and cancer genomics.
The BioNLP 2013 CG (Cancer Genetics) corpus is a specialized dataset focusing on cancer genetics entities and gene regulation in oncology research. This corpus contains annotations for genes, proteins, and molecular processes specifically related to cancer biology and tumor genetics. Developed for the BioNLP Shared Task 2013, it supports the development of text mining systems for cancer research, oncological studies, and precision medicine applications. The dataset is particularly valuable for identifying cancer-related biomarkers, tumor suppressor genes, oncogenes, and therapeutic targets mentioned in cancer research literature. It serves as a benchmark for evaluating NER systems used in cancer genomics, personalized medicine, and oncology informatics.
0.790.790.800.89| Rank | Model | F1 Score | Precision | Recall | Accuracy |
|---|---|---|---|---|---|
| 🥇 1 | OpenMed-NER-OncologyDetect-SuperMedical-355M | 0.8990 | 0.8926 | 0.9056 | 0.9416 |
| 🥈 2 | OpenMed-NER-OncologyDetect-ElectraMed-560M | 0.8841 | 0.8788 | 0.8895 | 0.9390 |
| 🥉 3 | OpenMed-NER-OncologyDetect-SnowMed-568M | 0.8801 | 0.8774 | 0.8828 | 0.9366 |
| 4 | OpenMed-NER-OncologyDetect-PubMed-335M | 0.8782 | 0.8834 | 0.8730 | 0.9539 |
| 5 | OpenMed-NER-OncologyDetect-MultiMed-568M | 0.8766 | 0.8749 | 0.8784 | 0.9351 |
| 6 | OpenMed-NER-OncologyDetect-SuperClinical-434M | 0.8684 | 0.8602 | 0.8768 | 0.9495 |
| 7 | OpenMed-NER-OncologyDetect-BioMed-335M | 0.8660 | 0.8540 | 0.8783 | 0.9516 |
| 8 | OpenMed-NER-OncologyDetect-PubMed-109M | 0.8606 | 0.8604 | 0.8608 | 0.9503 |
| 9 | OpenMed-NER-OncologyDetect-BigMed-560M | 0.8556 | 0.8582 | 0.8530 | 0.9250 |
| 10 | OpenMed-NER-OncologyDetect-ModernClinical-395M | 0.8471 | 0.8465 | 0.8476 | 0.9411 |
Rankings based on F1-score performance across all models trained on this dataset.

Figure: OpenMed (Open-Source) vs. Latest SOTA (Closed-Source) performance comparison across biomedical NER datasets.
pip install transformers torch
from transformers import pipeline
# Load the model and tokenizer
# Model: https://huggingface.co/OpenMed/OpenMed-NER-OncologyDetect-BigMed-278M
model_name = "OpenMed/OpenMed-NER-OncologyDetect-BigMed-278M"
# Create a pipeline
medical_ner_pipeline = pipeline(
model=model_name,
aggregation_strategy="simple"
)
# Example usage
text = "Mutations in KRAS gene drive oncogenic transformation."
entities = medical_ner_pipeline(text)
print(entities)
token = entities[0]
print(text[token["start"] : token["end"]])
NOTE: The aggregation_strategy parameter defines how token predictions are grouped into entities. For a detailed explanation, please refer to the Hugging Face documentation.
Here is a summary of the available strategies:
none: Returns raw token predictions without any aggregation.simple: Groups adjacent tokens with the same entity type (e.g., B-LOC followed by I-LOC).first: For word-based models, if tokens within a word have different entity tags, the tag of the first token is assigned to the entire word.average: For word-based models, this strategy averages the scores of tokens within a word and applies the label with the highest resulting score.max: For word-based models, the entity label from the token with the highest score within a word is assigned to the entire word.For efficient processing of large datasets, use proper batching with the batch_size parameter:
texts = [
"Mutations in KRAS gene drive oncogenic transformation.",
"The tumor suppressor p53 pathway was disrupted.",
"EGFR amplification promotes cancer cell proliferation.",
"Loss of function of the PTEN gene is common in many cancers.",
"The PI3K/AKT/mTOR pathway is a critical regulator of cell growth.",
]
# Efficient batch processing with optimized batch size
# Adjust batch_size based on your GPU memory (typically 8, 16, 32, or 64)
results = medical_ner_pipeline(texts, batch_size=8)
for i, entities in enumerate(results):
print(f"Text {i+1} entities:")
for entity in entities:
print(f" - {entity['word']} ({entity['entity_group']}): {entity['score']:.4f}")
For processing large datasets efficiently:
from transformers.pipelines.pt_utils import KeyDataset
from datasets import Dataset
import pandas as pd
# Load your data
# Load a medical dataset from Hugging Face
from datasets import load_dataset
# Load a public medical dataset (using a subset for testing)
medical_dataset = load_dataset("BI55/MedText", split="train[:100]") # Load first 100 examples
data = pd.DataFrame({"text": medical_dataset["Completion"]})
dataset = Dataset.from_pandas(data)
# Process with optimal batching for your hardware
batch_size = 16 # Tune this based on your GPU memory
results = []
for out in medical_ner_pipeline(KeyDataset(dataset, "text"), batch_size=batch_size):
results.extend(out)
print(f"Processed {len(results)} texts with batching")
Batch Size Guidelines:
Memory Considerations:
# For limited GPU memory, use smaller batches
medical_ner_pipeline = pipeline(
model=model_name,
aggregation_strategy="simple",
device=0 # Specify GPU device
)
# Process with memory-efficient batching
for batch_start in range(0, len(texts), batch_size):
batch = texts[batch_start:batch_start + batch_size]
batch_results = medical_ner_pipeline(batch, batch_size=len(batch))
results.extend(batch_results)
This model is particularly useful for:
Licensed under the Apache License 2.0. See LICENSE for details.
We welcome contributions of all kinds! Whether you have ideas, feature requests, or want to join our mission to advance open-source Healthcare AI, we'd love to hear from you.
Follow OpenMed Org on Hugging Face 🤗 and click "Watch" to stay updated on our latest releases and developments.
If you use this model in your research or applications, please cite the following paper:
@misc{panahi2025openmedneropensourcedomainadapted,
title={OpenMed NER: Open-Source, Domain-Adapted State-of-the-Art Transformers for Biomedical NER Across 12 Public Datasets},
author={Maziyar Panahi},
year={2025},
eprint={2508.01630},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2508.01630},
}
Proper citation helps support and acknowledge my work. Thank you!