
Runs Florence-2 closed-set detection over each Image, emitting the shape the connected output picks: [BoundingBox], [Rectangle<Double>], [DetectedClass], a UInt64 count, or an Image overlay. Offline from the bound model.
Live detection overlay drawn back onto frames from an HTTP image source.
Crop each detected region out of a still image for a downstream per-region stage.
classes config is the catalogue. A detection's label is mapped back to its catalogue index, and that index is the emitted class id; a label matching no catalogue entry is dropped. With an empty catalogue every detection is kept and labels are assigned ids in first-seen order. Florence carries no per-detection score, so each detection is reported at full confidence.model artifact (a snapshot directory holding config.json, the safetensors weights, and the processor/tokenizer files) with `local_files_only`; `trust_remote_code` runs the snapshot's own modeling code, so no network fetch occurs. Bind a Florence-2 checkpoint to the model slot at deploy.model, device, and classes catalogue are resolved once at startup; changing any of them requires a redeploy.Automated release