There are many pdfs out there, and many of those pdfs have tables. But despite a plethora of table extraction options, there is still no definitive extraction method.
gmft converts pdf tables to many formats. It is lightweight, modular, and performant. Batteries included: it just works, offering strong performance with the default settings.
It relies on microsoft's Table Transformers, qualitatively the most performant and reliable of the many alternatives.
Install: pip install gmft
Quickstarts: demo notebook, bulk extract, readthedocs.
Documentation: readthedocs
Fast, lightweight, and performant, gmft is a great choice for extracting tables from pdfs.
The extraction quality is superb: check out the bulk extract notebook for approximate quality. When testing the same tables across many table extraction options, gmft fares extremely well.
We support the following export options:
- Pandas dataframe
- By extension: markdown, latex, html, csv, json, etc.
- List of text + positions
- Cropped image of table
- Table caption
Cropped images can be passed into a vision recognizer, like:
- GPT-4 vision
- Mathpix/Adobe/Google/Amazon/Azure/etc.
- Or saved to disk for human evaluation
gmft is very lightweight. It can run on cpu - no GPU necessary.
Benchmark using Colab's cpu indicates ~1.381 s/page; converting to df takes ~1.168 s/table. This makes gmft about 10x faster than alternatives like unstructured, nougat, and open-parse/unitable on cpu.
- The base model, Smock et al.'s Table Transformer, is very efficient.
- gmft focuses on table extraction, so figures, titles, sections, etc. are not extracted.
- In most cases, OCR is not necessary; pdfs already contain text positional data. Using this existing data drastically speeds up inference. For images or scanned pdfs, bboxes can be exported for further processing.
- PyPDFium2 is chosen for its high throughput and permissive license.
gmft does not require any external dependencies (detectron2, poppler, paddleocr, tesseract etc.)
To install gmft, first install transformers and pytorch with the necessary GPU/CPU options. We also rely on pypdfium2 and transformers.
The base model is Microsoft's Table Transformer (TATR) pretrained on PubTables-1M, which works best with scientific papers. TATR handles implicit table structure very well. Current failure modes include OCR issues, merged cells, or false positives. Even so, the text is highly useable, and alignment of a value to its row/column header remains very accurate because of the underlying procedural algorithm.
We invite you to explore the comparison notebooks to survey use cases and compare results.
As of gmft v0.3, the library supports multiple-column headers (TATRFormatConfig.enable_multi_header = True
), spanning cells (TATRFormatConfig.semantic_spanning_cells = True
), and rotated tables.
gmft focuses on tables, and aims to maximize performance on tables alone. If you need to extract other document features like figures or table of contents, you may want a different tool. You should instead check out: (in no particular order) marker, nougat, open-parse, docling, unstructured, surya, deepdoctection, DocTR. For table detection, img2table is excellent for tables with explicit (solid) cell boundaries.
Current limitations include: false positives (references, indexes, and large columnar text), false negatives, and no OCR support.
See the docs and the config guide for more information. The demo notebook and bulk extract contain more comprehensive code examples.
# new in v0.3: gmft.auto
from gmft.auto import CroppedTable, TableDetector, AutoTableFormatter, AutoTableDetector
from gmft.pdf_bindings import PyPDFium2Document
detector = AutoTableDetector()
formatter = AutoTableFormatter()
def ingest_pdf(pdf_path): # produces list[CroppedTable]
doc = PyPDFium2Document(pdf_path)
tables = []
for page in doc:
tables += detector.extract(page)
return tables, doc
tables, doc = ingest_pdf("path/to/pdf.pdf")
doc.close() # once you're done with the document
See the config guide for discussion on gmft settings.
git clone https://github.com/conjuncts/gmft
cd gmft
pip install -e .
pip install pytest
Run tests:
tests are in ./test directory
Build docs:
cd docs
make html
give
me
formatted
tables!
This project would not be possible without:
- PubTables1M authors: Brandon Smock, Rohith Pesala, and Robin Abraham.
- Niels Rogge: porting TATR to huggingface.
GMFT is released under MIT.
PyMuPDF support is available in a separate repository in observance of pymupdf's AGPL 3.0 license.