Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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(
|
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."
|