VikParuchuri / tabled

Detect and extract tables to markdown and csv
https://www.datalab.to
GNU General Public License v3.0
461 stars 18 forks source link
deep-learning ocr tables

Tabled

Tabled is a small library for detecting and extracting tables. It uses surya to find all the tables in a PDF, identifies the rows/columns, and formats cells into markdown, csv, or html.

Example

Table image 0

Characteristic Population Change from 2016 to 2060
2016 2020 2030 2040 2050 2060 Number Percent
Total population 323.1 332.6 355.1 373.5 388.9 404.5 81.4 25.2
Under 18 years 73.6 74.0 75.7 77.1 78.2 80.1 6.5 8.8
18 to 44 years 116.0 119.2 125.0 126.4 129.6 132.7 16.7 14.4
45 to 64 years 84.3 83.4 81.3 89.1 95.4 97.0 12.7 15.1
65 years and over 49.2 56.1 73.1 80.8 85.7 94.7 45.4 92.3
85 years and over 6.4 6.7 9.1 14.4 18.6 19.0 12.6 198.1
100 years and over 0.1 0.1 0.1 0.2 0.4 0.6 0.5 618.3

Community

Discord is where we discuss future development.

Hosted API

There is a hosted API for tabled available here:

Commercial usage

I want tabled to be as widely accessible as possible, while still funding my development/training costs. Research and personal usage is always okay, but there are some restrictions on commercial usage.

The weights for the models are licensed cc-by-nc-sa-4.0, but I will waive that for any organization under $5M USD in gross revenue in the most recent 12-month period AND under $5M in lifetime VC/angel funding raised. You also must not be competitive with the Datalab API. If you want to remove the GPL license requirements (dual-license) and/or use the weights commercially over the revenue limit, check out the options here.

Installation

You'll need python 3.10+ and PyTorch. You may need to install the CPU version of torch first if you're not using a Mac or a GPU machine. See here for more details.

Install with:

pip install tabled-pdf

Post-install:

Usage

tabled DATA_PATH

The results.json file will contain a json dictionary where the keys are the input filenames without extensions. Each value will be a list of dictionaries, one per page of the input document. Each page dictionary contains:

Interactive App

I've included a streamlit app that lets you interactively try tabled on images or PDF files. Run it with:

pip install streamlit
tabled_gui

From python

from tabled.extract import extract_tables
from tabled.fileinput import load_pdfs_images
from tabled.inference.models import load_detection_models, load_recognition_models

det_models, rec_models = load_detection_models(), load_recognition_models()
images, highres_images, names, text_lines = load_pdfs_images(IN_PATH)

page_results = extract_tables(images, highres_images, text_lines, det_models, rec_models)

Benchmarks

Avg score Time per table Total tables
0.847 0.029 688

Quality

Getting good ground truth data for tables is hard, since you're either constrained to simple layouts that can be heuristically parsed and rendered, or you need to use LLMs, which make mistakes. I chose to use GPT-4 table predictions as a pseudo-ground-truth.

Tabled gets a .847 alignment score when compared to GPT-4, which indicates alignment between the text in table rows/cells. Some of the misalignments are due to GPT-4 mistakes, or small inconsistencies in what GPT-4 considered the borders of the table. In general, extraction quality is quite high.

Performance

Running on an A10G with 10GB of VRAM usage and batch size 64, tabled takes .029 seconds per table.

Running the benchmark

Run the benchmark with:

python benchmarks/benchmark.py out.json

Acknowledgements