├── .gitattributes ├── CompHRDoc.zip ├── LICENSE ├── README.md ├── UniHDSA ├── README.md └── configs │ ├── data │ └── hdsa_bert.py │ ├── models │ ├── unihdsa_r18_bert.py │ └── unihdsa_r50_bert.py │ └── unihdsa_r50_bert_training.py ├── assets ├── example.png ├── hier_struct_recon.png ├── hrdoc_results.png ├── pipeline.png └── results.png └── evaluation ├── examples ├── det_json │ └── 1401.3699_0.json ├── hr_json │ └── 1401.3699.json └── toc_json │ └── 1401.3699.json ├── hrdoc_tool ├── classify_eval.py ├── data_postprocess.py ├── doc_utils.py ├── page_object_detection_eval.py ├── reading_order_eval.py ├── teds_eval.py └── utils.py └── unified_layout_evaluation.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/.gitattributes -------------------------------------------------------------------------------- /CompHRDoc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/CompHRDoc.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/README.md -------------------------------------------------------------------------------- /UniHDSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/UniHDSA/README.md -------------------------------------------------------------------------------- /UniHDSA/configs/data/hdsa_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/UniHDSA/configs/data/hdsa_bert.py -------------------------------------------------------------------------------- /UniHDSA/configs/models/unihdsa_r18_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/UniHDSA/configs/models/unihdsa_r18_bert.py -------------------------------------------------------------------------------- /UniHDSA/configs/models/unihdsa_r50_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/UniHDSA/configs/models/unihdsa_r50_bert.py -------------------------------------------------------------------------------- /UniHDSA/configs/unihdsa_r50_bert_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/UniHDSA/configs/unihdsa_r50_bert_training.py -------------------------------------------------------------------------------- /assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/assets/example.png -------------------------------------------------------------------------------- /assets/hier_struct_recon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/assets/hier_struct_recon.png -------------------------------------------------------------------------------- /assets/hrdoc_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/assets/hrdoc_results.png -------------------------------------------------------------------------------- /assets/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/assets/pipeline.png -------------------------------------------------------------------------------- /assets/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/assets/results.png -------------------------------------------------------------------------------- /evaluation/examples/det_json/1401.3699_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/examples/det_json/1401.3699_0.json -------------------------------------------------------------------------------- /evaluation/examples/hr_json/1401.3699.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/examples/hr_json/1401.3699.json -------------------------------------------------------------------------------- /evaluation/examples/toc_json/1401.3699.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/examples/toc_json/1401.3699.json -------------------------------------------------------------------------------- /evaluation/hrdoc_tool/classify_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/hrdoc_tool/classify_eval.py -------------------------------------------------------------------------------- /evaluation/hrdoc_tool/data_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/hrdoc_tool/data_postprocess.py -------------------------------------------------------------------------------- /evaluation/hrdoc_tool/doc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/hrdoc_tool/doc_utils.py -------------------------------------------------------------------------------- /evaluation/hrdoc_tool/page_object_detection_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/hrdoc_tool/page_object_detection_eval.py -------------------------------------------------------------------------------- /evaluation/hrdoc_tool/reading_order_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/hrdoc_tool/reading_order_eval.py -------------------------------------------------------------------------------- /evaluation/hrdoc_tool/teds_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/hrdoc_tool/teds_eval.py -------------------------------------------------------------------------------- /evaluation/hrdoc_tool/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/hrdoc_tool/utils.py -------------------------------------------------------------------------------- /evaluation/unified_layout_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/CompHRDoc/HEAD/evaluation/unified_layout_evaluation.py --------------------------------------------------------------------------------