
Scores each Image against free-form text candidate_labels with a SigLIP/CLIP model, builds one ranked result bounded by threshold and top_k, and projects it onto the connected output shape (top class, ranked list, label, pairs, or class id).
Camera frames routed by which of a free-form label set they best match.
HTTP-served images scored against a candidate label list and published as JSON.
Video frames classified and overlaid for visual inspection.
hf_model_id and device are hot-swappable at runtime; each change reloads the model in place and reclaims previous GPU memory.candidate_labels; an image can score high or low on every label at once.candidate_labels entry as a short descriptive caption separates scores better than bare nouns.candidate_labels.threshold drops labels below it and top_k caps the count in score-descending order before projection; scalar shapes carry only the single top label.candidate_labels list, or an undecodable frame, emits the empty form of the resolved output arm without running the model; downstream must handle the zero-element case.Automated release