surgveo-eval
How Far Are Surgeons from Surgical World Models? A Pilot Study on Zero-shot Surgical Video Generation with Expert Assessment — Chen et al. (2025) (arXiv:2511.01775, 2025)
What this evaluates
Evaluates zero-shot surgical video generation models using a four-tiered Surgical Plausibility Pyramid. It probes the model's ability to maintain visual realism while correctly simulating domain-specific surgical causality, instrument handling, tissue feedback, and clinical intent over time.
Datasets
Metrics
Visual Perceptual Plausibility (primary) — range: [1, 5]
- Expert rating on a 1-5 scale assessing visual realism, texture quality, and lighting consistency of generated surgical frames.
Instrument Operation Plausibility — range: [1, 5]
- Expert rating on a 1-5 scale assessing the correctness of surgical tool manipulation, procedural actions, and anatomical targeting.
Environment Feedback Plausibility — range: [1, 5]
- Expert rating on a 1-5 scale assessing physical consistency of tissue response, fluid dynamics, and suction/irrigation behavior.
Surgical Intent Plausibility — range: [1, 5]
- Expert rating on a 1-5 scale assessing alignment with clinical goals, procedural logic, and step sequencing.
Input / output format
Input: Text prompts describing surgical procedures (Baseline or Stage-aware strategy) used to condition video generation models.
Output: Generated surgical videos (laparoscopic or neurosurgery tracks).
Scoring recipe
def compute_surgveo_scores(generated_videos, track):
# Two domain experts independently rate each video on 1-5 scale
expert1_ratings = [e1_score(v, track) for v in generated_videos]
expert2_ratings = [e2_score(v, track) for v in generated_videos]
# Average across experts for each SPP dimension
final_scores = [(s1 + s2) / 2 for s1, s2 in zip(expert1_ratings, expert2_ratings)]
return final_scores
Common pitfalls
- Assuming high visual fidelity implies correct surgical logic; the paper identifies a 'plausibility gap' where visual scores are high but causal/logical scores drop below 2.0.
- Expecting stage-aware prompting to significantly boost performance; results show it yields no consistent improvement over baseline prompts.
- Misclassifying error types; >93% of failures are high-level logical/surgical intent errors, not basic visual quality distortions.
Evidence (verbatim from paper)
Scores are reported on a 1-5 scale, where 5 is the best, and the standard deviation is calculated with the average score of two laparoscopic surgery experts. Our primary finding is a stark dichotomy in the performance of the generated surgical videos, clearly illustrated across both surgical types. The Veo-3 consistently excels at the base of the Surgical Plausibility Pyramid, achieving high scores in Visual Perceptual Plausibility.
Citation
@misc{chen2025surgveo,
title={How Far Are Surgeons from Surgical World Models? A Pilot Study on Zero-shot Surgical Video Generation with Expert Assessment},
author={Chen et al. (2025)},
year={2025},
note={arXiv:2511.01775}
}
1---2name: surgveo-eval3description: Evaluates zero-shot surgical video generation models using a four-tiered Surgical Plausibility Pyramid. It probes the model's ability to maintain visual realism while correctly simulating domain-specific surgical causality, instrument handling, tissue feedback, and clinical intent over time. Use when the user wants to benchmark on SurgVeo benchmark, or asks about evaluating this task. Reports Visual Perceptual Plausibility.4---56# surgveo-eval78> How Far Are Surgeons from Surgical World Models? A Pilot Study on Zero-shot Surgical Video Generation with Expert Assessment — Chen et al. (2025) (arXiv:2511.01775, 2025)910## What this evaluates1112Evaluates zero-shot surgical video generation models using a four-tiered Surgical Plausibility Pyramid. It probes the model's ability to maintain visual realism while correctly simulating domain-specific surgical causality, instrument handling, tissue feedback, and clinical intent over time.1314## Datasets1516- **SurgVeo benchmark** — total ?; splits: laparoscopic (-1), neurosurgery (-1); repo https://github.com/franciszchen/SurgVeo1718## Metrics1920- `Visual Perceptual Plausibility` **(primary)** — range: [1, 5]21 - Expert rating on a 1-5 scale assessing visual realism, texture quality, and lighting consistency of generated surgical frames.22- `Instrument Operation Plausibility` — range: [1, 5]23 - Expert rating on a 1-5 scale assessing the correctness of surgical tool manipulation, procedural actions, and anatomical targeting.24- `Environment Feedback Plausibility` — range: [1, 5]25 - Expert rating on a 1-5 scale assessing physical consistency of tissue response, fluid dynamics, and suction/irrigation behavior.26- `Surgical Intent Plausibility` — range: [1, 5]27 - Expert rating on a 1-5 scale assessing alignment with clinical goals, procedural logic, and step sequencing.2829## Input / output format3031**Input**: Text prompts describing surgical procedures (Baseline or Stage-aware strategy) used to condition video generation models.3233**Output**: Generated surgical videos (laparoscopic or neurosurgery tracks).3435## Scoring recipe3637```python38def compute_surgveo_scores(generated_videos, track):39 # Two domain experts independently rate each video on 1-5 scale40 expert1_ratings = [e1_score(v, track) for v in generated_videos]41 expert2_ratings = [e2_score(v, track) for v in generated_videos]42 # Average across experts for each SPP dimension43 final_scores = [(s1 + s2) / 2 for s1, s2 in zip(expert1_ratings, expert2_ratings)]44 return final_scores45```4647## Common pitfalls4849- Assuming high visual fidelity implies correct surgical logic; the paper identifies a 'plausibility gap' where visual scores are high but causal/logical scores drop below 2.0.50- Expecting stage-aware prompting to significantly boost performance; results show it yields no consistent improvement over baseline prompts.51- Misclassifying error types; >93% of failures are high-level logical/surgical intent errors, not basic visual quality distortions.5253## Evidence (verbatim from paper)5455> Scores are reported on a 1-5 scale, where 5 is the best, and the standard deviation is calculated with the average score of two laparoscopic surgery experts. Our primary finding is a stark dichotomy in the performance of the generated surgical videos, clearly illustrated across both surgical types. The Veo-3 consistently excels at the base of the Surgical Plausibility Pyramid, achieving high scores in Visual Perceptual Plausibility.5657## Citation5859```bibtex60@misc{chen2025surgveo,61 title={How Far Are Surgeons from Surgical World Models? A Pilot Study on Zero-shot Surgical Video Generation with Expert Assessment},62 author={Chen et al. (2025)},63 year={2025},64 note={arXiv:2511.01775}65}66```6768- arXiv: 2511.01775