Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
omerXfaruq
/
bug_test_2
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
omerXfaruq
commited on
Feb 28, 2022
Commit
ce12d47
·
1 Parent(s):
950245f
full commit
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
import gradio as gr
2
+
3
+
image_size = 384
4
+
5
+
6
+
def temp(input):
7
+
return "output"
8
+
9
+
10
+
iface = gr.Interface(fn=temp, allow_screenshot=True)
11
+
iface.launch(debug=True)