whisperd-nl (CTranslate2)
This repository contains the conversion of pevers/whisperd-nl to the CTranslate2 model format. This model can be used with faster-whisper.
Gebruik
```python from faster_whisper import WhisperModel
model = WhisperModel("FutureCow/whisperd-nl-ct2", device="cpu", compute_type="float16")
segments, info = model.transcribe("audio.mp3", language="nl")
for segment in segments: print(f"[{segment.start:.2f}s -> {segment.end:.2f}s] {segment.text}") ```
Conversie
```bash
ct2-transformers-converter
--model pevers/whisperd-nl
--output_dir whisperd-nl-ct2
--copy_files tokenizer.json preprocessor_config.json
--quantization float16
```
- Downloads last month
- 24