SAVRN
Search Contact SAVRN

Open-weight model · Token classification

OpenMed-NER-BloodCancerDetect-ElectraMed-560M

by OpenMed OpenMed/OpenMed-NER-BloodCancerDetect-ElectraMed-560M

Specialized model for Clinical Entity Recognition - Clinical entities related to Chronic Lymphocytic Leukemia This model is a state-of-the-art fine-tuned transformer engineered to deliver enterprise-grade accuracy for clinical entity recognition - clinical…

Parameters559M
Context514
Weights1.1 GB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads161.2k

Runs On

What it takes to serve OpenMed-NER-BloodCancerDetect-ElectraMed-560M (559M 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 1.1 GB 1.3 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 0.6 GB 0.7 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 0.3 GB 0.3 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 8b388e62475d.

Specialized model for Clinical Entity Recognition - Clinical entities related to Chronic Lymphocytic Leukemia This model is a state-of-the-art fine-tuned transformer engineered to deliver enterprise-grade accuracy for clinical entity recognition - clinical entities related to chronic lymphocytic leukemia. 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…

Read OpenMed's full model card

Specialized model for Clinical Entity Recognition - Clinical entities related to Chronic Lymphocytic Leukemia

Model Overview

This model is a state-of-the-art fine-tuned transformer engineered to deliver enterprise-grade accuracy for clinical entity recognition - clinical entities related to chronic lymphocytic leukemia. 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 CLL 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-CL
  • I-CL

Dataset

CLL corpus is specialized for chronic lymphocytic leukemia entity recognition in hematology and cancer research.

The CLL (Chronic Lymphocytic Leukemia) corpus is a domain-specific biomedical NER dataset focused on entities related to chronic lymphocytic leukemia, a type of blood cancer. This specialized corpus contains annotations for CLL-specific terminology, biomarkers, treatment entities, and clinical concepts relevant to hematology and oncology research. The dataset is designed to support the development of clinical NLP systems for leukemia research, hematological disorder analysis, and cancer informatics applications. It is particularly valuable for identifying disease-specific entities, therapeutic interventions, and prognostic factors mentioned in CLL research literature. The corpus serves as a benchmark for evaluating NER models in specialized medical domains and clinical research.

Performance Metrics

Current Model Performance

  • F1 Score: 0.96
  • Precision: 0.93
  • Recall: 0.99
  • Accuracy: 0.98

Comparative Performance on CLL Dataset

Rank Model F1 Score Precision Recall Accuracy
1 OpenMed-NER-BloodCancerDetect-ElectraMed-560M 0.9575 0.9264 0.9907 0.9843
2 OpenMed-NER-BloodCancerDetect-SuperClinical-434M 0.8902 0.8652 0.9167 0.9701
3 OpenMed-NER-BloodCancerDetect-TinyMed-82M 0.8793 0.7904 0.9908 0.9449
4 OpenMed-NER-BloodCancerDetect-TinyMed-135M 0.8792 0.8750 0.8835 0.9668
5 OpenMed-NER-BloodCancerDetect-TinyMed-65M 0.8547 0.7812 0.9434 0.9686
6 OpenMed-NER-BloodCancerDetect-SuperMedical-125M 0.8488 1.0000 0.7373 0.9274
7 OpenMed-NER-BloodCancerDetect-SnowMed-568M 0.8443 0.9816 0.7407 0.9372
8 OpenMed-NER-BloodCancerDetect-BigMed-278M 0.8443 0.9816 0.7407 0.9372
9 OpenMed-NER-BloodCancerDetect-SuperMedical-355M 0.8421 0.9816 0.7373 0.9248
10 OpenMed-NER-BloodCancerDetect-ElectraMed-335M 0.8364 0.7302 0.9787 0.9581

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-BloodCancerDetect-ElectraMed-560M
model_name = "OpenMed/OpenMed-NER-BloodCancerDetect-ElectraMed-560M"

# Create a pipeline
medical_ner_pipeline = pipeline(
    model=model_name,
    aggregation_strategy="simple"
)

# Example usage
text = "The patient presented with chronic lymphocytic leukemia symptoms."
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 = [
    "The patient presented with chronic lymphocytic leukemia symptoms.",
    "B-cell proliferation was observed in bone marrow samples.",
    "Treatment with ibrutinib showed promising results.",
    "Flow cytometry confirmed the diagnosis of chronic lymphocytic leukemia.",
    "The patient had del(17p), a high-risk feature in CLL.",
]

# 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: CLL
  • Description: Clinical Entity Recognition - Clinical entities related to Chronic Lymphocytic Leukemia

Training Details

  • Base Model: multilingual-e5-large-instruct
  • Training Framework: Hugging Face Transformers
  • Optimization: AdamW optimizer with learning rate scheduling
  • Validation: Cross-validation on held-out test set

Model Architecture

  • Base Architecture: multilingual-e5-large-instruct
  • 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
24
Hidden size
1,024
Feed-forward size
4,096
Attention heads
16
Vocabulary size
250,002
Stored precision
bfloat16
Model type
xlm-roberta

Identity and Version

Repository
OpenMed/OpenMed-NER-BloodCancerDetect-ElectraMed-560M
Publisher
OpenMed
Task
Token classification
Modality
Text
Library
transformers
Parameters
559M parameters
Languages
en
Revision
8b388e62475d8897d53ad3ab6bbb3ea0efa5a851
First published
2025-07-16
Last updated
2025-08-05

Files and Weights

10 files, 1.1 GB in total. The weights are 1 file totalling 1.1 GB in safetensors.

Weights1 file · 1.1 GB
Configuration3 files · 2.0 KB
Tokenizer2 files · 17.1 MB
Documentation1 file · 11.7 KB
Other2 files · 5.6 MB
Repository1 file · 1.6 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights1.1 GB 71ad82a6dd72
config.jsonConfiguration810 B
special_tokens_map.jsonConfiguration964 B
test_results.jsonConfiguration195 B
README.mdDocumentation11.7 KB
openmed_vs_sota_grouped_bars.pngOther497.0 KB 626b37d9b20c
sentencepiece.bpe.modelOther5.1 MB cfc8146abe2a
.gitattributesRepository1.6 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
1.1 GB
Download from OpenMed

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

Built From

Memory Requirements

PrecisionWeights in memory
As published1.1 GB
16-bit1.1 GB
8-bit0.6 GB
4-bit0.3 GB

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

Questions About OpenMed-NER-BloodCancerDetect-ElectraMed-560M

How much GPU memory does OpenMed-NER-BloodCancerDetect-ElectraMed-560M need?

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

What is the cheapest GPU to run OpenMed-NER-BloodCancerDetect-ElectraMed-560M 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-BloodCancerDetect-ElectraMed-560M commercially?

Yes. OpenMed-NER-BloodCancerDetect-ElectraMed-560M 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-BloodCancerDetect-ElectraMed-560M's context length?

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

Similar Models

Model · Token classification

OpenMed-NER-GenomicDetect-BigMed-560M

OpenMed

Specialized model for Gene Entity Recognition - Gene-related entities This model is a state-of-the-art fine-tuned transformer engineered to deliver enterprise-grade accuracy for gene entity recognition - gene-related 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…

Open weights apache-2.0 559M parameters 514 tokens transformers

Model · Token classification

OpenMed-NER-ChemicalDetect-BigMed-560M

OpenMed

Specialized model for Chemical Entity Recognition - Identifies chemical compounds and substances in biomedical literature This model is a state-of-the-art fine-tuned transformer engineered to deliver enterprise-grade accuracy for chemical entity recognition - identifies chemical compounds and substances in biomedical literature. 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…

Open weights apache-2.0 559M parameters 514 tokens transformers

Model · Token classification

fullstop-punctuation-multilang-large

Oliver Guhr

This model predicts the punctuation of English, Italian, French and German texts. We developed it to restore the punctuation of transcribed spoken language. This multilanguage model was trained on the Europarl Dataset provided by the SEPP-NLG Shared Task. Please note that this dataset consists of political speeches. Therefore the model might perform differently on texts from other domains. The model restores the following punctuation markers: "." "," "?" "-" ":" We provide a simple python package that allows you to process text of any length. To get started install the package from pypi: output output The performance differs for the single punctuation markers as hyphens and colons, in many…

Open weights mit 559M parameters 514 tokens transformers

This model was introduced in the paper LLMLingua-2: Data Distillation for Efficient and Faithful Task-Agnostic Prompt Compression (Pan et al, 2024). It is a XLM-RoBERTa (large-sized model) finetuned to perform token classification for task agnostic prompt compression. The probability $p{preserve}$ of each token $xi$ is used as the metric for compression. This model is trained on the extractive text compression dataset constructed with the methodology proposed in the LLMLingua-2, using training examples from MeetingBank (Hu et al, 2023) as the seed data. You can evaluate the model on downstream tasks such as question answering (QA) and summarization over compressed meeting transcripts using…

Open weights mit 559M parameters 514 tokens transformers

Model · Token classification

OpenMed-NER-ChemicalDetect-MultiMed-568M

OpenMed

Specialized model for Chemical Entity Recognition - Identifies chemical compounds and substances in biomedical literature This model is a state-of-the-art fine-tuned transformer engineered to deliver enterprise-grade accuracy for chemical entity recognition - identifies chemical compounds and substances in biomedical literature. 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…

Open weights apache-2.0 567M parameters 8,194 tokens transformers

Model · Token classification

OpenMed-NER-OncologyDetect-MultiMed-568M

OpenMed

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…

Open weights apache-2.0 567M parameters 8,194 tokens transformers