SAVRN
Search Contact SAVRN

Open-weight model · Token classification

OpenMed-NER-OncologyDetect-BigMed-278M

by OpenMed OpenMed/OpenMed-NER-OncologyDetect-BigMed-278M

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.

Parameters277M
Context514
Weights555.0 MB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads198.3k

Runs On

What it takes to serve OpenMed-NER-OncologyDetect-BigMed-278M (277M parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 0.6 GB 0.7 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 0.3 GB 0.3 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 0.1 GB 0.2 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By OpenMed, published under apache-2.0, revision a9e64ea4a854.

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…

Read OpenMed's full model card

Specialized model for Cancer Genetics - Cancer-related genetic entities

Model Overview

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.

Key Features

  • High Precision: Optimized for biomedical entity recognition
  • Domain-Specific: Trained on curated BIONLP2013_CG dataset
  • Production-Ready: Validated on clinical benchmarks
  • Easy Integration: Compatible with Hugging Face Transformers ecosystem

Supported Entity Types

This model can identify and classify the following biomedical entities:

  • B-Amino_acid
  • B-Anatomical_system
  • B-Cancer
  • B-Cell
  • B-Cellular_component
See 27 more entity types... - `B-Developing_anatomical_structure` - `B-Gene_or_gene_product` - `B-Immaterial_anatomical_entity` - `B-Multi-tissue_structure` - `B-Organ` - `B-Organism` - `B-Organism_subdivision` - `B-Organism_substance` - `B-Pathological_formation` - `B-Simple_chemical` - `B-Tissue` - `I-Amino_acid` - `I-Anatomical_system` - `I-Cancer` - `I-Cell` - `I-Cellular_component` - `I-Developing_anatomical_structure` - `I-Gene_or_gene_product` - `I-Immaterial_anatomical_entity` - `I-Multi-tissue_structure` - `I-Organ` - `I-Organism` - `I-Organism_subdivision` - `I-Organism_substance` - `I-Pathological_formation` - `I-Simple_chemical` - `I-Tissue`

Dataset

BioNLP 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.

Performance Metrics

Current Model Performance

  • F1 Score: 0.79
  • Precision: 0.79
  • Recall: 0.80
  • Accuracy: 0.89

Comparative Performance on BIONLP2013_CG Dataset

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.

Quick Start

Installation

pip install transformers torch

Usage

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.

Batch Processing

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}")

Large Dataset Processing

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")

Performance Optimization

Batch Size Guidelines: - CPU: Start with batch_size=1-4 - Single GPU: Try batch_size=8-32 depending on GPU memory - High-end GPU: Can handle batch_size=64 or higher - Monitor GPU utilization to find the optimal batch size for your hardware

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)

Dataset Information

  • Dataset: BIONLP2013_CG
  • Description: Cancer Genetics - Cancer-related genetic entities

Training Details

  • Base Model: xlm-roberta-base
  • Training Framework: Hugging Face Transformers
  • Optimization: AdamW optimizer with learning rate scheduling
  • Validation: Cross-validation on held-out test set

Model Architecture

  • Base Architecture: xlm-roberta-base
  • Task: Token Classification (Named Entity Recognition)
  • Labels: Dataset-specific entity types
  • Input: Tokenized biomedical text
  • Output: BIO-tagged entity predictions

Use Cases

This model is particularly useful for: - Clinical Text Mining: Extracting entities from medical records - Biomedical Research: Processing scientific literature - Drug Discovery: Identifying chemical compounds and drugs - Healthcare Analytics: Analyzing patient data and outcomes - Academic Research: Supporting biomedical NLP research

License

Licensed under the Apache License 2.0. See LICENSE for details.

Contributing

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 Orgon Hugging Face and click "Watch" to stay updated on our latest releases and developments.

Citation

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!

Configuration

Architecture
XLMRobertaForTokenClassification
Context length (tokens)
514
Layers
12
Hidden size
768
Feed-forward size
3,072
Attention heads
12
Vocabulary size
250,002
Stored precision
bfloat16
Model type
xlm-roberta

Identity and Version

Repository
OpenMed/OpenMed-NER-OncologyDetect-BigMed-278M
Publisher
OpenMed
Task
Token classification
Modality
Text
Library
transformers
Parameters
277M parameters
Languages
en
Revision
a9e64ea4a854cbc822cf03e4df54b47a50b04592
First published
2025-07-16
Last updated
2025-08-05

Files and Weights

10 files, 587.3 MB in total. The weights are 1 file totalling 555.0 MB in safetensors.

