Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
MRamzan
/
test
like
0
License:
mit
Model card
Files
Files and versions
xet
Community
main
test
/
app.py
MRamzan
First commit
0132e50
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
172 Bytes
import
gradio
as
gr
from
PIL
import
Image
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()