Spaces:
Runtime error
Runtime error
Commit
·
5d265c2
1
Parent(s):
a806594
change names
Browse files
README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.8.0
|
8 |
app_file: app.py
|
|
|
1 |
---
|
2 |
+
title: pdfplumber PDF Table Extraction Playground
|
3 |
+
emoji: 🩻
|
4 |
+
colorFrom: aliceblue
|
5 |
+
colorTo: lavenderblush
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.8.0
|
8 |
app_file: app.py
|
app.py
CHANGED
@@ -167,7 +167,7 @@ def demo_subset(
|
|
167 |
|
168 |
notes = gr.Markdown()
|
169 |
output_image = gr.Image()
|
170 |
-
data_table = gr.Dataframe(height=250, render=False)
|
171 |
|
172 |
crop_top = gr.Text(label="Crop (top)", placeholder="top", container=False, render=False)
|
173 |
crop_x0 = gr.Text(label=" Crop (x0)", placeholder="left", container=False, render=False)
|
|
|
167 |
|
168 |
notes = gr.Markdown()
|
169 |
output_image = gr.Image()
|
170 |
+
data_table = gr.Dataframe(height=250, render=False, type='array', label='Found data')
|
171 |
|
172 |
crop_top = gr.Text(label="Crop (top)", placeholder="top", container=False, render=False)
|
173 |
crop_x0 = gr.Text(label=" Crop (x0)", placeholder="left", container=False, render=False)
|