whisper-large-zh-cv11 model for CTranslate2

This repository contains the conversion of jonatasgrosman/whisper-large-zh-cv11 to the CTranslate2 model format.

This model can be used in CTranslate2 or projects based on CTranslate2 such as faster-whisper.

Example

The tokenizer.json file has been uploaded to the model for the convenience of fast_whisper library directly calls the model.

from faster_whisper import WhisperModel

model = WhisperModel("nephilimbin/whisper-large-zh-cv11")

segments, info = model.transcribe("audio.mp3")
for segment in segments:
    print("[%.2fs -> %.2fs] %s" % (segment.start, segment.end, segment.text))

Conversion details

Refer to https://github.com/guillaumekln/faster-whisper


license: apache-2.0