Weights1 file · 555.0 MB
Configuration4 files · 14.8 MB
Tokenizer2 files · 17.1 MB
Documentation1 file · 12.5 KB
Other1 file · 497.0 KB
Repository1 file · 1.7 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights555.0 MB 2a2cb705501b
config.jsonConfiguration2.7 KB
special_tokens_map.jsonConfiguration280 B
test_results.jsonConfiguration196 B
unigram.jsonConfiguration14.8 MB da145b5e7700
README.mdDocumentation12.5 KB
openmed_vs_sota_grouped_bars.pngOther497.0 KB 626b37d9b20c
.gitattributesRepository1.7 KB
tokenizer.jsonTokenizer17.1 MB 3ffb37461c39
tokenizer_config.jsonTokenizer1.2 KB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
555.0 MB
Download from OpenMed

Released by OpenMed through its official repository on Hugging Face. Read the license.

Built From

Memory Requirements

PrecisionWeights in memory
As published555.0 MB
16-bit0.6 GB
8-bit0.3 GB
4-bit0.1 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About OpenMed-NER-OncologyDetect-BigMed-278M

How much GPU memory does OpenMed-NER-OncologyDetect-BigMed-278M need?

About 0.7 GB at 16-bit and 0.2 GB at 4-bit: the weights (277M parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run OpenMed-NER-OncologyDetect-BigMed-278M on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use OpenMed-NER-OncologyDetect-BigMed-278M commercially?

Yes. OpenMed-NER-OncologyDetect-BigMed-278M is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

What is OpenMed-NER-OncologyDetect-BigMed-278M's context length?

514 tokens, from the maximum position embeddings in its published configuration.

Similar Models

Model · Token classification

xlm-roberta-base-ner-hrl

David Adelani

Hugging Face's logo - multilingual xlm-roberta-base-ner-hrl is a Named Entity Recognition model for 10 high resourced languages (Arabic, German, English, Spanish, French, Italian, Latvian, Dutch, Portuguese and Chinese) based on a fine-tuned XLM-RoBERTa base model. It has been trained to recognize three types of entities: location (LOC), organizations (ORG), and person (PER). Specifically, this model is a xlm-roberta-base model that was fine-tuned on an aggregation of 10 high-resourced languages You can use this model with Transformers pipeline for NER. This model is limited by its training dataset of entity-annotated news articles from a specific span of time. This may not generalize well…

Open weights afl-3.0 277M parameters 514 tokens transformers

Model · Token classification

OpenMed-NER-PharmaDetect-BigMed-278M

OpenMed

Specialized model for Chemical Entity Recognition - Chemical entities from the BC5CDR dataset This model is a state-of-the-art fine-tuned transformer engineered to deliver enterprise-grade accuracy for chemical entity recognition - chemical entities from the bc5cdr dataset. 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…

Open weights apache-2.0 277M parameters 514 tokens transformers

william (at) integrinet [dot] org Piiranha (cc-by-nc-nd-4.0 license) is trained to detect 17 types of Personally Identifiable Information (PII) across six languages. It successfully catches 98.27% of PII tokens, with an overall classification accuracy of 99.44%. Piiranha is especially accurate at detecting passwords, emails (100%), phone numbers, and usernames. Performance on PII vs. Non PII classification task: Piiranha was trained on H100 GPUs generously sponsored by the Akash Network Piiranha is a fine-tuned version of microsoft/mdeberta-v3-base. The context length is 256 Deberta tokens. If your text is longer than that, just split it up. Supported PII types: Account Number, Building…

Open weights cc-by-nc-nd-4.0 278M parameters 512 tokens transformers

Model · Token classification

gliner2.5-multi-v1

Fastino

GLiNER2.5 Multi is the multilingual boundary checkpoint. It is built on mDeBERTa-v3-base and is the default choice when you need entities, classification, records, and relations in one model across languages. Load it with AutoExtractor: the checkpoint's architecture field selects BoundaryExtractor automatically. Fine-tune via Fastino. Join discussions on Reddit. This card is for fastino/gliner2.5-multi-v1. All three checkpoints share the same public API. Python 3.10 or newer is required. The [local] extra pulls in PyTorch so you can load Hub checkpoints. Always use AutoExtractor for GLiNER2.5. GLiNER2.frompretrained(...) is the legacy span loader and will not dispatch this checkpoint.…

Open weights apache-2.0 287M parameters gliner2

Model · Token classification

bert-large-NER

D

If my open source models have been useful to you, please consider supporting me in building small, useful AI models for everyone (and help me afford med school / help out my parents financially). Thanks! bert-large-NER is a fine-tuned BERT model that is ready to use for Named Entity Recognition and achieves state-of-the-art performance for the NER task. It has been trained to recognize four types of entities: location (LOC), organizations (ORG), person (PER) and Miscellaneous (MISC). Specifically, this model is a bert-large-cased model that was fine-tuned on the English version of the standard CoNLL-2003 Named Entity Recognition dataset. If you'd like to use a smaller BERT model fine-tuned…

Open weights mit 334M parameters 512 tokens transformers