Model reference · open weights
Shenava-Koochik is an open-weight audio or speech model from Reza2kn. 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
| Released by | Reza2kn |
|---|---|
| Type | Audio & music |
| Task | Speech→text |
| Runs with | nemo |
| Released | 2026-07-04 |
| Popularity | 746 downloads / month |
| Licence | Open weights |
About
Persian (Farsi) ASR — FastConformer hybrid RNNT + CTC (114M). The both-heads successor to v1.0.
ve_tok_v4 tokenizer and trains it up via a 2-phase curriculum -> a working transducer head.| head | v1.0 | v1.5 |
|---|---|---|
| CTC | 8.12% | 8.12% (identical) |
| RNNT | 4398% (broken) | 9.50% |
CTC remains the recommended/deployed head; RNNT is newly functional. Character error rate ~2.6%.
from nemo.collections.asr.models import ASRModel
m = ASRModel.from_pretrained("Reza2kn/Shenava-Koochik-v1.5")
m.change_decoding_strategy(decoder_type="ctc") # or "rnnt"
print(m.transcribe(["audio.wav"]))
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 shenava-koochik for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (shenava-koochik 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="shenava-koochik" -F file=@audio.mp3
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.