Spaces:
Sleeping
Sleeping
File size: 13,057 Bytes
98a5a8c | 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 | #!/usr/bin/env python3
"""
Trace one Budget Router episode for a chosen policy, task, and seed.
This is a debugging/evidence tool: it prints per-step actions, step rewards,
costs, success/failure, latency, cumulative reward, and final grader metrics.
It does not expose hidden provider health to the policy.
"""
from __future__ import annotations
import json
import os
import sys
from pathlib import Path
from typing import Any, Dict, List, Optional
import typer
# Ensure imports work when run as `uv run python eval/trace_episode.py`.
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
from budget_router.environment import BudgetRouterEnv
from budget_router.models import Action, ActionType, Observation, TaskConfig
from budget_router.policies import heuristic_baseline_policy
from budget_router.reward import episode_metrics, grade_episode
from budget_router.tasks import TASK_PRESETS
from inference import LLMRouter
app = typer.Typer(add_completion=False)
POLICIES = {"heuristic", "llm", "ppo"}
DEFAULT_PPO_MODELS = {
"easy": Path("trained_models/ppo_easy_50k.zip"),
"hard_multi": Path("trained_models/ppo_hard_multi_100k.zip"),
}
# Matches train/gym_wrapper.BudgetRouterGymEnv action order (Discrete 0..3).
_PPO_ACTION_NAMES = ("route_to_a", "route_to_b", "route_to_c", "shed_load")
def _echo_step_progress(
*,
policy_label: str,
step: int,
action: str,
reward: float,
cumulative: float,
done: bool,
llm_error: Optional[str] = None,
verbose: bool,
) -> None:
if not verbose:
return
err = f" llm_error={llm_error}" if llm_error else ""
typer.echo(
f"[trace] policy={policy_label} step={step} action={action} "
f"reward={reward:+.3f} cum={cumulative:+.3f} done={done}{err}"
)
def _visible_observation_row(obs: Observation) -> Dict[str, float]:
"""Public observation values available to the policy before it acts."""
return {
"provider_a_status": round(float(obs.provider_a_status), 4),
"provider_b_status": round(float(obs.provider_b_status), 4),
"provider_c_status": round(float(obs.provider_c_status), 4),
"observed_budget_remaining": round(float(obs.budget_remaining), 4),
"queue_backlog": round(float(obs.queue_backlog), 4),
"system_latency": round(float(obs.system_latency), 4),
"step_count": round(float(obs.step_count), 4),
}
def _visible_observation_row_from_array(values: Any) -> Dict[str, float]:
"""Public observation values from the Gym wrapper's 7-field observation array."""
return {
"provider_a_status": round(float(values[0]), 4),
"provider_b_status": round(float(values[1]), 4),
"provider_c_status": round(float(values[2]), 4),
"observed_budget_remaining": round(float(values[3]), 4),
"queue_backlog": round(float(values[4]), 4),
"system_latency": round(float(values[5]), 4),
"step_count": round(float(values[6]), 4),
}
def _cumulative_step_rows(
history: List[Dict[str, Any]],
visible_observations: List[Dict[str, float]],
) -> List[Dict[str, Any]]:
rows: List[Dict[str, Any]] = []
cumulative_reward = 0.0
cumulative_cost = 0.0
for item in history:
reward = float(item.get("reward", 0.0) or 0.0)
cost = float(item.get("cost", 0.0) or 0.0)
initial_budget = float(item.get("initial_budget", 0.0) or 0.0)
cumulative_reward += reward
cumulative_cost += cost
budget_remaining = max(0.0, initial_budget - cumulative_cost)
obs_row = visible_observations[len(rows)] if len(rows) < len(visible_observations) else {}
rows.append({
"step": int(item.get("step", len(rows) + 1)),
"action": item.get("action_type"),
"provider": item.get("provider"),
"success": bool(item.get("request_succeeded", False)),
"reward": round(reward, 4),
"cumulative_reward": round(cumulative_reward, 4),
"cost": round(cost, 4),
"budget_remaining": round(budget_remaining, 4),
"latency_ms": float(item.get("latency_ms", 0.0) or 0.0),
"queue_overflow": bool(item.get("queue_overflow", False)),
"budget_exhausted": bool(item.get("budget_exhausted", False)),
**obs_row,
})
return rows
def _run_heuristic(
task_cfg: TaskConfig, seed: int, *, verbose: bool = False
) -> tuple[BudgetRouterEnv, List[Dict[str, float]]]:
env = BudgetRouterEnv()
obs = env.reset(seed=seed, scenario=task_cfg)
visible_observations = []
cumulative = 0.0
while not obs.done:
visible_observations.append(_visible_observation_row(obs))
action = heuristic_baseline_policy(obs)
action_str = action.action_type.value
obs = env.step(action)
r = float(obs.reward or 0.0)
cumulative += r
_echo_step_progress(
policy_label="heuristic",
step=int(env._internal.current_step),
action=action_str,
reward=r,
cumulative=cumulative,
done=bool(obs.done),
verbose=verbose,
)
return env, visible_observations
def _run_llm(
task_name: str, task_cfg: TaskConfig, seed: int, *, verbose: bool = False
) -> tuple[BudgetRouterEnv, List[Dict[str, float]]]:
api_key = os.getenv("API_KEY") or os.getenv("HF_TOKEN")
api_base_url = os.getenv("API_BASE_URL", "https://router.huggingface.co/v1")
model_name = os.getenv("MODEL_NAME", "Qwen/Qwen2.5-72B-Instruct")
if not api_key:
raise RuntimeError("LLM policy requires HF_TOKEN or API_KEY.")
policy = LLMRouter(api_base_url=api_base_url, model_name=model_name, api_key=api_key)
policy.reset(task_name=task_name)
env = BudgetRouterEnv()
obs = env.reset(seed=seed, scenario=task_cfg)
visible_observations = []
cumulative = 0.0
if verbose:
typer.echo(
f"[trace] begin policy=llm task={task_name} seed={seed} "
f"endpoint={api_base_url} model={model_name} "
f"(~{task_cfg.max_steps} sequential LLM calls; first call starting…)"
)
while not obs.done:
visible_observations.append(_visible_observation_row(obs))
action = policy.choose_action(obs)
action_str = action.action_type.value
obs = env.step(action)
r = float(obs.reward or 0.0)
cumulative += r
_echo_step_progress(
policy_label="llm",
step=int(env._internal.current_step),
action=action_str,
reward=r,
cumulative=cumulative,
done=bool(obs.done),
llm_error=policy.last_error,
verbose=verbose,
)
return env, visible_observations
def _default_ppo_model_path(task_name: str) -> Path:
if task_name not in DEFAULT_PPO_MODELS:
raise ValueError(
f"No default PPO model for task '{task_name}'. "
"Pass --model-path explicitly, or use task easy/hard_multi."
)
return DEFAULT_PPO_MODELS[task_name]
def _run_ppo(
task_name: str,
task_cfg: TaskConfig,
seed: int,
model_path: Optional[Path],
*,
verbose: bool = False,
) -> tuple[BudgetRouterEnv, List[Dict[str, float]]]:
# Lazy import keeps heuristic/LLM tracing available without training extras.
try:
from stable_baselines3 import PPO
from train.gym_wrapper import BudgetRouterGymEnv
except ImportError as exc:
raise RuntimeError("PPO tracing requires training dependencies: `uv sync --extra training`.") from exc
resolved_model_path = model_path or _default_ppo_model_path(task_name)
if not resolved_model_path.exists():
raise FileNotFoundError(f"PPO model not found: {resolved_model_path}")
model = PPO.load(str(resolved_model_path))
gym_env = BudgetRouterGymEnv(scenario=task_cfg, seed=seed)
obs, _ = gym_env.reset()
done = False
visible_observations = []
cumulative = 0.0
while not done:
visible_observations.append(_visible_observation_row_from_array(obs))
action_idx, _ = model.predict(obs, deterministic=True)
ai = int(action_idx)
action_str = _PPO_ACTION_NAMES[ai] if 0 <= ai < len(_PPO_ACTION_NAMES) else str(ai)
obs, reward, terminated, truncated, _ = gym_env.step(ai)
r = float(reward)
cumulative += r
done = terminated or truncated
inner = gym_env._env
_echo_step_progress(
policy_label="ppo",
step=int(inner._internal.current_step),
action=action_str,
reward=r,
cumulative=cumulative,
done=done,
verbose=verbose,
)
return gym_env._env, visible_observations
def trace_episode(
task_name: str,
seed: int,
policy_name: str,
model_path: Optional[Path] = None,
*,
verbose: bool = False,
) -> Dict[str, Any]:
"""Run one episode and return step rows plus final scorer outputs."""
if task_name not in TASK_PRESETS:
raise ValueError(f"Unknown task '{task_name}'. Choose from: {sorted(TASK_PRESETS)}")
if policy_name not in POLICIES:
raise ValueError(f"Unknown policy '{policy_name}'. Choose from: {sorted(POLICIES)}")
task_cfg = TASK_PRESETS[task_name]
if policy_name == "heuristic":
env, visible_observations = _run_heuristic(task_cfg=task_cfg, seed=seed, verbose=verbose)
elif policy_name == "llm":
env, visible_observations = _run_llm(
task_name=task_name, task_cfg=task_cfg, seed=seed, verbose=verbose
)
else:
env, visible_observations = _run_ppo(
task_name=task_name,
task_cfg=task_cfg,
seed=seed,
model_path=model_path,
verbose=verbose,
)
history = env._internal.history
steps = _cumulative_step_rows(history, visible_observations)
grader = {k: round(float(v), 4) for k, v in grade_episode(history).items()}
return {
"task": task_name,
"seed": seed,
"policy": policy_name,
"episode_length": len(steps),
"total_reward": round(sum(row["reward"] for row in steps), 4),
"grader": grader,
"metrics": episode_metrics(history),
"steps": steps,
}
def _print_trace(result: Dict[str, Any]) -> None:
typer.echo(f"Task={result['task']} Policy={result['policy']} Seed={result['seed']}")
typer.echo(f"Episode length={result['episode_length']} Total reward={result['total_reward']:+.4f}")
typer.echo("Grader:")
for key, value in result["grader"].items():
typer.echo(f" {key}: {value:.4f}")
typer.echo("")
typer.echo(
"Step | A_stat | B_stat | C_stat | Action | Provider | Success | "
"Reward | CumReward | Cost | Budget | Latency | Flags"
)
typer.echo(
"-----|--------|--------|--------|-------------|----------|---------|"
"---------|-----------|------|--------|---------|------"
)
for row in result["steps"]:
flags = []
if row["queue_overflow"]:
flags.append("queue_overflow")
if row["budget_exhausted"]:
flags.append("budget_exhausted")
typer.echo(
f"{row['step']:>4} | {row.get('provider_a_status', 0.0):>6.3f} | "
f"{row.get('provider_b_status', 0.0):>6.3f} | "
f"{row.get('provider_c_status', 0.0):>6.3f} | "
f"{row['action']:<11} | {str(row['provider'] or '-'):>8} | "
f"{str(row['success']).lower():>7} | {row['reward']:>+7.2f} | "
f"{row['cumulative_reward']:>+9.2f} | {row['cost']:>4.2f} | "
f"{row['budget_remaining']:>6.2f} | {row['latency_ms']:>7.2f} | {','.join(flags) or '-'}"
)
@app.command()
def main(
task: str = typer.Option("hard_multi", help=f"Task name: {' | '.join(TASK_PRESETS)}"),
seed: int = typer.Option(..., help="Exact episode seed."),
policy: str = typer.Option("heuristic", help=f"Policy: {' | '.join(sorted(POLICIES))}"),
model_path: Optional[Path] = typer.Option(None, help="PPO model path. Defaults exist for easy/hard_multi."),
output_json: Optional[Path] = typer.Option(None, help="Optional path to save the full trace JSON."),
verbose: bool = typer.Option(
False,
"--verbose",
"-v",
help="Print one line per env step during the episode (useful for slow LLM runs).",
),
) -> None:
"""Run and print a single exact-seed episode trace."""
result = trace_episode(
task_name=task,
seed=seed,
policy_name=policy,
model_path=model_path,
verbose=verbose,
)
_print_trace(result)
if output_json is not None:
output_json.parent.mkdir(parents=True, exist_ok=True)
output_json.write_text(json.dumps(result, indent=2) + "\n", encoding="utf-8")
typer.echo(f"\nSaved trace JSON: {output_json}")
if __name__ == "__main__":
app()
|