mkdocs.yml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. site_name: PaddleX 文档 #站点名称
  2. site_url: https://paddlepaddle.github.io/PaddleX/
  3. docs_dir: docs # 文档路径
  4. repo_url: https://github.com/PaddlePaddle/PaddleX #仓库地址
  5. edit_uri: edit/develop/docs/ #修改文件的路径
  6. theme:
  7. name: material
  8. # logo: ./static/images/logo.jpg #设置左上角logo
  9. # favicon: ./static/images/logo.jpg
  10. custom_dir: overrides #用于自定义站点效果
  11. features:
  12. - announce.dismiss
  13. - content.action.edit #可以编辑页面源码
  14. - content.action.view #可以查看页面源码
  15. - content.code.annotate
  16. - content.code.copy
  17. # - content.code.select
  18. # - content.footnote.tooltips
  19. # - content.tabs.link
  20. - content.tooltips
  21. # - header.autohide
  22. # - navigation.expand
  23. - navigation.footer
  24. - navigation.indexes
  25. # - navigation.instant
  26. # - navigation.instant.prefetch
  27. # - navigation.instant.progress
  28. # - navigation.prune
  29. - navigation.sections
  30. - navigation.tabs
  31. - navigation.tabs.sticky
  32. - navigation.top
  33. - navigation.tracking
  34. - navigation.expand # 默认打开所有的字节
  35. - navigation.path
  36. - search.highlight
  37. - search.share
  38. - search.suggest
  39. - toc.follow
  40. # - toc.integrate
  41. palette: #设置切换light和dark模式
  42. - media: "(prefers-color-scheme: light)"
  43. scheme: default
  44. primary: indigo
  45. accent: indigo
  46. toggle:
  47. icon: material/weather-sunny
  48. name: Switch to dark mode
  49. - media: "(prefers-color-scheme: dark)"
  50. scheme: slate
  51. primary: black
  52. accent: indigo
  53. toggle:
  54. icon: material/weather-night
  55. name: Switch to system preference
  56. font:
  57. text: Roboto
  58. code: Roboto Mono
  59. favicon: assets/favicon.png
  60. icon:
  61. logo: logo
  62. edit: material/pencil
  63. view: material/eye
  64. repo: fontawesome/brands/github
  65. # Plugins
  66. plugins:
  67. - git-authors
  68. - tags
  69. - offline
  70. - blog
  71. - search:
  72. separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
  73. - i18n: #设置中英文转换
  74. docs_structure: suffix
  75. fallback_to_default: true
  76. reconfigure_material: true
  77. reconfigure_search: true
  78. languages:
  79. - locale: zh
  80. name: 简体中文
  81. default: true
  82. build: true
  83. - locale: en
  84. name: English
  85. site_name: PaddleX Documentation
  86. link: /en/
  87. nav_translations:
  88. Home: Home
  89. 快速开始: Quick Start
  90. 安装: Installation
  91. 安装PaddlePaddle: PaddlePaddle Install
  92. 安装PaddleX: PaddleX Install
  93. 产线使用教程: Pipeline Tutorials
  94. 概述: Overview
  95. 文本图像智能分析: Informatio Extraction
  96. 文档场景信息抽取v3产线: PP-ChatOCRv3-doc
  97. OCR: OCR
  98. 通用OCR产线: OCR
  99. 通用表格识别产线: General Table Recognition
  100. 通用版面解析产线: General Layout Parsing
  101. 公式识别产线: Formula Recognition
  102. 印章文本识别产线: Seal Recognition
  103. 计算机视觉: Computer Vision
  104. 通用图像分类: General Image Classification
  105. 通用目标检测: General Object Detection
  106. 通用实例分割: General Instance Segmentation
  107. 通用语义分割: General Semantic Segmentation
  108. 图像多标签分类: Image Multi-label Classification
  109. 小目标检测: Small Object Detection
  110. 图像异常检测: Image Anomaly Detection
  111. 通用图像识别: Image Feature
  112. 行人属性识别: Pedestrian Attribute Recognition
  113. 车辆属性识别: Vehicle Attribute Recognition
  114. 人脸识别: Face Feature
  115. 时序分析: Time Series Analysis
  116. 时序预测产线: Time Series Forecasting
  117. 时序异常检测产线: Time Series Anomaly Detection
  118. 时序分类产线: Time Series Classification
  119. 说明文件: Instructions
  120. PaddleX产线命令行使用说明: PaddleX Pipeline CLI Usage
  121. PaddleX产线Python脚本使用说明: PaddleX Pipeline Python API Usage
  122. 单功能模块使用教程: Module Tutorials
  123. OCR: OCR
  124. 文本检测模块: Text Detection
  125. 印章文本检测模块: Seal Detection
  126. 文本识别模块: Text Recognition
  127. 版面区域检测模块: Layout Parsing
  128. 表格结构识别模块: Table Structure Recognition
  129. 文档图像方向分类: Document Image Orientation Classification
  130. 文本图像矫正模块: Text Image Unwarping
  131. 公式识别模块: Formula Recognition
  132. 图像分类: Image Classification
  133. 图像分类模块: Image Classification
  134. 图像多标签分类模块: Image Multi-label Classification
  135. 行人属性识别模块: Pedestrian Attribute Recognition
  136. 车辆属性识别模块: Vehicle Attribute Recognition
  137. 图像特征: Image Features
  138. 图像特征模块: Image Feature
  139. 目标检测: Object Detection
  140. 目标检测模块: Object Detection
  141. 小目标检测模块: Small Object Detection
  142. 人脸检测模块: Face Detection
  143. 主体检测模块: Main Body Detection
  144. 行人检测模块: Human Detection
  145. 车辆检测模块: Vehicle Detection
  146. 图像分割: Image Segmentation
  147. 语义分割模块: Semantic Segmentation
  148. 实例分割模块: Instance Segmentation
  149. 图像异常检测模块: Image Anomaly Detection
  150. 时序分析: Time Series Analysis
  151. 时序预测模块: Time Series Forecasting
  152. 时序异常检测模块: Time Series Anomaly Detection
  153. 时序分类模块: Time Series Classification
  154. 说明文件: Instructions
  155. PaddleX单模型Python脚本使用说明: PaddleX Module Python API Usage
  156. PaddleX通用模型配置文件参数说明: PaddleX Common Module Config Parameters
  157. PaddleX时序任务模型配置文件参数说明: PaddleX Time Series Module Config Parameters
  158. 模型产线部署: Pipeline Deploy
  159. 高性能推理: High Performance Inference
  160. 服务化部署: Serving
  161. 端侧部署: Edge Deployment
  162. 多硬件使用: Multi-Device Usage
  163. 多硬件使用指南: Multi-Device Usage Guide
  164. 飞桨多硬件安装: PaddlePaddle Installation on Multiple Devices
  165. 海光 DCU 飞桨安装教程: Haiguang DCU PaddlePaddle Installation Guide
  166. 寒武纪 MLU 飞桨安装教程: Cambricon MLU PaddlePaddle Installation Guide
  167. 昇腾 NPU 飞桨安装教程: Ascend NPU PaddlePaddle Installation Guide
  168. 昆仑 XPU 飞桨安装教程: Kunlun XPU PaddlePaddle Installation Guide
  169. 燧原 GCU 飞桨安装教程: Enflame GCU PaddlePaddle Installation Guide
  170. 数据标注教程: Data Annotation Tutorials
  171. 计算机视觉: Computer Vision
  172. 图像分类任务模块: Image Classification Task
  173. 图像特征任务模块: Image Feature Task
  174. 实例分割任务模块: Instance Segmentation Task
  175. 图像多标签分类: Image Multi-label Classification
  176. 目标检测任务模块: Object Detection Task
  177. 语义分割任务模块: Semantic Segmentation Task
  178. OCR: OCR
  179. 表格识别任务模块: Table Recognition Task
  180. 文本检测/识别任务模块: Text Detection/Recognition Task
  181. 时序分析: Time Series Analysis
  182. 时序异常检测任务模块: Time Series Anomaly Detection Task
  183. 时序分类任务模块: Time Series Classification Task
  184. 时序预测任务模块: Time Series Forecasting Task
  185. 产线列表: Pipeline List
  186. PaddleX产线列表(CPU/GPU): PaddleX Pipeline List (CPU/GPU)
  187. PaddleX产线列表(DCU): PaddleX Pipeline List (DCU)
  188. PaddleX产线列表(MLU): PaddleX Pipeline List (MLU)
  189. PaddleX产线列表(NPU): PaddleX Pipeline List (NPU)
  190. PaddleX产线列表(XPU): PaddleX Pipeline List (XPU)
  191. 模型列表: Model List
  192. PaddleX模型列表(CPU/GPU): PaddleX Model List (CPU/GPU)
  193. PaddleX模型列表(DCU): PaddleX Model List (DCU)
  194. PaddleX模型列表(MLU): PaddleX Model List (MLU)
  195. PaddleX模型列表(NPU): PaddleX Model List (NPU)
  196. PaddleX模型列表(XPU): PaddleX Model List (XPU)
  197. PaddleX模型列表(GCU): PaddleX Model List (GCU)
  198. 产业实践教程&范例: Practical Tutorials & Examples
  199. 论文文献信息抽取教程: Document Scene Information Extraction Tutorial
  200. 垃圾分类教程: Garbage Classification Tutorial
  201. 遥感图像实例分割教程: Remote Sensing Image Instance Segmentation Tutorial
  202. 行人跌倒检测教程: Pedestrian Fall Detection Tutorial
  203. 服装时尚元素检测教程: Fashion Element Detection Tutorial
  204. 车牌识别教程: License Plate Recognition Tutorial
  205. 手写中文识别教程: Handwritten Chinese Recognition Tutorial
  206. 车道线分割教程: Lane Line Segmentation Tutorial
  207. 设备异常检测应用教程: Equipment Anomaly Detection Application Tutorial
  208. 心跳监测时序数据分类应用教程: Heartbeat Monitoring Time Series Data Classification Application Tutorial
  209. 用电量长期预测应用教程: Long-term Electricity Consumption Forecasting Application Tutorial
  210. 多语种语音识别模块: Multilingual Speech Recognition Task
  211. FAQ: FAQ
  212. 近期更新: Recently Update
  213. repository: PaddlePaddle/PaddleX #仓库名称
  214. branch: release/3.0-beta2 #仓库分支
  215. - git-revision-date-localized: #显示更新时间
  216. enable_creation_date: true
  217. # Additional configuration
  218. extra:
  219. version:
  220. provider: mike #显示版本
  221. status:
  222. new: Recently added
  223. deprecated: Deprecated
  224. analytics:
  225. provider: google
  226. property: !ENV GOOGLE_ANALYTICS_KEY
  227. social:
  228. - icon: fontawesome/brands/github
  229. link: https://github.com/PaddlePaddle/PaddleX
  230. extra_javascript:
  231. - javascripts/katex.min.js
  232. - https://unpkg.com/katex@0/dist/katex.min.js
  233. - https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
  234. extra_css:
  235. - https://unpkg.com/katex@0/dist/katex.min.css
  236. # Extensions
  237. markdown_extensions:
  238. - abbr
  239. - admonition
  240. - attr_list
  241. - def_list
  242. - footnotes
  243. - md_in_html
  244. - toc:
  245. permalink: true
  246. - pymdownx.arithmatex:
  247. generic: true
  248. - pymdownx.betterem:
  249. smart_enable: all
  250. - pymdownx.caret
  251. - pymdownx.details
  252. - pymdownx.emoji:
  253. emoji_generator: !!python/name:material.extensions.emoji.to_svg
  254. emoji_index: !!python/name:material.extensions.emoji.twemoji
  255. - pymdownx.highlight:
  256. anchor_linenums: true
  257. line_spans: __span
  258. pygments_lang_class: true
  259. - pymdownx.inlinehilite
  260. - pymdownx.keys
  261. - pymdownx.magiclink:
  262. normalize_issue_symbols: true
  263. repo_url_shorthand: true
  264. user: squidfunk
  265. repo: mkdocs-material
  266. - pymdownx.mark
  267. - pymdownx.smartsymbols
  268. - pymdownx.snippets:
  269. auto_append:
  270. - includes/mkdocs.md
  271. - pymdownx.superfences:
  272. custom_fences:
  273. - name: mermaid
  274. class: mermaid
  275. format: !!python/name:pymdownx.superfences.fence_code_format
  276. - pymdownx.tabbed:
  277. alternate_style: true
  278. combine_header_slug: true
  279. slugify: !!python/object/apply:pymdownx.slugs.slugify
  280. kwds:
  281. case: lower
  282. - pymdownx.tasklist:
  283. custom_checkbox: true
  284. - pymdownx.tilde
  285. # 页面结构
  286. nav:
  287. - Home: index.md
  288. - 安装:
  289. - 安装PaddlePaddle: installation/paddlepaddle_install.md
  290. - 安装PaddleX: installation/installation.md
  291. - 产线使用教程:
  292. - 概述: pipeline_usage/pipeline_develop_guide.md
  293. - 文本图像智能分析:
  294. - 文档场景信息抽取v3产线: pipeline_usage/tutorials/information_extraction_pipelines/document_scene_information_extraction.md
  295. - OCR:
  296. - 通用OCR产线: pipeline_usage/tutorials/ocr_pipelines/OCR.md
  297. - 通用表格识别产线: pipeline_usage/tutorials/ocr_pipelines/table_recognition.md
  298. - 通用版面解析产线: pipeline_usage/tutorials/ocr_pipelines/layout_parsing.md
  299. - 公式识别产线: pipeline_usage/tutorials/ocr_pipelines/formula_recognition.md
  300. - 印章文本识别产线: pipeline_usage/tutorials/ocr_pipelines/seal_recognition.md
  301. - 计算机视觉:
  302. - 通用图像分类: pipeline_usage/tutorials/cv_pipelines/image_classification.md
  303. - 通用目标检测: pipeline_usage/tutorials/cv_pipelines/object_detection.md
  304. - 通用实例分割: pipeline_usage/tutorials/cv_pipelines/instance_segmentation.md
  305. - 通用语义分割: pipeline_usage/tutorials/cv_pipelines/semantic_segmentation.md
  306. - 图像多标签分类: pipeline_usage/tutorials/cv_pipelines/image_multi_label_classification.md
  307. - 小目标检测: pipeline_usage/tutorials/cv_pipelines/small_object_detection.md
  308. - 图像异常检测: pipeline_usage/tutorials/cv_pipelines/image_anomaly_detection.md
  309. - 通用图像识别: pipeline_usage/tutorials/cv_pipelines/general_image_recognition.md
  310. - 行人属性识别: pipeline_usage/tutorials/cv_pipelines/pedestrian_attribute_recognition.md
  311. - 车辆属性识别: pipeline_usage/tutorials/cv_pipelines/vehicle_attribute_recognition.md
  312. - 人脸识别: pipeline_usage/tutorials/cv_pipelines/face_recognition.md
  313. - 时序分析:
  314. - 时序预测产线: pipeline_usage/tutorials/time_series_pipelines/time_series_forecasting.md
  315. - 时序异常检测产线: pipeline_usage/tutorials/time_series_pipelines/time_series_anomaly_detection.md
  316. - 时序分类产线: pipeline_usage/tutorials/time_series_pipelines/time_series_classification.md
  317. - 说明文件:
  318. - PaddleX产线命令行使用说明: pipeline_usage/instructions/pipeline_CLI_usage.md
  319. - PaddleX产线Python脚本使用说明: pipeline_usage/instructions/pipeline_python_API.md
  320. - 单功能模块使用教程:
  321. - OCR:
  322. - 文本检测模块: module_usage/tutorials/ocr_modules/text_detection.md
  323. - 印章文本检测模块: module_usage/tutorials/ocr_modules/seal_text_detection.md
  324. - 文本识别模块: module_usage/tutorials/ocr_modules/text_recognition.md
  325. - 版面区域检测模块: module_usage/tutorials/ocr_modules/layout_detection.md
  326. - 表格结构识别模块: module_usage/tutorials/ocr_modules/table_structure_recognition.md
  327. - 文档图像方向分类: module_usage/tutorials/ocr_modules/doc_img_orientation_classification.md
  328. - 文本图像矫正模块: module_usage/tutorials/ocr_modules/text_image_unwarping.md
  329. - 公式识别模块: module_usage/tutorials/ocr_modules/formula_recognition.md
  330. - 图像分类:
  331. - 图像分类模块: module_usage/tutorials/cv_modules/image_classification.md
  332. - 图像多标签分类模块: module_usage/tutorials/cv_modules/image_multilabel_classification.md
  333. - 行人属性识别模块: module_usage/tutorials/cv_modules/pedestrian_attribute_recognition.md
  334. - 车辆属性识别模块: module_usage/tutorials/cv_modules/vehicle_attribute_recognition.md
  335. - 图像特征:
  336. - 图像特征模块: module_usage/tutorials/cv_modules/image_feature.md
  337. - 人脸特征模块: module_usage/tutorials/cv_modules/face_feature.md
  338. - 目标检测:
  339. - 目标检测模块: module_usage/tutorials/cv_modules/object_detection.md
  340. - 小目标检测模块: module_usage/tutorials/cv_modules/small_object_detection.md
  341. - 人脸检测模块: module_usage/tutorials/cv_modules/face_detection.md
  342. - 主体检测模块: module_usage/tutorials/cv_modules/mainbody_detection.md
  343. - 行人检测模块: module_usage/tutorials/cv_modules/human_detection.md
  344. - 车辆检测模块: module_usage/tutorials/cv_modules/vehicle_detection.md
  345. - 图像分割:
  346. - 语义分割模块: module_usage/tutorials/cv_modules/semantic_segmentation.md
  347. - 实例分割模块: module_usage/tutorials/cv_modules/instance_segmentation.md
  348. - 图像异常检测模块: module_usage/tutorials/cv_modules/anomaly_detection.md
  349. - 时序分析:
  350. - 时序预测模块: module_usage/tutorials/time_series_modules/time_series_forecasting.md
  351. - 时序异常检测模块: module_usage/tutorials/time_series_modules/time_series_anomaly_detection.md
  352. - 时序分类模块: module_usage/tutorials/time_series_modules/time_series_classification.md
  353. - 语音识别:
  354. - 多语种语音识别模块: module_usage/tutorials/speech_modules/multilingual_speech_recognition.md
  355. - 3D检测:
  356. - BEV融合3D检测模块: module_usage/tutorials/cv_modules/3d_bev_detection.md
  357. - 说明文件:
  358. - PaddleX单模型Python脚本使用说明: module_usage/instructions/model_python_API.md
  359. - PaddleX通用模型配置文件参数说明: module_usage/instructions/config_parameters_common.md
  360. - PaddleX时序任务模型配置文件参数说明: module_usage/instructions/config_parameters_time_series.md
  361. - 模型产线部署:
  362. - 高性能推理: pipeline_deploy/high_performance_inference.md
  363. - 服务化部署: pipeline_deploy/serving.md
  364. - 端侧部署: pipeline_deploy/edge_deploy.md
  365. - 多硬件使用:
  366. - 多硬件使用指南: other_devices_support/multi_devices_use_guide.md
  367. - 飞桨多硬件安装:
  368. - 海光 DCU 飞桨安装教程: other_devices_support/paddlepaddle_install_DCU.md
  369. - 寒武纪 MLU 飞桨安装教程: other_devices_support/paddlepaddle_install_MLU.md
  370. - 昇腾 NPU 飞桨安装教程: other_devices_support/paddlepaddle_install_NPU.md
  371. - 昆仑 XPU 飞桨安装教程: other_devices_support/paddlepaddle_install_XPU.md
  372. - 燧原 GCU 飞桨安装教程: other_devices_support/paddlepaddle_install_GCU.md
  373. - 数据标注教程:
  374. - 计算机视觉:
  375. - 图像分类任务模块: data_annotations/cv_modules/image_classification.md
  376. - 图像特征任务模块: data_annotations/cv_modules/image_feature.md
  377. - 实例分割任务模块: data_annotations/cv_modules/instance_segmentation.md
  378. - 图像多标签分类: data_annotations/cv_modules/ml_classification.md
  379. - 目标检测任务模块: data_annotations/cv_modules/object_detection.md
  380. - 语义分割任务模块: data_annotations/cv_modules/semantic_segmentation.md
  381. - OCR:
  382. - 表格识别任务模块: data_annotations/ocr_modules/table_recognition.md
  383. - 文本检测/识别任务模块: data_annotations/ocr_modules/text_detection_recognition.md
  384. - 时序分析:
  385. - 时序异常检测任务模块: data_annotations/time_series_modules/time_series_anomaly_detection.md
  386. - 时序分类任务模块: data_annotations/time_series_modules/time_series_classification.md
  387. - 时序预测任务模块: data_annotations/time_series_modules/time_series_forecasting.md
  388. - 产线列表:
  389. - PaddleX产线列表(CPU/GPU): support_list/pipelines_list.md
  390. - PaddleX产线列表(DCU): support_list/pipelines_list_dcu.md
  391. - PaddleX产线列表(MLU): support_list/pipelines_list_mlu.md
  392. - PaddleX产线列表(NPU): support_list/pipelines_list_npu.md
  393. - PaddleX产线列表(XPU): support_list/pipelines_list_xpu.md
  394. - 模型列表:
  395. - PaddleX模型列表(CPU/GPU): support_list/models_list.md
  396. - PaddleX模型列表(DCU): support_list/model_list_dcu.md
  397. - PaddleX模型列表(MLU): support_list/model_list_mlu.md
  398. - PaddleX模型列表(NPU): support_list/model_list_npu.md
  399. - PaddleX模型列表(XPU): support_list/model_list_xpu.md
  400. - PaddleX模型列表(GCU): support_list/model_list_gcu.md
  401. - 产业实践教程&范例:
  402. - 论文文献信息抽取教程: practical_tutorials/document_scene_information_extraction(layout_detection)_tutorial.md
  403. - 垃圾分类教程: practical_tutorials/image_classification_garbage_tutorial.md
  404. - 遥感图像实例分割教程: practical_tutorials/instance_segmentation_remote_sensing_tutorial.md
  405. - 行人跌倒检测教程: practical_tutorials/object_detection_fall_tutorial.md
  406. - 服装时尚元素检测教程: practical_tutorials/object_detection_fashion_pedia_tutorial.md
  407. - 车牌识别教程: practical_tutorials/ocr_det_license_tutorial.md
  408. - 手写中文识别教程: practical_tutorials/ocr_rec_chinese_tutorial.md
  409. - 车道线分割教程: practical_tutorials/semantic_segmentation_road_tutorial.md
  410. - 设备异常检测应用教程: practical_tutorials/ts_anomaly_detection.md
  411. - 心跳监测时序数据分类应用教程: practical_tutorials/ts_classification.md
  412. - 用电量长期预测应用教程: practical_tutorials/ts_forecast.md
  413. - FAQ: FAQ.md
  414. - 近期更新: CHANGLOG.md