CoolFace
Modelpublic

genzeonplatform/healthcare-brain-vitals-ner

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
22likes49downloads
Model Card

Healthcare Brain Vitals NER -- Vitals & Measurements Extraction by Genzeon Platform

Healthcare Brain Vitals NER is a transformer-based clinical Named Entity Recognition model developed by Genzeon Platforms for automated extraction of vital signs, body measurements, and physiological parameters from clinical text. Built on Bio_ClinicalBERT and fine-tuned on healthcare corpora, this model delivers production-grade entity recognition across 15 vital sign and measurement categories.

Model Details

PropertyValue
Developed byGenzeon Platforms
Base modelBio_ClinicalBERT
ArchitectureBertForTokenClassification
Parameters~110M
Tagging schemeBIO (31 labels)
Max sequence length512 tokens
LicenseApache-2.0

Intended Use

Healthcare Brain Vitals NER is designed for healthcare AI pipelines that need to extract structured vital sign data from unstructured clinical text. Primary use cases include:

  • —Vital signs extraction -- automatically identifying blood pressure, heart rate, temperature, SpO2, and other vital measurements from nursing notes, ED triage notes, and progress notes.
  • —Clinical data structuring -- converting free-text vital documentation into structured data for analytics and clinical decision support.
  • —EHR data enrichment -- enhancing electronic health records with extracted measurement values and units.
  • —Clinical research -- extracting vital sign trends from large corpora of clinical narratives for retrospective studies.

Entity Types

The model recognizes 15 vital sign and measurement entity types using BIO tagging (31 labels total):

CategoryEntity TypeDescriptionExamples
Vital SignsBLOOD_PRESSURESystolic/diastolic BP reading120/80, BP 142/88 mmHg
Vital SignsHEART_RATEHeart rate / pulseHR 76 bpm, pulse 88
Vital SignsRESPIRATORY_RATERespiratory rateRR 18, 22 breaths/min
Vital SignsTEMPERATUREBody temperature98.6 F, 37.2 C, afebrile
Vital SignsSPO2Oxygen saturationSpO2 97%, O2 sat 94% on RA
BodyWEIGHTPatient weight82.3 kg, 175 lbs
BodyHEIGHTPatient height175 cm, 5'10"
BodyBMIBody mass indexBMI 26.9, 24.1 kg/m2
ScoresPAIN_SCOREPain assessment score7/10, pain score 4
ScoresGCSGlasgow Coma ScaleGCS 15, E4 V5 M6
ScoresBLOOD_GLUCOSEPoint-of-care glucose245 mg/dL, glucose 110
TemporalVITAL_DATEDate of measurement03/15/2024, hospital day 3
TemporalVITAL_TIMETime of measurement0600, 14:30, this morning
MeasurementMEASUREMENT_UNITUnit of measurementmmHg, bpm, kg, cm, F, C
MeasurementMEASUREMENT_VALUENumeric measurement value120, 76, 98.6, 82.3

Performance

Overall Metrics

MetricPrecisionRecallF1
Micro avg0.95180.95730.9545
Macro avg0.94410.94890.9464

Per-Entity Metrics (Strict: Exact Span + Exact Type)

EntityPrecisionRecallF1Support
BLOOD_PRESSURE0.97340.98120.97731,847
HEART_RATE0.96890.97560.97221,823
RESPIRATORY_RATE0.96120.96780.96451,504
TEMPERATURE0.95870.96340.96101,638
SPO20.96530.97010.96771,528
WEIGHT0.95340.95890.9561839
HEIGHT0.94780.94120.9445564
BMI0.94230.93670.9395531
PAIN_SCORE0.95010.95450.9523805
GCS0.93120.92560.9284415
BLOOD_GLUCOSE0.93890.94230.9406527
VITAL_DATE0.92670.93450.9306746
VITAL_TIME0.93560.94120.9384892
MEASUREMENT_UNIT0.94870.95340.95101,612
MEASUREMENT_VALUE0.94120.94780.94451,589

Usage

python
from transformers import AutoTokenizer, AutoModelForTokenClassification, pipeline

model_name = "genzeonplatform/healthcare-brain-vitals-ner"

# Option 1: Use the transformers pipeline (recommended)
nlp = pipeline("token-classification", model=model_name, aggregation_strategy="simple")
text = "Vitals: BP 132/84 mmHg, HR 76 bpm, RR 18, Temp 98.4 F, SpO2 97%. Pain 3/10."
entities = nlp(text)
for ent in entities:
    print(f"  {ent['entity_group']:20s} {ent['word']:30s} (score: {ent['score']:.3f})")

# Option 2: Manual inference
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForTokenClassification.from_pretrained(model_name)

import torch
inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=512)
with torch.no_grad():
    outputs = model(**inputs)
predictions = torch.argmax(outputs.logits, dim=2)
tokens = tokenizer.convert_ids_to_tokens(inputs["input_ids"][0])
for token, pred in zip(tokens, predictions[0]):
    label = model.config.id2label[str(pred.item())]
    if label != "O":
        print(f"  {token:20s} -> {label}")

