Speech-to-Text
Collection
3 items
โข
Updated
This model is a fine-tuned version of biodatlab/whisper-th-small-combined on the common_voice_17_0 dataset.
Use the model with huggingface's transformers
as follows:
from transformers import pipeline
MODEL_NAME = "FILM6912/Whisper-small-thai" # specify the model name
lang = "th" # change to Thai langauge
device = 0 if torch.cuda.is_available() else "cpu"
pipe = pipeline(
task="automatic-speech-recognition",
model=MODEL_NAME,
chunk_length_s=30,
device=device,
)
pipe.model.config.forced_decoder_ids = pipe.tokenizer.get_decoder_prompt_ids(
language=lang,
task="transcribe"
)
text = pipe("audio.mp3")["text"] # give audio mp3 and transcribe text
More information needed
More information needed
The following hyperparameters were used during training:
Base model
openai/whisper-small