Views
No views yet
| File | Task | Backbone | Test metric |
|---|---|---|---|
asr_elf_b.pt | ASR (LibriSpeech) | ELF-B (105.9 M) | 10.50% WER |
asr_elf_l.pt | ASR (LibriSpeech) | ELF-L (653.4 M) | 5.69% WER |
st_deen_elf_b.pt | S2TT (CoVoST2 de->en) | ELF-B (105.9 M) | 25.35 BLEU |
st_deen_elf_l.pt | S2TT (CoVoST2 de->en) | ELF-L (653.4 M) | 28.55 BLEU / 54.91 chrF |
.pt is a training checkpoint dict with keys elf (backbone state_dict),
audio_proj (the linear projector), step, and config (the full training
config, so inference auto-detects backbone size, EOS-route, etc.).1git clone https://github.com/Sslnon/ELF-S2T
2cd ELF-S2T
3pip install -r requirements.txt
4
5# download these weights
6huggingface-cli download ssinon/ELF-S2T asr_elf_l.pt --local-dir outputs/asr_elf_l_dl
7
8# ASR inference on LibriSpeech test-clean
9CKPT=outputs/asr_elf_l_dl/asr_elf_l.pt ACFG=2.0 STEPS=128 \
10 GPUS=0 NPROC=1 BS=8 ./scripts/infer_ls_test_clean.shconfig, so the same command works for every file.1@misc{li2026speechmeetselfaudio,
2 title={Speech Meets ELF: Audio Conditional Continuous-Target Diffusion for Speech Recognition and Translation},
3 author={Xuanchen Li and Tianrui Wang and Yuheng Lu and Zikang Huang and Yu Jiang and Chenghan Lin and Chenrui Cui and Ziyang Ma and Xingyu Ma and Chunyu Qiang and Guochen Yu and Xie Chen and Longbiao Wang and Jianwu Dang},
4 year={2026},
5 eprint={2606.10368},
6 archivePrefix={arXiv},
7 primaryClass={cs.SD},
8 url={https://arxiv.org/abs/2606.10368},
9}