Spaces:
Sleeping
Sleeping
File size: 17,509 Bytes
c71bf62 | 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 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | """Post-training evaluation against the held-out eval split.
Three modes:
--baseline greedy heuristic (handcoded, no model)
--trained base LLM + LoRA adapter, full tool-calling rollout per scenario
--untrained base LLM (no adapter) β measures whether GRPO actually improved over zero-shot
Aggregates per-difficulty and per-skill_focus, writes JSON. Same `master_seed`
as the trainer so the eval split is identical to training holdout.
"""
from __future__ import annotations
import argparse
import json
import re
import time
from collections import defaultdict
from pathlib import Path
from typing import Any, Dict, List, Optional, Tuple
from dispatch_arena.catalog.builder import load_catalog
from dispatch_arena.catalog.dataset import stratified_split
from dispatch_arena.client import DispatchArenaClient
from dispatch_arena.server.app import run_local_server_in_thread
CATALOG_PATH = Path(__file__).resolve().parents[1] / "catalog" / "catalog.json"
ADAPTER_PATH = Path(__file__).resolve().parents[1] / "scripts" / "_grpo_normal_out" / "final_lora"
BASE_MODEL = "Qwen/Qwen3-1.7B"
def heuristic_action(obs) -> Dict[str, Any]:
"""Greedy baseline: assign first idle courier to first unassigned order."""
state = obs.state
courier = next(
(c for c in state.couriers if c.status.value == "idle" and c.load is None),
None,
)
order = next(
(
o
for o in state.orders
if o.status.value in {"queued", "ready"} and o.assigned_courier_id is None
),
None,
)
if courier and order:
return {"action_type": "assign", "courier_id": courier.id, "order_id": order.id}
return {"action_type": "hold"}
def evaluate_heuristic(eval_specs, server_url: str) -> List[Dict[str, Any]]:
"""Run the greedy heuristic against every eval scenario and collect metrics.
Used as the baseline curve in the README. The trained-model eval lives in
a separate function once we have a checkpoint to load.
"""
client = DispatchArenaClient(base_url=server_url, timeout_seconds=30)
results = []
for spec in eval_specs:
config = {
"mode": "normal",
"max_ticks": spec.max_ticks,
"num_couriers": spec.num_couriers,
"num_orders": spec.num_orders,
"scenario_bucket": spec.scenario_bucket,
"rolling_arrivals": spec.rolling_arrivals,
"traffic_noise": spec.traffic_noise,
"visible_prep": spec.visible_prep,
}
obs = client.reset(seed=spec.seed, config=config)
total_reward = float(obs.reward)
invalid = 0
cap = spec.max_ticks * 3
steps = 0
while not obs.done and steps < cap:
steps += 1
action = heuristic_action(obs)
obs = client.step(action)
total_reward += float(obs.reward)
if obs.info.get("invalid_action"):
invalid += 1
summary = client.fetch_summary()
metrics = summary.get("metrics", {})
results.append(
{
"name": spec.name,
"difficulty": spec.difficulty,
"skill_focus": list(spec.skill_focus),
"total_reward": total_reward,
"delivered": metrics.get("delivered", 0),
"orders": metrics.get("orders", spec.num_orders),
"success_rate": metrics.get("success_rate", 0.0),
"on_time_rate": metrics.get("on_time_rate", 0.0),
"expired_rate": metrics.get("expired_rate", 0.0),
"mean_delivery_ticks": metrics.get("mean_delivery_ticks", 0.0),
"mean_lateness": metrics.get("mean_lateness", 0.0),
"invalid_rate": metrics.get("invalid_rate", 0.0),
"invalid_count": invalid,
"verdict": summary.get("final_verdict", "unknown"),
"ticks_taken": summary.get("ticks_taken", 0),
}
)
return results
def aggregate(results: List[Dict[str, Any]], group_key: str) -> Dict[str, Dict[str, float]]:
"""Aggregate per-scenario results into per-bucket means."""
buckets: Dict[str, List[Dict[str, Any]]] = defaultdict(list)
if group_key == "skill_focus":
for r in results:
for tag in r["skill_focus"]:
buckets[tag].append(r)
else:
for r in results:
buckets[str(r[group_key])].append(r)
agg = {}
metric_keys = [
"total_reward",
"success_rate",
"on_time_rate",
"expired_rate",
"mean_delivery_ticks",
"mean_lateness",
"invalid_rate",
]
for key, group in buckets.items():
n = len(group)
agg[key] = {"n": n}
for mk in metric_keys:
agg[key][mk] = sum(r[mk] for r in group) / n if n else 0.0
return agg
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Trained-model evaluation: load base + LoRA, run a tool-calling loop per
# scenario, collect rewards.
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Same prompt the trainer used; tool schemas are embedded so the model can
# emit valid <tool_call>{json}</tool_call> blocks even if the chat template's
# tools= injection isn't picked up.
INFERENCE_SYSTEM_PROMPT = """You are a real-time delivery dispatcher running one shift over a small fleet of couriers. Your job is to dispatch each order to the right courier and keep the shift moving so orders are delivered before their deadlines.
# Tool calling
Always reply with EXACTLY ONE tool call per turn, in this format (no other text):
<tool_call>
{"name": "<tool_name>", "arguments": {<args-json>}}
</tool_call>
# Available tools
view_dashboard() β refresh the dashboard
assign(courier_id, order_id) β dispatch an idle courier to a queued/ready unassigned order
reposition(courier_id, node_id) β pre-stage an idle courier at a node
hold() β wait one tick
prioritize(order_id) β mark an order as priority
finish_shift() β end early once everything is delivered
# Rules
- One tool per turn, in the exact <tool_call> format above. Output nothing else.
- Prep time is hidden; orders flip from queued -> ready when ready.
- Travel times shown are baseline; with traffic, real ETAs run longer."""
_TOOL_CALL_RE = re.compile(r"<tool_call>\s*(\{.*?\})\s*</tool_call>", re.DOTALL)
def _parse_tool_call(completion: str) -> Optional[Tuple[str, Dict[str, Any]]]:
"""Extract (name, arguments) from a Qwen-style <tool_call>{json}</tool_call> block."""
m = _TOOL_CALL_RE.search(completion)
if not m:
return None
try:
data = json.loads(m.group(1))
except json.JSONDecodeError:
return None
name = data.get("name")
args = data.get("arguments") or {}
if not isinstance(name, str) or not isinstance(args, dict):
return None
return name, args
def _tool_call_to_action(tool_name: str, args: Dict[str, Any]) -> Optional[Dict[str, Any]]:
"""Map (tool_name, args) -> simulator Action dict. Returns None if invalid."""
if tool_name == "view_dashboard":
return {"action_type": "hold"} # dashboard refresh costs one tick
if tool_name == "hold":
return {"action_type": "hold"}
if tool_name == "assign":
c, o = args.get("courier_id"), args.get("order_id")
if not c or not o:
return None
return {"action_type": "assign", "courier_id": c, "order_id": o}
if tool_name == "reposition":
c, n = args.get("courier_id"), args.get("node_id")
if not c or not n:
return None
return {"action_type": "reposition", "courier_id": c, "node_id": n}
if tool_name == "prioritize":
o = args.get("order_id")
if not o:
return None
return {"action_type": "prioritize", "order_id": o}
if tool_name == "finish_shift":
return {"action_type": "hold"} # treated as exit-with-hold
return None # unknown tool
def _render_dashboard(obs) -> str:
"""Compact text dashboard fed back to the model after each tool call."""
s = obs.state
lines = [f"tick={s.tick}/{s.max_ticks} verdict={obs.verifier_status.value} backlog={s.backlog} sla_pressure={s.sla_pressure:.2f}"]
lines.append("couriers:")
for c in s.couriers:
load = c.load or "none"
target = f" -> {c.target_node_id}(eta {c.eta_remaining})" if c.target_node_id else ""
lines.append(f" {c.id} @ {c.node_id} {c.status.value}{target} carrying={load}")
lines.append("orders:")
for o in s.orders:
a = o.assigned_courier_id or "-"
lines.append(f" {o.id} {o.kind} {o.pickup_node_id}->{o.dropoff_node_id} status={o.status.value} deadline=t{o.deadline_tick} assigned={a}")
lines.append("travel_times (base, may run longer with traffic):")
for src in [n.id for n in s.nodes]:
row = s.travel_time_matrix.get(src, {})
edges = ", ".join(f"{dst}={t}" for dst, t in row.items() if dst != src)
lines.append(f" {src}: {edges}")
if obs.info.get("events"):
lines.append("last_events: " + " | ".join(obs.info["events"][-4:]))
if obs.done:
lines.append("DONE")
return "\n".join(lines)
def load_inference_model(use_adapter: bool):
"""Load Qwen3-1.7B base model + (optionally) the trained LoRA adapter."""
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
print(f"Loading base model {BASE_MODEL} ...")
tok = AutoTokenizer.from_pretrained(BASE_MODEL)
model = AutoModelForCausalLM.from_pretrained(
BASE_MODEL, torch_dtype=torch.float16, device_map="cuda"
)
if use_adapter:
from peft import PeftModel
print(f"Loading LoRA adapter {ADAPTER_PATH} ...")
model = PeftModel.from_pretrained(model, str(ADAPTER_PATH))
model.eval()
return tok, model
def evaluate_with_model(
eval_specs,
server_url: str,
tok,
model,
max_tool_calls: int = 20,
max_new_tokens: int = 256,
) -> List[Dict[str, Any]]:
"""Run a tool-calling rollout for every eval scenario; collect metrics."""
import torch
client = DispatchArenaClient(base_url=server_url, timeout_seconds=30)
results = []
for i, spec in enumerate(eval_specs):
config = {
"mode": "normal",
"max_ticks": spec.max_ticks,
"num_couriers": spec.num_couriers,
"num_orders": spec.num_orders,
"scenario_bucket": spec.scenario_bucket,
"rolling_arrivals": spec.rolling_arrivals,
"traffic_noise": spec.traffic_noise,
"visible_prep": spec.visible_prep,
}
obs = client.reset(seed=spec.seed, config=config)
total_reward = float(obs.reward)
invalid = 0
unparseable = 0
valid_calls = 0
messages = [
{"role": "system", "content": INFERENCE_SYSTEM_PROMPT},
{"role": "user", "content": "Initial dashboard:\n" + _render_dashboard(obs)},
]
for _step in range(max_tool_calls):
if obs.done:
break
prompt = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
ids = tok(prompt, return_tensors="pt").to(model.device)
with torch.no_grad():
out = model.generate(
**ids,
max_new_tokens=max_new_tokens,
do_sample=True,
temperature=0.7,
top_p=0.9,
pad_token_id=tok.eos_token_id,
)
completion = tok.decode(out[0][ids.input_ids.shape[1]:], skip_special_tokens=True)
messages.append({"role": "assistant", "content": completion})
parsed = _parse_tool_call(completion)
if not parsed:
unparseable += 1
messages.append({"role": "user", "content": "Output not parseable. Reply with one <tool_call>{...}</tool_call> block."})
continue
tool_name, args = parsed
action = _tool_call_to_action(tool_name, args)
if action is None:
unparseable += 1
messages.append({"role": "user", "content": f"Unknown or malformed tool call: {tool_name}. Try a valid tool."})
continue
obs = client.step(action)
total_reward += float(obs.reward)
if obs.info.get("invalid_action"):
invalid += 1
else:
valid_calls += 1
messages.append({"role": "user", "content": _render_dashboard(obs)})
summary = client.fetch_summary()
metrics = summary.get("metrics", {})
results.append({
"name": spec.name,
"difficulty": spec.difficulty,
"skill_focus": list(spec.skill_focus),
"total_reward": total_reward,
"delivered": metrics.get("delivered", 0),
"orders": metrics.get("orders", spec.num_orders),
"success_rate": metrics.get("success_rate", 0.0),
"on_time_rate": metrics.get("on_time_rate", 0.0),
"expired_rate": metrics.get("expired_rate", 0.0),
"mean_delivery_ticks": metrics.get("mean_delivery_ticks", 0.0),
"mean_lateness": metrics.get("mean_lateness", 0.0),
"invalid_rate": metrics.get("invalid_rate", 0.0),
"invalid_count": invalid,
"unparseable_count": unparseable,
"valid_call_count": valid_calls,
"verdict": summary.get("final_verdict", "unknown"),
"ticks_taken": summary.get("ticks_taken", 0),
})
print(f" [{i+1:>2}/{len(eval_specs)}] {spec.difficulty:>6} {spec.name[:40]:<40} "
f"-> delivered={metrics.get('delivered',0)}/{metrics.get('orders',spec.num_orders)} "
f"reward={total_reward:+.2f} invalid={invalid} unparseable={unparseable}")
return results
def parse_args(argv=None):
p = argparse.ArgumentParser(description="Per-difficulty eval over the catalog held-out split.")
p.add_argument("--baseline", action="store_true", help="Greedy heuristic (no model).")
p.add_argument("--trained", action="store_true", help="Base LLM + trained LoRA adapter.")
p.add_argument("--untrained", action="store_true", help="Base LLM only (zero-shot, no adapter).")
p.add_argument("--master-seed", type=int, default=0)
p.add_argument("--eval-fraction", type=float, default=0.30)
p.add_argument(
"--out",
type=Path,
default=None,
help="Output JSON path. Defaults to _eval_out/{baseline|trained|untrained}.json",
)
return p.parse_args(argv)
def main(argv=None) -> int:
args = parse_args(argv)
if not (args.baseline or args.trained or args.untrained):
print("Pick one of --baseline / --trained / --untrained.")
return 1
mode_label = "heuristic_baseline" if args.baseline else ("trained_lora" if args.trained else "untrained_base")
if args.out is None:
args.out = Path(__file__).resolve().parents[1] / "scripts" / "_eval_out" / f"{mode_label}.json"
args.out.parent.mkdir(parents=True, exist_ok=True)
server, _thread = run_local_server_in_thread(port=0, max_concurrent_envs=16)
host, port = server.server_address
time.sleep(0.2)
server_url = f"http://{host}:{port}"
specs = load_catalog(CATALOG_PATH)
_train_specs, eval_specs = stratified_split(
specs, eval_fraction=args.eval_fraction, master_seed=args.master_seed
)
print(f"Eval split: {len(eval_specs)} scenarios (mode={mode_label})")
if args.baseline:
print("Running greedy heuristic baseline over eval split...")
results = evaluate_heuristic(eval_specs, server_url)
else:
tok, model = load_inference_model(use_adapter=args.trained)
print(f"Running model eval over {len(eval_specs)} scenarios (this takes ~10-20 min)...")
results = evaluate_with_model(eval_specs, server_url, tok, model)
agg_diff = aggregate(results, "difficulty")
agg_skill = aggregate(results, "skill_focus")
payload = {
"mode": mode_label,
"n_scenarios": len(results),
"by_difficulty": agg_diff,
"by_skill_focus": agg_skill,
"per_scenario": results,
}
args.out.write_text(json.dumps(payload, indent=2))
print(f"\n=== {mode_label.upper()} ({len(results)} scenarios) ===")
for diff in ["easy", "medium", "hard"]:
if diff in agg_diff:
m = agg_diff[diff]
print(
f" {diff:>6} n={m['n']:>2} "
f"reward={m['total_reward']:>+6.2f} "
f"success={m['success_rate']:.2f} "
f"on_time={m['on_time_rate']:.2f} "
f"invalid_rate={m['invalid_rate']:.3f}"
)
print(f"\nWritten: {args.out}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
|