For the complete documentation index, see llms.txt. This page is also available as Markdown.

Recipe: Confidence-weighted aggregation

Recipe — confidence-weighted aggregation for noisy judges.

When your judge returns a confidence score along with the verdict, weight by confidence:

agg = sum(v * c for v, c in zip(verdicts, confidences)) / sum(confidences)

Use sparingly — confidence-weighting hides low-quality judges instead of fixing them. GEPA-optimize first.

See also

Last updated

Was this helpful?