A library that prepares raw documents for downstream ML tasks.
Project description
Open-Source Pre-Processing Tools for Unstructured Data
The unstructured
library provides open-source components for pre-processing text documents
such as PDFs, HTML and Word Documents. These components are packaged as bricks 🧱, which provide
users the building blocks they need to build pipelines targeted at the documents they care
about. Bricks in the library fall into three categories:
- :jigsaw: Partitioning bricks that break raw documents down into standard, structured elements.
- :broom: Cleaning bricks that remove unwanted text from documents, such as boilerplate and sentence fragments.
- :performing_arts: Staging bricks that format data for downstream tasks, such as ML inference
and data labeling.
:eight_pointed_black_star: Installation
To install the library, run pip install unstructured
.
:coffee: Getting Started
-
Using
pyenv
to manage virtualenv's is recommended but not necessary -
Create a virtualenv to work in and activate it, e.g. for one named
unstructured
:pyenv virtualenv 3.8.15 unstructured
pyenv activate unstructured
-
Run
make install-project-local
:clap: Quick Tour
You can run this Colab notebook to run the examples below.
The following examples show how to get started with the unstructured
library.
You can parse HTML and PDF documents with one line of code!
See our documentation page for a full description
of the features in the library.
HTML Parsing
You can parse an HTML document using the following workflow:
from unstructured.partition.html import partition_html
elements = partition_html("example-docs/example-10k.html")
print("\n\n".join([str(el) for el in elements[:5]]))
The print statement will show the following text:
UNITED STATES
SECURITIES AND EXCHANGE COMMISSION
Washington, D.C. 20549
FORM 10-K
ANNUAL REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934
And elements
will be a list of elements in the HTML document, similar to the following:
[<unstructured.documents.elements.Title at 0x169cbe820>,
<unstructured.documents.elements.NarrativeText at 0x169cbe8e0>,
<unstructured.documents.elements.NarrativeText at 0x169cbe3a0>]
PDF Parsing
You can use the following workflow to parse PDF documents.
from unstructured.partition.pdf import partition_pdf
elements = partition_pdf("example-docs/layout-parser-paper.pdf")
print(doc)
At this point, print(elements)
will print out a string representation of the PDF file. The
first page of output looks like the following:
LayoutParser : A Unified Toolkit for Deep Learning Based Document Image Analysis
Zejiang Shen 1 ( (cid:0) ), Ruochen Zhang 2 , Melissa Dell 3 , Benjamin Charles Germain Lee 4 , Jacob Carlson 3 , and
Weining Li 5
Abstract. Recent advances in document image analysis (DIA) have been primarily driven by the application of neural
networks. Ideally, research outcomes could be easily deployed in production and extended for further investigation.
However, various factors like loosely organized codebases and sophisticated model configurations complicate the easy
reuse of im- portant innovations by a wide audience. Though there have been on-going efforts to improve reusability and
simplify deep learning (DL) model development in disciplines like natural language processing and computer vision, none
of them are optimized for challenges in the domain of DIA. This represents a major gap in the existing toolkit, as DIA
is central to academic research across a wide range of disciplines in the social sciences and humanities. This paper
introduces LayoutParser , an open-source library for streamlining the usage of DL in DIA research and applica- tions.
The core LayoutParser library comes with a set of simple and intuitive interfaces for applying and customizing DL models
for layout de- tection, character recognition, and many other document processing tasks. To promote extensibility,
LayoutParser also incorporates a community platform for sharing both pre-trained models and full document digiti- zation
pipelines. We demonstrate that LayoutParser is helpful for both lightweight and large-scale digitization pipelines in
real-word use cases. The library is publicly available at https://layout-parser.github.io
Keywords: Document Image Analysis · Deep Learning · Layout Analysis · Character Recognition · Open Source library ·
Toolkit.
Introduction
Deep Learning(DL)-based approaches are the state-of-the-art for a wide range of document image analysis (DIA) tasks
including document image classification [11,
The Document
has a pages
attribute consisting of Page
object and the Page
object
has an element
attribute consisting of Element
objects. Sub-types of the Element
class
represent different components of a document, such as NarrativeText
and Title
. You can use
these normalized elements to zero in on the components of a document you most care about.
:guardsman: Security Policy
See our security policy for information on how to report security vulnerabilities.
:books: Learn more
Section | Description |
---|---|
Company Website | Unstructured.io product and company info |
Documentation | Full API documentation |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file unstructured-0.3.2.tar.gz
.
File metadata
- Download URL: unstructured-0.3.2.tar.gz
- Upload date:
- Size: 32.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2420d457b46221fc37db67cbc5253bc2eef5463435bcd60295fef5067f938bd6 |
|
MD5 | b55cab2fc6f2f1fa5d504781dc6b0ab0 |
|
BLAKE2b-256 | c97af8403771f677260896842a93891a1dfd286daff11f6b3c66ce75511cb18b |