Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cbensimon
/
gradio-bug-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1f53b42
gradio-bug-test
/
app.py
cbensimon
HF Staff
Update app.py
1f53b42
almost 4 years ago
raw
Copy download link
history
blame
193 Bytes
from
paddleocr
import
PaddleOCR, draw_ocr
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()