All Projects → ibm-aur-nlp → Pubtabnet

ibm-aur-nlp / Pubtabnet

Licence: other

Projects that are alternatives of or similar to Pubtabnet

Gator
Conda environment and package management extension from within Jupyter
Stars: ✭ 143 (+0%)
Mutual labels:  jupyter-notebook
Tutorial Softweightsharingfornncompression
A tutorial on 'Soft weight-sharing for Neural Network compression' published at ICLR2017
Stars: ✭ 143 (+0%)
Mutual labels:  jupyter-notebook
Gp
A tutorial about Gaussian process regression
Stars: ✭ 141 (-1.4%)
Mutual labels:  jupyter-notebook
Faster Rcnn tensorflow
This is a tensorflow re-implementation of Faster R-CNN: Towards Real-Time ObjectDetection with Region Proposal Networks.
Stars: ✭ 142 (-0.7%)
Mutual labels:  jupyter-notebook
Machine learning for good
Machine learning fundamentals lesson in interactive notebooks
Stars: ✭ 142 (-0.7%)
Mutual labels:  jupyter-notebook
Practicalai Cn
AI实战-practicalAI 中文版
Stars: ✭ 2,375 (+1560.84%)
Mutual labels:  jupyter-notebook
Vmls Companions
These are companion notebooks written in Julia and Python for: "Introduction to Applied Linear Algebra" by Boyd and Vandenberghe.
Stars: ✭ 142 (-0.7%)
Mutual labels:  jupyter-notebook
Desafio 2 2020
Stars: ✭ 144 (+0.7%)
Mutual labels:  jupyter-notebook
Part2
Stars: ✭ 143 (+0%)
Mutual labels:  jupyter-notebook
Main
CS579: Online Social Network Analysis at the Illinois Institute of Technology
Stars: ✭ 143 (+0%)
Mutual labels:  jupyter-notebook
Selfconsistency
Code for the paper: Fighting Fake News: Image Splice Detection via Learned Self-Consistency
Stars: ✭ 143 (+0%)
Mutual labels:  jupyter-notebook
Animl
Reproduction of "Model-Agnostic Meta-Learning" (MAML) and "Reptile".
Stars: ✭ 143 (+0%)
Mutual labels:  jupyter-notebook
Data Science Question Answer
A repo for data science related questions and answers
Stars: ✭ 2,000 (+1298.6%)
Mutual labels:  jupyter-notebook
Design Of Experiment Python
Design-of-experiment (DOE) generator for science, engineering, and statistics
Stars: ✭ 143 (+0%)
Mutual labels:  jupyter-notebook
Dive Into Deep Learning Pytorch Pdf
本项目对中文版《动手学深度学习》中的代码进行了PyTorch实现并整理为PDF版本供下载
Stars: ✭ 144 (+0.7%)
Mutual labels:  jupyter-notebook
Deep and machine learning projects
This Repository contains the list of various Machine and Deep Learning related projects. Related code and data files are available inside this folder. One can go through these projects to implement them in real life for specific use cases.
Stars: ✭ 141 (-1.4%)
Mutual labels:  jupyter-notebook
Visualizing cnns
Using Keras and cats to visualize layers from CNNs
Stars: ✭ 143 (+0%)
Mutual labels:  jupyter-notebook
Pytorch tutorial
A set of jupyter notebooks on pytorch functions with examples
Stars: ✭ 142 (-0.7%)
Mutual labels:  jupyter-notebook
Diy Alexa
Command recognition research
Stars: ✭ 143 (+0%)
Mutual labels:  jupyter-notebook
Complete Python Bootcamp
Lectures for Udemy - Complete Python Bootcamp Course
Stars: ✭ 1,879 (+1213.99%)
Mutual labels:  jupyter-notebook

PubTabNet

PubTabNet is a large dataset for image-based table recognition, containing 568k+ images of tabular data annotated with the corresponding HTML representation of the tables. The table images are extracted from the scientific publications included in the PubMed Central Open Access Subset (commercial use collection). Table regions are identified by matching the PDF format and the XML format of the articles in the PubMed Central Open Access Subset. More details are available in our paper "Image-based table recognition: data, model, and evaluation".

Headlines

21/July/2020 - PubTabNet 2.0.0 is released, where the position (bounding box) of non-empty cells is added into the annotation. The annotation file is also changed from json format to jsonl format to reduce the requirement on large RAM.

20/Jul/2020 - PubTabNet is used in ICDAR 2021 Competition on Scientific Literature Parsing (Task B on Table Recognition)

03/July/2020 - Image-based table recognition: data, model, and evaluation is accepted by ECCV20.

01/July/2020 - Code of Tree-Edit-Distance-based Similarity (TEDS) metric is released.

Updates in progress

Encoder-dual-decoder model

In our paper, we proposed a new encoder-dual-decoder architecture, which was trained on PubTabNet and can accurately reconstruct the HTML representation of complex tables solely relying on image input. Due to legal constraints, the source code of the model will not be released.

Ground truth of test set

The ground truth of test will not be release, as we want to keep it for a competition in the future. We will offer a service for people to submit and evaluate their results soon.

Getting data

Images and annotations can be downloaded here. If you want to download the data from the command line, you can use curl or wget to download the data.

curl -o <YOUR_TARGET_DIR>/PubTabNet.tar.gz https://dax-cdn.cdn.appdomain.cloud/dax-pubtabnet/2.0.0/pubtabnet.tar.gz
wget -O <YOUR_TARGET_DIR>/PubTabNet.tar.gz https://dax-cdn.cdn.appdomain.cloud/dax-pubtabnet/2.0.0/pubtabnet.tar.gz

Annotation structure

The annotation is in the jsonl (jsonlines) format, where each line contains the annotations on a given sample in the following format: The structure of the annotation jsonl file is:

{
   'filename': str,
   'split': str,
   'imgid': int,
   'html': {
     'structure': {'tokens': [str]},
     'cell': [
       {
         'tokens': [str],
         'bbox': [x0, y0, x1, y1]  # only non-empty cells have this attribute
       }
     ]
   }
}

Cite us

@article{zhong2019image,
  title={Image-based table recognition: data, model, and evaluation},
  author={Zhong, Xu and ShafieiBavani, Elaheh and Yepes, Antonio Jimeno},
  journal={arXiv preprint arXiv:1911.10683},
  year={2019}
}

Examples

A Jupyter notebook is provided to inspect the annotations of 20 sample tables.

Related links

PubLayNet is a large dataset of document images, of which the layout is annotated with both bounding boxes and polygonal segmentations. The source of the documents is PubMed Central Open Access Subset (commercial use collection). The annotations are automatically generated by matching the PDF format and the XML format of the articles in the PubMed Central Open Access Subset. More details are available in our paper "PubLayNet: largest dataset ever for document layout analysis.", which was awarded the best paper at ICDAR 2019!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].