├── .github └── FUNDING.yml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── example ├── page_0.png ├── page_1.png ├── predict_and_draw.py └── test.pdf ├── main.py ├── requirements.txt ├── tools.py └── v3 ├── ds_config.json ├── eval.py ├── helpers.py ├── train.py └── train.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | checkpoint/ 3 | *.pyc 4 | cache* 5 | output* 6 | dataset-*.json 7 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/README.md -------------------------------------------------------------------------------- /example/page_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/example/page_0.png -------------------------------------------------------------------------------- /example/page_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/example/page_1.png -------------------------------------------------------------------------------- /example/predict_and_draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/example/predict_and_draw.py -------------------------------------------------------------------------------- /example/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/example/test.pdf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/tools.py -------------------------------------------------------------------------------- /v3/ds_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/v3/ds_config.json -------------------------------------------------------------------------------- /v3/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/v3/eval.py -------------------------------------------------------------------------------- /v3/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/v3/helpers.py -------------------------------------------------------------------------------- /v3/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/v3/train.py -------------------------------------------------------------------------------- /v3/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppaanngggg/layoutreader/HEAD/v3/train.sh --------------------------------------------------------------------------------