├── .gitignore ├── LICENSE ├── README.md ├── annotations └── sample_coco_annotation.json ├── assets ├── cover.png └── td-id-caption.png ├── coco_to_florence.py ├── images ├── sample_paper_page_1.png └── sample_paper_page_2.png ├── inference.py ├── pdf_to_table_figures.py ├── pdfs └── arxiv_2305_04160.pdf ├── sample_images └── arxiv_2305_10853_5.png └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/README.md -------------------------------------------------------------------------------- /annotations/sample_coco_annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/annotations/sample_coco_annotation.json -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/assets/cover.png -------------------------------------------------------------------------------- /assets/td-id-caption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/assets/td-id-caption.png -------------------------------------------------------------------------------- /coco_to_florence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/coco_to_florence.py -------------------------------------------------------------------------------- /images/sample_paper_page_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/images/sample_paper_page_1.png -------------------------------------------------------------------------------- /images/sample_paper_page_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/images/sample_paper_page_2.png -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/inference.py -------------------------------------------------------------------------------- /pdf_to_table_figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/pdf_to_table_figures.py -------------------------------------------------------------------------------- /pdfs/arxiv_2305_04160.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/pdfs/arxiv_2305_04160.pdf -------------------------------------------------------------------------------- /sample_images/arxiv_2305_10853_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/sample_images/arxiv_2305_10853_5.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai8hyf/TF-ID/HEAD/train.py --------------------------------------------------------------------------------