Mixpeek Logo
    Text

    Medical NER

    Named entity recognition for medical documents and clinical notes

    Note: This playground provides simulated output to showcase functionality. No input data is processed or stored on our servers. Use this demo to explore the feature extractor's capabilities before integrating it into your application.

    Input

    Enter the text you want to process

    The medical NER model to use. Default: en_core_sci_lg

    Medical entity types to extract. Default: DISEASE,DRUG,SYMPTOM,PROCEDURE,ANATOMY

    Output

    {
    "entities": [
    {
    "text": "hypertension",
    "type": "DISEASE",
    "start": 0,
    "end": 12
    },
    {
    "text": "metformin",
    "type": "DRUG",
    "start": 25,
    "end": 34
    }
    ]
    }