Automatic Speech Recognition
Transformers
PyTorch
TensorBoard
Swedish
whisper
hf-asr-leaderboard
Generated from Trainer
Instructions to use Neprox/STT-Swedish-Whisper with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Neprox/STT-Swedish-Whisper with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Neprox/STT-Swedish-Whisper")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("Neprox/STT-Swedish-Whisper") model = AutoModelForSpeechSeq2Seq.from_pretrained("Neprox/STT-Swedish-Whisper") - Notebooks
- Google Colab
- Kaggle
How to use it with ggerganov/whisper.cpp ??
#4
by jorgegatica - opened
Hej!
I would like to use it with whisper.cpp so I can run it in a mac M1 gpu.
Is there a pt or ggml model available?
thank you!