Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Sunil1821
/
convert_candid_pics_to_headshots
like
2
No application file
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
refs/pr/3
convert_candid_pics_to_headshots
/
app.py
Jr145
Create app.py
6819bf7
over 1 year ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()