Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Richard1231
/
Document_dewarping_platform
like
1
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/2
Document_dewarping_platform
/
app.py
Snuf
Create app.py
28cc84d
over 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()