AdaParse (Adaptive Parallel PDF Parsing and Resource Scaling Engine) enable scalable high-accuracy PDF parsing. AdaParse is a data-driven strategy that assigns an appropriate parser to each document; offering high accuracy for any computaional budget. Moreover, it offers a workflow of various PDF parsing software that includes
- extraction tools: PyMuPDF, pypdf
- traditional OCR: Tesseract,
- modern OCR (e.g., Vision Transformers): Nougat, and Marker
AdaParse designed to run on HPC systems and has parsed millions of (scientific) PDFs. It uses Parsl to submit jobs to the scheduler. While AdaParse is agnostic to the specific system, instructions below are tailored to the Polaris supercomputer at Argonne National Laboratory (ANL). Regardless, AdaParse can run on any system (large or small) by adding an appropriate Parsl configuration.
The steps below enable any of the parsers.
git clone [email protected]:7shoe/AdaParse.git
cd AdaParse
pip install --upgrade pip setuptools wheel
pip install -e .
If you plan on using Tesseract, additional installation steps are required.
The adaparse
workflow can be run at scale using Parsl
> python -m adaparse.convert --help
usage: convert.py [-h] --config CONFIG
PDF conversion workflow
optional arguments:
-h, --help show this help message and exit
--config CONFIG Path to workflow configuration file
A single command triggers the embarassingly parallel PDF parsing engine:
python -m adaparse.convert --config <your-config.yaml>
The YAML configuration file specifies all aspects of the chosen parser, virtual environment and computing platform it is run on.
An sample configuration YAML file is provided below.
# The directory containing the PDFs to be parsed
pdf_dir: /lus/eagle/projects/argonne_tpc/siebenschuh/small-pdf-dataset
# The directory to store the JSONLs
out_dir: runs/output-dir
# The number of PDFs per parsl task
chunk_size: 5
# Parser settings
parser_settings:
# The name of the parser to use
name: adaparse
# Compute settings (e.g., ANL's Polaris)
compute_settings:
# The name of the compute platform to use
name: polaris
# The number of compute nodes to use
num_nodes: 1
# Activate conda environment and set HF cache path
worker_init: "module use /soft/modulefiles; module load conda/2024-04-29; conda activate adaparse; export HF_HOME=<path-to-your-HF-cache-dir>"
# Scheduler options
scheduler_options: "#PBS -l filesystems=home:eagle"
# Your account/project that will be charged
account: <your-account-name-to-charge>
# The HPC queue to submit to
queue: debug
# The amount of runtime requested for this job
walltime: 01:00:00
Example configuration files for each parser can be found in:
- AdaParse: examples/adaparse/adaparse_test.yaml
- Nougat: examples/nougat/nougat_test.yaml
- Marker: examples/marker/marker_test.yaml
- PyMuPDF: examples/pymupdf/pymupdf_test.yaml
- pypdf: examples/pymupdf/pymupdf_test.yaml
- Tesseract: examples/tesseract/tesseract_test.yaml
Once you've updated the YAML file and run the AdaParse command, the textual output will be written to the out_dir
.
The subdirectory <out_dir>/parsed_pdfs
contains the parsed PDF output in JSON lines format. Each line of the JSONL file contains
the path
field with the PDF source file, the text
field containing the parsed text, and the metadata
field containing information on author, title. etc..
Please note that the particular metadata stored depends on the parser used.
{"path": "/path/to/1.pdf", "text": "This is the text of the first PDF."}
{"path": "/path/to/2.pdf", "text": "This is the text of the second PDF."}
Note: If the parser fails to parse a PDF, the JSONL file will not contain an entry for that PDF.
See the Monitoring the Workflow section for description of the other log files that are generated during the workflow.
It is recommended to use a virtual environment for developement. The following commands will create a virtual environment, install the package in editable mode, and install the pre-commit hooks.
python3.10 -m venv venv
source venv/bin/activate
pip install -U pip setuptools wheel
pip install -e '.[dev,docs]'
pre-commit install