Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sunhyeong
/
hongs
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
sunhyeong
commited on
Jul 21, 2022
Commit
e53599f
·
1 Parent(s):
79a1183
test
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!!"
6
+
7
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
8
+
9
+
demo.launch()