add the overview of module and pipeline (#15444)

* add the overview of module and pipeline

* update

* add en docs

* add the doc of python and cpp inference
This commit is contained in:
zhang-prog 2025-05-28 10:22:30 +08:00 committed by GitHub
parent 9ccb2082b2
commit fcd7cea732
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# 基于Python或C++预测引擎推理
自 2.x 分支以来,基于 Python 或 C++ 的预测引擎推理一直是一项重要功能。该功能允许用户在无需安装 wheel 包的情况下加载OCR相关模型并进行推理。有关具体使用方法请参考以下文档
* [基于Python预测引擎推理](../../version2.x/legacy/python_infer.md)
* [基于C++预测引擎推理](../../version2.x/legacy/cpp_infer.md)
* [支持的模型列表](../../version2.x/legacy/model_list_2.x.md)

View File

@ -0,0 +1,3 @@
# Module Overview
A module is the smallest unit that implements basic functionality. Modules typically use a single model to accomplish specific tasks, such as text detection, image classification, and other basic functions. As fundamental building blocks, modules provide the necessary functional support for more complex application scenarios. This design approach allows users to flexibly select and combine different modules according to their needs, thereby simplifying the development process and enhancing development flexibility and efficiency.

View File

@ -0,0 +1,3 @@
# 模块概述
模块是实现基本功能的最小单位。模块通常使用单个模型去完成特定的任务,比如文本检测、图像分类等基本功能。模块作为基础构建单元,为更复杂的应用场景提供了必要的功能支持。这种设计方式使得用户可以根据需要灵活选择和组合不同的模块,从而简化了开发流程,并提高了开发的灵活性和效率。

View File

@ -0,0 +1,3 @@
# Pipeline Overview
A pipeline is a practical functional implementation composed of one or more modules. Through reasonable module combination and configuration, pipelines can meet the needs of complex application scenarios, such as technological applications like Optical Character Recognition (OCR). Pipelines not only demonstrate the integrated application of basic modules but also support capabilities such as high-performance inference and service-oriented deployment, providing users with higher development efficiency and broader application possibilities.

View File

@ -0,0 +1,3 @@
# 产线概述
产线是由一个或多个模块组合而成的实际功能实现。通过合理的模块组合与配置产线能够满足复杂应用场景的需求比如光学字符识别OCR等技术应用。产线不仅体现了基础模块的整合应用还支持高性能推理和服务化部署等能力赋予用户更高的开发效率和更广泛的应用可能性。

View File

@ -167,6 +167,9 @@ plugins:
社区贡献: Community Contribution
附录: Appendix
配置 PaddleOCR 推理包日志系统: Configure the logging system for the PaddleOCR inference package
模块概述: Module Overview
产线概述: Pipeline Overview
基于Python或C++预测引擎推理: Python and CPP Inference
# - locale: ja
# name: 日本語
# site_name: PaddleOCR ドキュメント
@ -274,7 +277,9 @@ nav:
- 获取onnx模型: version3.x/deployment/obtaining_onnx_models.md
- 端侧部署: version3.x/deployment/on_device_deployment.md
- 服务化部署: version3.x/deployment/serving.md
- 基于Python或C++预测引擎推理: version3.x/deployment/python_and_cpp_infer.md
- 模块列表:
- 模块概述: version3.x/module_usage/module_overview.md
- 文档图像方向分类模块: version3.x/module_usage/doc_img_orientation_classification.md
- 文档类视觉语言模型模块: version3.x/module_usage/doc_vlm.md
- 公式识别模块: version3.x/module_usage/formula_recognition.md
@ -288,6 +293,7 @@ nav:
- 文本行方向分类模块: version3.x/module_usage/text_line_orientation_classification.md
- 文本识别模块: version3.x/module_usage/text_recognition.md
- 产线列表:
- 产线概述: version3.x/pipeline_usage/pipeline_overview.md
- 公式识别产线: version3.x/pipeline_usage/formula_recognition.md
- 文档图像预处理产线: version3.x/pipeline_usage/doc_preprocessor.md
- 文档理解产线: version3.x/pipeline_usage/doc_understanding.md