Pytorch Implementation of TableNet Research Paper : https://arxiv.org/abs/2001.01469
In this project we will implement an end-to-end Deep learning architecture which will not only localize the Table in an image, but will also generate structure of Table by segmenting columns in that Table. After detecting Table structure from the image, we will use Pytesseract OCR package to read the contents of the Table.
To know more about the approach, refer my medium blog post,
We will use both Marmot and Marmot Extended dataset for Table Recognition. Marmot dataset contains Table bounding box coordinates and extended version of this dataset contains Column bounding box coordinates.
Marmot Dataset : https://www.icst.pku.edu.cn/cpdp/docs/20190424190300041510.zip Marmot Extended dataset : https://drive.google.com/drive/folders/1QZiv5RKe3xlOBdTzuTVuYRxixemVIODp
Download processed Marmot dataset: https://drive.google.com/file/d/1irIm19B58-o92IbD9b5qd6k3F31pqp1o/view?usp=sharing
We will use DenseNet121 as encoder and build model upon it.
Download saved model : https://drive.google.com/file/d/1TKALmlwUM_n4gULh6A6Q35VPRUpWDmJZ/view?usp=sharing
- Deploy this application on a remote server using AWS /StreamLit sharing/heroku.
- Model Quantization for faster inference time.
- Train for more epochs and compare the performances.
- Increase data size by adding data from ICDAR 2013 Table recognition dataset.