CoolFace
Modelpublic

mirza234/azerbaijani-whisper-small-ggml

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Model Card

Azerbaijani Whisper Small GGML for whisper.cpp

This repository provides a ggml model file for whisper.cpp, converted from the original `LocalDoc/azerbaijani-whisper-small` Transformers checkpoint.

What this is

  • —Source model: LocalDoc/azerbaijani-whisper-small
  • —Converted format: GGML .bin
  • —Target runtime: whisper.cpp and wrappers built on top of it
  • —Intended language: Azerbaijani speech recognition

This repo exists because the original LocalDoc model is published in the Transformers ecosystem, while some mobile and embedded runtimes expect a whisper.cpp-compatible ggml model file instead.

Conversion note

The file in this repository was converted from the original LocalDoc checkpoint for use with whisper.cpp. In practical terms:

  • —the original model was downloaded from Hugging Face
  • —tokenizer files required by whisper.cpp were exported
  • —the checkpoint was converted into a ggml binary

The conversion was prepared for on-device inference experiments in Flutter using whisper_ggml_plus, which itself uses whisper.cpp under the hood.

Intended use

Use this model if you need the Azerbaijani Whisper Small checkpoint in a whisper.cpp-compatible format.

Typical use cases include:

  • —local speech-to-text on desktop or mobile
  • —Flutter applications using whisper_ggml_plus
  • —whisper.cpp command-line or embedded integrations

File

  • —ggml-azerbaijani-whisper-small.bin

Original model

Please refer to the original source model for upstream training details, evaluation context, and authorship:

Acknowledgements

  • —LocalDoc for the original Azerbaijani Whisper model
  • —OpenAI for Whisper
  • —whisper.cpp contributors for the C/C++ inference runtime