ayushdh96 commited on
Commit
71e63d8
·
verified ·
1 Parent(s): f4bcf35

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -1,6 +1,5 @@
1
  import torch
2
  from transformers import pipeline
3
- from datasets import load_dataset
4
  import gradio as gr
5
 
6
  # Setup device
@@ -23,7 +22,7 @@ def transcribe(audio):
23
  # Define the Gradio interface
24
  iface = gr.Interface(
25
  fn=transcribe,
26
- inputs=gr.Audio(source="microphone", type="filepath"),
27
  outputs="text",
28
  title="Speech to Text with Whisper Model",
29
  description="Record your voice and transcribe it to text using OpenAI Whisper model."
 
1
  import torch
2
  from transformers import pipeline
 
3
  import gradio as gr
4
 
5
  # Setup device
 
22
  # Define the Gradio interface
23
  iface = gr.Interface(
24
  fn=transcribe,
25
+ inputs=gr.Audio(type="filepath"), # Removed 'source' argument
26
  outputs="text",
27
  title="Speech to Text with Whisper Model",
28
  description="Record your voice and transcribe it to text using OpenAI Whisper model."