Phone-Call Intent Detection for Diner Reservations
Collection
6 items
β’
Updated
This model is a CTranslate2-converted version of Jingmiao/whisper-small-zh_tw
, which is a fine-tuned variant of OpenAI's whisper-small
model, optimized for Taiwanese Mandarin (zh-TW) automatic speech recognition (ASR).
The conversion was done using the ct2-transformers-converter
tool from CTranslate2, allowing for fast CPU inference with faster-whisper
.
from faster_whisper import WhisperModel
model = WhisperModel("Luigi/whisper-small-zh_tw-ct2", device="cpu", compute_type="int8")
segments, _ = model.transcribe("your_audio_file.wav", beam_size=5)
transcription = "".join([seg.text for seg in segments])
print(transcription)
faster-whisper
model.bin
: The converted quantized model.vocab.json
, tokenizer.json
, config.json
: Tokenizer and model configs.faster-whisper
runtime.ct2-transformers-converter --model YOUR_MODEL_DIR \
--output_dir YOUR_OUTPUT_DIR \
--quantization int8 \
--copy_files tokenizer.json
Apache 2.0
Base model
Jingmiao/whisper-small-zh_tw