facebook/hubert-base-ls960 (HuBERT-base, frozen for first 1000 steps)CharacterTokenizer (33-class: <blk>, <pad>, <unk>, <bos>, <eos>, A–Z, space, apostrophe)train-clean-5 (~5.4 h)| File | Description |
|---|---|
speech_encoder_char.pt | model.state_dict() — load directly with model.load_state_dict(...) |
1from huggingface_hub import hf_hub_download
2import torch
3
4weights_path = hf_hub_download(repo_id="Borrison/jsalt26-csr-lab",
5 filename="speech_encoder_char.pt")
6state_dict = torch.load(weights_path, map_location=device)
7model.load_state_dict(state_dict)