├── .dockerignore ├── .gitignore ├── .idea └── workspace.xml ├── Dockerfile ├── LICENSE ├── README_YOLO_v5.md ├── README_v3.md ├── app.py ├── data ├── get_coco2017.sh └── layout.yaml ├── datasets ├── 01_check_img.py ├── 02_check_box.py ├── 03_train_val_split.py ├── 04_myData_label.py ├── fund │ ├── images │ │ ├── train │ │ │ └── 201708251238438510.png │ │ ├── val.shapes │ │ └── val │ │ │ └── 201903261057062841.png │ └── labels │ │ ├── train │ │ └── 201708251238438510.txt │ │ └── val │ │ └── 201903261057062841.txt └── gen_custom_data.py ├── detect.py ├── gen_wts.py ├── gunicorn_config.py ├── hubconf.py ├── img.png ├── infer.py ├── inference ├── images │ └── val_0007.jpg └── output │ ├── 201805221604304170.png │ ├── 201805221604304171.png │ ├── 201809031558147990.png │ ├── 201909051334537940.png │ ├── 202206080931095200.png │ ├── 202207221613368470.png │ ├── img.png │ ├── img_1.png │ ├── 企业微信截图_16760226232815.png │ └── 景顺长城价值驱动一年持有期灵活配置混合型基金一页通 1.png ├── models ├── common.py ├── experimental.py ├── onnx_export.py ├── score │ ├── yolov5l.yaml │ ├── yolov5m.yaml │ ├── yolov5s.yaml │ └── yolov5x.yaml ├── yolo.py ├── yolov3-spp.yaml ├── yolov5l.yaml ├── yolov5m.yaml ├── yolov5s.yaml └── yolov5x.yaml ├── readme.md ├── readme_zh.md ├── request_example.py ├── requirements.txt ├── results.txt ├── runs └── readme ├── test.py ├── train.py ├── train.sh ├── utils ├── __init__.py ├── activations.py ├── datasets.py ├── google_utils.py ├── torch_utils.py └── utils.py └── yolov5_trt.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /weights/ -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README_YOLO_v5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/README_YOLO_v5.md -------------------------------------------------------------------------------- /README_v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/README_v3.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/app.py -------------------------------------------------------------------------------- /data/get_coco2017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/data/get_coco2017.sh -------------------------------------------------------------------------------- /data/layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/data/layout.yaml -------------------------------------------------------------------------------- /datasets/01_check_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/01_check_img.py -------------------------------------------------------------------------------- /datasets/02_check_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/02_check_box.py -------------------------------------------------------------------------------- /datasets/03_train_val_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/03_train_val_split.py -------------------------------------------------------------------------------- /datasets/04_myData_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/04_myData_label.py -------------------------------------------------------------------------------- /datasets/fund/images/train/201708251238438510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/fund/images/train/201708251238438510.png -------------------------------------------------------------------------------- /datasets/fund/images/val.shapes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/fund/images/val.shapes -------------------------------------------------------------------------------- /datasets/fund/images/val/201903261057062841.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/fund/images/val/201903261057062841.png -------------------------------------------------------------------------------- /datasets/fund/labels/train/201708251238438510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/fund/labels/train/201708251238438510.txt -------------------------------------------------------------------------------- /datasets/fund/labels/val/201903261057062841.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/fund/labels/val/201903261057062841.txt -------------------------------------------------------------------------------- /datasets/gen_custom_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/datasets/gen_custom_data.py -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/detect.py -------------------------------------------------------------------------------- /gen_wts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/gen_wts.py -------------------------------------------------------------------------------- /gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/gunicorn_config.py -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/hubconf.py -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/img.png -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/infer.py -------------------------------------------------------------------------------- /inference/images/val_0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/images/val_0007.jpg -------------------------------------------------------------------------------- /inference/output/201805221604304170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/201805221604304170.png -------------------------------------------------------------------------------- /inference/output/201805221604304171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/201805221604304171.png -------------------------------------------------------------------------------- /inference/output/201809031558147990.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/201809031558147990.png -------------------------------------------------------------------------------- /inference/output/201909051334537940.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/201909051334537940.png -------------------------------------------------------------------------------- /inference/output/202206080931095200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/202206080931095200.png -------------------------------------------------------------------------------- /inference/output/202207221613368470.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/202207221613368470.png -------------------------------------------------------------------------------- /inference/output/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/img.png -------------------------------------------------------------------------------- /inference/output/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/img_1.png -------------------------------------------------------------------------------- /inference/output/企业微信截图_16760226232815.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/企业微信截图_16760226232815.png -------------------------------------------------------------------------------- /inference/output/景顺长城价值驱动一年持有期灵活配置混合型基金一页通 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/inference/output/景顺长城价值驱动一年持有期灵活配置混合型基金一页通 1.png -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/onnx_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/onnx_export.py -------------------------------------------------------------------------------- /models/score/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/score/yolov5l.yaml -------------------------------------------------------------------------------- /models/score/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/score/yolov5m.yaml -------------------------------------------------------------------------------- /models/score/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/score/yolov5s.yaml -------------------------------------------------------------------------------- /models/score/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/score/yolov5x.yaml -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/yolo.py -------------------------------------------------------------------------------- /models/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/yolov3-spp.yaml -------------------------------------------------------------------------------- /models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/yolov5l.yaml -------------------------------------------------------------------------------- /models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/yolov5m.yaml -------------------------------------------------------------------------------- /models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/yolov5s.yaml -------------------------------------------------------------------------------- /models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/models/yolov5x.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/readme.md -------------------------------------------------------------------------------- /readme_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/readme_zh.md -------------------------------------------------------------------------------- /request_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/request_example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/requirements.txt -------------------------------------------------------------------------------- /results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/results.txt -------------------------------------------------------------------------------- /runs/readme: -------------------------------------------------------------------------------- 1 | 此处存放tensorboard日志文件 -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/train.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/train.sh -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/utils/google_utils.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/utils/utils.py -------------------------------------------------------------------------------- /yolov5_trt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OKC13/General-Documents-Layout-parser/HEAD/yolov5_trt.py --------------------------------------------------------------------------------