File size: 11,848 Bytes
f748552 | 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 | """Stateless evaluation runner.
Runs episodes using the diffusion model and collects per-environment
win rates, average rewards, and step counts. All episodes for a given
environment are rolled out in lockstep so that replanning calls are
batched into single GPU forward passes (B = n_episodes).
"""
from __future__ import annotations
import json
import logging
from datetime import datetime, timezone
from pathlib import Path
from types import SimpleNamespace
import numpy as np
import torch
from src.models.denoiser import ModelEMA, make_model
from src.planners.logging import Logger
logger = logging.getLogger(__name__)
class Evaluator:
"""Stateless evaluation runner.
Runs the model on a set of environments and returns aggregate
statistics per environment. Episodes within each environment are
executed in lockstep so replanning calls are GPU-batched.
"""
@torch.no_grad()
def evaluate(
self,
env_ids: list[str],
model: torch.nn.Module,
n_episodes: int,
cfg: SimpleNamespace,
device: torch.device | str,
des_files: list[str] | None = None,
blind_global: bool = False,
) -> dict[str, dict]:
"""Evaluate *model* on each environment in *env_ids*.
All *n_episodes* for a given environment run in lockstep so
that replanning forward passes are batched (B = active envs
needing a replan).
Args:
env_ids: List of MiniHack environment IDs.
model: Denoising model (eval mode).
n_episodes: Episodes per environment.
cfg: Config namespace.
device: Torch device.
des_files: Optional list of ``.des`` file paths for custom
scenario evaluation. Each file yields one extra env entry
keyed by its filename stem.
blind_global: If ``True``, zero out global map observations
(local-only ablation mode).
Returns:
``{env_id: {"win_rate", "wins", "avg_reward", "avg_steps",
"n_episodes"}}``
"""
model.eval()
results: dict[str, dict] = {}
# Build list of (env_id, des_content) pairs
eval_targets: list[tuple[str, str | None]] = [
(eid, None) for eid in env_ids
]
if des_files:
for des_path in des_files:
from pathlib import Path
stem = Path(des_path).stem
with open(des_path) as fh:
eval_targets.append((stem, fh.read()))
for env_id, des_content in eval_targets:
seeds = [
42 + hash((env_id, ep)) % (2**31)
for ep in range(n_episodes)
]
ep_results = self._run_episodes_batched(
model, env_id, n_episodes, cfg, device,
seeds=seeds,
des_content=des_content,
blind_global=blind_global,
)
wins = sum(1 for r in ep_results if r["won"])
total_reward = sum(r["total_reward"] for r in ep_results)
total_steps = sum(r["steps"] for r in ep_results)
n = max(len(ep_results), 1)
results[env_id] = {
"win_rate": wins / n,
"wins": wins,
"avg_reward": total_reward / n,
"avg_steps": total_steps / n,
"n_episodes": len(ep_results),
}
return results
@torch.no_grad()
def _run_episodes_batched(
self,
model: torch.nn.Module,
env_id: str,
n_episodes: int,
cfg: SimpleNamespace,
device: torch.device | str,
seeds: list[int],
des_content: str | None = None,
blind_global: bool = False,
) -> list[dict]:
"""Run episodes in lockstep with batched model inference.
Creates one environment per episode, steps them in lockstep,
and batches all replanning calls into single forward passes
(B = number of active envs needing a replan at each step).
Args:
model: Denoising model (eval mode).
env_id: MiniHack environment ID.
n_episodes: Number of episodes to run.
cfg: Config namespace.
device: Torch device.
seeds: Per-episode RNG seeds (length *n_episodes*).
des_content: Optional ``.des`` file content for custom
scenarios.
blind_global: If ``True``, zero out global map observations.
Returns:
List of per-episode dicts with ``"won"``, ``"steps"``,
``"total_reward"`` keys. Failed episodes report
``won=False``.
"""
from src.diffusion.sampling import remdm_sample
from src.envs.minihack_env import make_env
n = n_episodes
max_steps = 500
cs = cfg.crop_size
# Create and reset all envs
envs: list = []
cur_local = np.zeros((n, cs, cs), dtype=np.int16)
cur_global = np.zeros(
(n, cfg.map_h, cfg.map_w), dtype=np.int16,
)
failed = np.zeros(n, dtype=bool)
for i in range(n):
try:
env = make_env(env_id, des_content, cfg)
(local, glb), _ = env.reset(seed=seeds[i])
envs.append(env)
cur_local[i] = local
cur_global[i] = glb
except Exception:
logger.warning(
"Failed to create env %s (ep %d)",
env_id, i, exc_info=True,
)
envs.append(None)
failed[i] = True
# Per-episode state vectors
plans = np.zeros((n, cfg.seq_len), dtype=np.int64)
step_in_plan = np.zeros(n, dtype=np.int32)
need_replan = np.ones(n, dtype=bool)
done = failed.copy()
won = np.zeros(n, dtype=bool)
total_reward = np.zeros(n, dtype=np.float64)
n_steps = np.zeros(n, dtype=np.int32)
try:
for _ in range(max_steps):
# Batch replan for active envs that need it
replan_idx = np.where(need_replan & ~done)[0]
if len(replan_idx) > 0:
local_t = torch.from_numpy(
cur_local[replan_idx],
).long().to(device) # [B_r, cs, cs]
glb_t = torch.from_numpy(
cur_global[replan_idx],
).long().to(device) # [B_r, map_h, map_w]
batch_plans = remdm_sample(
model, local_t, glb_t, cfg, device,
physics_aware=getattr(
cfg, "physics_aware_sampling", False,
),
blind_global=blind_global,
).cpu().numpy() # [B_r, seq_len]
plans[replan_idx] = batch_plans
step_in_plan[replan_idx] = 0
need_replan[replan_idx] = False
# Step all active envs
any_active = False
for i in range(n):
if done[i]:
continue
any_active = True
action = int(plans[i, step_in_plan[i]])
action = max(
0, min(action, cfg.action_dim - 1),
)
step_in_plan[i] += 1
n_steps[i] += 1
if step_in_plan[i] >= cfg.replan_every:
need_replan[i] = True
try:
obs, reward, term, trunc, info = (
envs[i].step(action)
)
local, glb = obs
total_reward[i] += reward
cur_local[i] = local
cur_global[i] = glb
if info.get("won", False):
won[i] = True
if term or trunc:
done[i] = True
except Exception:
logger.warning(
"Episode %d step failed for %s",
i, env_id, exc_info=True,
)
done[i] = True
if not any_active:
break
finally:
for env in envs:
if env is not None:
env.close()
return [
{
"won": bool(won[i]),
"steps": int(n_steps[i]),
"total_reward": float(total_reward[i]),
}
for i in range(n)
]
def format_eval_results(
results: dict[str, dict], label: str = "Eval",
) -> str:
"""Format evaluation results as an ASCII table.
Args:
results: Output of ``Evaluator.evaluate``.
label: Table header label.
Returns:
Formatted string.
"""
lines = [f"{'=' * 60}", f" {label} Results", f"{'=' * 60}"]
lines.append(
f" {'Environment':<35} {'WinRate':>8} {'Steps':>8}"
)
lines.append(f" {'-' * 53}")
for env_id, stats in results.items():
wr = f"{stats['win_rate']:.2%}"
st = f"{stats['avg_steps']:.1f}"
lines.append(f" {env_id:<35} {wr:>8} {st:>8}")
lines.append(f"{'=' * 60}")
return "\n".join(lines)
def save_eval_json(
results: dict,
path: str,
metadata: dict | None = None,
) -> None:
"""Save evaluation results to a JSON file.
Args:
results: Evaluation results dict.
path: Output file path.
metadata: Optional extra metadata (e.g. iteration).
"""
payload = {
"timestamp": datetime.now(timezone.utc).isoformat(),
"results": results,
}
if metadata:
payload["metadata"] = metadata
resolved = str(Path(path).resolve())
Path(resolved).parent.mkdir(parents=True, exist_ok=True)
try:
with open(resolved, "w") as f:
json.dump(payload, f, indent=2, default=str)
except Exception:
logger.error(f"Failed to save eval JSON to {resolved}", exc_info=True)
def run_inference(
cfg,
checkpoint_path: str,
env_ids: list[str] | None,
episodes: int,
output_path: str | None,
use_ema: bool,
log: Logger | None = None,
des_files: list[str] | None = None,
blind_global: bool = False,
) -> None:
"""Evaluate a checkpoint on specified environments."""
device = cfg.device
logger.info(f"Inference on {device}")
model = make_model(cfg).to(device)
ckpt = torch.load(
checkpoint_path, map_location=device, weights_only=False,
)
if "model_state_dict" in ckpt:
model.load_state_dict(ckpt["model_state_dict"])
if use_ema and "ema_state_dict" in ckpt:
ema = ModelEMA(model, decay=cfg.ema_decay)
ema.load_state_dict(ckpt["ema_state_dict"])
ema.apply_to(model)
else:
model.load_state_dict(ckpt)
model.eval()
if env_ids is None:
env_ids = cfg.id_envs + cfg.ood_envs
evaluator = Evaluator()
results = evaluator.evaluate(
env_ids, model, episodes, cfg, device,
des_files=des_files, blind_global=blind_global,
)
print(format_eval_results(results, label="Inference"))
if log is not None:
log.log_eval(results, step=0, prefix="inference")
log.log_summary(
{f"inference/{env_id}/win_rate": stats["win_rate"]
for env_id, stats in results.items()}
)
if output_path:
save_eval_json(results, output_path)
logger.info(f"Results saved to {output_path}")
|