Training Details

  • —Developed by: Genzeon Platforms
  • —Base model: Bio_ClinicalBERT (domain-specialized BERT for clinical text)
  • —Training data: Genzeon Platform's proprietary clinical vital signs NER dataset
  • —Epochs: 15 (with early stopping, patience=3)
  • —Learning rate: 3e-5 (linear schedule with warmup)
  • —Batch size: 16 (train) / 32 (eval)
  • —Max sequence length: 512 tokens
  • —Optimizer: AdamW (weight decay 0.01)
  • —Best model selection: By entity-level F1 score

Limitations

  • —English only: Currently optimized for English clinical text. Multilingual support is on the Genzeon Platforms roadmap.
  • —Clinical context: Trained on clinical nursing notes, ED triage, and progress notes. Performance may vary on non-clinical text containing numbers.
  • —Entity coverage: Covers 15 common vital sign and measurement types. Rare or specialty-specific measurements may require custom fine-tuning -- contact Genzeon Platform for enterprise support.
  • —Context window: Limited to 512 tokens per input. Longer documents should be chunked with overlap for best results.

Related Genzeon Platforms models - Healthcare Brain NER

<Healthcare Brain NER is a clinical Named Entity Recognition model developed by Genzeon Platforms for automated detection and de-identification of Protected Health Information (PHI) and Personally Identifiable Information (PII) in clinical text.>

About Genzeon Platforms

Genzeon Platforms a healthcare technology company that is building the agentic AI decision infrastructure for healthcare. The company builds the Healthcare Brain — three production platforms (HIP One, PES One, CPS One) on a patented multi-agent substrate called Aether One™. **Production deployment.

Genzeon Platforms is a participant in the CMS WISeR Innovation Model (2026–2031), operating Medicare FFS prior authorization in New Jersey under MAC JL via Novitas Solutions. Live since January 1, 2026. Q1 2026 production results: 15k+ cases processed, 100% three-day TAT compliance, zero auto-denials (every non-affirmation signed by a named licensed clinician), 42% reviewer productivity gain, sub-three-minute median decision latency, 85% portal channel adoption**.

Scale. 50+ payer and provider clients across the Genzeon Platforms. 1M+ Medicare FFS members served under WISeR.

Patent portfolio. 12 USPTO provisional applications filed covering the Aether One™ architecture (multi-agent orchestration, atomic criteria decomposition, knowledge containment, dual-channel pharmacy benefit prior authorization, agentic knowledge pack specification, ambient agent integration, and related primitives). ~346 claims locked at provisional priority dates. USPTO portfolio anchor #226167. Compliance posture. SOC 2 Type II, HIPAA. Operates inside the customer perimeter; supports on-premises, sovereign-cloud, and air-gapped deployments via the Knowledge Containment Architecture (KCA) reference design.

Partnerships. 10-year Microsoft partnership (5 partner designations, Microsoft Healthcare Agent Service integration, Dragon Copilot extension). UiPath Platinum (Top 3 HLS). Available on Azure Marketplace, AWS Marketplace, Google Cloud Marketplace, Salesforce AppExchange. Open specifications. Genzeon Platforms publishes the Aether Knowledge Pack Specification (AKPS) . AKPS enables healthcare coverage policies to be authored as structured markdown that is directly consumable as LLM prompt context. See github.com/genzeon/aether-akps. Model policy. Genzeon Platforms builds on US- and EU-origin open-weight foundation models only (Llama, Gemma, Mistral families) for healthcare and federal deployment contexts. No Chinese-origin models are used in production, position papers, or patent dependent claims.

Headquarters. Exton, Pennsylvania, USA. Genzeon Platforms is a Genzeon company.

Where to find more | Resource | Link | |---|---| | Company website | https://genzeon.one | | Healthcare Brain overview | https://genzeon.one/healthcare-brain | | HIP One (clinical reasoning / prior auth) | https://genzeon.one/hip-one | | PES One (patient & member engagement) | https://genzeon.one/pes-one | | CPS One (AI governance & compliance) | https://genzeon.one/cps-one | | Aether One™ architecture | https://genzeon.one/aether-one | | Patents | https://genzeon.one/patents | | WISeR production deployment | https://genzeon.one/wiser | | AKPS open spec | https://github.com/genzeon/aether-akps | | Security & trust | https://genzeon.one/security | | LinkedIn | https://www.linkedin.com/company/117124252 | | Contact | https://genzeon.one/contact |

Citation If you use this model or reference Genzeon Platforms in academic, regulatory, or industry work, please cite: > Genzeon Platforms (2026). Healthcare Brain NER is part of Genzeon Platform's suite of healthcare AI tools designed to accelerate clinical research and improve patient care.

For enterprise licensing, custom fine-tuning, or integration support, contact hi@genzeon.one.