PromptCause
Donate

5 / 11

Ensembling

Self-Consistency, Universal Self-Consistency and DiVeRSe

Advanced

In short: Many samples, aggregated by majority or by consistency.

What is: Self-Consistency votes the majority answer across N CoT paths. Universal Self-Consistency (USC) does the same for free-text answers (the model picks the most consistent). DiVeRSe goes further: diverse prompts × multiple paths + scoring.

When to use: High stakes. USC for textual answers; DiVeRSe for maximum coverage.

When to avoid: Simple or cost-sensitive tasks, all of this costs N× tokens.

Right
Generate 3 independent executive summaries of this report. Then produce a final summary with only the points present in at least two of them (drop what appears in only one).

Points appearing across multiple generations are reliable; the unique ones tend to be noise or hallucination.

Why: Consensus across independent samples filters hallucination and random slips. USC (Chen et al., 2023) extends the Self-Consistency gain to free-text outputs, where exact "voting" isn't possible.

💡 Tip: Use the model itself as a judge to pick the most consistent answer when no exact vote is possible.

Prompt Paraphrasing / Ensemble

Advanced

In short: Ask in several ways and aggregate the answers.

What is: Rephrase the same request in several ways, run them all and aggregate. Reduces the result's sensitivity to specific wording, models sometimes answer differently just because of how you asked.

When to use: When you suspect the result depends too much on how the question was written.

When to avoid: Stable, well-defined tasks where wording doesn't change the result.

Right
I'll ask the same question 3 ways. Answer each and say if they agree; if they diverge, explain why and which is most reliable. (a) ... (b) ... (c) ...

Convergence = a solid answer. Divergence reveals ambiguity, valuable information in itself.

Why: LLMs are sensitive to wording: the same question rephrased can change accuracy. Aggregating paraphrases reduces that variance and exposes fragile answers.

💡 Tip: If the paraphrases diverge a lot, the problem is usually ambiguity in the question, worth clarifying first.