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). Text longer than the model's window is split into overlapping chunks rather than truncated, so entities are found throughout a long document. Download tokenizer.json and config.json from the same model repository — config.json carries the id2label mapping that names the entity types and the sequence length the model accepts.
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.
HuggingFace config.json of the model. Supplies the id2label mapping that decides which class index means which entity type, and max_position_embeddings, which sets how many tokens fit in one window. Left empty, the node looks for config.json next to the tokenizer. Strongly recommended: label orderings differ between models of the same size, and a wrong one mislabels every entity.
Input text to analyze for named entities
Entity label names in model output order (e.g. ['O', 'B-PER', 'I-PER', 'B-ORG', ...]). Overrides the Config pin. If both are empty, the node falls back to the CoNLL-2003 ordering of dslim/bert-base-NER.
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)
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
Tokens per window the model actually ran on, including special tokens. Below the model's declared limit means the graph refused that limit and the window was walked down.
Number of overlapping windows the text was split across. More than one means the input was longer than a single pass and was chunked, not truncated.
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