• Stars
    star
    403
  • Rank 104,845 (Top 3 %)
  • Language
    Python
  • License
    MIT License
  • Created over 6 years ago
  • Updated 11 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🌲 A tool for converting PDF into hOCR with text, tables, and figures being recognized and preserved.

pdftotree

License Stars PyPI Version Issues CI-CD Codecov CodeStyle

WARNING: pdftotree is experimental code and is NOT stable. It is not integrated with or supported by Fonduer.

Fonduer performs knowledge base construction from richly formatted data such as tables. A crucial step in this process is the construction of the hierarchical tree of context objects such as text blocks, figures, tables, etc. The system currently uses PDF to HTML conversion provided by Adobe Acrobat. However, Adobe Acrobat is not an open source tool, which may be inconvenient for Fonduer users.

This package is the result of building our own module as replacement to Adobe Acrobat. Several open source tools are available for pdf to html conversion but these tools do not preserve the cell structure in a table. Our goal in this project is to develop a tool that extracts text, figures and tables in a pdf document and returns them in an easily consumable format.

Up to v0.4.1, pdftotree's output was formatted in its own "HTML-like" format. From v0.5.0, it conforms to hOCR, an open-standard format for OCR results.

Dependencies

pdftotree depends on the following native libraries:

  • ImageMagick 6+ (for Wand)
  • Java 8+ (for tabula-py)

Installation

To install this package from PyPi:

$ pip install pdftotree

Usage

pdftotree as a Python package

pdftotree

This is the primary command-line utility provided with this Python package. This takes a PDF file as input and produces an hOCR file as output:

usage: pdftotree [options] pdf_file

Convert PDF into hOCR.

positional arguments:
  pdf_file              Path to input PDF file.

optional arguments:
  -h, --help            show this help message and exit
  -mt {vision,ml,None}, --model_type {vision,ml,None}
                        Model type to use. None (default) for heuristics
                        approach.
  -m MODEL_PATH, --model_path MODEL_PATH
                        Pretrained model, generated by extract_tables tool
  -o OUTPUT, --output OUTPUT
                        Path to output hOCR file. If not given, it will be
                        printed to stdout.
  -V, --visualize       Whether to output visualization images
  -v, --verbose         Output INFO level logging.
  -vv, --veryverbose    Output DEBUG level logging. Use this if tabula should not be silent.

extract_tables

This tool trains a machine-learning model to extract tables. The output model can be used as an input to pdftotree:

usage: extract_tables [-h] [--mode MODE] --model-path MODEL_PATH
                      [--train-pdf TRAIN_PDF] --test-pdf TEST_PDF
                      [--gt-train GT_TRAIN] --gt-test GT_TEST --datapath
                      DATAPATH [--iou-thresh IOU_THRESH] [-v] [-vv]

Script to extract tables bounding boxes from PDF files using machine learning.
If `model.pkl` is saved in the model-path, the pickled model will be used for
prediction. Otherwise the model will be retrained. If --mode is test (by
default), the script will create a .bbox file containing the tables for the
pdf documents listed in the file --test-pdf. If --mode is dev, the script will
also extract ground truth labels for the test data and compute statistics.

optional arguments:
  -h, --help            show this help message and exit
  --mode MODE           Usage mode dev or test, default is test
  --model-path MODEL_PATH
                        Path to the model. If the file exists, it will be
                        used. Otherwise, a new model will be trained.
  --train-pdf TRAIN_PDF
                        List of pdf file names used for training. These files
                        must be saved in the --datapath directory. Required if
                        no pretrained model is provided.
  --test-pdf TEST_PDF   List of pdf file names used for testing. These files
                        must be saved in the --datapath directory.
  --gt-train GT_TRAIN   Ground truth train tables. Required if no pretrained
                        model is provided.
  --gt-test GT_TEST     Ground truth test tables.
  --datapath DATAPATH   Path to directory containing the input documents.
  --iou-thresh IOU_THRESH
                        Intersection over union threshold to remove duplicate
                        tables
  -v                    Output INFO level logging
  -vv                   Output DEBUG level logging
PDF List Format

The list of PDFs are simply a single filename on each line. For example:

1-s2.0-S000925411100369X-main.pdf
1-s2.0-S0009254115301030-main.pdf
1-s2.0-S0012821X12005717-main.pdf
1-s2.0-S0012821X15007487-main.pdf
1-s2.0-S0016699515000601-main.pdf
Ground Truth File Format

The ground truth is formatted to mirror the PDF List. That is, the first line of the ground truth file provides the labels for the first document in corresponding PDF list. Labels take the form of semicolon-separated tuples containing the values (page_num, page_width, page_height, top, left, bottom, right). For example:

(10, 696, 951, 634, 366, 832, 653);(14, 696, 951, 720, 62, 819, 654);(4, 696, 951, 152, 66, 813, 654);(7, 696, 951, 415, 57, 833, 647);(8, 696, 951, 163, 370, 563, 652)
(11, 713, 951, 97, 47, 204, 676);(11, 713, 951, 261, 45, 357, 673);(3, 713, 951, 110, 44, 355, 676);(8, 713, 951, 763, 55, 903, 687)
(5, 672, 951, 88, 57, 203, 578);(5, 672, 951, 593, 60, 696, 579)
(5, 718, 951, 131, 382, 403, 677)
(13, 713, 951, 119, 56, 175, 364);(13, 713, 951, 844, 57, 902, 363);(14, 713, 951, 109, 365, 164, 671);(8, 713, 951, 663, 46, 890, 672)

