whisper-tiny-tamil-Lingalingeswaran
This model is a fine-tuned version of openai/whisper-tiny on the Common Voice 11.0 dataset. It achieves the following results on the evaluation set:
- Loss: 0.456
- Wer: 58.67
Model description
More information needed
Intended uses & limitations
More information needed
Training and evaluation data
More information needed
Training procedure
Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 1e-05
- train_batch_size: 16
- eval_batch_size: 8
- seed: 42
- optimizer: Adam
- lr_scheduler_type: linear
- lr_scheduler_warmup_steps: 500
- training_steps: 4000
- mixed_precision_training: Native AMP
Framework versions
- Transformers 4.48.0
- Pytorch 2.5.1+cu121
- Datasets 3.2.0
- Tokenizers 0.21.0
Example Usage
import gradio as gr
from transformers import pipeline
# Initialize the pipeline with the specified model
pipe = pipeline(model="Lingalingeswaran/whisper-tiny-ta")
def transcribe(audio):
# Transcribe the audio file to text
text = pipe(audio)["text"]
return text
# Create the Gradio interface
iface = gr.Interface(
fn=transcribe,
inputs=gr.Audio(sources=["microphone", "upload"], type="filepath"),
outputs="text",
title="Whisper tiny tamil",
description="Realtime demo for Tamil speech recognition using a fine-tuned Whisper tiny model.",
)
# Launch the interface
if __name__ == "__main__":
iface.launch()
- Downloads last month
- 39
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
🙋
Ask for provider support
Model tree for Lingalingeswaran/whisper-tiny-ta
Base model
openai/whisper-tiny