Input
ExecutionInitiate Execution
AI/ML/ONNX/NLP
Extract named entities (persons, organizations, locations, dates, etc.) from text using ONNX models. Supports BERT, RoBERTa, and other transformer-based NER models with automatic tokenization. Download models from: BERT-base-NER (https://huggingface.co/dslim/bert-base-NER), Multilingual NER (https://huggingface.co/Davlan/bert-base-multilingual-cased-ner-hrl), spaCy NER (https://huggingface.co/spacy). Download tokenizer.json from the same model repository.
Scores range from 0 to 10. Higher values mean more impact, exposure, or operational weight.
Initiate Execution
ONNX NER Model Session
Cache ID for Session
HuggingFace tokenizer.json file for BERT/RoBERTa tokenization. Download from the same model repository.
Input text to analyze for named entities
Entity label names in model output order (e.g. ['O', 'B-PER', 'I-PER', 'B-ORG', ...]). If empty, uses CoNLL-2003 default.
Tagging scheme: BIO, BIOES, IOB, or BILOU
BIO: Begin, Inside, Outside (most common)
BIOES: Begin, Inside, Outside, End, Single
IOB: Inside, Outside, Begin (legacy format)
BILOU: Begin, Inside, Last, Outside, Unit
Minimum confidence threshold for entity extraction (0.0-1.0)
Maximum sequence length for tokenization (default: 512)
Done
Full NER result with entities and token predictions
Recognized entities
A recognized named entity
The entity text
Entity type (PER, ORG, LOC, etc.)
Character start position in original text
Character end position in original text (exclusive)
Start token index
Token-level predictions
Token-level NER prediction
Token text (may include ## for wordpiece)
Predicted label (raw from model)
Confidence score
Character offset start
Character offset end
Original input text
Extracted named entities as array
The entity text
Entity type (PER, ORG, LOC, etc.)
Character start position in original text
Character end position in original text (exclusive)
Start token index
End token index (exclusive)
Average confidence score
Number of entities found