# Ego Walk Nav Eval

> Evaluates the ability of visual navigation models to predict future robot trajectories from egocentric video frames and context history. It probes scale-invariant trajectory prediction and alignment with human navigation behavior under domain shift conditions. Use when the user wants to benchmark on EgoWalk, or asks about evaluating this task. Reports MSE.

- Skill: `qhjqhj00/ego-walk-nav-eval` (Agent Skill)
- Install (CLI): `npx skillmds add qhjqhj00/ego-walk-nav-eval`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qhjqhj00/ego-walk-nav-eval/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: qhjqhj00 (https://skillmd.com/u/qhjqhj00)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/qhjqhj00/ego-walk-nav-eval

---


# ego-walk-nav-eval

> EgoWalk: A Multimodal Dataset for Robot Navigation in the Wild — Akhtyanov et al. (2025) (arXiv:2505.21282, 2025)

## What this evaluates

Evaluates the ability of visual navigation models to predict future robot trajectories from egocentric video frames and context history. It probes scale-invariant trajectory prediction and alignment with human navigation behavior under domain shift conditions.

## Datasets

- **EgoWalk** — total ?; splits: test (1000)

## Metrics

- `MSE` **(primary)** — range: [0, ∞)
  - Mean Squared Error between optimally scaled predicted and ground truth waypoints. Used to find the best scale factor before final evaluation.
- `ADE` — range: [0, ∞)
  - Average Displacement Error, computed as the mean L2 distance between each predicted waypoint and its ground truth counterpart across the trajectory.
- `FDE` — range: [0, ∞)
  - Final Displacement Error, computed as the L2 distance between the last predicted waypoint and the last ground truth waypoint.

## Input / output format

**Input**: Current observation frame, N previous frames (context history), and ground truth 5 future waypoints.

**Output**: Predicted scale-free trajectory consisting of 5 future waypoints.

## Scoring recipe

```python
def evaluate_navigation(pred, gt):
    # pred and gt are arrays of shape (5, D) where D is spatial dimensions
    # 1. Find optimal scale s that minimizes MSE between s*pred and gt
    s = np.argmin([np.mean((s * pred - gt)**2) for s in np.linspace(0.1, 10, 1000)])
    scaled_pred = s * pred
    # 2. Compute metrics on scaled predictions
    mse = np.mean((scaled_pred - gt)**2)
    ade = np.mean(np.linalg.norm(scaled_pred - gt, axis=1))
    fde = np.linalg.norm(scaled_pred[-1] - gt[-1])
    return {'MSE': mse, 'ADE': ade, 'FDE': fde}
```

## Common pitfalls

- Models output scale-free trajectories; direct MSE comparison without optimal scaling yields invalid results.
- Context window size (N) varies across models, making fair comparison difficult without standardization.
- Low trajectory prediction error does not guarantee successful navigation; direction and collision avoidance are often more critical in practice.

## Evidence (verbatim from paper)

> We sample around 1,000 test cases from our dataset trajectories. Each test case includes an observation frame (current observation),  $N$  previous frames (context history,  $N$  depends on the model), and five future waypoints (ground truth actions). We balance the test suite in terms of forward, left-turn and right-turn trajectories. Since the models generate scale-free trajectories, we follow common approach from the visual SLAM and first find the best scales using Mean Squared Error (MSE) criterion. The scaled trajectories are then evaluated using several metrics: MSE, Absolute Displacement Error (ADE) and Final Displacement Error (FDE).

## Citation

```bibtex
@misc{akhtyanov2025egowalk,
  title={EgoWalk: A Multimodal Dataset for Robot Navigation in the Wild},
  author={Akhtyanov et al. (2025)},
  year={2025},
  note={arXiv:2505.21282}
}
```

- arXiv: 2505.21282

