(root: dict[str, Any], key: str)
| 1707 | if all((stats_dir / "whisper_stats.safetensors").is_file() for stats_dir in stats_dirs): |
| 1708 | return |
| 1709 | for stats_dir in stats_dirs: |
| 1710 | stats_pt = stats_dir / "whisper_stats.pt" |
| 1711 | if not stats_pt.is_file(): |
| 1712 | raise RuntimeError(f"Vevo2 snapshot is missing {stats_pt}") |
| 1713 | write_vevo2_whisper_stats(stats_dir / "whisper_stats.safetensors", stats_pt) |
no test coverage detected