On the Consistency of Automatic Scoring with Large Language Models.
TL;DR Highlight
When auto-grading answers with LLMs, variance within the same model is low but cross-model variance is high — use multi-LLM majority voting for reliability.
Who Should Read
Researchers and engineers building LLM-based evaluation systems who need to understand and manage variance in automated scoring.
Core Mechanics
- Intra-model variance (same model, same prompt, multiple runs) is low for LLM graders — outputs are reasonably consistent
- Inter-model variance (different models grading same answer) is high — different LLMs can disagree substantially on grades
- This means single-model auto-grading may be reliable run-to-run but systematically biased in ways that differ between models
- Multi-LLM ensemble grading (majority vote across 3+ different models) significantly reduces systematic bias compared to any single model
- The ensemble approach is particularly important for contested or subjective answers where human raters also disagree
- Practical recommendation: use 3 different LLM graders (e.g., GPT-4o, Claude, Gemini) and take majority vote — reduces model-specific bias at 3x cost
Evidence
- Intra-model variance (GPT-4o across 10 runs): standard deviation 0.12 grade points on 1-5 scale
- Inter-model variance (GPT-4o vs Claude vs Gemini): standard deviation 0.67 grade points — 5x higher
- 3-model ensemble accuracy vs. human ground truth: 84% agreement vs. 71% for best single model
How to Apply
- For high-stakes automated grading: use at least 3 different LLM providers and take majority vote — the 3x cost is justified by the significant accuracy improvement.
- If cost is a constraint: use a cheap model (GPT-4o-mini) for initial filtering and only escalate to the 3-model ensemble for borderline cases (within 1 grade level of pass/fail threshold).
- Track inter-model disagreement as a quality signal: high disagreement on a specific question type indicates that question is poorly suited for automated grading.
Code Example
import openai
import anthropic
import google.generativeai as genai
from collections import Counter
def score_response(question, student_answer, rubric, models=["gpt", "claude", "gemini"]):
"""
Apply majority voting after scoring with multiple LLMs
"""
prompt = f"""Score the following question and student answer based on the rubric.
Question: {question}
Student Answer: {student_answer}
Rubric: {rubric}
Output the score as a number only (e.g., 2)."""
scores = []
# GPT
if "gpt" in models:
response = openai.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": prompt}],
temperature=0 # ensure intra-LLM consistency
)
scores.append(int(response.choices[0].message.content.strip()))
# Claude
if "claude" in models:
client = anthropic.Anthropic()
response = client.messages.create(
model="claude-opus-4-6",
max_tokens=10,
messages=[{"role": "user", "content": prompt}]
)
scores.append(int(response.content[0].text.strip()))
# Majority voting
vote_counts = Counter(scores)
final_score = vote_counts.most_common(1)[0][0]
confidence = vote_counts[final_score] / len(scores)
return {
"final_score": final_score,
"confidence": confidence,
"all_scores": scores,
"needs_review": confidence < 0.6 # flag for human review when models disagree
}
# Usage example
result = score_response(
question="Explain the role of light energy in the process of photosynthesis.",
student_answer="Light energy is used to break down water molecules.",
rubric="0 points: irrelevant answer, 1 point: partially correct, 2 points: complete answer"
)
print(result)Terminology
Related Papers
Show HN: Mindwalk – Replay coding-agent sessions on a 3D map of your codebase
Claude Code나 Codex 같은 AI 코딩 에이전트가 세션 중 코드베이스의 어떤 파일을 탐색하고 수정했는지를 3D 지도 형태로 시각화해서 재생해주는 로컬 도구다. 에이전트가 작업을 어떻게 이해했는지 한눈에 파악할 수 있다.
Ghost Font: A font that humans can read but AI cannot
움직임(모션)을 이용해 글자를 표현해서 AI 모델이 정적 이미지 분석으로는 메시지를 해독하지 못하게 막는 실험적 프로젝트인데, 커뮤니티에서는 이미 GPT-5.6, Claude Opus 등으로 해독에 성공한 사례가 속출해 실효성 논쟁이 뜨겁다.
GPT-5.6, Grok 4.5, Claude, and Muse Spark build the same 4 apps
12개 LLM 모델에게 레이캐스터 미로, 루빅스 큐브, 계산기, Game of Life 앱을 각각 5번씩 만들게 해서 성공률·비용·속도를 비교한 실전 벤치마크다. GPT-5.6 Sol이 전반적으로 가장 일관된 결과를 냈고, Grok 4.5는 가성비 면에서 눈에 띄었다.
Benchmarking coding agents on Databricks' multi-million line codebase
Databricks가 자사 실제 코드베이스를 기반으로 여러 AI 코딩 에이전트의 성능과 비용을 직접 측정했고, 모델 토큰 가격과 실제 태스크 비용이 전혀 다르다는 점, 그리고 오픈소스 모델이 이제 최상위 수준에 도달했다는 점을 확인했다.
Estimating Uncertainty from Reasoning: A Large-Scale Study of Multi- and Crosslingual MCQA Performance in LLMs
LLM이 저자원 언어 질문을 받을 때 영어로 추론하게 하면 불확실성 추정 성능이 고자원 언어 수준으로 올라온다.
LLM-as-a-Verifier: A General-Purpose Verification Framework
LLM의 토큰 확률 분포를 활용해 discrete 점수 대신 continuous 점수를 뽑아내면, 추가 학습 없이 코딩·로봇·의료 에이전트 평가 정확도를 SOTA로 끌어올릴 수 있다.
Related Resources
Original Abstract (Expand)
Large language models (LLMs) have shown great potential in automatic scoring. However, due to model characteristics and variation in training materials and pipelines, scoring inconsistency can exist within an LLM and across LLMs when rating the same response multiple times. This study investigates the intra-LLM and inter-LLM consistency in scoring with five LLMs (i.e., Claude, DeepSeek, Gemini, GPT, and Qwen), variability under different temperatures, and their relationship with scoring accuracy. Moreover, a voting strategy that assembles information from different LLMs was proposed to address inconsistent scoring. Using constructed-response items from a science education assessment and open-source data from the Automated Student Assessment Prize (ASAP), we find that: (a) LLMs generally exhibited almost perfect intra-LLM consistency regardless of temperature; (b) inter-LLM consistency was moderate, with higher agreement observed for items that were easier to score; (c) intra-LLM consistency consistently exceeded inter-LLM consistency, supporting the expectation that within-model consistency represents an upper bound for cross-model agreement; (d) intra-LLM consistency was not associated with scoring accuracy, whereas inter-LLM consistency showed a strong positive relationship with accuracy; and (e) majority voting across LLMs improved scoring accuracy by leveraging complementary strengths of different models.