NbAiLab/NPSC
Updated • 597 • 9
How to use NbAiLab/whisper-small-nob with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="NbAiLab/whisper-small-nob") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("NbAiLab/whisper-small-nob")
model = AutoModelForSpeechSeq2Seq.from_pretrained("NbAiLab/whisper-small-nob")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("NbAiLab/whisper-small-nob")
model = AutoModelForSpeechSeq2Seq.from_pretrained("NbAiLab/whisper-small-nob")This model is a fine-tuned version of openai/whisper-small trained on several datasets.
It is currently in the middle of a large training. Currently it achieves the following results on the evaluation set:
The model is trained on a large corpus of roughly 5.000 hours of voice. The sources are subtitles from the Norwegian broadcaster NRK, transcribed speeches from the Norwegian parliament and voice recordings from Norsk Språkteknologi.
The model will be free for everyone to use when it is finished.
The following hyperparameters were used during training:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="NbAiLab/whisper-small-nob")