Views
No views yet
ggml-tiny-ru.binconvert-h5-to-ggml.py1# Clone whisper.cpp
2git clone https://github.com/ggerganov/whisper.cpp
3cd whisper.cpp
4
5# Build
6make
7
8# Download this model
9wget https://huggingface.co/wabisabisocial/whisper-tiny-russian-ggml/resolve/main/ggml-tiny-ru.bin
10
11# Run transcription
12./main -m ggml-tiny-ru.bin -f audio.wav -l ru1import WhisperContext from 'whisper.rn';
2
3const context = await WhisperContext.initWithUrl(
4 'https://huggingface.co/wabisabisocial/whisper-tiny-russian-ggml/resolve/main/ggml-tiny-ru.bin'
5);
6
7const { result } = await context.transcribe(audioPath, {
8 language: 'ru',
9});wget https://huggingface.co/wabisabisocial/whisper-tiny-russian-ggml/resolve/main/ggml-tiny-ru.bin1@misc{whisper-ru-ggml-wabisabisocial,
2 author = {wabisabisocial},
3 title = {whisper-tiny-russian-ggml},
4 year = {2026},
5 publisher = {Hugging Face},
6 note = {GGML conversion of lutskivd/whisper-russian-finetune-v2},
7 howpublished = {\url{https://huggingface.co/wabisabisocial/whisper-tiny-russian-ggml}}
8}
9
10@article{radford2022whisper,
11 title = {Robust Speech Recognition via Large-Scale Weak Supervision},
12 author = {Radford, Alec and Kim, Jong Wook and Xu, Tao and Brockman, Greg and McLeavey, Christine and Sutskever, Ilya},
13 journal = {arXiv preprint arXiv:2212.04356},
14 year = {2022}
15}