Specialized model for Biomedical Entity Recognition - Proteins, DNA, RNA, cell lines, and cell types
📋 Model Overview
This model is a
state-of-the-art
fine-tuned transformer engineered to deliver
enterprise-grade accuracy
for biomedical entity recognition - proteins, dna, rna, cell lines, and cell types. 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 JNLPBA 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-DNA
B-RNA
B-cell_line
B-cell_type
B-protein
See 5 more entity types...
I-DNA
I-RNA
I-cell_line
I-cell_type
I-protein
📊 Dataset
JNLPBA corpus focuses on biomedical named entity recognition for protein, DNA, RNA, cell line, and cell type entities.
The JNLPBA (Joint Workshop on Natural Language Processing in Biomedicine and its Applications) corpus is a widely-used biomedical NER dataset derived from the GENIA corpus for the 2004 bio-entity recognition task. It contains annotations for five entity types: protein, DNA, RNA, cell line, and cell type, making it essential for molecular biology and genomics research applications. The corpus consists of MEDLINE abstracts annotated with biomedical entities relevant to gene and protein recognition tasks. It has been extensively used as a benchmark for evaluating biomedical NER systems and continues to be a standard evaluation dataset for developing machine learning models in computational biology and bioinformatics.
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-DNADetect-MultiMed-335M
model_name = "OpenMed/OpenMed-NER-DNADetect-MultiMed-335M"# Create a pipeline
medical_ner_pipeline = pipeline(
model=model_name,
aggregation_strategy="simple"
)
# Example usage
text = "The p53 protein plays a crucial role in tumor suppression."
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 p53 protein plays a crucial role in tumor suppression.",
"Expression of BRCA1 gene was significantly upregulated in breast tissue.",
"The NF-kB pathway regulates inflammatory responses.",
"Activation of the STAT3 signaling pathway is observed in many cancers.",
"The experiment involved transfecting HeLa cells with a plasmid containing the target gene.",
]
# 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 inenumerate(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 Facefrom 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 batchingfor batch_start inrange(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)
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 Org
on Hugging Face 🤗 and click "Watch" to stay updated on our latest releases and developments.
Runs of OpenMed OpenMed-NER-DNADetect-MultiMed-335M on huggingface.co
93.7K
Total runs
291
24-hour runs
1.1K
3-day runs
781
7-day runs
1.7K
30-day runs
More Information About OpenMed-NER-DNADetect-MultiMed-335M huggingface.co Model
More OpenMed-NER-DNADetect-MultiMed-335M license Visit here:
OpenMed-NER-DNADetect-MultiMed-335M huggingface.co is an AI model on huggingface.co that provides OpenMed-NER-DNADetect-MultiMed-335M's model effect (), which can be used instantly with this OpenMed OpenMed-NER-DNADetect-MultiMed-335M model. huggingface.co supports a free trial of the OpenMed-NER-DNADetect-MultiMed-335M model, and also provides paid use of the OpenMed-NER-DNADetect-MultiMed-335M. Support call OpenMed-NER-DNADetect-MultiMed-335M model through api, including Node.js, Python, http.
OpenMed-NER-DNADetect-MultiMed-335M huggingface.co is an online trial and call api platform, which integrates OpenMed-NER-DNADetect-MultiMed-335M's modeling effects, including api services, and provides a free online trial of OpenMed-NER-DNADetect-MultiMed-335M, you can try OpenMed-NER-DNADetect-MultiMed-335M online for free by clicking the link below.
OpenMed OpenMed-NER-DNADetect-MultiMed-335M online free url in huggingface.co:
OpenMed-NER-DNADetect-MultiMed-335M is an open source model from GitHub that offers a free installation service, and any user can find OpenMed-NER-DNADetect-MultiMed-335M on GitHub to install. At the same time, huggingface.co provides the effect of OpenMed-NER-DNADetect-MultiMed-335M install, users can directly use OpenMed-NER-DNADetect-MultiMed-335M installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
OpenMed-NER-DNADetect-MultiMed-335M install url in huggingface.co: