Model reference · open weights
powsm_ctc is an open-weight audio or speech model from espnet. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | espnet |
|---|---|
| Type | Audio & music |
| Task | Speech→text |
| Runs with | espnet |
| Released | 2026-01-21 |
| Popularity | 50 downloads / month |
| Licence | Open weights |
About
POWSM-CTC is a variant of POWSM, the first phonetic foundation model that can perform four phone-related tasks. Its multi-task encoder-CTC structure is based on OWSM-CTC, and trained on IPAPack++, the same dataset as POWSM.
This model is proposed together with our paper PRiSM, the first open-source benchmark for phone recognition systems. Its decoding is much faster than encoder-decoder models, with similar or enhanced PR performance on unseen domain.
[!TIP] Check out POWSM-CTC's predecessor: 🐁POWSM
To use the pre-trained model, please install espnet and espnet_model_zoo. The requirements are:
torch
espnet
espnet_model_zoo
The recipe can be found in ESPnet: https://github.com/espnet/espnet/tree/master/egs2/powsm_ctc/s2t1
Our models are trained on 16kHz audio with a fixed duration of 20s. When using the pre-trained model, please ensure the input speech is 16kHz and pad or truncate it to 20s. To distinguish phone entries from BPE tokens that share the same Unicode, we enclose every phone in slashes and treat them as special tokens. For example, /pʰɔsəm/ would be tokenized as /pʰ//ɔ//s//ə//m/.
from espnet2.bin.s2t_inference_ctc import Speech2TextGreedySearch
s2t = Speech2TextGreedySearch.from_pretrained(
"espnet/powsm_ctc",
device="cuda",
use_flash_attn=True,
lang_sym='',
task_sym='',
)
res = s2t.batch_decode(
["audio1.wav", "audio2.wav"], # a list of audios (path or 1-D array/tensor)
batch_size=16,
) # res is a list of str
@article{prism,
title={PRiSM: Benchmarking Phone Realization in Speech Models},
author={Shikhar Bharadwaj and Chin-Jou Li and Yoonjae Kim and Kwanghee Choi and Eunjung Yeo and Ryan Soh-Eun Shim and Hanyu Zhou and Brendon Boldt and Karen Rosero Jacome and Kalvin Chang and Darsh Agrawal and Keer Xu and Chao-Han Huck Yang and Jian Zhu and Shinji Watanabe and David R. Mortensen},
year={2026},
eprint={2601.14046},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2601.14046},
}
From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys powsm-ctc for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (powsm-ctc below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/audio/transcriptions \ -H "Authorization: Bearer $AXFORGE_API_KEY" \ -F model="powsm-ctc" -F file=@audio.mp3
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.