Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Lasion
/
NCKH_2023
like
0
License:
mit
Model card
Files
Files and versions
Community
2dd09e2
NCKH_2023
/
app.py
Lasion
App
2dd09e2
almost 2 years 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()