rhap-llm-audio/faster-Taiwan-Tongues-ASR-CE-pretrained
010
taiwan-tongues-asr-ce
Converted faster-whisper / CTranslate2 model for OpenAI Whisper.
- Source (PyTorch):
rhap-llm-audio/Taiwan-Tongues-ASR-CE-pretrained - Converted artifact:
rhap-llm-audio/faster-Taiwan-Tongues-ASR-CE-pretrained - Quantization:
float32(see CTranslate2 quantization) - Device tested:
cpu - Converted at: 2026-08-22
- Pipeline: `whisper-to-faster-whisper`
Usage
faster-whisper (Python)
from faster_whisper import WhisperModel
model = WhisperModel(
"rhap-llm-audio/faster-Taiwan-Tongues-ASR-CE-pretrained",
device="cpu",
compute_type="float32",
)
segments, info = model.transcribe("audio.mp3")
for seg in segments:
print(f"[{seg.start:.2f} → {seg.end:.2f}] {seg.text}")speaches (OpenAI-compatible STT server)
This model card includes the metadata block speaches filters on (library_name: ctranslate2, pipeline_tag: automatic-speech-recognition, language:). After a regular POST /v1/models download, speaches will list this in GET /v1/models.
curl -X POST http://localhost:8000/v1/models \
-H 'Content-Type: application/json' \
-d '{"model": "rhap-llm-audio/faster-Taiwan-Tongues-ASR-CE-pretrained"}'
curl http://localhost:8000/v1/audio/transcriptions \
-F "file=@audio.mp3" \
-F "model=rhap-llm-audio/faster-Taiwan-Tongues-ASR-CE-pretrained"Files
License
Inherited from upstream rhap-llm-audio/Taiwan-Tongues-ASR-CE-pretrained. See source repo for the original model license. The conversion process itself adds no additional licensing terms.
