to-be commited on
Commit
946378f
·
1 Parent(s): c2d53c9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -71,14 +71,14 @@ title = "Demo: Donut 🍩 for invoice header retrieval"
71
  with gr.Blocks() as demo:
72
  gr.Markdown(title)
73
  gr.Markdown(description)
74
-
75
- gr.Examples([["example.jpg"], ["example_2.jpg"], ["example_3.jpg"]], inputs=[inp])
76
  with gr.Row():
77
  with gr.Column(scale=3):
78
  inp = gr.Image(label='Upload invoice here:').style(full_width=True,height=800)
79
  with gr.Column():
80
  out = gr.JSON(label='Extracted information:')
81
  btn = gr.Button("Extract")
 
82
  btn.click(fn=process_document, inputs=inp, outputs=out)
83
 
84
  demo.launch()
 
71
  with gr.Blocks() as demo:
72
  gr.Markdown(title)
73
  gr.Markdown(description)
74
+
 
75
  with gr.Row():
76
  with gr.Column(scale=3):
77
  inp = gr.Image(label='Upload invoice here:').style(full_width=True,height=800)
78
  with gr.Column():
79
  out = gr.JSON(label='Extracted information:')
80
  btn = gr.Button("Extract")
81
+ gr.Examples([["example.jpg"], ["example_2.jpg"], ["example_3.jpg"]], inputs=[inp])
82
  btn.click(fn=process_document, inputs=inp, outputs=out)
83
 
84
  demo.launch()