INVOHIDE_inisw8 / app.py
esun-choi's picture
Update app.py
7bebe3a
raw
history blame
254 Bytes
import gradio as gr
from main import main
iface = gr.Interface(
fn=main,
inputs=gr.Image(type="filepath", label="Invoice Image"),
outputs=gr.Image(type="pil", label="Masked Invoice Image"),
live=True
)
iface.launch()