Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
seyoungsong
/
flores101_mm100_175M
like
1
Running
App
Files
Files
Community
seyoungsong
commited on
Nov 26, 2023
Commit
11e68b1
•
1 Parent(s):
f80a236
Add application file
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
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!!"
6
+
7
+
8
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
iface.launch()
10
+
iface.launch()