Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kartheesh
/
bara_project2
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Kartheesh
commited on
Apr 22, 2023
Commit
cf7691b
·
1 Parent(s):
c074bd0
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-2
app.py
CHANGED
Viewed
@@ -1,4 +1,6 @@
1
import gradio as gr
2
3
-
4
-
gr
.
load
(
"spaces/Kartheesh/bara_project1"
)
1
import gradio as gr
2
+
def show():
3
+
return gr.load("spaces/Kartheesh/bara_project1")
4
5
+
demo = gr.Interface(fn=show)
6
+
demo
.
launch
()