├── .gitignore ├── README.md ├── example_data ├── rnbx0223_118.json └── rnbx0223_118.png ├── figures └── overall_architecture.png ├── infer_demo.py ├── layoutlmv3-large ├── config.json ├── merges.txt ├── preprocessor_config.json ├── tokenizer_config.json └── vocab.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/README.md -------------------------------------------------------------------------------- /example_data/rnbx0223_118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/example_data/rnbx0223_118.json -------------------------------------------------------------------------------- /example_data/rnbx0223_118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/example_data/rnbx0223_118.png -------------------------------------------------------------------------------- /figures/overall_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/figures/overall_architecture.png -------------------------------------------------------------------------------- /infer_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/infer_demo.py -------------------------------------------------------------------------------- /layoutlmv3-large/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/layoutlmv3-large/config.json -------------------------------------------------------------------------------- /layoutlmv3-large/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/layoutlmv3-large/merges.txt -------------------------------------------------------------------------------- /layoutlmv3-large/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/layoutlmv3-large/preprocessor_config.json -------------------------------------------------------------------------------- /layoutlmv3-large/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/layoutlmv3-large/tokenizer_config.json -------------------------------------------------------------------------------- /layoutlmv3-large/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whlscut/DocLayLLM/HEAD/layoutlmv3-large/vocab.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | transformers==4.41.2 2 | flash-attn==2.5.9.post1 --------------------------------------------------------------------------------