|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
""" |
|
DocLayNet large is a about 99% of the dataset DocLayNet (more information at https://huggingface.co/datasets/pierreguillou/DocLayNet-large) |
|
DocLayNet: A Large Human-Annotated Dataset for Document-Layout Analysis |
|
DocLayNet dataset: |
|
- DocLayNet core dataset: https://codait-cos-dax.s3.us.cloud-object-storage.appdomain.cloud/dax-doclaynet/1.0.0/DocLayNet_core.zip |
|
- DocLayNet extra dataset: https://codait-cos-dax.s3.us.cloud-object-storage.appdomain.cloud/dax-doclaynet/1.0.0/DocLayNet_extra.zip |
|
""" |
|
|
|
import json |
|
import os |
|
import base64 |
|
from PIL import Image |
|
import datasets |
|
|
|
|
|
_CITATION = """\ |
|
@article{doclaynet2022, |
|
title = {DocLayNet: A Large Human-Annotated Dataset for Document-Layout Analysis}, |
|
doi = {10.1145/3534678.353904}, |
|
url = {https://arxiv.org/abs/2206.01062}, |
|
author = {Pfitzmann, Birgit and Auer, Christoph and Dolfi, Michele and Nassar, Ahmed S and Staar, Peter W J}, |
|
year = {2022} |
|
} |
|
""" |
|
|
|
|
|
_DESCRIPTION = """\ |
|
Accurate document layout analysis is a key requirement for high-quality PDF document conversion. With the recent availability of public, large ground-truth datasets such as PubLayNet and DocBank, deep-learning models have proven to be very effective at layout detection and segmentation. While these datasets are of adequate size to train such models, they severely lack in layout variability since they are sourced from scientific article repositories such as PubMed and arXiv only. Consequently, the accuracy of the layout segmentation drops significantly when these models are applied on more challenging and diverse layouts. In this paper, we present \textit{DocLayNet}, a new, publicly available, document-layout annotation dataset in COCO format. It contains 80863 manually annotated pages from diverse data sources to represent a wide variability in layouts. For each PDF page, the layout annotations provide labelled bounding-boxes with a choice of 11 distinct classes. DocLayNet also provides a subset of double- and triple-annotated pages to determine the inter-annotator agreement. In multiple experiments, we provide largeline accuracy scores (in mAP) for a set of popular object detection models. We also demonstrate that these models fall approximately 10\% behind the inter-annotator agreement. Furthermore, we provide evidence that DocLayNet is of sufficient size. Lastly, we compare models trained on PubLayNet, DocBank and DocLayNet, showing that layout predictions of the DocLayNet-trained models are more robust and thus the preferred choice for general-purpose document-layout analysis. |
|
""" |
|
|
|
_HOMEPAGE = "https://developer.ibm.com/exchanges/data/all/doclaynet/" |
|
|
|
_LICENSE = "https://github.com/DS4SD/DocLayNet/blob/main/LICENSE" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_URLs = { |
|
"part_dataset_0": "https://huggingface.co/datasets/pierreguillou/DocLayNet-large/resolve/main/data/part_dataset_0.zip", |
|
"part_dataset_1": "https://huggingface.co/datasets/pierreguillou/DocLayNet-large/resolve/main/data/part_dataset_1.zip", |
|
"part_dataset_2": "https://huggingface.co/datasets/pierreguillou/DocLayNet-large/resolve/main/data/part_dataset_2.zip", |
|
"part_dataset_3": "https://huggingface.co/datasets/pierreguillou/DocLayNet-large/resolve/main/data/part_dataset_3.zip", |
|
} |
|
|
|
|
|
def load_image(image_path): |
|
image = Image.open(image_path).convert("RGB") |
|
w, h = image.size |
|
return image, (w, h) |
|
|
|
logger = datasets.logging.get_logger(__name__) |
|
|
|
|
|
class DocLayNetBuilderConfig(datasets.BuilderConfig): |
|
"""BuilderConfig for DocLayNet base""" |
|
|
|
def __init__(self, name, **kwargs): |
|
"""BuilderConfig for DocLayNet large. |
|
Args: |
|
**kwargs: keyword arguments forwarded to super. |
|
""" |
|
super().__init__(name, **kwargs) |
|
|
|
|
|
class DocLayNet(datasets.GeneratorBasedBuilder): |
|
""" |
|
DocLayNet large is a about 99% of the dataset DocLayNet (more information at https://huggingface.co/datasets/pierreguillou/DocLayNet-large) |
|
DocLayNet: A Large Human-Annotated Dataset for Document-Layout Analysis |
|
DocLayNet dataset: |
|
- DocLayNet core dataset: https://codait-cos-dax.s3.us.cloud-object-storage.appdomain.cloud/dax-doclaynet/1.0.0/DocLayNet_core.zip |
|
- DocLayNet extra dataset: https://codait-cos-dax.s3.us.cloud-object-storage.appdomain.cloud/dax-doclaynet/1.0.0/DocLayNet_extra.zip |
|
""" |
|
|
|
VERSION = datasets.Version("1.1.0") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DEFAULT_CONFIG_NAME = "DocLayNet_2022.08_processed_on_2023.01" |
|
|
|
BUILDER_CONFIGS = [ |
|
DocLayNetBuilderConfig(name=DEFAULT_CONFIG_NAME, version=VERSION, description="DocLayNet large dataset"), |
|
] |
|
|
|
BUILDER_CONFIG_CLASS = DocLayNetBuilderConfig |
|
|
|
def _info(self): |
|
|
|
features = datasets.Features( |
|
{ |
|
"id": datasets.Value("string"), |
|
"texts": datasets.Sequence(datasets.Value("string")), |
|
"bboxes_block": datasets.Sequence(datasets.Sequence(datasets.Value("int64"))), |
|
"bboxes_line": datasets.Sequence(datasets.Sequence(datasets.Value("int64"))), |
|
"categories": datasets.Sequence( |
|
datasets.features.ClassLabel( |
|
names=["Caption", "Footnote", "Formula", "List-item", "Page-footer", "Page-header", "Picture", "Section-header", "Table", "Text", "Title"] |
|
) |
|
), |
|
"image": datasets.features.Image(), |
|
"pdf": datasets.Value("string"), |
|
"page_hash": datasets.Value("string"), |
|
"original_filename": datasets.Value("string"), |
|
"page_no": datasets.Value("int32"), |
|
"num_pages": datasets.Value("int32"), |
|
"original_width": datasets.Value("int32"), |
|
"original_height": datasets.Value("int32"), |
|
"coco_width": datasets.Value("int32"), |
|
"coco_height": datasets.Value("int32"), |
|
"collection": datasets.Value("string"), |
|
"doc_category": datasets.Value("string"), |
|
} |
|
) |
|
|
|
return datasets.DatasetInfo( |
|
|
|
description=_DESCRIPTION, |
|
|
|
features=features, |
|
|
|
|
|
|
|
|
|
homepage=_HOMEPAGE, |
|
|
|
license=_LICENSE, |
|
|
|
citation=_CITATION, |
|
) |
|
|
|
def _split_generators(self, dl_manager): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
archive_path = dl_manager.download_and_extract(_URLs) |
|
|
|
return [ |
|
datasets.SplitGenerator( |
|
name=datasets.Split.TRAIN, |
|
|
|
gen_kwargs={ |
|
"filepath_0": os.path.join(archive_path["part_dataset_0"], "part_dataset_0/train/"), |
|
"filepath_1": os.path.join(archive_path["part_dataset_1"], "part_dataset_1/train/"), |
|
"filepath_2": os.path.join(archive_path["part_dataset_2"], "part_dataset_2/train/"), |
|
"filepath_3": os.path.join(archive_path["part_dataset_3"], "part_dataset_3/train/"), |
|
"split": "train", |
|
}, |
|
), |
|
datasets.SplitGenerator( |
|
name=datasets.Split.VALIDATION, |
|
|
|
gen_kwargs={ |
|
"filepath_0": os.path.join(archive_path["part_dataset_0"], "part_dataset_0/val/"), |
|
"filepath_1": os.path.join(archive_path["part_dataset_1"], "part_dataset_1/val/"), |
|
"filepath_2": os.path.join(archive_path["part_dataset_2"], "part_dataset_2/val/"), |
|
"filepath_3": os.path.join(archive_path["part_dataset_3"], "part_dataset_3/val/"), |
|
"split": "validation", |
|
}, |
|
), |
|
datasets.SplitGenerator( |
|
name=datasets.Split.TEST, |
|
|
|
gen_kwargs={ |
|
"filepath_0": os.path.join(archive_path["part_dataset_0"], "part_dataset_0/test/"), |
|
"filepath_1": os.path.join(archive_path["part_dataset_1"], "part_dataset_1/test/"), |
|
"filepath_2": os.path.join(archive_path["part_dataset_2"], "part_dataset_2/test/"), |
|
"filepath_3": os.path.join(archive_path["part_dataset_3"], "part_dataset_3/test/"), |
|
"split": "test" |
|
}, |
|
), |
|
] |
|
|
|
|
|
def _generate_examples(self, filepath_0, filepath_1, filepath_2, filepath_3, split): |
|
filepath = (filepath_0, filepath_1, filepath_2, filepath_3) |
|
logger.info("⏳ Generating examples from = %s", filepath) |
|
ann_dirs = [os.path.join(filepath_0, "annotations"), os.path.join(filepath_1, "annotations"), os.path.join(filepath_2, "annotations"), os.path.join(filepath_3, "annotations")] |
|
img_dirs = [os.path.join(filepath_0, "images"), os.path.join(filepath_1, "images"), os.path.join(filepath_2, "images"), os.path.join(filepath_3, "images")] |
|
pdf_dirs = [os.path.join(filepath_0, "pdfs"), os.path.join(filepath_1, "pdfs"), os.path.join(filepath_2, "pdfs"), os.path.join(filepath_3, "pdfs")] |
|
|
|
for ann_dir, img_dir, pdf_dir in zip(ann_dirs, img_dirs, pdf_dirs): |
|
|
|
ann_listdir = os.listdir(ann_dir) |
|
|
|
for guid, file in enumerate(ann_listdir): |
|
texts = [] |
|
bboxes_block = [] |
|
bboxes_line = [] |
|
categories = [] |
|
|
|
|
|
file_path = os.path.join(ann_dir, file) |
|
with open(file_path, "r", encoding="utf8") as f: |
|
data = json.load(f) |
|
|
|
|
|
image_path = os.path.join(img_dir, file) |
|
image_path = image_path.replace("json", "png") |
|
image, size = load_image(image_path) |
|
|
|
|
|
pdf_path = os.path.join(pdf_dir, file) |
|
pdf_path = pdf_path.replace("json", "pdf") |
|
with open(pdf_path, "rb") as pdf_file: |
|
pdf_bytes = pdf_file.read() |
|
pdf_encoded_string = base64.b64encode(pdf_bytes) |
|
|
|
for item in data["form"]: |
|
text_example, category_example, bbox_block_example, bbox_line_example = item["text"], item["category"], item["box"], item["box_line"] |
|
texts.append(text_example) |
|
categories.append(category_example) |
|
bboxes_block.append(bbox_block_example) |
|
bboxes_line.append(bbox_line_example) |
|
|
|
|
|
page_hash = data["metadata"]["page_hash"] |
|
original_filename = data["metadata"]["original_filename"] |
|
page_no = data["metadata"]["page_no"] |
|
num_pages = data["metadata"]["num_pages"] |
|
original_width = data["metadata"]["original_width"] |
|
original_height = data["metadata"]["original_height"] |
|
coco_width = data["metadata"]["coco_width"] |
|
coco_height = data["metadata"]["coco_height"] |
|
collection = data["metadata"]["collection"] |
|
doc_category = data["metadata"]["doc_category"] |
|
|
|
yield guid, {"id": str(guid), "texts": texts, "bboxes_block": bboxes_block, "bboxes_line": bboxes_line, "categories": categories, "image": image, "pdf": pdf_encoded_string, "page_hash": page_hash, "original_filename": original_filename, "page_no": page_no, "num_pages": num_pages, "original_width": original_width, "original_height": original_height, "coco_width": coco_width, "coco_height": coco_height, "collection": collection, "doc_category": doc_category} |