Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hmb
/
5.0-dev
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hmb
HF Staff
commited on
Sep 13, 2024
Commit
cf9cb6e
·
verified
·
1 Parent(s):
66d9581
Create run.py
Browse files
Files changed (1)
hide
show
run.py
+10
-0
run.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
demo = gr.Interface(
4
+
fn=None,
5
+
inputs=["imageeditor"],
6
+
outputs=None,
7
+
title=gr.__version__
8
+
)
9
+
10
+
demo.launch()