Views
No views yet
1 - (WER + CER) / 2 on
raw text. Private leaderboard 0.771848284.Code, full method and one-command verification: yehoshua0/waxal-asr-phase2 The repository reproduces the submitted CSV byte for byte on a laptop in about a minute, and re-decodes every input from the audio on rented GPUs in about four hours.
1from transformers import WhisperForConditionalGeneration, WhisperProcessor
2import torch, soundfile as sf, torchaudio.functional as AF
3
4proc = WhisperProcessor.from_pretrained("yehoshua01/waxal-sunbird51-sna-pl2-spk")
5model = WhisperForConditionalGeneration.from_pretrained("yehoshua01/waxal-sunbird51-sna-pl2-spk").eval().cuda()
6tok = proc.tokenizer
7# the language slot is a LEARNED decoder state -- use the token this checkpoint trained under
8forced = [(1, tok.convert_tokens_to_ids("50410 # Sunbird card map: sna")),
9 (2, tok.convert_tokens_to_ids("<|transcribe|>")),
10 (3, tok.convert_tokens_to_ids("<|notimestamps|>"))]
11
12wav, sr = sf.read("clip.wav", dtype="float32")
13wav = AF.resample(torch.from_numpy(wav), sr, 16_000).numpy()[:30 * 16_000]
14f = proc.feature_extractor(wav, sampling_rate=16_000, return_tensors="pt").input_features
15out = model.generate(f.to("cuda", model.dtype), forced_decoder_ids=forced, max_new_tokens=220)
16print(proc.batch_decode(out, skip_special_tokens=True)[0])| code, method, verification | yehoshua0/waxal-asr-phase2 |
| cached decodes and chain inputs | yehoshua01/waxal-phase2-chain-inputs |
| all checkpoints | yehoshua01 on the Hub |
waxal-mms-1b-lin-pl2-spk · waxal-whisper-turbo-lin-r1 · waxal-whisper-turbo-lin-r2 · waxal-qlora-largev3-lin · waxal-omni-ctc1b-lin · waxal-omni-ctc1b-sna · waxal-sunbird51-lin-ft-r2 · waxal-sunbird51-lin-ft-light · waxal-mms-1b-lin-full · waxal-mms-1b-lin-fullmeta · waxal-ssa-hubert-lincc-by-sa-4.0. Training data is google/WaxalNLP
(CC-BY-SA-4.0, share-alike), so derivatives carry that too.