AI SeedbankHelp preserve open and free AI for humanity's future

← All models

ibm-granite_granite-speech-5.0-470m-turboctc

ibm-granite · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: apache-2.0 language:

  • en pipeline_tag: automatic-speech-recognition library_name: transformers

Granite-Speech-5.0-470M-TurboCTC

Model Summary: Granite Speech 5.0 TurboCTC is a compact 470 million parameter English ASR model with very high inference speed that is well suited for deployment on laptops, smartphones and other edge devices. The model consists of a conformer acoustic encoder with block self-attention, self-conditioning and temporal downsampling with an output layer corresponding to 16,384 BPE units. It was trained on approximately 60,000 hours of English audio from public corpora using Connectionist Temporal Classification (CTC) and inference is done non-autoregressively with greedy decoding.

Evaluations:

We evaluated granite-speech-5.0-470m-turboctc on standard short-form English ASR benchmarks from the Open ASR leaderboard:
Performance on the Open ASR leaderboard (official results as of August 25, 2026, public test sets only, RTFx measured on 1 H200):

Performance on noisy and reverberant speech from the FFASR leaderboard (official results as of August 25, 2026, RTFx measured on 1 L4 GPU)

Release Date: August 25, 2026

License: Apache 2.0

Supported Languages: English

Intended Use: The model is intended to be used in enterprise applications that involve accurate low-latency/high-throughput English speech-to-text transcription.

Usage:

Usage with transformers

Granite Speech 5.0 TurboCTC is supported natively in transformers>=5.16.0:

pip install transformers>=5.16.0 datasets
from datasets import Audio, load_dataset
from transformers import AutoModelForCTC, AutoProcessor

model_id = "ibm-granite/granite-speech-5.0-470m-turboctc"
processor = AutoProcessor.from_pretrained(model_id)
model = AutoModelForCTC.from_pretrained(model_id, device_map="auto")

ds = load_dataset("hf-internal-testing/librispeech_asr_dummy", "clean", split="validation")
ds = ds.cast_column("audio", Audio(sampling_rate=processor.feature_extractor.sampling_rate))
speech_samples = [el["array"] for el in ds["audio"][:5]]

# `device` computes the log-mel front-end on the model's accelerator, saving a host-to-device copy
inputs = processor(
    speech_samples, sampling_rate=processor.feature_extractor.sampling_rate, device=model.device
)
inputs.to(model.device, dtype=model.dtype)
outputs = model.generate(**inputs)
print(processor.batch_decode(outputs, skip_special_tokens=True))

Usage with mlx-audio for Apple Silicon M series chips

Install a recent version of mlx-audio (0.5.1 or later):

pip install -U mlx-audio

Sample use:

python -m mlx_audio.stt.generate --model ibm-granite/granite-speech-5.0-470m-turboctc --verbose --audio "audio.wav" --output-path "transcript"

Model Architecture:

The architecture of granite-speech-5.0-470m-turboctc consists of 16 conformer blocks trained with Connectionist Temporal Classification (CTC) with a 16,384 BPE classification head (see configuration below). We perform temporal subsampling by a factor of 8 to reduce frame rates from 100Hz to 12.5Hz: first by stacking and skipping consecutive logmel+delta frames (2x) followed by strided convolutions and pooled residuals in the first two conformer blocks (4x) as shown in the figure below. In addition, the encoder uses block-attention with blocks of 128 frames and self-conditioned CTC from the middle layer.

Configuration parameter Value
Input dimension 320 (80 logmels + 80 deltas) x 2
Nb. of layers 16
Hidden dimension 1024
Nb. of attention heads 8
Attention head size 128
Attention block size 128
Convolution kernel size 7
Output dimension (BPE) 16384

Training Data:

Our training data is entirely comprised of publicly available datasets or of synthetic data generated from public corpora specifically targeting English ASR. A detailed description of the training datasets can be found in the table below:

Name Nb. hours Source
CommonVoice-17 2500 https://huggingface.co/datasets/mozilla-foundation/common_voice_17_0
MLS 44600 https://huggingface.co/datasets/facebook/multilingual_librispeech
Librispeech 960 https://huggingface.co/datasets/openslr/librispeech_asr
VoxPopuli 500 https://huggingface.co/datasets/facebook/voxpopuli
YODAS 8900 https://huggingface.co/datasets/espnet/yodas
AMI 150 https://huggingface.co/datasets/edinburghcstr/ami
Earnings-22 100 https://huggingface.co/datasets/esb/datasets

In addition, the model was trained on three synthetic datasets:

  1. 2000 hours of multi-speaker data generated by concatenating single-speaker segments from MLS, YODAS, CommonVoice-17, VoxPopuli, and AMI;
  2. 500 hours of multi-speaker data generated by concatenating single-speaker segments from Earnings-22; and
  3. 240 hours of utterances containing numbers, currencies, website names, phone numbers, addresses, and items containing decimal points or dots which were generated using either gpt-oss-120b or gpt-oss-20b and synthesized using StyleTTS2.