One method to label these tables is to use DocumentAnnotation, which allows you to select table regions in your web browser and produces the bounding box file.

Example Dataset: Paleontological Papers

A full set of documents and ground truth labels can be downloaded here: PaleoDocs. You can train a machine-learning model to extract table regions by downloading this dataset and extracting it into a directory named data and then running the command below. Double check that the paths in the command match wherever you have downloaded the data:

$ extract_tables -v --train-pdf data/paleo/ml/train.pdf.list.paleo.not.scanned --gt-train data/paleo/ml/gt.train --test-pdf data/paleo/ml/test.pdf.list.paleo.not.scanned --gt-test data/paleo/ml/gt.test --datapath data/paleo/documents/ --model-path data/model.pkl

The resulting model of this example command would be saved as data/model.pkl.

For Developers

We are following Semantic Versioning 2.0.0 conventions. The maintainers will create a git tag for each release and increment the version number found in the version file accordingly. We deploy tags to PyPI automatically using GitHub Actions.

Tests

To test changes in the package, you install it in editable mode locally in your virtualenv by running:

$ make dev

This will also install all the tools we use to enforce code-style.

Then you can run our tests:

$ make test

Release

Follow the below steps to release

  1. Make commits with the following changes:
    1. Update the CHANGELOG
    2. Change the version at pdftotree/_version.py to 0.X.Y.
  2. Submit the commits as a pull-request
  3. Once the pull-request is merged, add a tag v0.X.Y (don't forget "v" at the beginning) and push it
  4. Pushing the tag triggers GitHub Actions workflow that
    1. Creates a pre-release on GitHub
    2. Publishes a package to PyPI
  5. Edit the pre-release and release it
  6. Increment the version to 0.X.(Y+1)+dev

More Repositories

1

flash-attention

Fast and memory-efficient exact attention
Python
3,673
star
2

deepdive

DeepDive
Shell
1,949
star
3

state-spaces

Sequence Modeling with Structured State Spaces
Jupyter Notebook
1,372
star
4

ThunderKittens

Tile primitives for speedy kernels
Cuda
1,324
star
5

data-centric-ai

Resources for Data Centric AI
TeX
1,070
star
6

safari

Convolutions for Sequence Modeling
Assembly
841
star
7

meerkat

Creative interactive views of any dataset.
Python
814
star
8

hgcn

Hyperbolic Graph Convolutional Networks in PyTorch.
Python
556
star
9

ama_prompting

Ask Me Anything language model prompting
Python
530
star
10

hyena-dna

Official implementation for HyenaDNA, a long-range genomic foundation model built with Hyena
Assembly
528
star
11

m2

Repo for "Monarch Mixer: A Simple Sub-Quadratic GEMM-Based Architecture"
Assembly
507
star
12

H3

Language Modeling with the H3 State Space Model
Assembly
493
star
13

evaporate

This repo contains data and code for the paper "Language Models Enable Simple Systems for Generating Structured Views of Heterogeneous Data Lakes"
Python
467
star
14

manifest

Prompt programming with FMs.
Python
437
star
15

metal

Snorkel MeTaL: A framework for training models with multi-task weak supervision
Python
420
star
16

fonduer

A knowledge base construction engine for richly formatted data
Python
403
star
17

hyperbolics

Hyperbolic Embeddings
Python
364
star
18

flyingsquid

More interactive weak supervision with FlyingSquid
Python
310
star
19

legalbench

An open science effort to benchmark legal reasoning in foundation models
Python
282
star
20

KGEmb

Hyperbolic Knowledge Graph embeddings.
Python
242
star
21

flash-fft-conv

FlashFFTConv: Efficient Convolutions for Long Sequences with Tensor Cores
C++
242
star
22

aisys-building-blocks

Building blocks for foundation models.
242
star
23

bootleg

Self-Supervision for Named Entity Disambiguation at the Tail
Python
211
star
24

HypHC

Hyperbolic Hierarchical Clustering.
Python
186
star
25

TART

TART: A plug-and-play Transformer module for task-agnostic reasoning
Python
184
star
26

based

Code for exploring Based models from "Simple linear attention language models balance the recall-throughput tradeoff"
Python
178
star
27

fly

Python
174
star
28

tanda

Learning to Compose Domain-Specific Transformations for Data Augmentation
Python
169
star
29

spacetime

Code for SpaceTime 🌌⏱️. Proposed in Effectively Modeling Time Series with Simple Discrete State Spaces, ICLR 2023.
Python
156
star
30

butterfly

Butterfly matrix multiplication in PyTorch
Python
154
star
31

zoology

Understand and test language model architectures on synthetic tasks.
Python
149
star
32

babble

A system for generating training labels via natural language explanations
Python
144
star
33

hippo-code

Python
139
star
34

EmptyHeaded

Your worst case is our best case.
C++
136
star
35

domino

Python
133
star
36

blocking-tutorial

C++
127
star
37

mindbender

Tools for iterative knowledge base development with DeepDive
CoffeeScript
116
star
38

reef

Automatically labeling training data
Jupyter Notebook
103
star
39

fonduer-tutorials

A collection of simple tutorials for using Fonduer
Jupyter Notebook
100
star
40

fm_data_tasks

Foundation Models for Data Tasks
Python
92
star
41

TreeStructure

Table Extraction Tool
Jupyter Notebook
90
star
42

epoxy

Interactive Model Iteration with Weak Supervision and Pre-Trained Embeddings
Python
76
star
43

CaffeConTroll

C++
75
star
44

HoroPCA

Hyperbolic PCA via Horospherical Projections
Python
65
star
45

structured-nets

Structured matrices for compressing neural networks
Python
64
star
46

hidden-stratification

Combating hidden stratification with GEORGE
Jupyter Notebook
60
star
47

eclair-agents

Jupyter Notebook
50
star
48

numbskull

Numba-based version of DimmWitted Gibbs sampler
Python
45
star
49

model-patching

Model Patching: Closing the Subgroup Performance Gap with Data Augmentation
Python
42
star
50

cs145-notebooks-2016

Public materials for the Fall 2016 offering of CS145
Jupyter Notebook
35
star
51

skill-it

Skill-It! A Data-Driven Skills Framework for Understanding and Training Language Models
Jupyter Notebook
34
star
52

mandoline

(ICML 2021) Mandoline: Model Evaluation under Distribution Shift
Python
30
star
53

mongoose

A Learnable LSH Framework for Efficient NN Training
Python
28
star
54

thanos-code

Code release for the paper Perfectly Balanced: Improving Transfer and Robustness of Supervised Contrastive Learning
Python
28
star
55

tuffy

Tuffy, a Markov Logic Network solver
Java
23
star
56

snorkel-superglue

Applying Snorkel to SuperGLUE
Jupyter Notebook
23
star
57

ukb-cardiac-mri

Weakly Supervised MRI Series Classification for the UK Biobank
Python
22
star
58

correct-n-contrast

Official code repository for Correct-N-Contrast
Python
20
star
59

ludwig-benchmarking-toolkit

Ludwig benchmark
Python
19
star
60

ddlog

Compiler for writing DeepDive applications in a Datalog-like language — ⚠️🚧🛑 REPO MOVED TO DEEPDIVE 👇🏿
Scala
19
star
61

augmentation_code

Reproducible code for Augmentation paper
Python
18
star
62

smallfry

Python
18
star
63

tabi

Code release for Type-Aware Bi-Encoders for Open-Domain Entity Retrieval
Python
18
star
64

lp_rffs

Low precision random Fourier features for kernel approximation
Python
17
star
65

sampler

DimmWitted Gibbs Sampler in C++ — ⚠️🚧🛑 REPO MOVED TO DEEPDIVE 👉🏿
C++
17
star
66

random_embedding

Python
16
star
67

snorkel-biocorpus

Python
16
star
68

bazaar

JavaScript
14
star
69

ddbiolib

DeepDive Biomedical Tools
Python
13
star
70

anchor-stability

A study of the downstream instability of word embeddings
Jupyter Notebook
12
star
71

Omnivore

Omnivore Optimizer and Distributed CcT
C++
12
star
72

dd-genomics

The Genomics DeepDive project
Python
11
star
73

embroid

Embroid: Unsupervised Prediction Smoothing Can Improve Few-Shot Classification
Jupyter Notebook
11
star
74

dimmwitted

C++
10
star
75

medical-ned-integration

Cross-domain data integration for named entity disambiguation in biomedical text
Python
10
star
76

torchhalp

Python
9
star
77

cross-modal-ws-demo

HTML
9
star
78

liger

Liger: Fusing Weak Supervision and Model Embeddings
Python
8
star
79

treedlib

Jupyter Notebook
8
star
80

Accelerated-PCA

Accelerated Stochastic Power Iteration with Momentum
Jupyter Notebook
8
star
81

hyperE

HTML
7
star
82

chinstrap

C++
6
star
83

ivy-tutorial

An Introductory Tutorial for Ivy
Jupyter Notebook
6
star
84

quadrature-features

Code to generate kernel features using Gaussian quadrature
Python
5
star
85

icij-maude

Weakly supervised classification of adverse event reports from the FDA's MAUDE database.
Python
5
star
86

observational

Observational Supervision for Medical Image Classification using Gaze Data
Jupyter Notebook
5
star
87

librarian

DeepDive Librarian for managing all data sets we publish and receive
Python
3
star
88

halp

Python
3
star
89

bert-pretraining

Python
2
star
90

d3m-model-search

D3M Model Search Component
Python
2
star
91

elementary

Data services and APIs
Python
1
star
92

dependency_model

Structure learning code from [ICML'19 paper](https://arxiv.org/abs/1903.05844)
Python
1
star