Spaces:
Sleeping
Sleeping
File size: 11,810 Bytes
637f42c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | """
TeamForge Evaluation Protocol v1.0
====================================
Formal, reproducible evaluation specification for the TeamForge benchmark.
This module defines the canonical evaluation protocol used to produce
all results in the leaderboard. Any third party can reproduce our numbers
by following this spec exactly.
Usage:
python evaluation.py --help
python evaluation.py --model llama3-8b-8192 --runs 3
python evaluation.py --model llama3-70b-8192 --runs 5 --seed 42
"""
from __future__ import annotations
import argparse
import json
import os
import random
import sys
import time
from dataclasses import dataclass, asdict
from datetime import datetime, timezone
from pathlib import Path
from statistics import mean, stdev
from typing import Dict, List, Optional
from rich.console import Console
from rich.table import Table
from rich import box
console = Console()
# βββ Protocol constants (FROZEN β do not change between runs) βββββββββββββββββ
PROTOCOL_VERSION = "1.0.0"
TEMPERATURE = 0.15 # all model calls use this
MAX_TOKENS = 1800 # per LLM call
CONTEXT_WINDOW_MSGS = 12 # last N messages kept in context
DEFAULT_RUNS = 3 # runs per (model, task) for CI
FULL_RUNS = 5 # runs for publication-quality results
TASK_WEIGHTS = {
"easy_bugfix_chunk_list": 0.20,
"medium_refactor_stats": 0.35,
"hard_lru_cache_performance": 0.45,
}
PASS_THRESHOLD = 0.70 # final_score >= this β task "passed"
BENCHMARK_PASS_SCORE = 0.60 # teamforge_score >= this β model "passes benchmark"
# βββ Data classes βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class RunResult:
model: str
task_id: str
run_index: int
seed: int
final_score: float
test_pass_rate: float
lint_score: float
efficiency_score: float
review_quality: float
reflection_quality: float
total_steps: int
elapsed_s: float
passed: bool
timestamp: str
@dataclass
class TaskSummary:
task_id: str
n_runs: int
mean_score: float
std_score: float
best_score: float
worst_score: float
pass_rate: float # fraction of runs that passed
mean_steps: float
mean_elapsed_s: float
@dataclass
class ModelReport:
model: str
protocol_version: str
timestamp: str
teamforge_score: float # weighted aggregate of best-run scores
benchmark_passed: bool
task_summaries: Dict[str, TaskSummary]
raw_runs: List[RunResult]
def to_dict(self) -> dict:
d = asdict(self)
return d
# βββ Evaluator ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class TeamForgeEvaluator:
"""
Runs the canonical evaluation protocol for a given model.
Produces a ModelReport with full statistical summary.
"""
def __init__(
self,
model: str,
n_runs: int = DEFAULT_RUNS,
base_seed: int = 42,
task_ids: Optional[List[str]] = None,
results_dir: str = "results",
):
self.model = model
self.n_runs = n_runs
self.base_seed = base_seed
self.task_ids = task_ids or list(TASK_WEIGHTS.keys())
self.results_dir = Path(results_dir)
self.results_dir.mkdir(exist_ok=True)
def run(self) -> ModelReport:
"""Execute full evaluation. Returns ModelReport."""
from environment import TeamForgeEnv
from benchmark import BenchmarkAgent
from openai import OpenAI
GROQ_API_KEY = os.getenv("GROQ_API_KEY", "")
API_BASE_URL = os.getenv("API_BASE_URL", "https://api.groq.com/openai/v1")
client = OpenAI(api_key=GROQ_API_KEY, base_url=API_BASE_URL)
agent = BenchmarkAgent(client, self.model)
env = TeamForgeEnv()
all_runs: List[RunResult] = []
total_episodes = len(self.task_ids) * self.n_runs
done_count = 0
for task_id in self.task_ids:
console.print(f"\n [bold cyan]Task:[/bold cyan] {task_id}")
for run_i in range(self.n_runs):
seed = self.base_seed + run_i
random.seed(seed)
console.print(f" run {run_i+1}/{self.n_runs} (seed={seed}) β¦ ", end="")
t0 = time.perf_counter()
agent.reset()
obs = env.reset(task_id)
while not obs.done:
action = agent.act(obs)
if action is None:
break
obs = env.step(action)
elapsed = time.perf_counter() - t0
result = env.grade()
run = RunResult(
model=self.model,
task_id=task_id,
run_index=run_i,
seed=seed,
final_score=result.final_score,
test_pass_rate=result.test_pass_rate,
lint_score=result.lint_score,
efficiency_score=result.efficiency_score,
review_quality=result.review_quality,
reflection_quality=result.reflection_quality,
total_steps=result.total_steps,
elapsed_s=round(elapsed, 2),
passed=result.final_score >= PASS_THRESHOLD,
timestamp=datetime.now(timezone.utc).isoformat(),
)
all_runs.append(run)
done_count += 1
status = "[green]β[/green]" if run.passed else "[red]β[/red]"
console.print(f"{status} score={run.final_score:.4f} steps={run.total_steps} {elapsed:.1f}s")
env._sandbox.teardown()
# Build report
report = self._build_report(all_runs)
self._save(report)
return report
def _build_report(self, runs: List[RunResult]) -> ModelReport:
task_summaries = {}
for task_id in self.task_ids:
task_runs = [r for r in runs if r.task_id == task_id]
if not task_runs:
continue
scores = [r.final_score for r in task_runs]
task_summaries[task_id] = TaskSummary(
task_id=task_id,
n_runs=len(task_runs),
mean_score=round(mean(scores), 4),
std_score=round(stdev(scores) if len(scores) > 1 else 0.0, 4),
best_score=round(max(scores), 4),
worst_score=round(min(scores), 4),
pass_rate=round(sum(1 for r in task_runs if r.passed) / len(task_runs), 4),
mean_steps=round(mean(r.total_steps for r in task_runs), 1),
mean_elapsed_s=round(mean(r.elapsed_s for r in task_runs), 1),
)
# TeamForge Score = weighted sum of BEST runs
teamforge_score = sum(
TASK_WEIGHTS.get(tid, 0) * task_summaries[tid].best_score
for tid in self.task_ids
if tid in task_summaries
)
return ModelReport(
model=self.model,
protocol_version=PROTOCOL_VERSION,
timestamp=datetime.now(timezone.utc).isoformat(),
teamforge_score=round(teamforge_score, 4),
benchmark_passed=teamforge_score >= BENCHMARK_PASS_SCORE,
task_summaries=task_summaries,
raw_runs=runs,
)
def _save(self, report: ModelReport) -> None:
model_dir = self.results_dir / self.model.replace("/", "_")
model_dir.mkdir(exist_ok=True)
ts = datetime.now().strftime("%Y%m%d_%H%M%S")
path = model_dir / f"eval_{ts}.json"
path.write_text(json.dumps(report.to_dict(), indent=2))
console.print(f"\n [dim]Saved β {path}[/dim]")
# βββ Report printer βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def print_report(report: ModelReport) -> None:
console.print()
console.rule(f"[bold]Evaluation Report β {report.model}[/bold]")
# Per-task detail
t = Table(box=box.DOUBLE_EDGE, border_style="cyan", header_style="bold cyan")
t.add_column("Task", width=34)
t.add_column("MeanΒ±Std", justify="center", width=12)
t.add_column("Best", justify="center", width=8)
t.add_column("Worst", justify="center", width=8)
t.add_column("Pass Rate", justify="center", width=10)
t.add_column("Avg Steps", justify="center", width=10)
for task_id, ts in report.task_summaries.items():
score_color = "green" if ts.mean_score >= 0.7 else ("yellow" if ts.mean_score >= 0.5 else "red")
t.add_row(
task_id,
f"[{score_color}]{ts.mean_score:.3f}[/{score_color}]Β±{ts.std_score:.3f}",
f"{ts.best_score:.3f}",
f"{ts.worst_score:.3f}",
f"{ts.pass_rate*100:.0f}%",
str(ts.mean_steps),
)
console.print(t)
# Summary
passed_str = "[bold green]β BENCHMARK PASSED[/bold green]" \
if report.benchmark_passed else "[bold red]β BENCHMARK FAILED[/bold red]"
ts_color = "green" if report.teamforge_score >= 0.7 else ("yellow" if report.teamforge_score >= 0.5 else "red")
console.print(
f"\n [{ts_color}]TeamForge Score: {report.teamforge_score:.4f}[/{ts_color}] Β· {passed_str}"
f"\n [dim]Protocol v{report.protocol_version} | {report.n_runs} runs/task | T={TEMPERATURE}[/dim]"
)
# βββ CLI ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
parser = argparse.ArgumentParser(
description="TeamForge Formal Evaluation Protocol",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""
Examples:
python evaluation.py --model llama3-8b-8192
python evaluation.py --model llama3-70b-8192 --runs 5 --seed 0
python evaluation.py --model llama3-8b-8192 --task easy_bugfix_chunk_list
""",
)
parser.add_argument("--model", required=True, help="Model name (Groq model string)")
parser.add_argument("--runs", type=int, default=DEFAULT_RUNS, help=f"Runs per task (default {DEFAULT_RUNS})")
parser.add_argument("--seed", type=int, default=42, help="Base random seed")
parser.add_argument("--task", default=None, help="Evaluate single task only")
args = parser.parse_args()
task_ids = [args.task] if args.task else list(TASK_WEIGHTS.keys())
console.rule("[bold blue]TeamForge Evaluation Protocol v1.0[/bold blue]")
console.print(f" Model: [bold]{args.model}[/bold]")
console.print(f" Tasks: {task_ids}")
console.print(f" Runs: {args.runs} per task")
console.print(f" Seed: {args.seed}")
console.print(f" Temp: {TEMPERATURE}")
console.print()
evaluator = TeamForgeEvaluator(
model=args.model,
n_runs=args.runs,
base_seed=args.seed,
task_ids=task_ids,
)
report = evaluator.run()
print_report(report)
if __name__ == "__main__":
main()
|