Views
No views yet
eval_results.json and project progress_log/5-15-2026.md).| Clip | note_acc | rest_kind_acc | note_dur_mae_10ms | rest_dur_mae_10ms |
|---|---|---|---|---|
| Alkaline | 1.00 | 0.00 | 3.7 | 3000 |
| VivaLaVida (synth) | 0.83 | 0.22 | 89.8 | 2343 |
| UsedToBeMine | 0.24 | 0.00 | 21.3 | 0 |
| VivaLaVidaReal (real) | 0.56 | 0.50 | 17.1 | 1521 |
best.pt — model state_dict, ~58 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('small')
6from model import WhisperLite
7net = WhisperLite()
8net.load_state_dict(torch.load('best.pt', map_location='cpu'), strict=False)
9net.eval()