gradio-bug-test / app.py
cbensimon's picture
cbensimon HF staff
Update app.py
fb4217b
raw history blame
No virus
221 Bytes
import time
time.sleep(10)
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()