feat: per-step supervision over full sequence

- model outputs (B, S, 2) instead of (B, 2) — GRU output at every timestep
- train/val loss computed over all S timesteps with reduction=none
- benchmark/evaluate.py takes pred[:, -1, :] for final-step evaluation
- added per-step loss logging (8 evenly spaced steps) to TensorBoard

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
2026-07-09 15:49:23 +08:00
parent 504332190d
commit 56aa10a503
3 changed files with 26 additions and 20 deletions
+2 -1
View File
@@ -114,7 +114,8 @@ def evaluate_scene(
tilt = batch["tilt"].to(device) tilt = batch["tilt"].to(device)
target = batch["v_body_target"].to(device) # (B, S, 2) normalized target = batch["v_body_target"].to(device) # (B, S, 2) normalized
pred = model(events, tilt) # (B, 2) normalized pred = model(events, tilt) # (B, S, 2)
pred = pred[:, -1, :] # (B, 2) — last timestep
target_last = target[:, -1, :] # (B, 2) normalized target_last = target[:, -1, :] # (B, 2) normalized
all_preds.append(pred.cpu().numpy()) all_preds.append(pred.cpu().numpy())
+9 -10
View File
@@ -86,13 +86,13 @@ class PoseMLP(nn.Module):
class VelocityPredictionModel(nn.Module): class VelocityPredictionModel(nn.Module):
""" """
Full model: CNN + PoseMLP → concat → GRU → Head → [vx, vy]. Full model: CNN + PoseMLP → concat → GRU → Head → [v_right, v_forward].
Input: Input:
events: (B, S, 1, H, W) events: (B, S, 1, H, W)
tilt: (B, S, 3) tilt: (B, S, 3)
Output: Output:
v_body: (B, 2) — body-frame [v_forward, v_lateral] for the last frame in the sequence v_body: (B, S, 2) — body-frame [v_right, v_forward] for each frame in the sequence
""" """
def __init__(self, cnn_cfg=model_cfg.cnn, pose_cfg=model_cfg.pose_mlp, def __init__(self, cnn_cfg=model_cfg.cnn, pose_cfg=model_cfg.pose_mlp,
@@ -131,8 +131,10 @@ class VelocityPredictionModel(nn.Module):
tilt: (B, S, 3) tilt: (B, S, 3)
Returns: Returns:
v_body: (B, 2) predicted body-frame [v_forward, v_lateral] at the last timestep v_body: (B, S, 2) predicted body-frame [v_right, v_forward] at every timestep
""" """
B, S = events.shape[:2]
# Per-frame encoding # Per-frame encoding
cnn_feat = self.cnn(events) # (B, S, 256) cnn_feat = self.cnn(events) # (B, S, 256)
# B, S = events.shape[:2] # B, S = events.shape[:2]
@@ -144,13 +146,10 @@ class VelocityPredictionModel(nn.Module):
fused = torch.cat([cnn_feat, pose_feat], dim=-1) # (B, S, 320) fused = torch.cat([cnn_feat, pose_feat], dim=-1) # (B, S, 320)
# GRU temporal modelling # GRU temporal modelling
gru_out, h_n = self.gru(fused) # gru_out: (B, S, 128), h_n: (1, B, 128) gru_out, _ = self.gru(fused) # (B, S, 128)
# Use last hidden state # Head regression over every timestep (single-layer GRU → gru_out == h_n[-1] at t=-1)
last_hidden = h_n[-1] # (B, 128) v_body = self.head(gru_out) # (B, S, 128) → (B, S, 2)
# Head regression
v_body = self.head(last_hidden) # (B, 2)
return v_body return v_body
@torch.no_grad() @torch.no_grad()
@@ -199,4 +198,4 @@ if __name__ == "__main__":
out = model(events, tilt) out = model(events, tilt)
print(f"Input events: {events.shape}") print(f"Input events: {events.shape}")
print(f"Input tilt: {tilt.shape}") print(f"Input tilt: {tilt.shape}")
print(f"Output: {out.shape} (should be [4, 2])") print(f"Output: {out.shape} (should be [4, 8, 2])")
+15 -9
View File
@@ -51,11 +51,12 @@ def train_one_epoch(
tilt = batch["tilt"].to(device) # (B, S, 3) tilt = batch["tilt"].to(device) # (B, S, 3)
target = batch["v_body_target"].to(device) # (B, S, 2) target = batch["v_body_target"].to(device) # (B, S, 2)
# Predict velocity for the last frame in the sequence # Per-step supervision over the whole sequence
with torch.amp.autocast(device.type, enabled=use_amp): with torch.amp.autocast(device.type, enabled=use_amp):
pred = model(events, tilt) # (B, 2) pred_seq = model(events, tilt) # (B, S, 2)
target_last = target[:, -1, :] # (B, 2) loss_per_step = criterion(pred_seq, target) # (B, S, 2)
loss = criterion(pred, target_last) loss_per_step = loss_per_step.mean(-1) # (B, S)
loss = loss_per_step.mean()
optimizer.zero_grad() optimizer.zero_grad()
scaler.scale(loss).backward() scaler.scale(loss).backward()
@@ -70,6 +71,11 @@ def train_one_epoch(
elapsed = time.time() - start_time elapsed = time.time() - start_time
print(f" Epoch {epoch} | Batch {batch_idx} | Loss: {loss.item():.6f} | {elapsed:.1f}s") print(f" Epoch {epoch} | Batch {batch_idx} | Loss: {loss.item():.6f} | {elapsed:.1f}s")
writer.add_scalar("train/loss_batch", loss.item(), global_step) writer.add_scalar("train/loss_batch", loss.item(), global_step)
# Per-step loss quantiles — observe GRU stabilization across timesteps
S = loss_per_step.shape[1]
for i in range(0, S, max(1, S // 8)):
writer.add_scalar(f"train/loss_step_{i:02d}",
loss_per_step[:, i].mean().item(), global_step)
avg_loss = total_loss / max(num_batches, 1) avg_loss = total_loss / max(num_batches, 1)
print(f" Epoch {epoch} | Avg Loss: {avg_loss:.6f}") print(f" Epoch {epoch} | Avg Loss: {avg_loss:.6f}")
@@ -95,9 +101,9 @@ def validate(
target = batch["v_body_target"].to(device) target = batch["v_body_target"].to(device)
with torch.amp.autocast(device.type, enabled=use_amp): with torch.amp.autocast(device.type, enabled=use_amp):
pred = model(events, tilt) pred_seq = model(events, tilt) # (B, S, 2)
target_last = target[:, -1, :] loss_per_step = criterion(pred_seq, target) # (B, S, 2)
loss = criterion(pred, target_last) loss = loss_per_step.mean(-1).mean()
total_loss += loss.item() total_loss += loss.item()
num_batches += 1 num_batches += 1
@@ -165,8 +171,8 @@ def main():
step_size=train_cfg.lr_scheduler_step, step_size=train_cfg.lr_scheduler_step,
gamma=train_cfg.lr_scheduler_gamma, gamma=train_cfg.lr_scheduler_gamma,
) )
# criterion = nn.SmoothL1Loss() # criterion = nn.SmoothL1Loss(reduction='none')
criterion = nn.MSELoss() criterion = nn.MSELoss(reduction='none')
# ── Resume from checkpoint ──────────────────────────────────── # ── Resume from checkpoint ────────────────────────────────────
start_epoch = 1 start_epoch = 1