spktsagar/openslr-nepali-asr-cleaned
Updated • 61 • 1
How to use sunilregmi/whispNEP with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="sunilregmi/whispNEP") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("sunilregmi/whispNEP")
model = AutoModelForSpeechSeq2Seq.from_pretrained("sunilregmi/whispNEP")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("sunilregmi/whispNEP")
model = AutoModelForSpeechSeq2Seq.from_pretrained("sunilregmi/whispNEP")This model is a fine-tuned version of sunilregmi/whisper_small_ne_NP on the Openslr54 data-cleaned by spktsagar/openslr-nepali-asr-cleaned dataset.
More information needed
More information needed
More information needed
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="sunilregmi/whispNEP")