Infrastructure: We train Granite Speech TurboCTC using IBM's super computing cluster, Blue Vela, which is outfitted with NVIDIA H100 GPUs. This cluster provides a scalable and efficient infrastructure for training our models over thousands of GPUs. The training of this particular model was completed in 10 days on 8 H100 GPUs.

Resources

  • 📄 Blog post: https://huggingface.co/blog/ibm-granite/granite-speech-5-0-470m-turboctc
  • ⭐️ Learn about the latest updates with Granite: https://www.ibm.com/granite
  • 🚀 Get started with tutorials, best practices, and prompt engineering advice: https://www.ibm.com/granite/docs/
  • 💡 Learn about the latest Granite learning resources: https://ibm.biz/granite-learning-resources

Citation

@misc{granite-speech-5.0-470m-turboctc,
  title={Granite Speech 5.0 TurboCTC},
  author={IBM Granite Speech Team},
  year={2026},
  url={https://huggingface.co/ibm-granite/granite-speech-5.0-470m-turboctc}
}

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:ed7b6074e430c43c1f0ba23a5a406ed56ee67ed8&dn=ibm-granite_granite-speech-5.0-470m-turboctc

Open magnet in torrent client · infohash ed7b6074e430c43c1f0ba23a5a406ed56ee67ed8

Files & hashes

PathSizesha1sha256
README.md7.2 KB (7,359 B)b207378388ccae50185effd2fe63809d4156b3f431558c45604b0e19c353599394368831f36f8f7cc55a353f53f680f6ab0ad65c
config.json926 B (926 B)414a84beb986d361bf0deea530a26dbc976fd55641b72a7596bebe5106573f9e0f64c6b0acdac145373386946e7d1ef277fe0c9f
configuration_ctc_conformer.py3.8 KB (3,922 B)88a2801e5b7a4a14d1ca79b0354361179445fc861569efe00b7a2ed6ff9bbf551207efc8150b9e0d7e6db28c97b749d87fdb1669
generation_config.json158 B (158 B)8420944da0737bb633731744de1e39c8fa083403e9eef52b79e24b329889157f75e02aea236c429552a4a986dd5fffb349809208
granite_encoder.py14.2 KB (14,536 B)f84ef77ebc97d9db3b4c4f0e38e0a841c877216aa0e452efec5374ed180cd7418dc4d8881da5f71c1c99716ba2ccfd23c0f7998b
model.safetensors902.3 MB (946,180,704 B)c48e95a3aa306c06e15ce6b48a0c06c640e1e8b38b98a8c34fd5fcb081caef719638eded31bb6d197d62053eefc5c1703aaf1ad4
model.sig10.6 KB (10,879 B)ad998c4890ede37a1f515b711024629d9cd5763a2923178d5fb64ef296f857f823bccaf74c55481b5484d382882a400c1e8c402f
modeling_ctc_conformer.py4.6 KB (4,721 B)c486a20a7b0c3646dfecae4c1d1e37dde6467e9ce7b00d726d2cd4d0307886aa6ac5f5b936fd2acf11cdfadd6237cfe9465d36b6
preprocessor_config.json327 B (327 B)c8222a479c4928f120b872bb6de1216759f4d4504ff826570a74cd33092d467b16eb1c5c22c46c6f1b78a35aed1decdf90f4a3fe
processing_ctc_conformer.py12.4 KB (12,721 B)021a3929096d394970b13d3e303c791e7aeebedfda09d4a01ff761ed653f1aefe195518c7345177504da9754a2ab62712d6124f7
processor_config.json430 B (430 B)d4eb351001a12367c7defce320ced6ae7dc6921a3d7c14d3ed7a5218b2fd6797eaa5b3aa615c681938bd1734a510d7a6f8c1b9fb
tokenizer.json1.1 MB (1,137,492 B)1eb4e3283fb905c14d3ea1f0aa6619d631ac9e053ee80b02f0119a040a70eb909c20fac8271c173d7e71d195a3b35f77780061e6
tokenizer_config.json222 B (222 B)1d750c2981cf236142fe69a357477cf24a062a805c7ddc8d2a6b0f6b009e0a7629af67f5d29a98d5e722fe435cf1be2da84c778f

Cite this release

Canonical URL
https://aiseedbank.org/models/ibm-granite_granite-speech-5.0-470m-turboctc/
Slug
ibm-granite_granite-speech-5.0-470m-turboctc
Infohash
ed7b6074e430c43c1f0ba23a5a406ed56ee67ed8
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: ibm-granite_granite-speech-5.0-470m-turboctc.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryibm-granite/granite-speech-5.0-470m-turboctc
Revision (pinned)18ca3c1de6cd092b5a30c39fb0f04550b38ed1a0
Fetched at2026-09-02T05:10:59Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T05:11:09Z

apache-2.0903.5 MB (947,374,397 bytes)transformerssafetensorsgranite_speech5_ctcautomatic-speech-recognitionendpoints_compatible1 language (en)