Alejandro-STC commited on
Commit
21cc687
1 Parent(s): d1e6de0

Adjust column sizes

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -75,10 +75,10 @@ with gr.Blocks() as iface:
75
  gr.Markdown("Upload a PDF file to extract invoice numbers and payment amounts. Provide ground truth data for comparison.")
76
 
77
  with gr.Row():
78
- with gr.Column(scale=1):
79
- pdf_input = PDF(label="Upload PDF", visible=True)
80
 
81
- with gr.Column(scale=1):
82
  ground_truth_invoices = gr.Textbox(label="Ground Truth Invoice Numbers (comma-separated)")
83
  ground_truth_amount = gr.Textbox(label="Ground Truth Payment Amount")
84
 
 
75
  gr.Markdown("Upload a PDF file to extract invoice numbers and payment amounts. Provide ground truth data for comparison.")
76
 
77
  with gr.Row():
78
+ with gr.Column():
79
+ pdf_input = PDF(label="Upload PDF", visible=True, height=900)
80
 
81
+ with gr.Column():
82
  ground_truth_invoices = gr.Textbox(label="Ground Truth Invoice Numbers (comma-separated)")
83
  ground_truth_amount = gr.Textbox(label="Ground Truth Payment Amount")
84