File size: 13,127 Bytes
ac29381 | 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 | #!/usr/bin/env python3
"""Offline open-loop evaluation for DreamZero on YAM data.
Loads a model checkpoint directly (no server needed), reads YAM dataset
(parquet + MP4), runs inference, and compares predicted vs ground-truth actions.
Usage:
python scripts/open_loop_yam.py \
--model_path /path/to/checkpoint \
--dataset_path Dataset/YAM_play_data \
--device cuda:0 \
--num_samples 200
"""
import torch._dynamo
torch._dynamo.config.disable = True
import argparse
import glob
import os
import time
import cv2
import matplotlib
matplotlib.use("Agg")
import matplotlib.pyplot as plt
import numpy as np
import pyarrow.parquet as pq
import torch
import torch.distributed as dist
from tianshou.data import Batch
from groot.vla.data.schema import EmbodimentTag
from groot.vla.model.n1_5.sim_policy import GrootSimPolicy
# ---------------------------------------------------------------------------
# YAM layout (from Dataset/YAM_play_data/meta/modality.json)
# ---------------------------------------------------------------------------
VIDEO_CAMERAS = {
"video.top_camera-images-rgb": "observation.images.top_camera-images-rgb",
"video.left_camera-images-rgb": "observation.images.left_camera-images-rgb",
"video.right_camera-images-rgb": "observation.images.right_camera-images-rgb",
}
STATE_SLICES = {
"state.left_joint_pos": (34, 40),
"state.left_gripper_pos": (32, 33),
"state.right_joint_pos": (40, 46),
"state.right_gripper_pos": (33, 34),
}
ACTION_SLICES = {
"action.left_joint_pos": (34, 40),
"action.left_gripper_pos": (32, 33),
"action.right_joint_pos": (40, 46),
"action.right_gripper_pos": (33, 34),
}
ACTION_KEY_ORDER = [
"action.left_joint_pos",
"action.left_gripper_pos",
"action.right_joint_pos",
"action.right_gripper_pos",
]
# ---------------------------------------------------------------------------
# Dataset reader (LeRobot chunked format)
# ---------------------------------------------------------------------------
class YAMDataset:
"""Reads LeRobot-style chunked parquet + MP4."""
def __init__(self, dataset_path: str):
self.root = dataset_path
data_dir = os.path.join(dataset_path, "data")
parquet_files = sorted(glob.glob(os.path.join(data_dir, "**", "episode_*.parquet"), recursive=True))
if not parquet_files:
raise FileNotFoundError(f"No episode_*.parquet found under {data_dir}")
self.episodes = []
self.cum_lengths = [0]
for pf in parquet_files:
table = pq.read_table(pf)
self.episodes.append(table)
self.cum_lengths.append(self.cum_lengths[-1] + table.num_rows)
self.total_rows = self.cum_lengths[-1]
videos_root = os.path.join(dataset_path, "videos")
self.video_dirs = {}
for server_key, folder_name in VIDEO_CAMERAS.items():
candidates = sorted(glob.glob(os.path.join(videos_root, "**", folder_name), recursive=True))
if candidates:
self.video_dirs[server_key] = candidates[0]
print(f"YAMDataset: {len(self.episodes)} episodes, "
f"{self.total_rows} rows, {len(self.video_dirs)} cameras")
def __len__(self):
return self.total_rows
def _locate(self, idx):
for ep in range(len(self.episodes)):
if idx < self.cum_lengths[ep + 1]:
return ep, idx - self.cum_lengths[ep]
raise IndexError(f"Index {idx} out of range ({self.total_rows})")
def get_state(self, idx) -> np.ndarray:
ep, row = self._locate(idx)
return np.array(self.episodes[ep].column("observation.state")[row].as_py(), dtype=np.float64)
def get_action(self, idx) -> np.ndarray:
ep, row = self._locate(idx)
return np.array(self.episodes[ep].column("action")[row].as_py(), dtype=np.float64)
def get_task(self, idx) -> str:
ep, row = self._locate(idx)
try:
return str(self.episodes[ep].column("annotation.task")[row].as_py())
except Exception:
return ""
def get_frame(self, idx, server_key) -> np.ndarray:
"""Read one video frame → (H, W, 3) uint8 RGB."""
ep, row = self._locate(idx)
mp4 = os.path.join(self.video_dirs[server_key], f"episode_{ep:06d}.mp4")
cap = cv2.VideoCapture(mp4)
cap.set(cv2.CAP_PROP_POS_FRAMES, row)
ret, frame = cap.read()
cap.release()
if not ret:
raise RuntimeError(f"Failed to read frame {row} from {mp4}")
return cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
# ---------------------------------------------------------------------------
# Observation builder
# ---------------------------------------------------------------------------
def build_obs(dataset: YAMDataset, idx: int, prompt: str) -> dict:
"""Build an obs dict matching what GrootSimPolicy.forward() expects."""
obs = {}
for server_key in dataset.video_dirs:
frame = dataset.get_frame(idx, server_key)
obs[server_key] = frame[np.newaxis, ...].astype(np.uint8) # (1, H, W, C)
state = dataset.get_state(idx)
for key, (start, end) in STATE_SLICES.items():
obs[key] = state[start:end].reshape(1, -1).astype(np.float64) # (1, D)
obs["annotation.task"] = prompt
return obs
def get_gt_action_dict(dataset: YAMDataset, idx: int) -> dict:
"""Split the flat GT action vector into per-key arrays."""
action_flat = dataset.get_action(idx)
gt = {}
for key in ACTION_KEY_ORDER:
s, e = ACTION_SLICES[key]
gt[key] = action_flat[s:e]
return gt
# ---------------------------------------------------------------------------
# Plotting
# ---------------------------------------------------------------------------
def save_plots(all_preds, all_gts, key_names, output_dir):
"""Plot pred vs gt for each action dimension across all keys."""
pred_flat = np.concatenate([all_preds[k] for k in key_names], axis=-1)
gt_flat = np.concatenate([all_gts[k] for k in key_names], axis=-1)
D = pred_flat.shape[1]
mse_dim = np.mean((pred_flat - gt_flat) ** 2, axis=0)
for d in range(D):
plt.figure(figsize=(10, 4))
plt.plot(gt_flat[:, d], label="gt", alpha=0.8)
plt.plot(pred_flat[:, d], label="pred", alpha=0.8)
plt.title(f"Action dim {d} (MSE={mse_dim[d]:.6f})")
plt.xlabel("sample index"); plt.ylabel("value")
plt.legend(); plt.grid(True, alpha=0.3); plt.tight_layout()
plt.savefig(os.path.join(output_dir, f"action_dim_{d}.png"), dpi=150)
plt.close()
ncols = 4
nrows = (D + ncols - 1) // ncols
fig, axes = plt.subplots(nrows, ncols, figsize=(5 * ncols, 3.5 * nrows), squeeze=False)
overall_mse = float(np.mean(mse_dim))
fig.suptitle(f"All action dims (overall MSE={overall_mse:.6f})", fontsize=14)
for d in range(D):
ax = axes[d // ncols][d % ncols]
ax.plot(gt_flat[:, d], label="gt", alpha=0.7, lw=0.8)
ax.plot(pred_flat[:, d], label="pred", alpha=0.7, lw=0.8)
ax.set_title(f"dim {d} (MSE={mse_dim[d]:.4f})", fontsize=9)
ax.tick_params(labelsize=7); ax.grid(True, alpha=0.2)
if d == 0: ax.legend(fontsize=7)
for d in range(D, nrows * ncols):
axes[d // ncols][d % ncols].set_visible(False)
fig.tight_layout(rect=[0, 0, 1, 0.96])
fig.savefig(os.path.join(output_dir, "all_action_dims.png"), dpi=200)
plt.close(fig)
# Per-key summary plot
fig2, axes2 = plt.subplots(1, len(key_names), figsize=(5 * len(key_names), 4), squeeze=False)
for i, k in enumerate(key_names):
ax = axes2[0][i]
p, g = all_preds[k], all_gts[k]
for d in range(p.shape[1]):
ax.plot(g[:, d], '--', alpha=0.5, lw=0.8)
ax.plot(p[:, d], alpha=0.7, lw=0.8)
key_mse = float(np.mean((p - g) ** 2))
ax.set_title(f"{k}\nMSE={key_mse:.6f}", fontsize=9)
ax.grid(True, alpha=0.2); ax.tick_params(labelsize=7)
fig2.suptitle("Per-key pred (solid) vs gt (dashed)", fontsize=12)
fig2.tight_layout(rect=[0, 0, 1, 0.94])
fig2.savefig(os.path.join(output_dir, "per_key_summary.png"), dpi=200)
plt.close(fig2)
return mse_dim, overall_mse
# ---------------------------------------------------------------------------
# Main evaluation
# ---------------------------------------------------------------------------
def evaluate(args):
# Single-process distributed init (GrootSimPolicy uses dist.get_rank())
if not dist.is_initialized():
os.environ.setdefault("MASTER_ADDR", "localhost")
os.environ.setdefault("MASTER_PORT", "29500")
dist.init_process_group(backend="gloo", world_size=1, rank=0)
print(f"Loading model from {args.model_path} ...")
policy = GrootSimPolicy(
embodiment_tag=EmbodimentTag.YAM,
model_path=args.model_path,
device=args.device,
)
print("Model loaded.")
dataset = YAMDataset(args.dataset_path)
os.makedirs(args.output_dir, exist_ok=True)
num = min(args.num_samples, len(dataset))
preds_per_key = {k: [] for k in ACTION_KEY_ORDER}
gts_per_key = {k: [] for k in ACTION_KEY_ORDER}
times = []
print(f"\nEvaluating {num} samples (start={args.start_idx}) ...")
print("-" * 60)
for i in range(num):
idx = args.start_idx + i
prompt = args.prompt
if args.use_dataset_prompt:
task = dataset.get_task(idx)
if task:
prompt = task
obs = build_obs(dataset, idx, prompt)
t0 = time.perf_counter()
with torch.inference_mode():
result, _ = policy.lazy_joint_forward_causal(Batch(obs=obs))
elapsed = time.perf_counter() - t0
times.append(elapsed)
gt = get_gt_action_dict(dataset, idx)
for k in ACTION_KEY_ORDER:
if k in result.act:
pred_val = result.act[k]
if isinstance(pred_val, torch.Tensor):
pred_val = pred_val.cpu().numpy()
# First timestep: squeeze may collapse (1,24,1) -> (24,)
pred_val = np.atleast_1d(pred_val[0]).flatten()
preds_per_key[k].append(pred_val)
gts_per_key[k].append(gt[k])
if i % args.log_every == 0:
if i == 0:
print(f" Action keys in output: {list(result.act.keys())}")
for k in ACTION_KEY_ORDER:
if k in result.act:
v = result.act[k]
shape = v.shape if hasattr(v, 'shape') else "?"
print(f" {k}: pred_shape={shape}, gt_shape={gt[k].shape}")
print(f" [{i:>5d}/{num}] idx={idx} infer={elapsed:.3f}s prompt={prompt!r:.60}")
# Stack results
valid_keys = [k for k in ACTION_KEY_ORDER if len(preds_per_key[k]) > 0]
if not valid_keys:
print("No predictions!"); return
stacked_preds = {k: np.stack(preds_per_key[k]) for k in valid_keys}
stacked_gts = {k: np.stack(gts_per_key[k]) for k in valid_keys}
pred_all = np.concatenate([stacked_preds[k] for k in valid_keys], axis=-1)
gt_all = np.concatenate([stacked_gts[k] for k in valid_keys], axis=-1)
overall_mse = float(np.mean((pred_all - gt_all) ** 2))
print(f"\n{'='*60}")
print(f"Overall MSE: {overall_mse:.6f} | Avg inference time: {np.mean(times):.4f}s")
for k in valid_keys:
k_mse = float(np.mean((stacked_preds[k] - stacked_gts[k]) ** 2))
print(f" {k}: MSE={k_mse:.6f}")
print(f"{'='*60}")
mse_dim, _ = save_plots(stacked_preds, stacked_gts, valid_keys, args.output_dir)
with open(os.path.join(args.output_dir, "mse.txt"), "w") as f:
f.write(f"overall_mse,{overall_mse}\n")
for k in valid_keys:
k_mse = float(np.mean((stacked_preds[k] - stacked_gts[k]) ** 2))
f.write(f"{k},{k_mse}\n")
for d, v in enumerate(mse_dim):
f.write(f"dim_{d},{v}\n")
print(f"Results saved to {os.path.abspath(args.output_dir)}/")
def main():
p = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
p.add_argument("--model_path", required=True,
help="Path to model checkpoint dir (contains config.json, model.safetensors, experiment_cfg/)")
p.add_argument("--dataset_path", required=True,
help="Root of YAM dataset (contains data/, videos/, meta/)")
p.add_argument("--device", default="cuda:0")
p.add_argument("--prompt", default="pick up the object")
p.add_argument("--use_dataset_prompt", action="store_true",
help="Read task annotation from parquet instead of --prompt")
p.add_argument("--num_samples", type=int, default=300)
p.add_argument("--start_idx", type=int, default=0)
p.add_argument("--output_dir", default="results_yam")
p.add_argument("--log_every", type=int, default=10)
main_args = p.parse_args()
evaluate(main_args)
if __name__ == "__main__":
main()
|