GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

liodon-ai/wav2vec2-large-xlsr-53-telugu-GGUF overview

wav2vec2 large xlsr 53 telugu GGUF quantizations of anuragshas/wav2vec2 large xlsr 53 telugu https://huggingface.co/anuragshas/wav2vec2 large xlsr 53 telugu fo…

wav2vec2.cppggufwav2vec2asrspeechaudiotebase_model:anuragshas/wav2vec2-large-xlsr-53-telugubase_model:quantized:anuragshas/wav2vec2-large-xlsr-53-telugulicense:otherregion:us

Runs locally from ~211.6 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
0
Likes
0
Pipeline
Author

Repository Files & Downloads

3 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
model_f16.ggufGGUFF16601.8 MBDownload
model_q4_0.ggufGGUFQ4_0211.6 MBDownload
model_q8_0.ggufGGUFQ8_0355.9 MBDownload

Model Details

Model IDliodon-ai/wav2vec2-large-xlsr-53-telugu-GGUF
Authorliodon-ai
Pipeline
Licenseother
Base modelanuragshas/wav2vec2-large-xlsr-53-telugu
Last modified2026-06-28T17:17:48.000Z

Model README

---

language:

  • te

license: other

tags:

  • wav2vec2
  • gguf
  • asr
  • speech
  • audio

library_name: wav2vec2.cpp

base_model:

  • anuragshas/wav2vec2-large-xlsr-53-telugu

---

wav2vec2-large-xlsr-53-telugu

GGUF quantizations of anuragshas/wav2vec2-large-xlsr-53-telugu for use with wav2vec2.cpp.

Files

| Filename | Quant | Size | Precision |

|----------|-------|------|-----------|

| model_f16.gguf | F16 | 631 MB | ~fp16 (near-lossless) |

| model_q8_0.gguf | Q8_0 | 373 MB | 8-bit quantized linear layers |

| model_q4_0.gguf | Q4_0 | 222 MB | 4-bit quantized linear layers |

Parity vs HuggingFace Reference

Tested on 10 audio samples from FLEURS te_in.

| Quant | Mean CER (vs HF) | Mean WER (vs HF) | Status |

|-------|-----------------|-----------------|--------|

| F16 | 0.00% | 0.00% | PASS |

| Q8_0 | 0.06% | 0.96% | PASS |

| Q4_0 | 2.66% | 20.68% | PASS |

CER/WER measured against HF model output (not ground truth) to isolate quantization error.

Usage

C++ CLI

# Clone and build
git clone --recursive https://github.com/liodon-ai/wav2vec2.cpp
cd wav2vec2.cpp && mkdir build && cd build && cmake .. && make -j

# Download and run
huggingface-cli download liodon-ai/wav2vec2-large-xlsr-53-telugu-GGUF model_q8_0.gguf --local-dir .
./wav2vec2-cli -m model_q8_0.gguf -f audio.wav

# With word timestamps
./wav2vec2-cli -m model_q8_0.gguf -f audio.wav -w

# SRT subtitle output
./wav2vec2-cli -m model_q8_0.gguf -f audio.wav --format srt > output.srt

Python (via subprocess)

import subprocess, json
result = subprocess.run(
    ['./wav2vec2-cli', '-m', 'model_q8_0.gguf', '-f', 'audio.wav', '--format', 'json'],
    capture_output=True, text=True
)
data = json.loads(result.stdout)
print(data['transcript'])

Source Model

Conversion

Converted using wav2vec2.cpp scripts/convert_to_gguf.py.

python scripts/convert_to_gguf.py anuragshas/wav2vec2-large-xlsr-53-telugu model_f16.gguf --dtype f16
python scripts/convert_to_gguf.py anuragshas/wav2vec2-large-xlsr-53-telugu model_q8_0.gguf --dtype q8_0
python scripts/convert_to_gguf.py anuragshas/wav2vec2-large-xlsr-53-telugu model_q4_0.gguf --dtype q4_0

License

Follows the license of the source model.

Run liodon-ai/wav2vec2-large-xlsr-53-telugu-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models