Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Xintao
/
GFPGAN
like
875
Running
on
A10G
App
Files
Files
Community
62
d561a66
GFPGAN
/
app.py
Xintao
init
d561a66
about 2 years ago
raw
Copy download link
history
blame
Safe
151 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()