Views
No views yet
OpenMed/OpenMed-NER-SpeciesDetect-SuperClinical-184M for Apple Silicon inference with OpenMed.token-classificationdeberta-v2safetensorsOpenMed MLX token-classification backendOpenMed/OpenMed-NER-SpeciesDetect-SuperClinical-184Mconfig.json, id2label.json, openmed-mlx.json, MLX weights, and tokenizer assetshf download OpenMed/OpenMed-NER-SpeciesDetect-SuperClinical-184M-mlx --local-dir ./OpenMed-NER-SpeciesDetect-SuperClinical-184M-mlx1pip install openmed
2pip install "openmed[mlx]"1from openmed import analyze_text
2from openmed.core.config import OpenMedConfig
3
4result = analyze_text(
5 "Patient John Doe, DOB 1990-05-15, SSN 123-45-6789",
6 model_name="OpenMed/OpenMed-NER-SpeciesDetect-SuperClinical-184M",
7 config=OpenMedConfig(backend="mlx"),
8)
9
10for entity in result.entities:
11 print(entity.label, entity.text, round(entity.confidence, 4))https://github.com/maziyarpanahi/openmedid2label.json to your app target.weights.safetensors, OpenMed falls back to weights.npz so the model remains usable.OpenMed/OpenMed-NER-SpeciesDetect-SuperClinical-184M