> ## Documentation Index
> Fetch the complete documentation index at: https://handbook.sutro.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Are judges classifiers?

> Why LLM judges are a special case of classifiers and when they should be treated as a distinct analytical AI primitive.

We split out [judges](/primitives/judges) and classifiers into two different primitives. Why?

In many ways, a judge *is* just a classifier (typically [multiclass](/primitives/classifiers/types-of-classifiers)), but it's a special case.

* They typically operate over model outputs as input data
* Their primary purpose is to provide verifiable measurements to otherwise unverifiable model outputs
* They are specifically is trying to follow the [judgement rubric](/primitives/judges/task-design) of a human expert, therefore requiring autoregressive reasoning capabilities (can't really be built as a traditional ML classifier)
* Judges may be composed of multiple classifiers (composing multi-dimensional rubrics), rather than single field outputs

Judge design, purpose, and application areas often differ from other types of AI classifiers. While not fully dissimilar, we have broken them out into two distinct primitives for the purposes of this guide.
