Generate coarse alpha hints via GVM for clips missing them.
(ctx: typer.Context)
| 306 | |
| 307 | @app.command("generate-alphas") |
| 308 | def generate_alphas_cmd(ctx: typer.Context) -> None: |
| 309 | """Generate coarse alpha hints via GVM for clips missing them.""" |
| 310 | clips = scan_clips() |
| 311 | with console.status("[bold green]Loading GVM model..."): |
| 312 | generate_alphas(clips, device=ctx.obj["device"], on_clip_start=_on_clip_start_log_only) |
| 313 | console.print("[bold green]Alpha generation complete.") |
| 314 | |
| 315 | |
| 316 | @app.command("run-inference") |
nothing calls this directly
no test coverage detected