Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
sonnygeorge
/
whisper-tiny-papi
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Sonny George
commited on
Dec 19, 2023
Commit
10372dd
·
1 Parent(s):
324fd38
Fix bug
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -5,7 +5,7 @@ pipe = pipeline(model="sonnygeorge/whisper-tiny-papi")
5
6
7
def transcribe(audio):
8
-
text = pipe(audio)["text"]
9
return text
10
11
5
6
7
def transcribe(audio):
8
+
text = pipe(audio
[1]
)["text"]
9
return text
10
11