Views
No views yet
progress_log/5-15-2026.md).| Clip | note_acc | rest_kind_acc | note_dur_mae_10ms | rest_dur_mae_10ms |
|---|---|---|---|---|
| Alkaline | 0.96 | 0.00 | 4.2 | 3000 |
| VivaLaVida (synth) | 0.95 | 0.56 | 9.5 | 1312 |
| UsedToBeMine | 0.33 | 0.00 | 15.1 | 0 |
| VivaLaVidaReal (real singing) | 0.44 | 0.50 | 19.5 | 1521 |
best.pt — model state_dict, ~134 MBeval_results.json — full eval metrics across all OOD + real-audio clips1import torch
2# model.py + data.py from the sheet-music repo (matching commit) are
3# required to instantiate WhisperLite with the restdur vocab.
4import model
5model.set_size('medium')
6from model import WhisperLite
7net = WhisperLite()
8net.load_state_dict(torch.load('best.pt', map_location='cpu'), strict=False)
9net.eval()