AkashDataScience commited on
Commit
f449995
·
1 Parent(s): 3cd5721

Change image size

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -121,7 +121,7 @@ with gr.Blocks(theme=gr.themes.Glass()) as demo:
121
  submit_btn.click(inference, inputs=[pdf, page_num], outputs=[original, docling_ocr_out, paddle_ocr_out, smoldocling_ocr_out])
122
 
123
  with gr.Column():
124
- original = gr.Image(width=320, height=320, label="Original Page", interactive=False)
125
  docling_ocr_out = gr.Textbox(label="Docling OCR Output", type="text", interactive=False)
126
  paddle_ocr_out = gr.Textbox(label="Paddle OCR Output", type="text", interactive=False)
127
  smoldocling_ocr_out = gr.Textbox(label="SmolDocling OCR Output", type="text", interactive=False)
 
121
  submit_btn.click(inference, inputs=[pdf, page_num], outputs=[original, docling_ocr_out, paddle_ocr_out, smoldocling_ocr_out])
122
 
123
  with gr.Column():
124
+ original = gr.Image(width=640, height=640, label="Original Page", interactive=False)
125
  docling_ocr_out = gr.Textbox(label="Docling OCR Output", type="text", interactive=False)
126
  paddle_ocr_out = gr.Textbox(label="Paddle OCR Output", type="text", interactive=False)
127
  smoldocling_ocr_out = gr.Textbox(label="SmolDocling OCR Output", type="text", interactive=False)