Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
andufkova
/
articles
like
1
Runtime error
App
Files
Files
Community
0828d7d
articles
/
app.py
Aneta Dufková
output test
0828d7d
over 1 year ago
raw
Copy download link
history
blame
Safe
181 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
()
"Hello "
+ name +
"!!"
,
"clustering tbd"
)
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=[
"text"
,
"text"
])
iface.launch()