Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
andrei-saceleanu
/
SSL_demo
like
0
Paused
App
Files
Files
Community
de475ce
SSL_demo
/
app.py
Andrei-Iulian SĂCELEANU
added init test app
de475ce
over 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()