Views
No views yet
mohammed/fastconformer-quran-ar
Fine-tuned on: tarteel-ai/everyayah (Quranic Arabic recitations)
Export Date: 2026-07-19| Metric | Value |
|---|---|
| Baseline NeMo WER | 0.14% |
| INT8 ONNX WER | Pending verification |
| Export Status | ✅ Successful |
| ONNX Validation | ✅ Passed |
| File | Size | Description |
|---|---|---|
encoder.int8.onnx | ~119 MB | INT8 quantized streaming encoder |
decoder.int8.onnx | ~5 MB | INT8 quantized prediction network |
joiner.int8.onnx | ~5 MB | INT8 quantized joiner network |
tokens.txt | ~13 KB | 1024-token BPE vocabulary |
meta.json | <1 KB | Model configuration and metadata |
verification_report.json | <1 KB | Detailed verification results |
1import sherpa_onnx
2
3# Create recognizer
4recognizer = sherpa_onnx.OnlineRecognizer.from_transducer(
5 encoder="encoder.int8.onnx",
6 decoder="decoder.int8.onnx",
7 joiner="joiner.int8.onnx",
8 tokens="tokens.txt",
9 sample_rate=16000,
10 feature_dim=80,
11 decoding_method="greedy_search"
12)
13
14# Transcribe audio (16kHz, mono, float32)
15stream = recognizer.create_stream()
16stream.accept_waveform(16000, audio_samples)
17stream.input_finished()
18
19while recognizer.is_ready(stream):
20 recognizer.decode_stream(stream)
21
22result = recognizer.get_result(stream)
23print(result) # Quranic Arabic transcription with diacriticsOnlineRecognizer with file pathsEXPORT_SUCCESS_SUMMARY.md for details on export process.1@misc{fastconformer-quran-ar-onnx-int8,
2 author = {Mohammed},
3 title = {FastConformer Quranic Arabic ONNX INT8},
4 year = {2026},
5 publisher = {Hugging Face},
6 url = {https://huggingface.co/mohammed/fastconformer-quran-ar-onnx-int8}
7}