CoolFace
Modelpublic

rhap-llm-audio/faster-Breeze-ASR-26

sourceHugging Faceapache-2.0updated 1mo agoView on Hugging Face
0likes5downloads
Model Card

breeze-asr-26

Converted faster-whisper / CTranslate2 model for OpenAI Whisper.

Usage

faster-whisper (Python)

python
from faster_whisper import WhisperModel

model = WhisperModel(
    "rhap-llm-audio/faster-Breeze-ASR-26",
    device="cpu",
    compute_type="float32",
)
segments, info = model.transcribe("audio.mp3")
for seg in segments:
    print(f"[{seg.start:.2f} → {seg.end:.2f}] {seg.text}")

speaches (OpenAI-compatible STT server)

This model card includes the metadata block speaches filters on (library_name: ctranslate2, pipeline_tag: automatic-speech-recognition, language:). After a regular POST /v1/models download, speaches will list this in GET /v1/models.

bash
curl -X POST http://localhost:8000/v1/models \
  -H 'Content-Type: application/json' \
  -d '{"model": "rhap-llm-audio/faster-Breeze-ASR-26"}'

curl http://localhost:8000/v1/audio/transcriptions \
  -F "file=@audio.mp3" \
  -F "model=rhap-llm-audio/faster-Breeze-ASR-26"

Files

FilePurpose
model.binCTranslate2 weights (float32)
config.jsonfaster-whisper model config
vocabulary.jsontokenizer vocab
tokenizer.jsonHF tokenizer
preprocessor_config.jsonwhisper feature-extractor config
README.mdthis card (speaches filter requires it)

License

Inherited from upstream MediaTek-Research/Breeze-ASR-26. See source repo for the original model license. The conversion process itself adds no additional licensing terms.