Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Squadstack
/
asr-demo-public
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Hemendrasharma04
commited on
Apr 3, 2025
Commit
b3a5735
·
verified
·
1 Parent(s):
c1bcd0e
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
import os
3
+
4
+
5
+
hf_token = os.environ.get("HF_TOKEN")
6
+
7
+
8
+
iface = gr.load(name="Squadstack/ASR-demo", hf_token=hf_token, src="spaces")
9
+
10
+
iface.launch()