Spaces:
Running
Running
File size: 10,466 Bytes
dc71cad | 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 | """
fine_tuning/evaluator.py
ββββββββββββββββββββββββββ
Post-training evaluation of the fine-tuned model on SWE-bench Lite.
Evaluation pipeline:
1. Load the fine-tuned LoRA adapter (or merged model)
2. For each test instance:
a. Localise files (Phase 3 pipeline)
b. Generate patch with fine-tuned model
c. Apply patch and run tests in sandbox
d. Record result: resolved / not + failure category
3. Compute aggregate metrics:
- % resolved (primary metric)
- avg_attempts (secondary β fine-tuned should need fewer retries)
- token_cost_per_issue (efficiency metric)
4. Ablation table: base GPT-4o vs fine-tuned DeepSeek vs +conformal
Ablation table (expected results from the roadmap):
| Variant | % Resolved | Recall@5 |
|--------------------------|------------|----------|
| Naive GPT-4o baseline | 10β18% | 41% |
| + Graph localisation | 25β28% | 74% |
| + Reflection loop | 30β35% | 74% |
| + DeepSeek fine-tuned | 38β44% | 74% |
"""
from __future__ import annotations
import json
import logging
import time
from dataclasses import dataclass, field, asdict
from pathlib import Path
from typing import Literal, Optional
logger = logging.getLogger(__name__)
# ββ Result types ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class EvalResult:
instance_id: str
repo: str
resolved: bool
attempts: int
elapsed_seconds: float
token_cost: int
patch: str
failure_category: str
model_variant: str
@dataclass
class AblationRow:
"""One row in the ablation table."""
system_variant: str
pct_resolved: float
recall_at_5: float
avg_attempts: float
avg_token_cost: float
n_instances: int
notes: str = ""
def to_markdown_row(self) -> str:
return (
f"| {self.system_variant:<40} "
f"| {self.pct_resolved*100:>6.1f}% "
f"| {self.recall_at_5*100:>6.1f}% "
f"| {self.avg_attempts:>7.2f} "
f"| {self.avg_token_cost:>12,.0f} "
f"| {self.n_instances:>5} |"
)
@dataclass
class EvaluationReport:
variant: str
results: list[EvalResult] = field(default_factory=list)
@property
def n_total(self) -> int:
return len(self.results)
@property
def n_resolved(self) -> int:
return sum(1 for r in self.results if r.resolved)
@property
def pct_resolved(self) -> float:
return self.n_resolved / max(self.n_total, 1)
@property
def avg_attempts(self) -> float:
if not self.results:
return 0.0
return sum(r.attempts for r in self.results) / len(self.results)
@property
def avg_token_cost(self) -> float:
if not self.results:
return 0.0
return sum(r.token_cost for r in self.results) / len(self.results)
@property
def avg_elapsed_seconds(self) -> float:
if not self.results:
return 0.0
return sum(r.elapsed_seconds for r in self.results) / len(self.results)
@property
def failure_breakdown(self) -> dict[str, int]:
breakdown: dict[str, int] = {}
for r in self.results:
breakdown[r.failure_category] = breakdown.get(r.failure_category, 0) + 1
return breakdown
def to_ablation_row(self, recall_at_5: float = 0.0) -> AblationRow:
return AblationRow(
system_variant=self.variant,
pct_resolved=self.pct_resolved,
recall_at_5=recall_at_5,
avg_attempts=self.avg_attempts,
avg_token_cost=self.avg_token_cost,
n_instances=self.n_total,
)
def save(self, path: Path) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text(json.dumps({
"variant": self.variant,
"summary": {
"n_total": self.n_total,
"n_resolved": self.n_resolved,
"pct_resolved": self.pct_resolved,
"avg_attempts": self.avg_attempts,
"avg_token_cost": self.avg_token_cost,
"avg_elapsed_seconds": self.avg_elapsed_seconds,
"failure_breakdown": self.failure_breakdown,
},
"results": [asdict(r) for r in self.results],
}, indent=2))
# ββ Ablation table builder ββββββββββββββββββββββββββββββββββββββββββββββββββββ
class AblationTableBuilder:
"""
Builds the ablation table from multiple EvaluationReport files.
Includes published baselines (Devin, SWE-agent) for comparison.
"""
PUBLISHED_BASELINES = [
AblationRow(
system_variant="SWE-agent (Claude-3.5, published)",
pct_resolved=0.1247,
recall_at_5=0.0,
avg_attempts=1.0,
avg_token_cost=0,
n_instances=300,
notes="Yao et al. 2024",
),
AblationRow(
system_variant="Devin (published)",
pct_resolved=0.1386,
recall_at_5=0.0,
avg_attempts=1.0,
avg_token_cost=0,
n_instances=300,
notes="Cognition AI 2024",
),
]
def __init__(self):
self._rows: list[AblationRow] = list(self.PUBLISHED_BASELINES)
def add_report(self, report: EvaluationReport, recall_at_5: float = 0.0) -> None:
self._rows.append(report.to_ablation_row(recall_at_5))
def add_row(self, row: AblationRow) -> None:
self._rows.append(row)
def to_markdown(self) -> str:
header = (
"| System Variant "
"| Resolved "
"| Recall@5 "
"| Avg Attempts "
"| Avg Token Cost "
"| N |\n"
"|------------------------------------------|"
"----------|"
"----------|"
"--------------|"
"----------------|"
"-----|"
)
rows = "\n".join(r.to_markdown_row() for r in self._rows)
return header + "\n" + rows
def save_markdown(self, path: Path) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text(f"# Ablation Results\n\n{self.to_markdown()}\n")
logger.info("Ablation table saved to %s", path)
def save_json(self, path: Path) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text(json.dumps([asdict(r) for r in self._rows], indent=2))
# ββ Inference helper ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class FinetunedModelInference:
"""
Wrapper for the fine-tuned DeepSeek-Coder model.
Supports both LoRA adapter and merged model loading.
"""
def __init__(
self,
model_path: str,
use_lora: bool = True,
base_model: str = "deepseek-ai/deepseek-coder-7b-instruct-v1.5",
load_in_4bit: bool = True,
):
self.model_path = model_path
self.use_lora = use_lora
self.base_model = base_model
self.load_in_4bit = load_in_4bit
self._model = None
self._tokenizer = None
def load(self) -> None:
"""Load model into memory (deferred to avoid import at module level)."""
try:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig
bnb_cfg = None
if self.load_in_4bit:
bnb_cfg = BitsAndBytesConfig(
load_in_4bit=True, bnb_4bit_quant_type="nf4",
bnb_4bit_compute_dtype=torch.bfloat16,
bnb_4bit_use_double_quant=True,
)
model = AutoModelForCausalLM.from_pretrained(
self.base_model if self.use_lora else self.model_path,
quantization_config=bnb_cfg,
device_map="auto",
trust_remote_code=True,
torch_dtype=torch.bfloat16,
)
if self.use_lora:
from peft import PeftModel
model = PeftModel.from_pretrained(model, self.model_path)
model = model.merge_and_unload() # merge for fast inference
self._model = model.eval()
self._tokenizer = AutoTokenizer.from_pretrained(
self.model_path, trust_remote_code=True
)
logger.info("Fine-tuned model loaded from %s", self.model_path)
except ImportError as e:
raise ImportError(
f"Install: pip install transformers peft torch bitsandbytes\n{e}"
)
def generate_patch(self, user_prompt: str, system_prompt: str, max_new_tokens: int = 1024) -> str:
"""Generate a unified diff patch for the given prompt."""
if self._model is None:
self.load()
import torch
from fine_tuning.dataset_builder import CHATML_TEMPLATE
prompt = CHATML_TEMPLATE.format(
system=system_prompt, user=user_prompt, assistant=""
).rstrip()
inputs = self._tokenizer(
prompt, return_tensors="pt", truncation=True, max_length=4096
).to(self._model.device)
with torch.inference_mode():
output = self._model.generate(
**inputs,
max_new_tokens=max_new_tokens,
do_sample=False,
temperature=1.0, # deterministic when do_sample=False
pad_token_id=self._tokenizer.eos_token_id,
)
# Decode only the new tokens (not the prompt)
new_tokens = output[0][inputs["input_ids"].shape[1]:]
patch = self._tokenizer.decode(new_tokens, skip_special_tokens=True)
return patch.strip()
def batch_generate(self, prompts: list[str], system_prompt: str, **kwargs) -> list[str]:
"""Generate patches for a batch of prompts."""
return [self.generate_patch(p, system_prompt, **kwargs) for p in prompts]
|