liodon-ai/vakyansh-wav2vec2-tamil-tam-250-GGUF overview
vakyansh wav2vec2 tamil tam 250 GGUF quantizations of Harveenchadha/vakyansh wav2vec2 tamil tam 250 https://huggingface.co/Harveenchadha/vakyansh wav2vec2 tami…
Runs locally from ~80.3 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
Model Details
Model README
---
language:
- ta
license: other
tags:
- wav2vec2
- gguf
- asr
- speech
- audio
library_name: wav2vec2.cpp
base_model:
- Harveenchadha/vakyansh-wav2vec2-tamil-tam-250
---
vakyansh-wav2vec2-tamil-tam-250
GGUF quantizations of Harveenchadha/vakyansh-wav2vec2-tamil-tam-250 for use with wav2vec2.cpp.
Files
| Filename | Quant | Size | Precision |
|----------|-------|------|-----------|
| model_f16.gguf | F16 | 189 MB | ~fp16 (near-lossless) |
| model_q8_0.gguf | Q8_0 | 127 MB | 8-bit quantized linear layers |
| model_q4_0.gguf | Q4_0 | 84 MB | 4-bit quantized linear layers |
Parity vs HuggingFace Reference
Tested on 10 audio samples from FLEURS ta_in.
| Quant | Mean CER (vs HF) | Mean WER (vs HF) | Status |
|-------|-----------------|-----------------|--------|
| F16 | 0.17% | 1.20% | PASS |
| Q8_0 | 0.23% | 2.16% | PASS |
| Q4_0 | 1.64% | 13.52% | 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/vakyansh-wav2vec2-tamil-tam-250-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
- Original: Harveenchadha/vakyansh-wav2vec2-tamil-tam-250
- Architecture: XLS-R
- Language: ta
- Task: Automatic Speech Recognition
Conversion
Converted using wav2vec2.cpp scripts/convert_to_gguf.py.
python scripts/convert_to_gguf.py Harveenchadha/vakyansh-wav2vec2-tamil-tam-250 model_f16.gguf --dtype f16
python scripts/convert_to_gguf.py Harveenchadha/vakyansh-wav2vec2-tamil-tam-250 model_q8_0.gguf --dtype q8_0
python scripts/convert_to_gguf.py Harveenchadha/vakyansh-wav2vec2-tamil-tam-250 model_q4_0.gguf --dtype q4_0
License
Follows the license of the source model.
Run liodon-ai/vakyansh-wav2vec2-tamil-tam-250-GGUF with guIDE
Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face · Compare models