Input
ExecutionInitiate Execution
AI/ML/ONNX/NLP
Extract entities for any labels you name at runtime, with no fixed label set and no retraining. Load a GLiNER ONNX export (e.g. https://huggingface.co/onnx-community/gliner_small-v2.1, gliner_multi-v2.1, gliner_medium_news-v2.1, gliner_multi_pii-v1, NuNER_Zero) plus the tokenizer.json from the same repository. For models with a fixed label set, use the Named Entity Recognition node instead.
Scores range from 0 to 10. Higher values mean more impact, exposure, or operational weight.
Initiate Execution
ONNX GLiNER Model Session
Cache ID for Session
HuggingFace tokenizer.json from the same model repository
Input text to analyze for named entities
Entity types to look for, in plain language (e.g. person, company, medication, invoice number)
Minimum confidence for a span to be reported (0.0-1.0)
Longest entity in words. Must match the model's max_width from gliner_config.json (12 for most GLiNER models, 1 for NuNER Zero)
Report every label that clears the threshold for a span instead of only the best one
Join neighbouring same-label entities separated only by whitespace. Required for token-level models such as NuNER Zero, which score one word at a time
Done
Full zero-shot result with entities and the labels that were requested
Accepted entities, ordered by position
A span GLiNER assigned one of the runtime labels
The entity text, sliced from the input
The runtime label this span matched
Character start position in the original text
Character end position in the original text (exclusive)
Index of the first word in the span
Original input text
Labels the model was asked about
Words the text was split into
Extracted entities as array
The entity text, sliced from the input
The runtime label this span matched
Character start position in the original text
Character end position in the original text (exclusive)
Index of the first word in the span
Index of the last word in the span (inclusive)
Sigmoid score for this span/label pair
Number of entities found