gitextract_wepobalr/ ├── LICENSE ├── README.md ├── README_ch.md ├── notebook_ch/ │ ├── .ipynb_checkpoints/ │ │ └── 如何使用本书-checkpoint.ipynb │ ├── 1.introduction/ │ │ ├── .ipynb_checkpoints/ │ │ │ └── OCR技术导论-checkpoint.ipynb │ │ └── OCR技术导论.ipynb │ ├── 2.text_detection/ │ │ ├── .ipynb_checkpoints/ │ │ │ ├── 文本检测FAQ-checkpoint.ipynb │ │ │ ├── 文本检测实践篇-checkpoint.ipynb │ │ │ └── 文本检测理论篇-checkpoint.ipynb │ │ ├── 文本检测FAQ.ipynb │ │ ├── 文本检测实践篇.ipynb │ │ └── 文本检测理论篇.ipynb │ ├── 3.text_recognition/ │ │ ├── .ipynb_checkpoints/ │ │ │ ├── 文本识别实践部分-checkpoint.ipynb │ │ │ └── 文本识别理论部分-checkpoint.ipynb │ │ ├── 文本识别实践部分.ipynb │ │ └── 文本识别理论部分.ipynb │ ├── 4.ppcor_system_strategy/ │ │ ├── .ipynb_checkpoints/ │ │ │ └── PP-OCR系统及优化策略-checkpoint.ipynb │ │ └── PP-OCR系统及优化策略.ipynb │ ├── 4.ppocr_system_strategy/ │ │ └── PP-OCR系统及优化策略.ipynb │ ├── 5.ppocrv2_inference_deployment/ │ │ ├── .ipynb_checkpoints/ │ │ │ └── PP-OCRv2预测部署实战-checkpoint.ipynb │ │ └── PP-OCRv2预测部署实战.ipynb │ ├── 6.document_analysis/ │ │ ├── .ipynb_checkpoints/ │ │ │ ├── 文档分析实战-VQA-checkpoint.ipynb │ │ │ ├── 文档分析实战-表格识别-checkpoint.ipynb │ │ │ └── 文档分析理论-checkpoint.ipynb │ │ ├── 文档分析实战-VQA.ipynb │ │ ├── 文档分析实战-表格识别.ipynb │ │ └── 文档分析理论.ipynb │ └── 如何使用本书.ipynb └── notebook_en/ ├── 1.introduction/ │ └── introduction_to_OCR_technology.ipynb ├── 2.text_detection/ │ ├── text_detection_FAQ.ipynb │ ├── text_detection_practice.ipynb │ └── text_detection_theory.ipynb ├── 3.text_recognition/ │ ├── text_recognition_practice.ipynb │ └── text_recognition_theory.ipynb ├── 4.ppocr_system_strategy/ │ └── ppocr_system_strategy.ipynb ├── 5.ppocrv2_inference_deployment/ │ └── ppocrv2_inference_deployment_practice.ipynb ├── 6.document_analysis/ │ ├── document_analysis_practice-VQA.ipynb │ ├── document_analysis_practice-form_recognition.ipynb │ └── document_analysis_theory.ipynb └── how_to_use_these_notebooks.ipynb