Beta
Explore
Marketplace
Neural Labs
Chat
Wallet
Docs
whisperd-nl-ct2 – AI Model by FutureCow | AlphaNeural AI
You can deploy this model and start earning money today!
FutureCow
/
whisperd-nl-ct2
like
0
ctranslate2
audio
automatic-speech-recognition
whisper
faster-whisper
nl
apache-2.0
us
Views
No views yet
Model card
Files and Versions
Community
API
Deploy
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 ```