paddlex 3.0.0rc0__py3-none-any.whl → 3.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (824) hide show
  1. paddlex/.version +1 -1
  2. paddlex/__init__.py +17 -34
  3. paddlex/__main__.py +1 -1
  4. paddlex/configs/modules/chart_parsing/PP-Chart2Table.yaml +13 -0
  5. paddlex/configs/modules/doc_vlm/PP-DocBee-2B.yaml +14 -0
  6. paddlex/configs/modules/doc_vlm/PP-DocBee-7B.yaml +14 -0
  7. paddlex/configs/modules/doc_vlm/PP-DocBee2-3B.yaml +14 -0
  8. paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-L.yaml +40 -0
  9. paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-M.yaml +40 -0
  10. paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-S.yaml +40 -0
  11. paddlex/configs/modules/layout_detection/PP-DocBlockLayout.yaml +40 -0
  12. paddlex/configs/modules/layout_detection/PP-DocLayout-L.yaml +2 -2
  13. paddlex/configs/modules/layout_detection/PP-DocLayout-M.yaml +2 -2
  14. paddlex/configs/modules/layout_detection/PP-DocLayout-S.yaml +2 -2
  15. paddlex/configs/modules/layout_detection/PP-DocLayout_plus-L.yaml +40 -0
  16. paddlex/configs/modules/open_vocabulary_detection/YOLO-Worldv2-L.yaml +13 -0
  17. paddlex/configs/modules/text_detection/PP-OCRv5_mobile_det.yaml +40 -0
  18. paddlex/configs/modules/text_detection/PP-OCRv5_server_det.yaml +40 -0
  19. paddlex/configs/modules/text_recognition/PP-OCRv5_mobile_rec.yaml +39 -0
  20. paddlex/configs/modules/text_recognition/PP-OCRv5_server_rec.yaml +39 -0
  21. paddlex/configs/modules/textline_orientation/PP-LCNet_x1_0_textline_ori.yaml +41 -0
  22. paddlex/configs/pipelines/OCR.yaml +7 -6
  23. paddlex/configs/pipelines/PP-ChatOCRv3-doc.yaml +3 -1
  24. paddlex/configs/pipelines/PP-ChatOCRv4-doc.yaml +91 -34
  25. paddlex/configs/pipelines/PP-StructureV3.yaml +72 -72
  26. paddlex/configs/pipelines/anomaly_detection.yaml +1 -1
  27. paddlex/configs/pipelines/doc_understanding.yaml +9 -0
  28. paddlex/configs/pipelines/formula_recognition.yaml +2 -2
  29. paddlex/configs/pipelines/layout_parsing.yaml +3 -2
  30. paddlex/configs/pipelines/seal_recognition.yaml +1 -0
  31. paddlex/configs/pipelines/table_recognition.yaml +2 -1
  32. paddlex/configs/pipelines/table_recognition_v2.yaml +7 -1
  33. paddlex/configs/pipelines/ts_anomaly_detection.yaml +1 -1
  34. paddlex/configs/pipelines/ts_classification.yaml +1 -1
  35. paddlex/configs/pipelines/ts_forecast.yaml +1 -1
  36. paddlex/constants.py +17 -0
  37. paddlex/engine.py +7 -5
  38. paddlex/hpip_links.html +23 -11
  39. paddlex/inference/__init__.py +3 -3
  40. paddlex/inference/common/__init__.py +1 -1
  41. paddlex/inference/common/batch_sampler/__init__.py +5 -4
  42. paddlex/inference/common/batch_sampler/audio_batch_sampler.py +5 -6
  43. paddlex/inference/common/batch_sampler/base_batch_sampler.py +20 -16
  44. paddlex/inference/common/batch_sampler/det_3d_batch_sampler.py +4 -7
  45. paddlex/inference/common/batch_sampler/doc_vlm_batch_sampler.py +87 -0
  46. paddlex/inference/common/batch_sampler/image_batch_sampler.py +45 -60
  47. paddlex/inference/common/batch_sampler/ts_batch_sampler.py +9 -10
  48. paddlex/inference/common/batch_sampler/video_batch_sampler.py +2 -22
  49. paddlex/inference/common/reader/__init__.py +4 -4
  50. paddlex/inference/common/reader/audio_reader.py +3 -3
  51. paddlex/inference/common/reader/det_3d_reader.py +7 -5
  52. paddlex/inference/common/reader/image_reader.py +16 -12
  53. paddlex/inference/common/reader/ts_reader.py +3 -2
  54. paddlex/inference/common/reader/video_reader.py +3 -3
  55. paddlex/inference/common/result/__init__.py +7 -7
  56. paddlex/inference/common/result/base_cv_result.py +12 -2
  57. paddlex/inference/common/result/base_result.py +7 -5
  58. paddlex/inference/common/result/base_ts_result.py +1 -2
  59. paddlex/inference/common/result/base_video_result.py +2 -2
  60. paddlex/inference/common/result/mixin.py +31 -25
  61. paddlex/inference/models/__init__.py +41 -85
  62. paddlex/inference/models/anomaly_detection/__init__.py +1 -1
  63. paddlex/inference/models/anomaly_detection/predictor.py +9 -19
  64. paddlex/inference/models/anomaly_detection/processors.py +9 -2
  65. paddlex/inference/models/anomaly_detection/result.py +3 -2
  66. paddlex/inference/models/base/__init__.py +2 -2
  67. paddlex/inference/models/base/predictor/__init__.py +1 -2
  68. paddlex/inference/models/base/predictor/base_predictor.py +278 -39
  69. paddlex/inference/models/common/__init__.py +6 -15
  70. paddlex/inference/models/common/static_infer.py +724 -251
  71. paddlex/inference/models/common/tokenizer/__init__.py +7 -3
  72. paddlex/inference/models/common/tokenizer/bert_tokenizer.py +1 -1
  73. paddlex/inference/models/common/tokenizer/clip_tokenizer.py +609 -0
  74. paddlex/inference/models/common/tokenizer/gpt_tokenizer.py +9 -7
  75. paddlex/inference/models/common/tokenizer/qwen2_5_tokenizer.py +112 -0
  76. paddlex/inference/models/common/tokenizer/qwen2_tokenizer.py +438 -0
  77. paddlex/inference/models/common/tokenizer/qwen_tokenizer.py +288 -0
  78. paddlex/inference/models/common/tokenizer/tokenizer_utils.py +85 -77
  79. paddlex/inference/models/common/tokenizer/tokenizer_utils_base.py +339 -123
  80. paddlex/inference/models/common/tokenizer/utils.py +1 -1
  81. paddlex/inference/models/common/tokenizer/vocab.py +8 -8
  82. paddlex/inference/models/common/ts/__init__.py +1 -1
  83. paddlex/inference/models/common/ts/funcs.py +13 -6
  84. paddlex/inference/models/common/ts/processors.py +14 -5
  85. paddlex/inference/models/common/vision/__init__.py +3 -3
  86. paddlex/inference/models/common/vision/funcs.py +17 -12
  87. paddlex/inference/models/common/vision/processors.py +61 -46
  88. paddlex/inference/models/common/vlm/__init__.py +13 -0
  89. paddlex/inference/models/common/vlm/activations.py +189 -0
  90. paddlex/inference/models/common/vlm/bert_padding.py +127 -0
  91. paddlex/inference/models/common/vlm/conversion_utils.py +99 -0
  92. paddlex/inference/models/common/vlm/distributed.py +229 -0
  93. paddlex/inference/models/common/vlm/flash_attn_utils.py +119 -0
  94. paddlex/inference/models/common/vlm/fusion_ops.py +205 -0
  95. paddlex/inference/models/common/vlm/generation/__init__.py +34 -0
  96. paddlex/inference/models/common/vlm/generation/configuration_utils.py +533 -0
  97. paddlex/inference/models/common/vlm/generation/logits_process.py +730 -0
  98. paddlex/inference/models/common/vlm/generation/stopping_criteria.py +106 -0
  99. paddlex/inference/models/common/vlm/generation/utils.py +2162 -0
  100. paddlex/inference/models/common/vlm/transformers/__init__.py +16 -0
  101. paddlex/inference/models/common/vlm/transformers/configuration_utils.py +1037 -0
  102. paddlex/inference/models/common/vlm/transformers/conversion_utils.py +408 -0
  103. paddlex/inference/models/common/vlm/transformers/model_outputs.py +1612 -0
  104. paddlex/inference/models/common/vlm/transformers/model_utils.py +2014 -0
  105. paddlex/inference/models/common/vlm/transformers/utils.py +178 -0
  106. paddlex/inference/models/common/vlm/utils.py +109 -0
  107. paddlex/inference/models/doc_vlm/__init__.py +15 -0
  108. paddlex/inference/models/doc_vlm/modeling/GOT_ocr_2_0.py +830 -0
  109. paddlex/inference/models/doc_vlm/modeling/__init__.py +17 -0
  110. paddlex/inference/models/doc_vlm/modeling/qwen2.py +1606 -0
  111. paddlex/inference/models/doc_vlm/modeling/qwen2_5_vl.py +3006 -0
  112. paddlex/inference/models/doc_vlm/modeling/qwen2_vl.py +2495 -0
  113. paddlex/inference/models/doc_vlm/predictor.py +253 -0
  114. paddlex/inference/models/doc_vlm/processors/GOT_ocr_2_0.py +97 -0
  115. paddlex/inference/models/doc_vlm/processors/__init__.py +17 -0
  116. paddlex/inference/models/doc_vlm/processors/common.py +561 -0
  117. paddlex/inference/models/doc_vlm/processors/qwen2_5_vl.py +548 -0
  118. paddlex/inference/models/doc_vlm/processors/qwen2_vl.py +543 -0
  119. paddlex/inference/models/doc_vlm/result.py +21 -0
  120. paddlex/inference/models/face_feature/__init__.py +1 -1
  121. paddlex/inference/models/face_feature/predictor.py +2 -1
  122. paddlex/inference/models/formula_recognition/__init__.py +1 -1
  123. paddlex/inference/models/formula_recognition/predictor.py +18 -28
  124. paddlex/inference/models/formula_recognition/processors.py +126 -97
  125. paddlex/inference/models/formula_recognition/result.py +43 -35
  126. paddlex/inference/models/image_classification/__init__.py +1 -1
  127. paddlex/inference/models/image_classification/predictor.py +9 -19
  128. paddlex/inference/models/image_classification/processors.py +4 -2
  129. paddlex/inference/models/image_classification/result.py +4 -3
  130. paddlex/inference/models/image_feature/__init__.py +1 -1
  131. paddlex/inference/models/image_feature/predictor.py +9 -19
  132. paddlex/inference/models/image_feature/processors.py +7 -5
  133. paddlex/inference/models/image_feature/result.py +2 -3
  134. paddlex/inference/models/image_multilabel_classification/__init__.py +1 -1
  135. paddlex/inference/models/image_multilabel_classification/predictor.py +7 -6
  136. paddlex/inference/models/image_multilabel_classification/processors.py +6 -2
  137. paddlex/inference/models/image_multilabel_classification/result.py +4 -3
  138. paddlex/inference/models/image_unwarping/__init__.py +1 -1
  139. paddlex/inference/models/image_unwarping/predictor.py +8 -16
  140. paddlex/inference/models/image_unwarping/processors.py +6 -2
  141. paddlex/inference/models/image_unwarping/result.py +4 -2
  142. paddlex/inference/models/instance_segmentation/__init__.py +1 -1
  143. paddlex/inference/models/instance_segmentation/predictor.py +7 -15
  144. paddlex/inference/models/instance_segmentation/processors.py +4 -7
  145. paddlex/inference/models/instance_segmentation/result.py +11 -10
  146. paddlex/inference/models/keypoint_detection/__init__.py +1 -1
  147. paddlex/inference/models/keypoint_detection/predictor.py +5 -3
  148. paddlex/inference/models/keypoint_detection/processors.py +11 -3
  149. paddlex/inference/models/keypoint_detection/result.py +9 -4
  150. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/__init__.py +1 -1
  151. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/predictor.py +15 -26
  152. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/processors.py +26 -14
  153. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/result.py +15 -12
  154. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/visualizer_3d.py +77 -39
  155. paddlex/inference/models/multilingual_speech_recognition/__init__.py +1 -1
  156. paddlex/inference/models/multilingual_speech_recognition/predictor.py +11 -15
  157. paddlex/inference/models/multilingual_speech_recognition/processors.py +45 -53
  158. paddlex/inference/models/multilingual_speech_recognition/result.py +1 -1
  159. paddlex/inference/models/object_detection/__init__.py +1 -1
  160. paddlex/inference/models/object_detection/predictor.py +8 -12
  161. paddlex/inference/models/object_detection/processors.py +63 -33
  162. paddlex/inference/models/object_detection/result.py +5 -4
  163. paddlex/inference/models/object_detection/utils.py +3 -1
  164. paddlex/inference/models/open_vocabulary_detection/__init__.py +1 -1
  165. paddlex/inference/models/open_vocabulary_detection/predictor.py +31 -14
  166. paddlex/inference/models/open_vocabulary_detection/processors/__init__.py +3 -2
  167. paddlex/inference/models/open_vocabulary_detection/processors/common.py +114 -0
  168. paddlex/inference/models/open_vocabulary_detection/processors/groundingdino_processors.py +19 -8
  169. paddlex/inference/models/open_vocabulary_detection/processors/yoloworld_processors.py +209 -0
  170. paddlex/inference/models/open_vocabulary_segmentation/__init__.py +1 -1
  171. paddlex/inference/models/open_vocabulary_segmentation/predictor.py +6 -13
  172. paddlex/inference/models/open_vocabulary_segmentation/processors/__init__.py +1 -1
  173. paddlex/inference/models/open_vocabulary_segmentation/processors/sam_processer.py +12 -12
  174. paddlex/inference/models/open_vocabulary_segmentation/results/__init__.py +1 -1
  175. paddlex/inference/models/open_vocabulary_segmentation/results/sam_result.py +11 -9
  176. paddlex/inference/models/semantic_segmentation/__init__.py +1 -1
  177. paddlex/inference/models/semantic_segmentation/predictor.py +9 -18
  178. paddlex/inference/models/semantic_segmentation/processors.py +11 -8
  179. paddlex/inference/models/semantic_segmentation/result.py +4 -3
  180. paddlex/inference/models/table_structure_recognition/__init__.py +1 -1
  181. paddlex/inference/models/table_structure_recognition/predictor.py +8 -18
  182. paddlex/inference/models/table_structure_recognition/processors.py +23 -29
  183. paddlex/inference/models/table_structure_recognition/result.py +8 -15
  184. paddlex/inference/models/text_detection/__init__.py +1 -1
  185. paddlex/inference/models/text_detection/predictor.py +24 -24
  186. paddlex/inference/models/text_detection/processors.py +116 -44
  187. paddlex/inference/models/text_detection/result.py +8 -13
  188. paddlex/inference/models/text_recognition/__init__.py +1 -1
  189. paddlex/inference/models/text_recognition/predictor.py +11 -19
  190. paddlex/inference/models/text_recognition/processors.py +27 -13
  191. paddlex/inference/models/text_recognition/result.py +3 -2
  192. paddlex/inference/models/ts_anomaly_detection/__init__.py +1 -1
  193. paddlex/inference/models/ts_anomaly_detection/predictor.py +12 -17
  194. paddlex/inference/models/ts_anomaly_detection/processors.py +6 -2
  195. paddlex/inference/models/ts_anomaly_detection/result.py +21 -10
  196. paddlex/inference/models/ts_classification/__init__.py +1 -1
  197. paddlex/inference/models/ts_classification/predictor.py +14 -27
  198. paddlex/inference/models/ts_classification/processors.py +7 -2
  199. paddlex/inference/models/ts_classification/result.py +21 -12
  200. paddlex/inference/models/ts_forecasting/__init__.py +1 -1
  201. paddlex/inference/models/ts_forecasting/predictor.py +13 -18
  202. paddlex/inference/models/ts_forecasting/processors.py +12 -3
  203. paddlex/inference/models/ts_forecasting/result.py +24 -11
  204. paddlex/inference/models/video_classification/__init__.py +1 -1
  205. paddlex/inference/models/video_classification/predictor.py +9 -15
  206. paddlex/inference/models/video_classification/processors.py +24 -24
  207. paddlex/inference/models/video_classification/result.py +7 -3
  208. paddlex/inference/models/video_detection/__init__.py +1 -1
  209. paddlex/inference/models/video_detection/predictor.py +8 -15
  210. paddlex/inference/models/video_detection/processors.py +24 -11
  211. paddlex/inference/models/video_detection/result.py +10 -5
  212. paddlex/inference/pipelines/__init__.py +48 -37
  213. paddlex/inference/pipelines/_parallel.py +172 -0
  214. paddlex/inference/pipelines/anomaly_detection/__init__.py +1 -1
  215. paddlex/inference/pipelines/anomaly_detection/pipeline.py +29 -9
  216. paddlex/inference/pipelines/attribute_recognition/__init__.py +1 -1
  217. paddlex/inference/pipelines/attribute_recognition/pipeline.py +24 -9
  218. paddlex/inference/pipelines/attribute_recognition/result.py +10 -8
  219. paddlex/inference/pipelines/base.py +43 -13
  220. paddlex/inference/pipelines/components/__init__.py +14 -8
  221. paddlex/inference/pipelines/components/chat_server/__init__.py +1 -1
  222. paddlex/inference/pipelines/components/chat_server/base.py +2 -2
  223. paddlex/inference/pipelines/components/chat_server/openai_bot_chat.py +8 -8
  224. paddlex/inference/pipelines/components/common/__init__.py +5 -4
  225. paddlex/inference/pipelines/components/common/base_operator.py +2 -1
  226. paddlex/inference/pipelines/components/common/base_result.py +3 -2
  227. paddlex/inference/pipelines/components/common/convert_points_and_boxes.py +1 -2
  228. paddlex/inference/pipelines/components/common/crop_image_regions.py +11 -5
  229. paddlex/inference/pipelines/components/common/seal_det_warp.py +44 -13
  230. paddlex/inference/pipelines/components/common/sort_boxes.py +4 -2
  231. paddlex/inference/pipelines/components/common/warp_image.py +50 -0
  232. paddlex/inference/pipelines/components/faisser.py +10 -5
  233. paddlex/inference/pipelines/components/prompt_engineering/__init__.py +2 -2
  234. paddlex/inference/pipelines/components/prompt_engineering/base.py +2 -2
  235. paddlex/inference/pipelines/components/prompt_engineering/generate_ensemble_prompt.py +2 -1
  236. paddlex/inference/pipelines/components/prompt_engineering/generate_kie_prompt.py +2 -2
  237. paddlex/inference/pipelines/components/retriever/__init__.py +2 -2
  238. paddlex/inference/pipelines/components/retriever/base.py +18 -16
  239. paddlex/inference/pipelines/components/retriever/openai_bot_retriever.py +2 -2
  240. paddlex/inference/pipelines/components/retriever/qianfan_bot_retriever.py +87 -84
  241. paddlex/inference/pipelines/components/utils/__init__.py +1 -1
  242. paddlex/inference/pipelines/components/utils/mixin.py +7 -7
  243. paddlex/inference/pipelines/doc_preprocessor/__init__.py +1 -1
  244. paddlex/inference/pipelines/doc_preprocessor/pipeline.py +70 -51
  245. paddlex/inference/pipelines/doc_preprocessor/result.py +5 -10
  246. paddlex/inference/pipelines/doc_understanding/__init__.py +15 -0
  247. paddlex/inference/pipelines/doc_understanding/pipeline.py +71 -0
  248. paddlex/inference/pipelines/face_recognition/__init__.py +1 -1
  249. paddlex/inference/pipelines/face_recognition/pipeline.py +3 -1
  250. paddlex/inference/pipelines/face_recognition/result.py +3 -2
  251. paddlex/inference/pipelines/formula_recognition/__init__.py +1 -1
  252. paddlex/inference/pipelines/formula_recognition/pipeline.py +137 -93
  253. paddlex/inference/pipelines/formula_recognition/result.py +20 -29
  254. paddlex/inference/pipelines/image_classification/__init__.py +1 -1
  255. paddlex/inference/pipelines/image_classification/pipeline.py +30 -11
  256. paddlex/inference/pipelines/image_multilabel_classification/__init__.py +1 -1
  257. paddlex/inference/pipelines/image_multilabel_classification/pipeline.py +31 -12
  258. paddlex/inference/pipelines/instance_segmentation/__init__.py +1 -1
  259. paddlex/inference/pipelines/instance_segmentation/pipeline.py +30 -9
  260. paddlex/inference/pipelines/keypoint_detection/__init__.py +1 -1
  261. paddlex/inference/pipelines/keypoint_detection/pipeline.py +30 -9
  262. paddlex/inference/pipelines/layout_parsing/__init__.py +1 -1
  263. paddlex/inference/pipelines/layout_parsing/pipeline.py +54 -56
  264. paddlex/inference/pipelines/layout_parsing/pipeline_v2.py +904 -261
  265. paddlex/inference/pipelines/layout_parsing/result.py +9 -21
  266. paddlex/inference/pipelines/layout_parsing/result_v2.py +525 -250
  267. paddlex/inference/pipelines/layout_parsing/setting.py +87 -0
  268. paddlex/inference/pipelines/layout_parsing/utils.py +570 -2004
  269. paddlex/inference/pipelines/layout_parsing/xycut_enhanced/__init__.py +16 -0
  270. paddlex/inference/pipelines/layout_parsing/xycut_enhanced/utils.py +1144 -0
  271. paddlex/inference/pipelines/layout_parsing/xycut_enhanced/xycuts.py +563 -0
  272. paddlex/inference/pipelines/{3d_bev_detection → m_3d_bev_detection}/__init__.py +1 -1
  273. paddlex/inference/pipelines/{3d_bev_detection → m_3d_bev_detection}/pipeline.py +17 -10
  274. paddlex/inference/pipelines/multilingual_speech_recognition/__init__.py +1 -1
  275. paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py +17 -6
  276. paddlex/inference/pipelines/object_detection/__init__.py +1 -1
  277. paddlex/inference/pipelines/object_detection/pipeline.py +29 -9
  278. paddlex/inference/pipelines/ocr/__init__.py +1 -1
  279. paddlex/inference/pipelines/ocr/pipeline.py +151 -77
  280. paddlex/inference/pipelines/ocr/result.py +31 -24
  281. paddlex/inference/pipelines/open_vocabulary_detection/__init__.py +1 -1
  282. paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py +17 -6
  283. paddlex/inference/pipelines/open_vocabulary_segmentation/__init__.py +1 -1
  284. paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py +17 -6
  285. paddlex/inference/pipelines/pp_chatocr/__init__.py +1 -1
  286. paddlex/inference/pipelines/pp_chatocr/pipeline_base.py +14 -5
  287. paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py +22 -14
  288. paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py +34 -16
  289. paddlex/inference/pipelines/pp_shitu_v2/__init__.py +1 -1
  290. paddlex/inference/pipelines/pp_shitu_v2/pipeline.py +12 -8
  291. paddlex/inference/pipelines/pp_shitu_v2/result.py +4 -4
  292. paddlex/inference/pipelines/rotated_object_detection/__init__.py +1 -1
  293. paddlex/inference/pipelines/rotated_object_detection/pipeline.py +30 -9
  294. paddlex/inference/pipelines/seal_recognition/__init__.py +1 -1
  295. paddlex/inference/pipelines/seal_recognition/pipeline.py +127 -63
  296. paddlex/inference/pipelines/seal_recognition/result.py +4 -2
  297. paddlex/inference/pipelines/semantic_segmentation/__init__.py +1 -1
  298. paddlex/inference/pipelines/semantic_segmentation/pipeline.py +30 -9
  299. paddlex/inference/pipelines/small_object_detection/__init__.py +1 -1
  300. paddlex/inference/pipelines/small_object_detection/pipeline.py +30 -9
  301. paddlex/inference/pipelines/table_recognition/__init__.py +1 -1
  302. paddlex/inference/pipelines/table_recognition/pipeline.py +61 -37
  303. paddlex/inference/pipelines/table_recognition/pipeline_v2.py +668 -65
  304. paddlex/inference/pipelines/table_recognition/result.py +12 -10
  305. paddlex/inference/pipelines/table_recognition/table_recognition_post_processing.py +12 -8
  306. paddlex/inference/pipelines/table_recognition/table_recognition_post_processing_v2.py +55 -37
  307. paddlex/inference/pipelines/table_recognition/utils.py +1 -1
  308. paddlex/inference/pipelines/ts_anomaly_detection/__init__.py +1 -1
  309. paddlex/inference/pipelines/ts_anomaly_detection/pipeline.py +16 -6
  310. paddlex/inference/pipelines/ts_classification/__init__.py +1 -1
  311. paddlex/inference/pipelines/ts_classification/pipeline.py +16 -6
  312. paddlex/inference/pipelines/ts_forecasting/__init__.py +1 -1
  313. paddlex/inference/pipelines/ts_forecasting/pipeline.py +16 -6
  314. paddlex/inference/pipelines/video_classification/__init__.py +1 -1
  315. paddlex/inference/pipelines/video_classification/pipeline.py +17 -6
  316. paddlex/inference/pipelines/video_detection/__init__.py +1 -1
  317. paddlex/inference/pipelines/video_detection/pipeline.py +20 -7
  318. paddlex/inference/serving/__init__.py +5 -1
  319. paddlex/inference/serving/basic_serving/__init__.py +1 -1
  320. paddlex/inference/serving/basic_serving/_app.py +31 -19
  321. paddlex/inference/serving/basic_serving/_pipeline_apps/__init__.py +7 -4
  322. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/__init__.py +1 -1
  323. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/common.py +12 -4
  324. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/image_recognition.py +1 -1
  325. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/ocr.py +7 -2
  326. paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py +10 -7
  327. paddlex/inference/serving/basic_serving/_pipeline_apps/doc_preprocessor.py +10 -7
  328. paddlex/inference/serving/basic_serving/_pipeline_apps/doc_understanding.py +153 -0
  329. paddlex/inference/serving/basic_serving/_pipeline_apps/face_recognition.py +16 -13
  330. paddlex/inference/serving/basic_serving/_pipeline_apps/formula_recognition.py +10 -7
  331. paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.py +10 -7
  332. paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py +10 -7
  333. paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py +10 -7
  334. paddlex/inference/serving/basic_serving/_pipeline_apps/instance_segmentation.py +13 -7
  335. paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py +10 -8
  336. paddlex/inference/serving/basic_serving/_pipeline_apps/m_3d_bev_detection.py +10 -7
  337. paddlex/inference/serving/basic_serving/_pipeline_apps/multilingual_speech_recognition.py +10 -7
  338. paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py +10 -7
  339. paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py +10 -7
  340. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py +10 -7
  341. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py +13 -7
  342. paddlex/inference/serving/basic_serving/_pipeline_apps/pedestrian_attribute_recognition.py +10 -7
  343. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py +14 -12
  344. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py +17 -14
  345. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_shituv2.py +16 -13
  346. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py +16 -9
  347. paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py +10 -7
  348. paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py +10 -7
  349. paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py +10 -7
  350. paddlex/inference/serving/basic_serving/_pipeline_apps/small_object_detection.py +10 -7
  351. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py +11 -12
  352. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py +14 -12
  353. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py +10 -7
  354. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py +10 -7
  355. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py +10 -7
  356. paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recognition.py +10 -7
  357. paddlex/inference/serving/basic_serving/_pipeline_apps/video_classification.py +10 -7
  358. paddlex/inference/serving/basic_serving/_pipeline_apps/video_detection.py +10 -7
  359. paddlex/inference/serving/basic_serving/_server.py +9 -4
  360. paddlex/inference/serving/infra/__init__.py +1 -1
  361. paddlex/inference/serving/infra/config.py +1 -1
  362. paddlex/inference/serving/infra/models.py +13 -6
  363. paddlex/inference/serving/infra/storage.py +9 -4
  364. paddlex/inference/serving/infra/utils.py +54 -28
  365. paddlex/inference/serving/schemas/__init__.py +1 -1
  366. paddlex/inference/serving/schemas/anomaly_detection.py +1 -1
  367. paddlex/inference/serving/schemas/doc_preprocessor.py +1 -1
  368. paddlex/inference/serving/schemas/doc_understanding.py +78 -0
  369. paddlex/inference/serving/schemas/face_recognition.py +1 -1
  370. paddlex/inference/serving/schemas/formula_recognition.py +2 -2
  371. paddlex/inference/serving/schemas/human_keypoint_detection.py +1 -1
  372. paddlex/inference/serving/schemas/image_classification.py +1 -1
  373. paddlex/inference/serving/schemas/image_multilabel_classification.py +1 -1
  374. paddlex/inference/serving/schemas/instance_segmentation.py +1 -1
  375. paddlex/inference/serving/schemas/layout_parsing.py +2 -3
  376. paddlex/inference/serving/schemas/m_3d_bev_detection.py +1 -1
  377. paddlex/inference/serving/schemas/multilingual_speech_recognition.py +1 -1
  378. paddlex/inference/serving/schemas/object_detection.py +1 -1
  379. paddlex/inference/serving/schemas/ocr.py +1 -1
  380. paddlex/inference/serving/schemas/open_vocabulary_detection.py +1 -1
  381. paddlex/inference/serving/schemas/open_vocabulary_segmentation.py +1 -1
  382. paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py +1 -1
  383. paddlex/inference/serving/schemas/pp_chatocrv3_doc.py +2 -3
  384. paddlex/inference/serving/schemas/pp_chatocrv4_doc.py +3 -3
  385. paddlex/inference/serving/schemas/pp_shituv2.py +1 -1
  386. paddlex/inference/serving/schemas/pp_structurev3.py +11 -7
  387. paddlex/inference/serving/schemas/rotated_object_detection.py +1 -1
  388. paddlex/inference/serving/schemas/seal_recognition.py +2 -2
  389. paddlex/inference/serving/schemas/semantic_segmentation.py +1 -1
  390. paddlex/inference/serving/schemas/shared/__init__.py +1 -1
  391. paddlex/inference/serving/schemas/shared/classification.py +1 -1
  392. paddlex/inference/serving/schemas/shared/image_segmentation.py +1 -1
  393. paddlex/inference/serving/schemas/shared/object_detection.py +1 -1
  394. paddlex/inference/serving/schemas/shared/ocr.py +1 -1
  395. paddlex/inference/serving/schemas/small_object_detection.py +1 -1
  396. paddlex/inference/serving/schemas/table_recognition.py +3 -7
  397. paddlex/inference/serving/schemas/table_recognition_v2.py +6 -7
  398. paddlex/inference/serving/schemas/ts_anomaly_detection.py +1 -1
  399. paddlex/inference/serving/schemas/ts_classification.py +1 -1
  400. paddlex/inference/serving/schemas/ts_forecast.py +1 -1
  401. paddlex/inference/serving/schemas/vehicle_attribute_recognition.py +1 -1
  402. paddlex/inference/serving/schemas/video_classification.py +1 -1
  403. paddlex/inference/serving/schemas/video_detection.py +1 -1
  404. paddlex/inference/utils/__init__.py +1 -1
  405. paddlex/inference/utils/benchmark.py +332 -179
  406. paddlex/inference/utils/color_map.py +1 -1
  407. paddlex/inference/utils/get_pipeline_path.py +1 -1
  408. paddlex/inference/utils/hpi.py +258 -0
  409. paddlex/inference/utils/hpi_model_info_collection.json +2331 -0
  410. paddlex/inference/utils/io/__init__.py +11 -11
  411. paddlex/inference/utils/io/readers.py +31 -27
  412. paddlex/inference/utils/io/style.py +21 -14
  413. paddlex/inference/utils/io/tablepyxl.py +13 -5
  414. paddlex/inference/utils/io/writers.py +9 -10
  415. paddlex/inference/utils/mkldnn_blocklist.py +25 -0
  416. paddlex/inference/utils/model_paths.py +48 -0
  417. paddlex/inference/utils/{new_ir_blacklist.py → new_ir_blocklist.py} +1 -2
  418. paddlex/inference/utils/official_models.py +278 -262
  419. paddlex/inference/utils/pp_option.py +184 -92
  420. paddlex/inference/utils/trt_blocklist.py +43 -0
  421. paddlex/inference/utils/trt_config.py +420 -0
  422. paddlex/model.py +30 -12
  423. paddlex/modules/__init__.py +57 -80
  424. paddlex/modules/anomaly_detection/__init__.py +2 -2
  425. paddlex/modules/anomaly_detection/dataset_checker/__init__.py +2 -3
  426. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/__init__.py +2 -2
  427. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py +6 -3
  428. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/check_dataset.py +8 -4
  429. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py +7 -4
  430. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/split_dataset.py +2 -2
  431. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  432. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/visualizer.py +7 -2
  433. paddlex/modules/anomaly_detection/evaluator.py +3 -3
  434. paddlex/modules/anomaly_detection/exportor.py +1 -1
  435. paddlex/modules/anomaly_detection/model_list.py +1 -1
  436. paddlex/modules/anomaly_detection/trainer.py +3 -4
  437. paddlex/modules/base/__init__.py +5 -5
  438. paddlex/modules/base/build_model.py +1 -2
  439. paddlex/modules/base/dataset_checker/__init__.py +2 -2
  440. paddlex/modules/base/dataset_checker/dataset_checker.py +4 -4
  441. paddlex/modules/base/dataset_checker/utils.py +1 -3
  442. paddlex/modules/base/evaluator.py +13 -13
  443. paddlex/modules/base/exportor.py +12 -13
  444. paddlex/modules/base/trainer.py +21 -11
  445. paddlex/modules/base/utils/__init__.py +13 -0
  446. paddlex/modules/base/utils/cinn_setting.py +89 -0
  447. paddlex/modules/base/utils/coco_eval.py +94 -0
  448. paddlex/modules/base/utils/topk_eval.py +118 -0
  449. paddlex/modules/doc_vlm/__init__.py +18 -0
  450. paddlex/modules/doc_vlm/dataset_checker.py +29 -0
  451. paddlex/modules/doc_vlm/evaluator.py +29 -0
  452. paddlex/modules/doc_vlm/exportor.py +29 -0
  453. paddlex/modules/doc_vlm/model_list.py +16 -0
  454. paddlex/modules/doc_vlm/trainer.py +41 -0
  455. paddlex/modules/face_recognition/__init__.py +2 -2
  456. paddlex/modules/face_recognition/dataset_checker/__init__.py +2 -2
  457. paddlex/modules/face_recognition/dataset_checker/dataset_src/__init__.py +1 -1
  458. paddlex/modules/face_recognition/dataset_checker/dataset_src/check_dataset.py +3 -5
  459. paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/__init__.py +1 -1
  460. paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  461. paddlex/modules/face_recognition/evaluator.py +3 -3
  462. paddlex/modules/face_recognition/exportor.py +1 -1
  463. paddlex/modules/face_recognition/model_list.py +1 -1
  464. paddlex/modules/face_recognition/trainer.py +1 -1
  465. paddlex/modules/formula_recognition/__init__.py +2 -2
  466. paddlex/modules/formula_recognition/dataset_checker/__init__.py +3 -3
  467. paddlex/modules/formula_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  468. paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py +13 -12
  469. paddlex/modules/formula_recognition/dataset_checker/dataset_src/check_dataset.py +2 -6
  470. paddlex/modules/formula_recognition/dataset_checker/dataset_src/convert_dataset.py +11 -10
  471. paddlex/modules/formula_recognition/dataset_checker/dataset_src/split_dataset.py +1 -2
  472. paddlex/modules/formula_recognition/evaluator.py +6 -3
  473. paddlex/modules/formula_recognition/exportor.py +1 -1
  474. paddlex/modules/formula_recognition/model_list.py +4 -1
  475. paddlex/modules/formula_recognition/trainer.py +5 -3
  476. paddlex/modules/general_recognition/__init__.py +2 -2
  477. paddlex/modules/general_recognition/dataset_checker/__init__.py +2 -2
  478. paddlex/modules/general_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  479. paddlex/modules/general_recognition/dataset_checker/dataset_src/analyse_dataset.py +7 -9
  480. paddlex/modules/general_recognition/dataset_checker/dataset_src/check_dataset.py +4 -5
  481. paddlex/modules/general_recognition/dataset_checker/dataset_src/convert_dataset.py +6 -5
  482. paddlex/modules/general_recognition/dataset_checker/dataset_src/split_dataset.py +1 -1
  483. paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/__init__.py +1 -1
  484. paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  485. paddlex/modules/general_recognition/evaluator.py +2 -2
  486. paddlex/modules/general_recognition/exportor.py +1 -1
  487. paddlex/modules/general_recognition/model_list.py +1 -1
  488. paddlex/modules/general_recognition/trainer.py +1 -1
  489. paddlex/modules/image_classification/__init__.py +2 -2
  490. paddlex/modules/image_classification/dataset_checker/__init__.py +2 -2
  491. paddlex/modules/image_classification/dataset_checker/dataset_src/__init__.py +2 -2
  492. paddlex/modules/image_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  493. paddlex/modules/image_classification/dataset_checker/dataset_src/check_dataset.py +4 -3
  494. paddlex/modules/image_classification/dataset_checker/dataset_src/convert_dataset.py +4 -4
  495. paddlex/modules/image_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  496. paddlex/modules/image_classification/dataset_checker/dataset_src/utils/__init__.py +1 -1
  497. paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  498. paddlex/modules/image_classification/evaluator.py +3 -3
  499. paddlex/modules/image_classification/exportor.py +1 -1
  500. paddlex/modules/image_classification/model_list.py +2 -1
  501. paddlex/modules/image_classification/trainer.py +3 -3
  502. paddlex/modules/image_unwarping/__init__.py +1 -1
  503. paddlex/modules/image_unwarping/model_list.py +1 -1
  504. paddlex/modules/instance_segmentation/__init__.py +2 -2
  505. paddlex/modules/instance_segmentation/dataset_checker/__init__.py +2 -3
  506. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/__init__.py +2 -2
  507. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/analyse_dataset.py +9 -5
  508. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/check_dataset.py +8 -5
  509. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/convert_dataset.py +8 -8
  510. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/split_dataset.py +7 -4
  511. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/__init__.py +1 -1
  512. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py +10 -8
  513. paddlex/modules/instance_segmentation/evaluator.py +2 -2
  514. paddlex/modules/instance_segmentation/exportor.py +1 -1
  515. paddlex/modules/instance_segmentation/model_list.py +1 -1
  516. paddlex/modules/instance_segmentation/trainer.py +1 -1
  517. paddlex/modules/keypoint_detection/__init__.py +2 -2
  518. paddlex/modules/keypoint_detection/dataset_checker/__init__.py +2 -2
  519. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/__init__.py +1 -1
  520. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/check_dataset.py +10 -5
  521. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  522. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/visualizer.py +8 -3
  523. paddlex/modules/keypoint_detection/evaluator.py +2 -2
  524. paddlex/modules/keypoint_detection/exportor.py +1 -1
  525. paddlex/modules/keypoint_detection/model_list.py +1 -1
  526. paddlex/modules/keypoint_detection/trainer.py +2 -2
  527. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/__init__.py +2 -2
  528. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/__init__.py +3 -3
  529. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/dataset_src/__init__.py +2 -2
  530. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/dataset_src/analyse_dataset.py +8 -8
  531. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/dataset_src/check_dataset.py +1 -2
  532. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/evaluator.py +3 -3
  533. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/exportor.py +1 -1
  534. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/model_list.py +1 -1
  535. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/trainer.py +5 -7
  536. paddlex/modules/multilabel_classification/__init__.py +2 -2
  537. paddlex/modules/multilabel_classification/dataset_checker/__init__.py +2 -2
  538. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/__init__.py +2 -2
  539. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  540. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/check_dataset.py +4 -3
  541. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/convert_dataset.py +10 -7
  542. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  543. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/__init__.py +1 -1
  544. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/visualizer.py +1 -5
  545. paddlex/modules/multilabel_classification/evaluator.py +3 -3
  546. paddlex/modules/multilabel_classification/exportor.py +1 -1
  547. paddlex/modules/multilabel_classification/model_list.py +1 -1
  548. paddlex/modules/multilabel_classification/trainer.py +3 -3
  549. paddlex/modules/multilingual_speech_recognition/__init__.py +2 -2
  550. paddlex/modules/multilingual_speech_recognition/dataset_checker.py +3 -3
  551. paddlex/modules/multilingual_speech_recognition/evaluator.py +3 -3
  552. paddlex/modules/multilingual_speech_recognition/exportor.py +3 -3
  553. paddlex/modules/multilingual_speech_recognition/model_list.py +1 -1
  554. paddlex/modules/multilingual_speech_recognition/trainer.py +7 -5
  555. paddlex/modules/object_detection/__init__.py +2 -2
  556. paddlex/modules/object_detection/dataset_checker/__init__.py +2 -11
  557. paddlex/modules/object_detection/dataset_checker/dataset_src/__init__.py +2 -2
  558. paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py +10 -8
  559. paddlex/modules/object_detection/dataset_checker/dataset_src/check_dataset.py +10 -5
  560. paddlex/modules/object_detection/dataset_checker/dataset_src/convert_dataset.py +17 -12
  561. paddlex/modules/object_detection/dataset_checker/dataset_src/split_dataset.py +8 -4
  562. paddlex/modules/object_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  563. paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py +9 -8
  564. paddlex/modules/object_detection/evaluator.py +11 -6
  565. paddlex/modules/object_detection/exportor.py +1 -1
  566. paddlex/modules/object_detection/model_list.py +3 -1
  567. paddlex/modules/object_detection/trainer.py +4 -5
  568. paddlex/modules/open_vocabulary_detection/__init__.py +2 -2
  569. paddlex/modules/open_vocabulary_detection/dataset_checker.py +3 -3
  570. paddlex/modules/open_vocabulary_detection/evaluator.py +3 -3
  571. paddlex/modules/open_vocabulary_detection/exportor.py +3 -3
  572. paddlex/modules/open_vocabulary_detection/model_list.py +2 -4
  573. paddlex/modules/open_vocabulary_detection/trainer.py +7 -5
  574. paddlex/modules/open_vocabulary_segmentation/__init__.py +2 -2
  575. paddlex/modules/open_vocabulary_segmentation/dataset_checker.py +3 -3
  576. paddlex/modules/open_vocabulary_segmentation/evaluator.py +3 -3
  577. paddlex/modules/open_vocabulary_segmentation/exportor.py +3 -3
  578. paddlex/modules/open_vocabulary_segmentation/model_list.py +1 -1
  579. paddlex/modules/open_vocabulary_segmentation/trainer.py +7 -5
  580. paddlex/modules/semantic_segmentation/__init__.py +2 -2
  581. paddlex/modules/semantic_segmentation/dataset_checker/__init__.py +2 -3
  582. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/__init__.py +2 -2
  583. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/analyse_dataset.py +6 -3
  584. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/check_dataset.py +2 -2
  585. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/convert_dataset.py +7 -4
  586. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/split_dataset.py +2 -2
  587. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/__init__.py +1 -1
  588. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/visualizer.py +6 -2
  589. paddlex/modules/semantic_segmentation/evaluator.py +3 -3
  590. paddlex/modules/semantic_segmentation/exportor.py +1 -1
  591. paddlex/modules/semantic_segmentation/model_list.py +1 -1
  592. paddlex/modules/semantic_segmentation/trainer.py +3 -4
  593. paddlex/modules/table_recognition/__init__.py +2 -2
  594. paddlex/modules/table_recognition/dataset_checker/__init__.py +5 -5
  595. paddlex/modules/table_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  596. paddlex/modules/table_recognition/dataset_checker/dataset_src/analyse_dataset.py +3 -2
  597. paddlex/modules/table_recognition/dataset_checker/dataset_src/check_dataset.py +8 -7
  598. paddlex/modules/table_recognition/dataset_checker/dataset_src/split_dataset.py +2 -1
  599. paddlex/modules/table_recognition/evaluator.py +3 -3
  600. paddlex/modules/table_recognition/exportor.py +1 -1
  601. paddlex/modules/table_recognition/model_list.py +1 -1
  602. paddlex/modules/table_recognition/trainer.py +2 -5
  603. paddlex/modules/text_detection/__init__.py +2 -2
  604. paddlex/modules/text_detection/dataset_checker/__init__.py +4 -6
  605. paddlex/modules/text_detection/dataset_checker/dataset_src/__init__.py +2 -2
  606. paddlex/modules/text_detection/dataset_checker/dataset_src/analyse_dataset.py +12 -9
  607. paddlex/modules/text_detection/dataset_checker/dataset_src/check_dataset.py +3 -3
  608. paddlex/modules/text_detection/dataset_checker/dataset_src/split_dataset.py +3 -3
  609. paddlex/modules/text_detection/evaluator.py +3 -3
  610. paddlex/modules/text_detection/exportor.py +1 -1
  611. paddlex/modules/text_detection/model_list.py +3 -1
  612. paddlex/modules/text_detection/trainer.py +2 -5
  613. paddlex/modules/text_recognition/__init__.py +2 -2
  614. paddlex/modules/text_recognition/dataset_checker/__init__.py +4 -5
  615. paddlex/modules/text_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  616. paddlex/modules/text_recognition/dataset_checker/dataset_src/analyse_dataset.py +13 -12
  617. paddlex/modules/text_recognition/dataset_checker/dataset_src/check_dataset.py +2 -5
  618. paddlex/modules/text_recognition/dataset_checker/dataset_src/convert_dataset.py +11 -10
  619. paddlex/modules/text_recognition/dataset_checker/dataset_src/split_dataset.py +1 -2
  620. paddlex/modules/text_recognition/evaluator.py +3 -3
  621. paddlex/modules/text_recognition/exportor.py +1 -1
  622. paddlex/modules/text_recognition/model_list.py +3 -1
  623. paddlex/modules/text_recognition/trainer.py +2 -3
  624. paddlex/modules/ts_anomaly_detection/__init__.py +2 -2
  625. paddlex/modules/ts_anomaly_detection/dataset_checker/__init__.py +4 -5
  626. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/__init__.py +2 -2
  627. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py +1 -9
  628. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/check_dataset.py +2 -2
  629. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/convert_dataset.py +2 -6
  630. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/split_dataset.py +4 -4
  631. paddlex/modules/ts_anomaly_detection/evaluator.py +3 -3
  632. paddlex/modules/ts_anomaly_detection/exportor.py +2 -3
  633. paddlex/modules/ts_anomaly_detection/model_list.py +1 -1
  634. paddlex/modules/ts_anomaly_detection/trainer.py +8 -8
  635. paddlex/modules/ts_classification/__init__.py +2 -2
  636. paddlex/modules/ts_classification/dataset_checker/__init__.py +4 -5
  637. paddlex/modules/ts_classification/dataset_checker/dataset_src/__init__.py +2 -2
  638. paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -5
  639. paddlex/modules/ts_classification/dataset_checker/dataset_src/check_dataset.py +2 -2
  640. paddlex/modules/ts_classification/dataset_checker/dataset_src/convert_dataset.py +2 -6
  641. paddlex/modules/ts_classification/dataset_checker/dataset_src/split_dataset.py +5 -5
  642. paddlex/modules/ts_classification/evaluator.py +3 -3
  643. paddlex/modules/ts_classification/exportor.py +2 -3
  644. paddlex/modules/ts_classification/model_list.py +1 -1
  645. paddlex/modules/ts_classification/trainer.py +7 -7
  646. paddlex/modules/ts_forecast/__init__.py +2 -2
  647. paddlex/modules/ts_forecast/dataset_checker/__init__.py +4 -5
  648. paddlex/modules/ts_forecast/dataset_checker/dataset_src/__init__.py +2 -2
  649. paddlex/modules/ts_forecast/dataset_checker/dataset_src/analyse_dataset.py +1 -9
  650. paddlex/modules/ts_forecast/dataset_checker/dataset_src/check_dataset.py +2 -2
  651. paddlex/modules/ts_forecast/dataset_checker/dataset_src/convert_dataset.py +2 -6
  652. paddlex/modules/ts_forecast/dataset_checker/dataset_src/split_dataset.py +4 -4
  653. paddlex/modules/ts_forecast/evaluator.py +3 -3
  654. paddlex/modules/ts_forecast/exportor.py +2 -3
  655. paddlex/modules/ts_forecast/model_list.py +1 -1
  656. paddlex/modules/ts_forecast/trainer.py +7 -7
  657. paddlex/modules/video_classification/__init__.py +2 -2
  658. paddlex/modules/video_classification/dataset_checker/__init__.py +2 -2
  659. paddlex/modules/video_classification/dataset_checker/dataset_src/__init__.py +2 -2
  660. paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset.py +9 -9
  661. paddlex/modules/video_classification/dataset_checker/dataset_src/check_dataset.py +2 -3
  662. paddlex/modules/video_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  663. paddlex/modules/video_classification/evaluator.py +3 -3
  664. paddlex/modules/video_classification/exportor.py +1 -1
  665. paddlex/modules/video_classification/model_list.py +1 -1
  666. paddlex/modules/video_classification/trainer.py +3 -3
  667. paddlex/modules/video_detection/__init__.py +2 -2
  668. paddlex/modules/video_detection/dataset_checker/__init__.py +2 -2
  669. paddlex/modules/video_detection/dataset_checker/dataset_src/__init__.py +2 -2
  670. paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  671. paddlex/modules/video_detection/dataset_checker/dataset_src/check_dataset.py +3 -5
  672. paddlex/modules/video_detection/evaluator.py +3 -3
  673. paddlex/modules/video_detection/exportor.py +1 -1
  674. paddlex/modules/video_detection/model_list.py +1 -1
  675. paddlex/modules/video_detection/trainer.py +3 -3
  676. paddlex/ops/__init__.py +7 -4
  677. paddlex/ops/iou3d_nms/iou3d_cpu.cpp +8 -6
  678. paddlex/ops/iou3d_nms/iou3d_cpu.h +3 -2
  679. paddlex/ops/iou3d_nms/iou3d_nms.cpp +8 -6
  680. paddlex/ops/iou3d_nms/iou3d_nms.h +6 -4
  681. paddlex/ops/iou3d_nms/iou3d_nms_api.cpp +24 -18
  682. paddlex/ops/iou3d_nms/iou3d_nms_kernel.cu +9 -7
  683. paddlex/ops/setup.py +3 -3
  684. paddlex/ops/voxel/voxelize_op.cc +22 -19
  685. paddlex/ops/voxel/voxelize_op.cu +25 -25
  686. paddlex/paddlex_cli.py +104 -87
  687. paddlex/repo_apis/Paddle3D_api/__init__.py +1 -1
  688. paddlex/repo_apis/Paddle3D_api/bev_fusion/__init__.py +1 -1
  689. paddlex/repo_apis/Paddle3D_api/bev_fusion/config.py +1 -1
  690. paddlex/repo_apis/Paddle3D_api/bev_fusion/model.py +6 -6
  691. paddlex/repo_apis/Paddle3D_api/bev_fusion/register.py +2 -2
  692. paddlex/repo_apis/Paddle3D_api/bev_fusion/runner.py +1 -1
  693. paddlex/repo_apis/Paddle3D_api/pp3d_config.py +3 -2
  694. paddlex/repo_apis/PaddleClas_api/__init__.py +1 -1
  695. paddlex/repo_apis/PaddleClas_api/cls/__init__.py +3 -3
  696. paddlex/repo_apis/PaddleClas_api/cls/config.py +5 -4
  697. paddlex/repo_apis/PaddleClas_api/cls/model.py +4 -4
  698. paddlex/repo_apis/PaddleClas_api/cls/register.py +12 -3
  699. paddlex/repo_apis/PaddleClas_api/cls/runner.py +2 -3
  700. paddlex/repo_apis/PaddleClas_api/shitu_rec/__init__.py +2 -2
  701. paddlex/repo_apis/PaddleClas_api/shitu_rec/config.py +2 -2
  702. paddlex/repo_apis/PaddleClas_api/shitu_rec/model.py +1 -4
  703. paddlex/repo_apis/PaddleClas_api/shitu_rec/register.py +2 -2
  704. paddlex/repo_apis/PaddleClas_api/shitu_rec/runner.py +1 -6
  705. paddlex/repo_apis/PaddleDetection_api/__init__.py +2 -2
  706. paddlex/repo_apis/PaddleDetection_api/config_helper.py +3 -3
  707. paddlex/repo_apis/PaddleDetection_api/instance_seg/__init__.py +2 -2
  708. paddlex/repo_apis/PaddleDetection_api/instance_seg/config.py +2 -3
  709. paddlex/repo_apis/PaddleDetection_api/instance_seg/model.py +4 -4
  710. paddlex/repo_apis/PaddleDetection_api/instance_seg/register.py +2 -3
  711. paddlex/repo_apis/PaddleDetection_api/instance_seg/runner.py +2 -3
  712. paddlex/repo_apis/PaddleDetection_api/object_det/__init__.py +3 -3
  713. paddlex/repo_apis/PaddleDetection_api/object_det/config.py +5 -4
  714. paddlex/repo_apis/PaddleDetection_api/object_det/model.py +6 -7
  715. paddlex/repo_apis/PaddleDetection_api/object_det/official_categories.py +26 -1
  716. paddlex/repo_apis/PaddleDetection_api/object_det/register.py +32 -3
  717. paddlex/repo_apis/PaddleDetection_api/object_det/runner.py +2 -3
  718. paddlex/repo_apis/PaddleNLP_api/__init__.py +1 -1
  719. paddlex/repo_apis/PaddleOCR_api/__init__.py +4 -3
  720. paddlex/repo_apis/PaddleOCR_api/config_utils.py +1 -1
  721. paddlex/repo_apis/PaddleOCR_api/formula_rec/__init__.py +1 -1
  722. paddlex/repo_apis/PaddleOCR_api/formula_rec/config.py +7 -6
  723. paddlex/repo_apis/PaddleOCR_api/formula_rec/model.py +9 -13
  724. paddlex/repo_apis/PaddleOCR_api/formula_rec/register.py +29 -3
  725. paddlex/repo_apis/PaddleOCR_api/formula_rec/runner.py +2 -3
  726. paddlex/repo_apis/PaddleOCR_api/table_rec/__init__.py +1 -1
  727. paddlex/repo_apis/PaddleOCR_api/table_rec/config.py +1 -1
  728. paddlex/repo_apis/PaddleOCR_api/table_rec/model.py +4 -4
  729. paddlex/repo_apis/PaddleOCR_api/table_rec/register.py +2 -3
  730. paddlex/repo_apis/PaddleOCR_api/table_rec/runner.py +3 -3
  731. paddlex/repo_apis/PaddleOCR_api/text_det/__init__.py +1 -1
  732. paddlex/repo_apis/PaddleOCR_api/text_det/config.py +1 -1
  733. paddlex/repo_apis/PaddleOCR_api/text_det/model.py +4 -4
  734. paddlex/repo_apis/PaddleOCR_api/text_det/register.py +20 -3
  735. paddlex/repo_apis/PaddleOCR_api/text_det/runner.py +3 -3
  736. paddlex/repo_apis/PaddleOCR_api/text_rec/__init__.py +1 -1
  737. paddlex/repo_apis/PaddleOCR_api/text_rec/config.py +7 -6
  738. paddlex/repo_apis/PaddleOCR_api/text_rec/model.py +9 -13
  739. paddlex/repo_apis/PaddleOCR_api/text_rec/register.py +20 -3
  740. paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py +2 -3
  741. paddlex/repo_apis/PaddleSeg_api/__init__.py +1 -1
  742. paddlex/repo_apis/PaddleSeg_api/base_seg_config.py +2 -2
  743. paddlex/repo_apis/PaddleSeg_api/seg/__init__.py +1 -1
  744. paddlex/repo_apis/PaddleSeg_api/seg/config.py +3 -6
  745. paddlex/repo_apis/PaddleSeg_api/seg/model.py +6 -6
  746. paddlex/repo_apis/PaddleSeg_api/seg/register.py +2 -3
  747. paddlex/repo_apis/PaddleSeg_api/seg/runner.py +2 -3
  748. paddlex/repo_apis/PaddleTS_api/__init__.py +4 -3
  749. paddlex/repo_apis/PaddleTS_api/ts_ad/__init__.py +1 -1
  750. paddlex/repo_apis/PaddleTS_api/ts_ad/config.py +5 -6
  751. paddlex/repo_apis/PaddleTS_api/ts_ad/register.py +2 -2
  752. paddlex/repo_apis/PaddleTS_api/ts_ad/runner.py +2 -2
  753. paddlex/repo_apis/PaddleTS_api/ts_base/__init__.py +1 -1
  754. paddlex/repo_apis/PaddleTS_api/ts_base/config.py +2 -4
  755. paddlex/repo_apis/PaddleTS_api/ts_base/model.py +4 -4
  756. paddlex/repo_apis/PaddleTS_api/ts_base/runner.py +2 -2
  757. paddlex/repo_apis/PaddleTS_api/ts_cls/__init__.py +1 -1
  758. paddlex/repo_apis/PaddleTS_api/ts_cls/config.py +4 -5
  759. paddlex/repo_apis/PaddleTS_api/ts_cls/register.py +2 -2
  760. paddlex/repo_apis/PaddleTS_api/ts_cls/runner.py +2 -2
  761. paddlex/repo_apis/PaddleTS_api/ts_fc/__init__.py +1 -1
  762. paddlex/repo_apis/PaddleTS_api/ts_fc/config.py +6 -7
  763. paddlex/repo_apis/PaddleTS_api/ts_fc/register.py +1 -1
  764. paddlex/repo_apis/PaddleVideo_api/__init__.py +1 -1
  765. paddlex/repo_apis/PaddleVideo_api/config_utils.py +1 -1
  766. paddlex/repo_apis/PaddleVideo_api/video_cls/__init__.py +3 -3
  767. paddlex/repo_apis/PaddleVideo_api/video_cls/config.py +5 -4
  768. paddlex/repo_apis/PaddleVideo_api/video_cls/model.py +4 -4
  769. paddlex/repo_apis/PaddleVideo_api/video_cls/register.py +2 -3
  770. paddlex/repo_apis/PaddleVideo_api/video_cls/runner.py +2 -3
  771. paddlex/repo_apis/PaddleVideo_api/video_det/__init__.py +3 -3
  772. paddlex/repo_apis/PaddleVideo_api/video_det/config.py +5 -4
  773. paddlex/repo_apis/PaddleVideo_api/video_det/model.py +5 -5
  774. paddlex/repo_apis/PaddleVideo_api/video_det/register.py +2 -3
  775. paddlex/repo_apis/PaddleVideo_api/video_det/runner.py +2 -3
  776. paddlex/repo_apis/__init__.py +1 -1
  777. paddlex/repo_apis/base/__init__.py +4 -5
  778. paddlex/repo_apis/base/config.py +3 -4
  779. paddlex/repo_apis/base/model.py +11 -19
  780. paddlex/repo_apis/base/register.py +1 -1
  781. paddlex/repo_apis/base/runner.py +11 -12
  782. paddlex/repo_apis/base/utils/__init__.py +1 -1
  783. paddlex/repo_apis/base/utils/arg.py +1 -1
  784. paddlex/repo_apis/base/utils/subprocess.py +1 -1
  785. paddlex/repo_manager/__init__.py +2 -9
  786. paddlex/repo_manager/core.py +12 -30
  787. paddlex/repo_manager/meta.py +41 -31
  788. paddlex/repo_manager/repo.py +171 -161
  789. paddlex/repo_manager/utils.py +13 -224
  790. paddlex/utils/__init__.py +1 -1
  791. paddlex/utils/cache.py +8 -10
  792. paddlex/utils/config.py +6 -5
  793. paddlex/utils/{custom_device_whitelist.py → custom_device_list.py} +53 -199
  794. paddlex/utils/deps.py +249 -0
  795. paddlex/utils/device.py +87 -36
  796. paddlex/utils/download.py +4 -4
  797. paddlex/utils/env.py +37 -7
  798. paddlex/utils/errors/__init__.py +1 -1
  799. paddlex/utils/errors/dataset_checker.py +1 -1
  800. paddlex/utils/errors/others.py +2 -16
  801. paddlex/utils/file_interface.py +4 -5
  802. paddlex/utils/flags.py +17 -12
  803. paddlex/utils/fonts/__init__.py +36 -5
  804. paddlex/utils/func_register.py +1 -1
  805. paddlex/utils/install.py +87 -0
  806. paddlex/utils/interactive_get_pipeline.py +3 -3
  807. paddlex/utils/lazy_loader.py +3 -3
  808. paddlex/utils/logging.py +10 -1
  809. paddlex/utils/misc.py +6 -6
  810. paddlex/utils/pipeline_arguments.py +15 -7
  811. paddlex/utils/result_saver.py +4 -5
  812. paddlex/utils/subclass_register.py +2 -4
  813. paddlex/version.py +2 -1
  814. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info}/METADATA +237 -102
  815. paddlex-3.0.1.dist-info/RECORD +1095 -0
  816. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info}/WHEEL +1 -1
  817. paddlex/inference/models/base/predictor/basic_predictor.py +0 -139
  818. paddlex/paddle2onnx_requirements.txt +0 -1
  819. paddlex/repo_manager/requirements.txt +0 -21
  820. paddlex/serving_requirements.txt +0 -9
  821. paddlex-3.0.0rc0.dist-info/RECORD +0 -1015
  822. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info}/entry_points.txt +0 -0
  823. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info/licenses}/LICENSE +0 -0
  824. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2331 @@
1
+ {
2
+ "cpu_x64": {
3
+ "PP-LCNet_x1_0_doc_ori": [
4
+ "openvino",
5
+ "onnxruntime",
6
+ "paddle"
7
+ ],
8
+ "PicoDet_LCNet_x2_5_face": [
9
+ "openvino",
10
+ "onnxruntime",
11
+ "paddle"
12
+ ],
13
+ "MobileFaceNet": [
14
+ "openvino",
15
+ "onnxruntime",
16
+ "paddle"
17
+ ],
18
+ "ResNet50_face": [
19
+ "openvino",
20
+ "onnxruntime",
21
+ "paddle"
22
+ ],
23
+ "CLIP_vit_base_patch16_224": [
24
+ "openvino",
25
+ "paddle"
26
+ ],
27
+ "CLIP_vit_large_patch14_224": [
28
+ "openvino",
29
+ "paddle"
30
+ ],
31
+ "ConvNeXt_base_224": [
32
+ "openvino",
33
+ "onnxruntime",
34
+ "paddle"
35
+ ],
36
+ "ConvNeXt_base_384": [
37
+ "openvino",
38
+ "onnxruntime",
39
+ "paddle"
40
+ ],
41
+ "ConvNeXt_large_224": [
42
+ "openvino",
43
+ "onnxruntime",
44
+ "paddle"
45
+ ],
46
+ "ConvNeXt_large_384": [
47
+ "openvino",
48
+ "onnxruntime",
49
+ "paddle"
50
+ ],
51
+ "ConvNeXt_small": [
52
+ "openvino",
53
+ "onnxruntime",
54
+ "paddle"
55
+ ],
56
+ "ConvNeXt_tiny": [
57
+ "openvino",
58
+ "onnxruntime",
59
+ "paddle"
60
+ ],
61
+ "FasterNet-L": [
62
+ "openvino",
63
+ "onnxruntime",
64
+ "paddle"
65
+ ],
66
+ "FasterNet-M": [
67
+ "openvino",
68
+ "onnxruntime",
69
+ "paddle"
70
+ ],
71
+ "FasterNet-S": [
72
+ "openvino",
73
+ "onnxruntime",
74
+ "paddle"
75
+ ],
76
+ "FasterNet-T0": [
77
+ "openvino",
78
+ "onnxruntime",
79
+ "paddle"
80
+ ],
81
+ "FasterNet-T1": [
82
+ "openvino",
83
+ "onnxruntime",
84
+ "paddle"
85
+ ],
86
+ "FasterNet-T2": [
87
+ "openvino",
88
+ "onnxruntime",
89
+ "paddle"
90
+ ],
91
+ "MobileNetV1_x0_25": [
92
+ "openvino",
93
+ "onnxruntime",
94
+ "paddle"
95
+ ],
96
+ "MobileNetV1_x0_5": [
97
+ "openvino",
98
+ "onnxruntime",
99
+ "paddle"
100
+ ],
101
+ "MobileNetV1_x0_75": [
102
+ "openvino",
103
+ "onnxruntime",
104
+ "paddle"
105
+ ],
106
+ "MobileNetV1_x1_0": [
107
+ "openvino",
108
+ "onnxruntime",
109
+ "paddle"
110
+ ],
111
+ "MobileNetV2_x0_25": [
112
+ "openvino",
113
+ "onnxruntime",
114
+ "paddle"
115
+ ],
116
+ "MobileNetV2_x0_5": [
117
+ "openvino",
118
+ "onnxruntime",
119
+ "paddle"
120
+ ],
121
+ "MobileNetV2_x1_0": [
122
+ "openvino",
123
+ "onnxruntime",
124
+ "paddle"
125
+ ],
126
+ "MobileNetV2_x1_5": [
127
+ "openvino",
128
+ "onnxruntime",
129
+ "paddle"
130
+ ],
131
+ "MobileNetV2_x2_0": [
132
+ "openvino",
133
+ "onnxruntime",
134
+ "paddle"
135
+ ],
136
+ "MobileNetV3_large_x0_35": [
137
+ "openvino",
138
+ "onnxruntime",
139
+ "paddle"
140
+ ],
141
+ "MobileNetV3_large_x0_5": [
142
+ "openvino",
143
+ "onnxruntime",
144
+ "paddle"
145
+ ],
146
+ "MobileNetV3_large_x0_75": [
147
+ "openvino",
148
+ "onnxruntime",
149
+ "paddle"
150
+ ],
151
+ "MobileNetV3_large_x1_0": [
152
+ "openvino",
153
+ "onnxruntime",
154
+ "paddle"
155
+ ],
156
+ "MobileNetV3_large_x1_25": [
157
+ "openvino",
158
+ "onnxruntime",
159
+ "paddle"
160
+ ],
161
+ "MobileNetV3_small_x0_35": [
162
+ "openvino",
163
+ "onnxruntime",
164
+ "paddle"
165
+ ],
166
+ "MobileNetV3_small_x0_5": [
167
+ "openvino",
168
+ "onnxruntime",
169
+ "paddle"
170
+ ],
171
+ "MobileNetV3_small_x0_75": [
172
+ "openvino",
173
+ "onnxruntime",
174
+ "paddle"
175
+ ],
176
+ "MobileNetV3_small_x1_0": [
177
+ "openvino",
178
+ "onnxruntime",
179
+ "paddle"
180
+ ],
181
+ "MobileNetV3_small_x1_25": [
182
+ "openvino",
183
+ "onnxruntime",
184
+ "paddle"
185
+ ],
186
+ "MobileNetV4_conv_large": [
187
+ "openvino",
188
+ "onnxruntime",
189
+ "paddle"
190
+ ],
191
+ "MobileNetV4_conv_medium": [
192
+ "openvino",
193
+ "onnxruntime",
194
+ "paddle"
195
+ ],
196
+ "MobileNetV4_conv_small": [
197
+ "openvino",
198
+ "onnxruntime",
199
+ "paddle"
200
+ ],
201
+ "MobileNetV4_hybrid_large": [
202
+ "openvino",
203
+ "onnxruntime",
204
+ "paddle"
205
+ ],
206
+ "MobileNetV4_hybrid_medium": [
207
+ "openvino",
208
+ "onnxruntime",
209
+ "paddle"
210
+ ],
211
+ "PP-HGNetV2-B0": [
212
+ "openvino",
213
+ "onnxruntime",
214
+ "paddle"
215
+ ],
216
+ "PP-HGNetV2-B1": [
217
+ "openvino",
218
+ "onnxruntime",
219
+ "paddle"
220
+ ],
221
+ "PP-HGNetV2-B2": [
222
+ "openvino",
223
+ "onnxruntime",
224
+ "paddle"
225
+ ],
226
+ "PP-HGNetV2-B3": [
227
+ "openvino",
228
+ "onnxruntime",
229
+ "paddle"
230
+ ],
231
+ "PP-HGNetV2-B4": [
232
+ "openvino",
233
+ "onnxruntime",
234
+ "paddle"
235
+ ],
236
+ "PP-HGNetV2-B5": [
237
+ "openvino",
238
+ "onnxruntime",
239
+ "paddle"
240
+ ],
241
+ "PP-HGNetV2-B6": [
242
+ "openvino",
243
+ "paddle",
244
+ "onnxruntime"
245
+ ],
246
+ "PP-HGNet_base": [
247
+ "openvino",
248
+ "onnxruntime",
249
+ "paddle"
250
+ ],
251
+ "PP-HGNet_small": [
252
+ "openvino",
253
+ "onnxruntime",
254
+ "paddle"
255
+ ],
256
+ "PP-HGNet_tiny": [
257
+ "openvino",
258
+ "onnxruntime",
259
+ "paddle"
260
+ ],
261
+ "PP-LCNetV2_base": [
262
+ "openvino",
263
+ "onnxruntime",
264
+ "paddle"
265
+ ],
266
+ "PP-LCNetV2_large": [
267
+ "openvino",
268
+ "onnxruntime",
269
+ "paddle"
270
+ ],
271
+ "PP-LCNetV2_small": [
272
+ "openvino",
273
+ "onnxruntime",
274
+ "paddle"
275
+ ],
276
+ "PP-LCNet_x0_25": [
277
+ "openvino",
278
+ "onnxruntime",
279
+ "paddle"
280
+ ],
281
+ "PP-LCNet_x0_35": [
282
+ "openvino",
283
+ "onnxruntime",
284
+ "paddle"
285
+ ],
286
+ "PP-LCNet_x0_5": [
287
+ "openvino",
288
+ "onnxruntime",
289
+ "paddle"
290
+ ],
291
+ "PP-LCNet_x0_75": [
292
+ "openvino",
293
+ "onnxruntime",
294
+ "paddle"
295
+ ],
296
+ "PP-LCNet_x1_0": [
297
+ "openvino",
298
+ "onnxruntime",
299
+ "paddle"
300
+ ],
301
+ "PP-LCNet_x1_5": [
302
+ "openvino",
303
+ "onnxruntime",
304
+ "paddle"
305
+ ],
306
+ "PP-LCNet_x2_0": [
307
+ "openvino",
308
+ "onnxruntime",
309
+ "paddle"
310
+ ],
311
+ "PP-LCNet_x2_5": [
312
+ "openvino",
313
+ "onnxruntime",
314
+ "paddle"
315
+ ],
316
+ "ResNet101": [
317
+ "openvino",
318
+ "onnxruntime",
319
+ "paddle"
320
+ ],
321
+ "ResNet101_vd": [
322
+ "openvino",
323
+ "paddle",
324
+ "onnxruntime"
325
+ ],
326
+ "ResNet152": [
327
+ "openvino",
328
+ "onnxruntime",
329
+ "paddle"
330
+ ],
331
+ "ResNet152_vd": [
332
+ "openvino",
333
+ "paddle",
334
+ "onnxruntime"
335
+ ],
336
+ "ResNet18": [
337
+ "openvino",
338
+ "onnxruntime",
339
+ "paddle"
340
+ ],
341
+ "ResNet18_vd": [
342
+ "openvino",
343
+ "onnxruntime",
344
+ "paddle"
345
+ ],
346
+ "ResNet200_vd": [
347
+ "openvino",
348
+ "paddle",
349
+ "onnxruntime"
350
+ ],
351
+ "ResNet34": [
352
+ "openvino",
353
+ "onnxruntime",
354
+ "paddle"
355
+ ],
356
+ "ResNet34_vd": [
357
+ "openvino",
358
+ "onnxruntime",
359
+ "paddle"
360
+ ],
361
+ "ResNet50": [
362
+ "openvino",
363
+ "onnxruntime",
364
+ "paddle"
365
+ ],
366
+ "ResNet50_vd": [
367
+ "openvino",
368
+ "onnxruntime",
369
+ "paddle"
370
+ ],
371
+ "StarNet-S1": [
372
+ "openvino",
373
+ "onnxruntime",
374
+ "paddle"
375
+ ],
376
+ "StarNet-S2": [
377
+ "openvino",
378
+ "onnxruntime",
379
+ "paddle"
380
+ ],
381
+ "StarNet-S3": [
382
+ "openvino",
383
+ "onnxruntime",
384
+ "paddle"
385
+ ],
386
+ "StarNet-S4": [
387
+ "openvino",
388
+ "onnxruntime",
389
+ "paddle"
390
+ ],
391
+ "PP-ShiTuV2_rec_CLIP_vit_base": [
392
+ "paddle"
393
+ ],
394
+ "PP-ShiTuV2_rec_CLIP_vit_large": [
395
+ "paddle"
396
+ ],
397
+ "PP-ShiTuV2_rec": [
398
+ "openvino",
399
+ "onnxruntime",
400
+ "paddle"
401
+ ],
402
+ "CLIP_vit_base_patch16_448_ML": [
403
+ "openvino",
404
+ "paddle"
405
+ ],
406
+ "PP-HGNetV2-B0_ML": [
407
+ "openvino",
408
+ "onnxruntime",
409
+ "paddle"
410
+ ],
411
+ "PP-HGNetV2-B4_ML": [
412
+ "openvino",
413
+ "onnxruntime",
414
+ "paddle"
415
+ ],
416
+ "PP-HGNetV2-B6_ML": [
417
+ "openvino",
418
+ "paddle",
419
+ "onnxruntime"
420
+ ],
421
+ "PP-LCNet_x1_0_ML": [
422
+ "openvino",
423
+ "onnxruntime",
424
+ "paddle"
425
+ ],
426
+ "ResNet50_ML": [
427
+ "openvino",
428
+ "onnxruntime",
429
+ "paddle"
430
+ ],
431
+ "UVDoc": [
432
+ "paddle"
433
+ ],
434
+ "PP-TinyPose_128x96": [
435
+ "openvino",
436
+ "onnxruntime",
437
+ "paddle"
438
+ ],
439
+ "PP-TinyPose_256x192": [
440
+ "openvino",
441
+ "onnxruntime",
442
+ "paddle"
443
+ ],
444
+ "PP-DocLayout-L": [
445
+ "onnxruntime",
446
+ "paddle"
447
+ ],
448
+ "PP-DocLayout_plus-L": [
449
+ "onnxruntime",
450
+ "paddle"
451
+ ],
452
+ "PP-DocBlockLayout": [
453
+ "onnxruntime",
454
+ "paddle"
455
+ ],
456
+ "RT-DETR-H_layout_17cls": [
457
+ "onnxruntime",
458
+ "paddle"
459
+ ],
460
+ "RT-DETR-H_layout_3cls": [
461
+ "onnxruntime",
462
+ "paddle"
463
+ ],
464
+ "PP-ShiTuV2_det": [
465
+ "openvino",
466
+ "onnxruntime",
467
+ "paddle"
468
+ ],
469
+ "RT-DETR-H": [
470
+ "onnxruntime",
471
+ "paddle"
472
+ ],
473
+ "RT-DETR-L": [
474
+ "onnxruntime",
475
+ "paddle"
476
+ ],
477
+ "RT-DETR-R18": [
478
+ "onnxruntime",
479
+ "paddle"
480
+ ],
481
+ "RT-DETR-R50": [
482
+ "onnxruntime",
483
+ "paddle"
484
+ ],
485
+ "RT-DETR-X": [
486
+ "onnxruntime",
487
+ "paddle"
488
+ ],
489
+ "PP-LCNet_x1_0_pedestrian_attribute": [
490
+ "openvino",
491
+ "onnxruntime",
492
+ "paddle"
493
+ ],
494
+ "PP-OCRv4_mobile_seal_det": [
495
+ "openvino",
496
+ "onnxruntime",
497
+ "paddle"
498
+ ],
499
+ "PP-OCRv4_server_seal_det": [
500
+ "openvino",
501
+ "onnxruntime",
502
+ "paddle"
503
+ ],
504
+ "Deeplabv3-R101": [
505
+ "openvino",
506
+ "onnxruntime",
507
+ "paddle"
508
+ ],
509
+ "Deeplabv3-R50": [
510
+ "openvino",
511
+ "onnxruntime",
512
+ "paddle"
513
+ ],
514
+ "Deeplabv3_Plus-R101": [
515
+ "openvino",
516
+ "onnxruntime",
517
+ "paddle"
518
+ ],
519
+ "Deeplabv3_Plus-R50": [
520
+ "openvino",
521
+ "onnxruntime",
522
+ "paddle"
523
+ ],
524
+ "OCRNet_HRNet-W18": [
525
+ "openvino",
526
+ "onnxruntime",
527
+ "paddle"
528
+ ],
529
+ "OCRNet_HRNet-W48": [
530
+ "openvino",
531
+ "onnxruntime"
532
+ ],
533
+ "SeaFormer_base": [
534
+ "openvino",
535
+ "onnxruntime",
536
+ "paddle"
537
+ ],
538
+ "SeaFormer_large": [
539
+ "openvino",
540
+ "onnxruntime",
541
+ "paddle"
542
+ ],
543
+ "SeaFormer_small": [
544
+ "openvino",
545
+ "onnxruntime",
546
+ "paddle"
547
+ ],
548
+ "SeaFormer_tiny": [
549
+ "openvino",
550
+ "onnxruntime",
551
+ "paddle"
552
+ ],
553
+ "RT-DETR-L_wired_table_cell_det": [
554
+ "onnxruntime",
555
+ "paddle"
556
+ ],
557
+ "RT-DETR-L_wireless_table_cell_det": [
558
+ "onnxruntime",
559
+ "paddle"
560
+ ],
561
+ "PP-LCNet_x1_0_table_cls": [
562
+ "openvino",
563
+ "onnxruntime",
564
+ "paddle"
565
+ ],
566
+ "PP-OCRv3_mobile_det": [
567
+ "openvino",
568
+ "onnxruntime",
569
+ "paddle"
570
+ ],
571
+ "PP-OCRv3_server_det": [
572
+ "openvino",
573
+ "paddle",
574
+ "onnxruntime"
575
+ ],
576
+ "PP-OCRv4_mobile_det": [
577
+ "openvino",
578
+ "onnxruntime",
579
+ "paddle"
580
+ ],
581
+ "PP-OCRv4_server_det": [
582
+ "paddle",
583
+ "openvino",
584
+ "onnxruntime"
585
+ ],
586
+ "PP-OCRv3_mobile_rec": [
587
+ "openvino",
588
+ "onnxruntime",
589
+ "paddle"
590
+ ],
591
+ "PP-OCRv4_mobile_rec": [
592
+ "openvino",
593
+ "onnxruntime",
594
+ "paddle"
595
+ ],
596
+ "PP-OCRv4_server_rec_doc": [
597
+ "paddle",
598
+ "openvino",
599
+ "onnxruntime"
600
+ ],
601
+ "PP-OCRv4_server_rec": [
602
+ "paddle",
603
+ "openvino",
604
+ "onnxruntime"
605
+ ],
606
+ "arabic_PP-OCRv3_mobile_rec": [
607
+ "openvino",
608
+ "onnxruntime",
609
+ "paddle"
610
+ ],
611
+ "ch_RepSVTR_rec": [
612
+ "openvino",
613
+ "onnxruntime",
614
+ "paddle"
615
+ ],
616
+ "ch_SVTRv2_rec": [
617
+ "openvino",
618
+ "onnxruntime",
619
+ "paddle"
620
+ ],
621
+ "chinese_cht_PP-OCRv3_mobile_rec": [
622
+ "openvino",
623
+ "onnxruntime",
624
+ "paddle"
625
+ ],
626
+ "cyrillic_PP-OCRv3_mobile_rec": [
627
+ "openvino",
628
+ "onnxruntime",
629
+ "paddle"
630
+ ],
631
+ "devanagari_PP-OCRv3_mobile_rec": [
632
+ "openvino",
633
+ "onnxruntime",
634
+ "paddle"
635
+ ],
636
+ "en_PP-OCRv3_mobile_rec": [
637
+ "openvino",
638
+ "onnxruntime",
639
+ "paddle"
640
+ ],
641
+ "en_PP-OCRv4_mobile_rec": [
642
+ "openvino",
643
+ "onnxruntime",
644
+ "paddle"
645
+ ],
646
+ "japan_PP-OCRv3_mobile_rec": [
647
+ "openvino",
648
+ "onnxruntime",
649
+ "paddle"
650
+ ],
651
+ "ka_PP-OCRv3_mobile_rec": [
652
+ "openvino",
653
+ "onnxruntime",
654
+ "paddle"
655
+ ],
656
+ "korean_PP-OCRv3_mobile_rec": [
657
+ "openvino",
658
+ "onnxruntime",
659
+ "paddle"
660
+ ],
661
+ "latin_PP-OCRv3_mobile_rec": [
662
+ "openvino",
663
+ "onnxruntime",
664
+ "paddle"
665
+ ],
666
+ "ta_PP-OCRv3_mobile_rec": [
667
+ "openvino",
668
+ "onnxruntime",
669
+ "paddle"
670
+ ],
671
+ "te_PP-OCRv3_mobile_rec": [
672
+ "openvino",
673
+ "onnxruntime",
674
+ "paddle"
675
+ ],
676
+ "PP-LCNet_x0_25_textline_ori": [
677
+ "openvino",
678
+ "onnxruntime",
679
+ "paddle"
680
+ ],
681
+ "AutoEncoder_ad": [
682
+ "onnxruntime",
683
+ "openvino",
684
+ "paddle"
685
+ ],
686
+ "DLinear_ad": [
687
+ "onnxruntime",
688
+ "paddle"
689
+ ],
690
+ "DLinear": [
691
+ "onnxruntime",
692
+ "openvino",
693
+ "paddle"
694
+ ],
695
+ "NLinear": [
696
+ "onnxruntime",
697
+ "openvino",
698
+ "paddle"
699
+ ],
700
+ "RLinear": [
701
+ "onnxruntime",
702
+ "openvino",
703
+ "paddle"
704
+ ],
705
+ "PP-LCNet_x1_0_vehicle_attribute": [
706
+ "openvino",
707
+ "onnxruntime",
708
+ "paddle"
709
+ ],
710
+ "PP-TSM-R50_8frames_uniform": [
711
+ "openvino",
712
+ "onnxruntime",
713
+ "paddle"
714
+ ],
715
+ "PP-TSMv2-LCNetV2_16frames_uniform": [
716
+ "openvino",
717
+ "onnxruntime",
718
+ "paddle"
719
+ ],
720
+ "PP-TSMv2-LCNetV2_8frames_uniform": [
721
+ "openvino",
722
+ "onnxruntime",
723
+ "paddle"
724
+ ],
725
+ "DETR-R50": [
726
+ "openvino",
727
+ "onnxruntime",
728
+ "paddle"
729
+ ],
730
+ "BlazeFace-FPN-SSH": [
731
+ "paddle"
732
+ ],
733
+ "BlazeFace": [
734
+ "paddle"
735
+ ],
736
+ "PP-YOLOE_plus-S_face": [
737
+ "openvino",
738
+ "onnxruntime",
739
+ "paddle"
740
+ ],
741
+ "PP-FormulaNet-S": [
742
+ "onnxruntime",
743
+ "paddle"
744
+ ],
745
+ "PP-YOLOE-L_human": [
746
+ "openvino",
747
+ "onnxruntime",
748
+ "paddle"
749
+ ],
750
+ "PP-YOLOE-S_human": [
751
+ "openvino",
752
+ "onnxruntime",
753
+ "paddle"
754
+ ],
755
+ "STFPM": [
756
+ "paddle"
757
+ ],
758
+ "SwinTransformer_base_patch4_window12_384": [
759
+ "onnxruntime",
760
+ "paddle"
761
+ ],
762
+ "SwinTransformer_base_patch4_window7_224": [
763
+ "onnxruntime",
764
+ "paddle"
765
+ ],
766
+ "SwinTransformer_large_patch4_window12_384": [
767
+ "onnxruntime",
768
+ "paddle"
769
+ ],
770
+ "SwinTransformer_large_patch4_window7_224": [
771
+ "onnxruntime",
772
+ "paddle"
773
+ ],
774
+ "SwinTransformer_small_patch4_window7_224": [
775
+ "onnxruntime",
776
+ "paddle"
777
+ ],
778
+ "SwinTransformer_tiny_patch4_window7_224": [
779
+ "onnxruntime",
780
+ "paddle"
781
+ ],
782
+ "Cascade-MaskRCNN-ResNet50-FPN": [
783
+ "paddle"
784
+ ],
785
+ "Cascade-MaskRCNN-ResNet50-vd-SSLDv2-FPN": [
786
+ "paddle"
787
+ ],
788
+ "MaskRCNN-ResNeXt101-vd-FPN": [
789
+ "paddle"
790
+ ],
791
+ "MaskRCNN-ResNet101-FPN": [
792
+ "paddle"
793
+ ],
794
+ "MaskRCNN-ResNet101-vd-FPN": [
795
+ "paddle"
796
+ ],
797
+ "MaskRCNN-ResNet50-FPN": [
798
+ "paddle"
799
+ ],
800
+ "MaskRCNN-ResNet50-vd-FPN": [
801
+ "paddle"
802
+ ],
803
+ "MaskRCNN-ResNet50": [
804
+ "paddle"
805
+ ],
806
+ "PP-YOLOE_seg-S": [
807
+ "openvino",
808
+ "onnxruntime",
809
+ "paddle"
810
+ ],
811
+ "SOLOv2": [
812
+ "onnxruntime",
813
+ "paddle"
814
+ ],
815
+ "PP-DocLayout-M": [
816
+ "openvino",
817
+ "onnxruntime",
818
+ "paddle"
819
+ ],
820
+ "PP-DocLayout-S": [
821
+ "openvino",
822
+ "onnxruntime",
823
+ "paddle"
824
+ ],
825
+ "PicoDet-L_layout_17cls": [
826
+ "openvino",
827
+ "onnxruntime",
828
+ "paddle"
829
+ ],
830
+ "PicoDet-L_layout_3cls": [
831
+ "openvino",
832
+ "onnxruntime",
833
+ "paddle"
834
+ ],
835
+ "PicoDet-S_layout_17cls": [
836
+ "openvino",
837
+ "onnxruntime",
838
+ "paddle"
839
+ ],
840
+ "PicoDet-S_layout_3cls": [
841
+ "openvino",
842
+ "onnxruntime",
843
+ "paddle"
844
+ ],
845
+ "PicoDet_layout_1x_table": [
846
+ "openvino",
847
+ "onnxruntime",
848
+ "paddle"
849
+ ],
850
+ "PicoDet_layout_1x": [
851
+ "openvino",
852
+ "onnxruntime",
853
+ "paddle"
854
+ ],
855
+ "Cascade-FasterRCNN-ResNet50-FPN": [
856
+ "paddle"
857
+ ],
858
+ "Cascade-FasterRCNN-ResNet50-vd-SSLDv2-FPN": [
859
+ "paddle"
860
+ ],
861
+ "CenterNet-DLA-34": [
862
+ "paddle"
863
+ ],
864
+ "CenterNet-ResNet50": [
865
+ "paddle"
866
+ ],
867
+ "FCOS-ResNet50": [
868
+ "paddle"
869
+ ],
870
+ "FasterRCNN-ResNeXt101-vd-FPN": [
871
+ "paddle"
872
+ ],
873
+ "FasterRCNN-ResNet101-FPN": [
874
+ "paddle"
875
+ ],
876
+ "FasterRCNN-ResNet101": [
877
+ "paddle"
878
+ ],
879
+ "FasterRCNN-ResNet34-FPN": [
880
+ "paddle"
881
+ ],
882
+ "FasterRCNN-ResNet50-FPN": [
883
+ "paddle"
884
+ ],
885
+ "FasterRCNN-ResNet50-vd-FPN": [
886
+ "paddle"
887
+ ],
888
+ "FasterRCNN-ResNet50-vd-SSLDv2-FPN": [
889
+ "paddle"
890
+ ],
891
+ "FasterRCNN-ResNet50": [
892
+ "paddle"
893
+ ],
894
+ "FasterRCNN-Swin-Tiny-FPN": [
895
+ "paddle"
896
+ ],
897
+ "PP-YOLOE_plus-L": [
898
+ "openvino",
899
+ "onnxruntime",
900
+ "paddle"
901
+ ],
902
+ "PP-YOLOE_plus-M": [
903
+ "openvino",
904
+ "onnxruntime",
905
+ "paddle"
906
+ ],
907
+ "PP-YOLOE_plus-S": [
908
+ "openvino",
909
+ "onnxruntime",
910
+ "paddle"
911
+ ],
912
+ "PP-YOLOE_plus-X": [
913
+ "openvino",
914
+ "onnxruntime",
915
+ "paddle"
916
+ ],
917
+ "PicoDet-L": [
918
+ "openvino",
919
+ "onnxruntime",
920
+ "paddle"
921
+ ],
922
+ "PicoDet-M": [
923
+ "openvino",
924
+ "onnxruntime",
925
+ "paddle"
926
+ ],
927
+ "PicoDet-S": [
928
+ "openvino",
929
+ "onnxruntime",
930
+ "paddle"
931
+ ],
932
+ "PicoDet-XS": [
933
+ "openvino",
934
+ "onnxruntime",
935
+ "paddle"
936
+ ],
937
+ "YOLOX-L": [
938
+ "openvino",
939
+ "onnxruntime",
940
+ "paddle"
941
+ ],
942
+ "YOLOX-M": [
943
+ "openvino",
944
+ "onnxruntime",
945
+ "paddle"
946
+ ],
947
+ "YOLOX-N": [
948
+ "openvino",
949
+ "onnxruntime",
950
+ "paddle"
951
+ ],
952
+ "YOLOX-S": [
953
+ "openvino",
954
+ "onnxruntime",
955
+ "paddle"
956
+ ],
957
+ "YOLOX-T": [
958
+ "openvino",
959
+ "onnxruntime",
960
+ "paddle"
961
+ ],
962
+ "YOLOX-X": [
963
+ "openvino",
964
+ "onnxruntime",
965
+ "paddle"
966
+ ],
967
+ "YOLOv3-DarkNet53": [
968
+ "openvino",
969
+ "paddle"
970
+ ],
971
+ "YOLOv3-MobileNetV3": [
972
+ "openvino",
973
+ "paddle"
974
+ ],
975
+ "YOLOv3-ResNet50_vd_DCN": [
976
+ "paddle"
977
+ ],
978
+ "PP-YOLOE-R-L": [
979
+ "paddle"
980
+ ],
981
+ "PP-LiteSeg-B": [
982
+ "paddle"
983
+ ],
984
+ "PP-LiteSeg-T": [
985
+ "paddle"
986
+ ],
987
+ "SegFormer-B0": [
988
+ "openvino",
989
+ "onnxruntime",
990
+ "paddle"
991
+ ],
992
+ "SegFormer-B1": [
993
+ "openvino",
994
+ "onnxruntime",
995
+ "paddle"
996
+ ],
997
+ "SegFormer-B2": [
998
+ "openvino",
999
+ "onnxruntime",
1000
+ "paddle"
1001
+ ],
1002
+ "SegFormer-B3": [
1003
+ "openvino",
1004
+ "onnxruntime"
1005
+ ],
1006
+ "SegFormer-B4": [
1007
+ "openvino",
1008
+ "onnxruntime"
1009
+ ],
1010
+ "SegFormer-B5": [
1011
+ "openvino",
1012
+ "onnxruntime"
1013
+ ],
1014
+ "PP-YOLOE_plus_SOD-L": [
1015
+ "openvino",
1016
+ "onnxruntime",
1017
+ "paddle"
1018
+ ],
1019
+ "PP-YOLOE_plus_SOD-S": [
1020
+ "openvino",
1021
+ "onnxruntime",
1022
+ "paddle"
1023
+ ],
1024
+ "SLANeXt_wired": [
1025
+ "onnxruntime",
1026
+ "paddle"
1027
+ ],
1028
+ "SLANeXt_wireless": [
1029
+ "onnxruntime",
1030
+ "paddle"
1031
+ ],
1032
+ "SLANet_plus": [
1033
+ "onnxruntime",
1034
+ "paddle"
1035
+ ],
1036
+ "SLANet": [
1037
+ "onnxruntime",
1038
+ "paddle"
1039
+ ],
1040
+ "Nonstationary_ad": [
1041
+ "onnxruntime",
1042
+ "paddle"
1043
+ ],
1044
+ "PatchTST_ad": [
1045
+ "onnxruntime",
1046
+ "paddle"
1047
+ ],
1048
+ "TimesNet_ad": [
1049
+ "onnxruntime",
1050
+ "paddle"
1051
+ ],
1052
+ "TimesNet_cls": [
1053
+ "onnxruntime",
1054
+ "paddle"
1055
+ ],
1056
+ "Nonstationary": [
1057
+ "onnxruntime",
1058
+ "paddle"
1059
+ ],
1060
+ "PatchTST": [
1061
+ "onnxruntime",
1062
+ "paddle"
1063
+ ],
1064
+ "TimesNet": [
1065
+ "onnxruntime",
1066
+ "paddle"
1067
+ ],
1068
+ "PP-YOLOE-L_vehicle": [
1069
+ "openvino",
1070
+ "onnxruntime",
1071
+ "paddle"
1072
+ ],
1073
+ "PP-YOLOE-S_vehicle": [
1074
+ "openvino",
1075
+ "onnxruntime",
1076
+ "paddle"
1077
+ ],
1078
+ "PP-FormulaNet-L": [
1079
+ "onnxruntime",
1080
+ "paddle"
1081
+ ],
1082
+ "PP-YOLOE_plus_SOD-largesize-L": [
1083
+ "openvino",
1084
+ "onnxruntime",
1085
+ "paddle"
1086
+ ],
1087
+ "LaTeX_OCR_rec": [],
1088
+ "UniMERNet": [
1089
+ "onnxruntime",
1090
+ "paddle"
1091
+ ],
1092
+ "Mask-RT-DETR-H": [
1093
+ "paddle"
1094
+ ],
1095
+ "Mask-RT-DETR-L": [
1096
+ "paddle"
1097
+ ],
1098
+ "Mask-RT-DETR-M": [
1099
+ "paddle"
1100
+ ],
1101
+ "Mask-RT-DETR-S": [
1102
+ "paddle"
1103
+ ],
1104
+ "Mask-RT-DETR-X": [
1105
+ "paddle"
1106
+ ],
1107
+ "Co-DINO-R50": [
1108
+ "paddle"
1109
+ ],
1110
+ "Co-DINO-Swin-L": [
1111
+ "paddle"
1112
+ ],
1113
+ "Co-Deformable-DETR-R50": [
1114
+ "paddle"
1115
+ ],
1116
+ "Co-Deformable-DETR-Swin-T": [
1117
+ "paddle"
1118
+ ],
1119
+ "MaskFormer_small": [
1120
+ "onnxruntime",
1121
+ "paddle"
1122
+ ],
1123
+ "MaskFormer_tiny": [
1124
+ "onnxruntime",
1125
+ "paddle"
1126
+ ],
1127
+ "TiDE": [
1128
+ "onnxruntime",
1129
+ "openvino",
1130
+ "paddle"
1131
+ ],
1132
+ "YOWO": [
1133
+ "paddle"
1134
+ ],
1135
+ "BEVFusion": [],
1136
+ "SAM-H_point": [
1137
+ "paddle"
1138
+ ],
1139
+ "SAM-H_box": [
1140
+ "paddle"
1141
+ ],
1142
+ "GroundingDINO-T": [
1143
+ "paddle"
1144
+ ],
1145
+ "YOLO-Worldv2-L": [
1146
+ "paddle"
1147
+ ],
1148
+ "PP-OCRv5_server_rec": [
1149
+ "paddle",
1150
+ "openvino",
1151
+ "onnxruntime"
1152
+ ],
1153
+ "PP-OCRv5_mobile_rec": [
1154
+ "openvino",
1155
+ "onnxruntime",
1156
+ "paddle"
1157
+ ],
1158
+ "PP-OCRv5_server_det": [
1159
+ "openvino",
1160
+ "onnxruntime",
1161
+ "paddle"
1162
+ ],
1163
+ "PP-OCRv5_mobile_det": [
1164
+ "openvino",
1165
+ "onnxruntime",
1166
+ "paddle"
1167
+ ],
1168
+ "PP-FormulaNet_plus-L": [
1169
+ "onnxruntime",
1170
+ "paddle"
1171
+ ],
1172
+ "PP-FormulaNet_plus-M": [
1173
+ "onnxruntime",
1174
+ "paddle"
1175
+ ],
1176
+ "PP-FormulaNet_plus-S": [
1177
+ "onnxruntime",
1178
+ "paddle"
1179
+ ]
1180
+ },
1181
+ "gpu_cuda118_cudnn89": {
1182
+ "PP-LCNet_x1_0_doc_ori": [
1183
+ "tensorrt_fp16",
1184
+ "paddle_tensorrt",
1185
+ "onnxruntime"
1186
+ ],
1187
+ "PicoDet_LCNet_x2_5_face": [
1188
+ "paddle_tensorrt",
1189
+ "onnxruntime"
1190
+ ],
1191
+ "MobileFaceNet": [
1192
+ "tensorrt",
1193
+ "paddle_tensorrt",
1194
+ "onnxruntime"
1195
+ ],
1196
+ "ResNet50_face": [
1197
+ "paddle_tensorrt",
1198
+ "tensorrt",
1199
+ "onnxruntime"
1200
+ ],
1201
+ "CLIP_vit_base_patch16_224": [
1202
+ "tensorrt_fp16",
1203
+ "paddle_tensorrt_fp16"
1204
+ ],
1205
+ "CLIP_vit_large_patch14_224": [
1206
+ "tensorrt_fp16",
1207
+ "paddle_tensorrt_fp16"
1208
+ ],
1209
+ "ConvNeXt_base_224": [
1210
+ "paddle_tensorrt_fp16",
1211
+ "onnxruntime",
1212
+ "tensorrt"
1213
+ ],
1214
+ "ConvNeXt_base_384": [
1215
+ "paddle_tensorrt_fp16",
1216
+ "onnxruntime",
1217
+ "tensorrt"
1218
+ ],
1219
+ "ConvNeXt_large_224": [
1220
+ "paddle_tensorrt_fp16",
1221
+ "onnxruntime",
1222
+ "tensorrt"
1223
+ ],
1224
+ "ConvNeXt_large_384": [
1225
+ "paddle_tensorrt_fp16",
1226
+ "onnxruntime",
1227
+ "tensorrt"
1228
+ ],
1229
+ "ConvNeXt_small": [
1230
+ "paddle_tensorrt_fp16",
1231
+ "onnxruntime",
1232
+ "tensorrt"
1233
+ ],
1234
+ "ConvNeXt_tiny": [
1235
+ "paddle_tensorrt_fp16",
1236
+ "onnxruntime",
1237
+ "tensorrt"
1238
+ ],
1239
+ "FasterNet-L": [
1240
+ "paddle_tensorrt_fp16",
1241
+ "tensorrt_fp16",
1242
+ "onnxruntime"
1243
+ ],
1244
+ "FasterNet-M": [
1245
+ "paddle_tensorrt_fp16",
1246
+ "tensorrt_fp16",
1247
+ "onnxruntime"
1248
+ ],
1249
+ "FasterNet-S": [
1250
+ "paddle_tensorrt_fp16",
1251
+ "tensorrt_fp16",
1252
+ "onnxruntime"
1253
+ ],
1254
+ "FasterNet-T0": [
1255
+ "paddle_tensorrt_fp16",
1256
+ "tensorrt",
1257
+ "onnxruntime"
1258
+ ],
1259
+ "FasterNet-T1": [
1260
+ "paddle_tensorrt_fp16",
1261
+ "tensorrt",
1262
+ "onnxruntime"
1263
+ ],
1264
+ "FasterNet-T2": [
1265
+ "paddle_tensorrt_fp16",
1266
+ "tensorrt_fp16",
1267
+ "onnxruntime"
1268
+ ],
1269
+ "MobileNetV1_x0_25": [
1270
+ "tensorrt",
1271
+ "paddle_tensorrt",
1272
+ "onnxruntime"
1273
+ ],
1274
+ "MobileNetV1_x0_5": [
1275
+ "paddle_tensorrt_fp16",
1276
+ "tensorrt",
1277
+ "onnxruntime"
1278
+ ],
1279
+ "MobileNetV1_x0_75": [
1280
+ "tensorrt_fp16",
1281
+ "paddle_tensorrt_fp16",
1282
+ "onnxruntime"
1283
+ ],
1284
+ "MobileNetV1_x1_0": [
1285
+ "tensorrt_fp16",
1286
+ "paddle_tensorrt_fp16",
1287
+ "onnxruntime"
1288
+ ],
1289
+ "MobileNetV2_x0_25": [
1290
+ "paddle_tensorrt",
1291
+ "tensorrt",
1292
+ "onnxruntime"
1293
+ ],
1294
+ "MobileNetV2_x0_5": [
1295
+ "paddle_tensorrt_fp16",
1296
+ "tensorrt",
1297
+ "onnxruntime"
1298
+ ],
1299
+ "MobileNetV2_x1_0": [
1300
+ "paddle_tensorrt_fp16",
1301
+ "tensorrt_fp16",
1302
+ "onnxruntime"
1303
+ ],
1304
+ "MobileNetV2_x1_5": [
1305
+ "paddle_tensorrt_fp16",
1306
+ "tensorrt_fp16",
1307
+ "onnxruntime"
1308
+ ],
1309
+ "MobileNetV2_x2_0": [
1310
+ "paddle_tensorrt_fp16",
1311
+ "tensorrt_fp16",
1312
+ "onnxruntime"
1313
+ ],
1314
+ "MobileNetV3_large_x0_35": [
1315
+ "tensorrt_fp16",
1316
+ "paddle_tensorrt",
1317
+ "onnxruntime"
1318
+ ],
1319
+ "MobileNetV3_large_x0_5": [
1320
+ "tensorrt_fp16",
1321
+ "paddle_tensorrt_fp16",
1322
+ "onnxruntime"
1323
+ ],
1324
+ "MobileNetV3_large_x0_75": [
1325
+ "paddle_tensorrt_fp16",
1326
+ "tensorrt",
1327
+ "onnxruntime"
1328
+ ],
1329
+ "MobileNetV3_large_x1_0": [
1330
+ "tensorrt_fp16",
1331
+ "paddle_tensorrt_fp16",
1332
+ "onnxruntime"
1333
+ ],
1334
+ "MobileNetV3_large_x1_25": [
1335
+ "tensorrt_fp16",
1336
+ "paddle_tensorrt_fp16",
1337
+ "onnxruntime"
1338
+ ],
1339
+ "MobileNetV3_small_x0_35": [
1340
+ "tensorrt",
1341
+ "paddle_tensorrt",
1342
+ "onnxruntime"
1343
+ ],
1344
+ "MobileNetV3_small_x0_5": [
1345
+ "tensorrt",
1346
+ "paddle_tensorrt",
1347
+ "onnxruntime"
1348
+ ],
1349
+ "MobileNetV3_small_x0_75": [
1350
+ "tensorrt",
1351
+ "paddle_tensorrt",
1352
+ "onnxruntime"
1353
+ ],
1354
+ "MobileNetV3_small_x1_0": [
1355
+ "tensorrt",
1356
+ "paddle_tensorrt",
1357
+ "onnxruntime"
1358
+ ],
1359
+ "MobileNetV3_small_x1_25": [
1360
+ "paddle_tensorrt_fp16",
1361
+ "tensorrt",
1362
+ "onnxruntime"
1363
+ ],
1364
+ "MobileNetV4_conv_large": [
1365
+ "paddle_tensorrt_fp16",
1366
+ "tensorrt",
1367
+ "onnxruntime"
1368
+ ],
1369
+ "MobileNetV4_conv_medium": [
1370
+ "paddle_tensorrt_fp16",
1371
+ "tensorrt_fp16",
1372
+ "onnxruntime"
1373
+ ],
1374
+ "MobileNetV4_conv_small": [
1375
+ "paddle_tensorrt_fp16",
1376
+ "tensorrt",
1377
+ "onnxruntime"
1378
+ ],
1379
+ "MobileNetV4_hybrid_large": [
1380
+ "tensorrt_fp16",
1381
+ "paddle_tensorrt",
1382
+ "onnxruntime"
1383
+ ],
1384
+ "MobileNetV4_hybrid_medium": [
1385
+ "paddle_tensorrt_fp16",
1386
+ "tensorrt_fp16"
1387
+ ],
1388
+ "PP-HGNetV2-B0": [
1389
+ "paddle_tensorrt_fp16",
1390
+ "tensorrt_fp16",
1391
+ "onnxruntime"
1392
+ ],
1393
+ "PP-HGNetV2-B1": [
1394
+ "paddle_tensorrt_fp16",
1395
+ "tensorrt_fp16",
1396
+ "onnxruntime"
1397
+ ],
1398
+ "PP-HGNetV2-B2": [
1399
+ "paddle_tensorrt_fp16",
1400
+ "tensorrt_fp16",
1401
+ "onnxruntime"
1402
+ ],
1403
+ "PP-HGNetV2-B3": [
1404
+ "paddle_tensorrt",
1405
+ "tensorrt",
1406
+ "onnxruntime"
1407
+ ],
1408
+ "PP-HGNetV2-B4": [
1409
+ "paddle_tensorrt_fp16",
1410
+ "tensorrt_fp16",
1411
+ "onnxruntime"
1412
+ ],
1413
+ "PP-HGNetV2-B5": [
1414
+ "paddle_tensorrt_fp16",
1415
+ "tensorrt_fp16",
1416
+ "onnxruntime"
1417
+ ],
1418
+ "PP-HGNetV2-B6": [
1419
+ "paddle_tensorrt_fp16",
1420
+ "tensorrt_fp16",
1421
+ "onnxruntime"
1422
+ ],
1423
+ "PP-HGNet_base": [
1424
+ "paddle_tensorrt_fp16",
1425
+ "tensorrt_fp16",
1426
+ "onnxruntime"
1427
+ ],
1428
+ "PP-HGNet_small": [
1429
+ "paddle_tensorrt_fp16",
1430
+ "tensorrt_fp16",
1431
+ "onnxruntime"
1432
+ ],
1433
+ "PP-HGNet_tiny": [
1434
+ "paddle_tensorrt_fp16",
1435
+ "tensorrt_fp16",
1436
+ "onnxruntime"
1437
+ ],
1438
+ "PP-LCNetV2_base": [
1439
+ "paddle_tensorrt_fp16",
1440
+ "tensorrt_fp16",
1441
+ "onnxruntime"
1442
+ ],
1443
+ "PP-LCNetV2_large": [
1444
+ "paddle_tensorrt_fp16",
1445
+ "tensorrt_fp16",
1446
+ "onnxruntime"
1447
+ ],
1448
+ "PP-LCNetV2_small": [
1449
+ "paddle_tensorrt_fp16",
1450
+ "tensorrt",
1451
+ "onnxruntime"
1452
+ ],
1453
+ "PP-LCNet_x0_25": [
1454
+ "tensorrt",
1455
+ "paddle_tensorrt",
1456
+ "onnxruntime"
1457
+ ],
1458
+ "PP-LCNet_x0_35": [
1459
+ "tensorrt",
1460
+ "paddle_tensorrt",
1461
+ "onnxruntime"
1462
+ ],
1463
+ "PP-LCNet_x0_5": [
1464
+ "tensorrt",
1465
+ "paddle_tensorrt",
1466
+ "onnxruntime"
1467
+ ],
1468
+ "PP-LCNet_x0_75": [
1469
+ "paddle_tensorrt_fp16",
1470
+ "tensorrt",
1471
+ "onnxruntime"
1472
+ ],
1473
+ "PP-LCNet_x1_0": [
1474
+ "paddle_tensorrt_fp16",
1475
+ "tensorrt",
1476
+ "onnxruntime"
1477
+ ],
1478
+ "PP-LCNet_x1_5": [
1479
+ "paddle_tensorrt_fp16",
1480
+ "tensorrt",
1481
+ "onnxruntime"
1482
+ ],
1483
+ "PP-LCNet_x2_0": [
1484
+ "paddle_tensorrt_fp16",
1485
+ "tensorrt",
1486
+ "onnxruntime"
1487
+ ],
1488
+ "PP-LCNet_x2_5": [
1489
+ "paddle_tensorrt_fp16",
1490
+ "tensorrt",
1491
+ "onnxruntime"
1492
+ ],
1493
+ "ResNet101": [
1494
+ "paddle_tensorrt_fp16",
1495
+ "tensorrt_fp16",
1496
+ "onnxruntime"
1497
+ ],
1498
+ "ResNet101_vd": [
1499
+ "paddle_tensorrt_fp16",
1500
+ "tensorrt_fp16",
1501
+ "onnxruntime"
1502
+ ],
1503
+ "ResNet152": [
1504
+ "paddle_tensorrt_fp16",
1505
+ "tensorrt_fp16",
1506
+ "onnxruntime"
1507
+ ],
1508
+ "ResNet152_vd": [
1509
+ "paddle_tensorrt_fp16",
1510
+ "tensorrt_fp16",
1511
+ "onnxruntime"
1512
+ ],
1513
+ "ResNet18": [
1514
+ "paddle_tensorrt_fp16",
1515
+ "tensorrt",
1516
+ "onnxruntime"
1517
+ ],
1518
+ "ResNet18_vd": [
1519
+ "paddle_tensorrt_fp16",
1520
+ "tensorrt",
1521
+ "onnxruntime"
1522
+ ],
1523
+ "ResNet200_vd": [
1524
+ "paddle_tensorrt_fp16",
1525
+ "tensorrt_fp16",
1526
+ "onnxruntime"
1527
+ ],
1528
+ "ResNet34": [
1529
+ "paddle_tensorrt_fp16",
1530
+ "tensorrt_fp16",
1531
+ "onnxruntime"
1532
+ ],
1533
+ "ResNet34_vd": [
1534
+ "paddle_tensorrt_fp16",
1535
+ "tensorrt_fp16",
1536
+ "onnxruntime"
1537
+ ],
1538
+ "ResNet50": [
1539
+ "paddle_tensorrt_fp16",
1540
+ "tensorrt",
1541
+ "onnxruntime"
1542
+ ],
1543
+ "ResNet50_vd": [
1544
+ "tensorrt_fp16",
1545
+ "paddle_tensorrt_fp16",
1546
+ "onnxruntime"
1547
+ ],
1548
+ "StarNet-S1": [
1549
+ "paddle_tensorrt_fp16",
1550
+ "tensorrt",
1551
+ "onnxruntime"
1552
+ ],
1553
+ "StarNet-S2": [
1554
+ "paddle_tensorrt_fp16",
1555
+ "tensorrt",
1556
+ "onnxruntime"
1557
+ ],
1558
+ "StarNet-S3": [
1559
+ "paddle_tensorrt_fp16",
1560
+ "tensorrt",
1561
+ "onnxruntime"
1562
+ ],
1563
+ "StarNet-S4": [
1564
+ "paddle_tensorrt_fp16",
1565
+ "tensorrt",
1566
+ "onnxruntime"
1567
+ ],
1568
+ "PP-ShiTuV2_rec_CLIP_vit_base": [
1569
+ "tensorrt",
1570
+ "paddle_tensorrt"
1571
+ ],
1572
+ "PP-ShiTuV2_rec_CLIP_vit_large": [
1573
+ "paddle",
1574
+ "tensorrt"
1575
+ ],
1576
+ "PP-ShiTuV2_rec": [
1577
+ "paddle_tensorrt",
1578
+ "tensorrt",
1579
+ "onnxruntime"
1580
+ ],
1581
+ "CLIP_vit_base_patch16_448_ML": [
1582
+ "tensorrt_fp16",
1583
+ "paddle_tensorrt_fp16"
1584
+ ],
1585
+ "PP-HGNetV2-B0_ML": [
1586
+ "paddle_tensorrt_fp16",
1587
+ "tensorrt",
1588
+ "onnxruntime"
1589
+ ],
1590
+ "PP-HGNetV2-B4_ML": [
1591
+ "paddle_tensorrt_fp16",
1592
+ "tensorrt_fp16",
1593
+ "onnxruntime"
1594
+ ],
1595
+ "PP-HGNetV2-B6_ML": [
1596
+ "paddle_tensorrt_fp16",
1597
+ "tensorrt_fp16",
1598
+ "onnxruntime"
1599
+ ],
1600
+ "PP-LCNet_x1_0_ML": [
1601
+ "paddle_tensorrt_fp16",
1602
+ "tensorrt",
1603
+ "onnxruntime"
1604
+ ],
1605
+ "ResNet50_ML": [
1606
+ "paddle_tensorrt_fp16",
1607
+ "tensorrt",
1608
+ "onnxruntime"
1609
+ ],
1610
+ "UVDoc": [
1611
+ "paddle"
1612
+ ],
1613
+ "PP-TinyPose_128x96": [
1614
+ "tensorrt",
1615
+ "onnxruntime",
1616
+ "paddle"
1617
+ ],
1618
+ "PP-TinyPose_256x192": [
1619
+ "tensorrt",
1620
+ "onnxruntime",
1621
+ "paddle"
1622
+ ],
1623
+ "PP-DocLayout-L": [
1624
+ "paddle",
1625
+ "onnxruntime"
1626
+ ],
1627
+ "RT-DETR-H_layout_17cls": [
1628
+ "paddle_tensorrt",
1629
+ "tensorrt",
1630
+ "onnxruntime"
1631
+ ],
1632
+ "RT-DETR-H_layout_3cls": [
1633
+ "paddle_tensorrt_fp16",
1634
+ "tensorrt",
1635
+ "onnxruntime"
1636
+ ],
1637
+ "PP-ShiTuV2_det": [
1638
+ "paddle_tensorrt_fp16",
1639
+ "onnxruntime"
1640
+ ],
1641
+ "RT-DETR-H": [
1642
+ "paddle_tensorrt",
1643
+ "tensorrt",
1644
+ "onnxruntime"
1645
+ ],
1646
+ "RT-DETR-L": [
1647
+ "paddle_tensorrt",
1648
+ "tensorrt",
1649
+ "onnxruntime"
1650
+ ],
1651
+ "RT-DETR-R18": [
1652
+ "paddle_tensorrt",
1653
+ "tensorrt",
1654
+ "onnxruntime"
1655
+ ],
1656
+ "RT-DETR-R50": [
1657
+ "paddle_tensorrt_fp16",
1658
+ "tensorrt",
1659
+ "onnxruntime"
1660
+ ],
1661
+ "RT-DETR-X": [
1662
+ "paddle_tensorrt",
1663
+ "tensorrt",
1664
+ "onnxruntime"
1665
+ ],
1666
+ "PP-LCNet_x1_0_pedestrian_attribute": [
1667
+ "paddle_tensorrt",
1668
+ "tensorrt",
1669
+ "onnxruntime"
1670
+ ],
1671
+ "PP-OCRv4_mobile_seal_det": [
1672
+ "paddle_tensorrt_fp16",
1673
+ "tensorrt",
1674
+ "onnxruntime"
1675
+ ],
1676
+ "PP-OCRv4_server_seal_det": [
1677
+ "paddle_tensorrt",
1678
+ "tensorrt",
1679
+ "onnxruntime"
1680
+ ],
1681
+ "Deeplabv3-R101": [
1682
+ "paddle_tensorrt",
1683
+ "tensorrt",
1684
+ "onnxruntime"
1685
+ ],
1686
+ "Deeplabv3-R50": [
1687
+ "paddle_tensorrt",
1688
+ "tensorrt",
1689
+ "onnxruntime"
1690
+ ],
1691
+ "Deeplabv3_Plus-R101": [
1692
+ "tensorrt_fp16",
1693
+ "paddle_tensorrt",
1694
+ "onnxruntime"
1695
+ ],
1696
+ "Deeplabv3_Plus-R50": [
1697
+ "paddle_tensorrt",
1698
+ "tensorrt",
1699
+ "onnxruntime"
1700
+ ],
1701
+ "OCRNet_HRNet-W18": [
1702
+ "paddle_tensorrt",
1703
+ "tensorrt",
1704
+ "onnxruntime"
1705
+ ],
1706
+ "OCRNet_HRNet-W48": [
1707
+ "paddle_tensorrt",
1708
+ "tensorrt",
1709
+ "onnxruntime"
1710
+ ],
1711
+ "SeaFormer_base": [
1712
+ "onnxruntime",
1713
+ "paddle",
1714
+ "tensorrt"
1715
+ ],
1716
+ "SeaFormer_large": [
1717
+ "onnxruntime",
1718
+ "paddle",
1719
+ "tensorrt"
1720
+ ],
1721
+ "SeaFormer_small": [
1722
+ "onnxruntime",
1723
+ "paddle",
1724
+ "tensorrt"
1725
+ ],
1726
+ "SeaFormer_tiny": [
1727
+ "onnxruntime",
1728
+ "paddle",
1729
+ "tensorrt"
1730
+ ],
1731
+ "RT-DETR-L_wired_table_cell_det": [
1732
+ "paddle_tensorrt",
1733
+ "tensorrt",
1734
+ "onnxruntime"
1735
+ ],
1736
+ "RT-DETR-L_wireless_table_cell_det": [
1737
+ "paddle_tensorrt_fp16",
1738
+ "tensorrt",
1739
+ "onnxruntime"
1740
+ ],
1741
+ "PP-LCNet_x1_0_table_cls": [
1742
+ "paddle_tensorrt",
1743
+ "tensorrt",
1744
+ "onnxruntime"
1745
+ ],
1746
+ "PP-OCRv3_mobile_det": [
1747
+ "paddle_tensorrt_fp16",
1748
+ "tensorrt_fp16",
1749
+ "onnxruntime"
1750
+ ],
1751
+ "PP-OCRv3_server_det": [
1752
+ "paddle_tensorrt",
1753
+ "tensorrt",
1754
+ "onnxruntime"
1755
+ ],
1756
+ "PP-OCRv4_mobile_det": [
1757
+ "paddle_tensorrt_fp16",
1758
+ "tensorrt_fp16",
1759
+ "onnxruntime"
1760
+ ],
1761
+ "PP-OCRv4_server_det": [
1762
+ "paddle_tensorrt_fp16",
1763
+ "tensorrt",
1764
+ "onnxruntime"
1765
+ ],
1766
+ "PP-OCRv3_mobile_rec": [
1767
+ "paddle_tensorrt_fp16",
1768
+ "tensorrt_fp16",
1769
+ "onnxruntime"
1770
+ ],
1771
+ "PP-OCRv4_mobile_rec": [
1772
+ "paddle_tensorrt_fp16",
1773
+ "tensorrt",
1774
+ "onnxruntime"
1775
+ ],
1776
+ "PP-OCRv4_server_rec_doc": [
1777
+ "paddle_tensorrt_fp16",
1778
+ "tensorrt_fp16",
1779
+ "onnxruntime"
1780
+ ],
1781
+ "PP-OCRv4_server_rec": [
1782
+ "paddle_tensorrt_fp16",
1783
+ "tensorrt_fp16",
1784
+ "onnxruntime"
1785
+ ],
1786
+ "arabic_PP-OCRv3_mobile_rec": [
1787
+ "paddle_tensorrt_fp16",
1788
+ "tensorrt_fp16",
1789
+ "onnxruntime"
1790
+ ],
1791
+ "ch_RepSVTR_rec": [
1792
+ "paddle_tensorrt_fp16",
1793
+ "tensorrt_fp16",
1794
+ "onnxruntime"
1795
+ ],
1796
+ "ch_SVTRv2_rec": [
1797
+ "paddle_tensorrt_fp16",
1798
+ "tensorrt",
1799
+ "onnxruntime"
1800
+ ],
1801
+ "chinese_cht_PP-OCRv3_mobile_rec": [
1802
+ "paddle_tensorrt_fp16",
1803
+ "tensorrt_fp16",
1804
+ "onnxruntime"
1805
+ ],
1806
+ "cyrillic_PP-OCRv3_mobile_rec": [
1807
+ "tensorrt_fp16",
1808
+ "paddle_tensorrt_fp16",
1809
+ "onnxruntime"
1810
+ ],
1811
+ "devanagari_PP-OCRv3_mobile_rec": [
1812
+ "tensorrt_fp16",
1813
+ "paddle_tensorrt_fp16",
1814
+ "onnxruntime"
1815
+ ],
1816
+ "en_PP-OCRv3_mobile_rec": [
1817
+ "tensorrt_fp16",
1818
+ "paddle_tensorrt_fp16",
1819
+ "onnxruntime"
1820
+ ],
1821
+ "en_PP-OCRv4_mobile_rec": [
1822
+ "paddle_tensorrt",
1823
+ "tensorrt",
1824
+ "onnxruntime"
1825
+ ],
1826
+ "japan_PP-OCRv3_mobile_rec": [
1827
+ "paddle_tensorrt_fp16",
1828
+ "tensorrt",
1829
+ "onnxruntime"
1830
+ ],
1831
+ "ka_PP-OCRv3_mobile_rec": [
1832
+ "paddle_tensorrt_fp16",
1833
+ "tensorrt_fp16",
1834
+ "onnxruntime"
1835
+ ],
1836
+ "korean_PP-OCRv3_mobile_rec": [
1837
+ "paddle_tensorrt_fp16",
1838
+ "tensorrt_fp16",
1839
+ "onnxruntime"
1840
+ ],
1841
+ "latin_PP-OCRv3_mobile_rec": [
1842
+ "tensorrt_fp16",
1843
+ "paddle_tensorrt_fp16",
1844
+ "onnxruntime"
1845
+ ],
1846
+ "ta_PP-OCRv3_mobile_rec": [
1847
+ "tensorrt_fp16",
1848
+ "paddle_tensorrt_fp16",
1849
+ "onnxruntime"
1850
+ ],
1851
+ "te_PP-OCRv3_mobile_rec": [
1852
+ "tensorrt_fp16",
1853
+ "paddle_tensorrt_fp16",
1854
+ "onnxruntime"
1855
+ ],
1856
+ "PP-LCNet_x0_25_textline_ori": [
1857
+ "tensorrt",
1858
+ "paddle_tensorrt",
1859
+ "onnxruntime"
1860
+ ],
1861
+ "AutoEncoder_ad": [
1862
+ "tensorrt",
1863
+ "onnxruntime",
1864
+ "paddle_tensorrt"
1865
+ ],
1866
+ "DLinear_ad": [
1867
+ "tensorrt_fp16",
1868
+ "paddle_tensorrt",
1869
+ "onnxruntime"
1870
+ ],
1871
+ "DLinear": [
1872
+ "tensorrt_fp16",
1873
+ "paddle_tensorrt_fp16",
1874
+ "onnxruntime"
1875
+ ],
1876
+ "NLinear": [
1877
+ "tensorrt",
1878
+ "onnxruntime",
1879
+ "paddle_tensorrt"
1880
+ ],
1881
+ "RLinear": [
1882
+ "tensorrt_fp16",
1883
+ "onnxruntime",
1884
+ "paddle_tensorrt_fp16"
1885
+ ],
1886
+ "PP-LCNet_x1_0_vehicle_attribute": [
1887
+ "tensorrt",
1888
+ "paddle_tensorrt_fp16",
1889
+ "onnxruntime"
1890
+ ],
1891
+ "PP-TSM-R50_8frames_uniform": [
1892
+ "tensorrt",
1893
+ "paddle",
1894
+ "onnxruntime"
1895
+ ],
1896
+ "PP-TSMv2-LCNetV2_16frames_uniform": [
1897
+ "tensorrt_fp16",
1898
+ "paddle",
1899
+ "onnxruntime"
1900
+ ],
1901
+ "PP-TSMv2-LCNetV2_8frames_uniform": [
1902
+ "tensorrt_fp16",
1903
+ "paddle",
1904
+ "onnxruntime"
1905
+ ],
1906
+ "DETR-R50": [
1907
+ "paddle_tensorrt_fp16",
1908
+ "onnxruntime"
1909
+ ],
1910
+ "BlazeFace-FPN-SSH": [
1911
+ "paddle_tensorrt_fp16"
1912
+ ],
1913
+ "BlazeFace": [
1914
+ "paddle_tensorrt"
1915
+ ],
1916
+ "PP-YOLOE_plus-S_face": [
1917
+ "paddle_tensorrt_fp16",
1918
+ "onnxruntime"
1919
+ ],
1920
+ "PP-FormulaNet-S": [
1921
+ "paddle"
1922
+ ],
1923
+ "PP-YOLOE-L_human": [
1924
+ "paddle_tensorrt",
1925
+ "onnxruntime"
1926
+ ],
1927
+ "PP-YOLOE-S_human": [
1928
+ "paddle_tensorrt",
1929
+ "onnxruntime"
1930
+ ],
1931
+ "STFPM": [
1932
+ "paddle_tensorrt_fp16"
1933
+ ],
1934
+ "SwinTransformer_base_patch4_window12_384": [
1935
+ "paddle_tensorrt",
1936
+ "onnxruntime"
1937
+ ],
1938
+ "SwinTransformer_base_patch4_window7_224": [
1939
+ "paddle_tensorrt_fp16",
1940
+ "onnxruntime"
1941
+ ],
1942
+ "SwinTransformer_large_patch4_window12_384": [
1943
+ "paddle_tensorrt_fp16",
1944
+ "onnxruntime"
1945
+ ],
1946
+ "SwinTransformer_large_patch4_window7_224": [
1947
+ "paddle_tensorrt_fp16",
1948
+ "onnxruntime"
1949
+ ],
1950
+ "SwinTransformer_small_patch4_window7_224": [
1951
+ "paddle_tensorrt_fp16",
1952
+ "onnxruntime"
1953
+ ],
1954
+ "SwinTransformer_tiny_patch4_window7_224": [
1955
+ "paddle_tensorrt_fp16",
1956
+ "onnxruntime"
1957
+ ],
1958
+ "Cascade-MaskRCNN-ResNet50-FPN": [
1959
+ "paddle"
1960
+ ],
1961
+ "Cascade-MaskRCNN-ResNet50-vd-SSLDv2-FPN": [
1962
+ "paddle"
1963
+ ],
1964
+ "MaskRCNN-ResNeXt101-vd-FPN": [
1965
+ "paddle"
1966
+ ],
1967
+ "MaskRCNN-ResNet101-FPN": [
1968
+ "paddle"
1969
+ ],
1970
+ "MaskRCNN-ResNet101-vd-FPN": [
1971
+ "paddle"
1972
+ ],
1973
+ "MaskRCNN-ResNet50-FPN": [
1974
+ "paddle"
1975
+ ],
1976
+ "MaskRCNN-ResNet50-vd-FPN": [
1977
+ "paddle"
1978
+ ],
1979
+ "MaskRCNN-ResNet50": [
1980
+ "paddle"
1981
+ ],
1982
+ "PP-YOLOE_seg-S": [
1983
+ "paddle_tensorrt_fp16",
1984
+ "onnxruntime"
1985
+ ],
1986
+ "SOLOv2": [
1987
+ "paddle",
1988
+ "onnxruntime"
1989
+ ],
1990
+ "PP-DocLayout-M": [
1991
+ "paddle_tensorrt_fp16",
1992
+ "onnxruntime"
1993
+ ],
1994
+ "PP-DocLayout-S": [
1995
+ "paddle_tensorrt",
1996
+ "onnxruntime"
1997
+ ],
1998
+ "PicoDet-L_layout_17cls": [
1999
+ "paddle_tensorrt",
2000
+ "onnxruntime"
2001
+ ],
2002
+ "PicoDet-L_layout_3cls": [
2003
+ "paddle_tensorrt",
2004
+ "onnxruntime"
2005
+ ],
2006
+ "PicoDet-S_layout_17cls": [
2007
+ "paddle_tensorrt",
2008
+ "onnxruntime"
2009
+ ],
2010
+ "PicoDet-S_layout_3cls": [
2011
+ "paddle_tensorrt",
2012
+ "onnxruntime"
2013
+ ],
2014
+ "PicoDet_layout_1x_table": [
2015
+ "paddle_tensorrt",
2016
+ "onnxruntime"
2017
+ ],
2018
+ "PicoDet_layout_1x": [
2019
+ "paddle_tensorrt",
2020
+ "onnxruntime"
2021
+ ],
2022
+ "Cascade-FasterRCNN-ResNet50-FPN": [
2023
+ "paddle"
2024
+ ],
2025
+ "Cascade-FasterRCNN-ResNet50-vd-SSLDv2-FPN": [
2026
+ "paddle"
2027
+ ],
2028
+ "CenterNet-DLA-34": [
2029
+ "paddle"
2030
+ ],
2031
+ "CenterNet-ResNet50": [
2032
+ "paddle"
2033
+ ],
2034
+ "FCOS-ResNet50": [
2035
+ "paddle_tensorrt_fp16"
2036
+ ],
2037
+ "FasterRCNN-ResNeXt101-vd-FPN": [
2038
+ "paddle"
2039
+ ],
2040
+ "FasterRCNN-ResNet101-FPN": [
2041
+ "paddle"
2042
+ ],
2043
+ "FasterRCNN-ResNet101": [
2044
+ "paddle"
2045
+ ],
2046
+ "FasterRCNN-ResNet34-FPN": [
2047
+ "paddle"
2048
+ ],
2049
+ "FasterRCNN-ResNet50-FPN": [
2050
+ "paddle"
2051
+ ],
2052
+ "FasterRCNN-ResNet50-vd-FPN": [
2053
+ "paddle"
2054
+ ],
2055
+ "FasterRCNN-ResNet50-vd-SSLDv2-FPN": [
2056
+ "paddle"
2057
+ ],
2058
+ "FasterRCNN-ResNet50": [
2059
+ "paddle"
2060
+ ],
2061
+ "FasterRCNN-Swin-Tiny-FPN": [
2062
+ "paddle"
2063
+ ],
2064
+ "PP-YOLOE_plus-L": [
2065
+ "paddle_tensorrt",
2066
+ "onnxruntime"
2067
+ ],
2068
+ "PP-YOLOE_plus-M": [
2069
+ "paddle_tensorrt",
2070
+ "onnxruntime"
2071
+ ],
2072
+ "PP-YOLOE_plus-S": [
2073
+ "paddle_tensorrt",
2074
+ "onnxruntime"
2075
+ ],
2076
+ "PP-YOLOE_plus-X": [
2077
+ "paddle_tensorrt",
2078
+ "onnxruntime"
2079
+ ],
2080
+ "PicoDet-L": [
2081
+ "paddle_tensorrt",
2082
+ "onnxruntime"
2083
+ ],
2084
+ "PicoDet-M": [
2085
+ "paddle_tensorrt",
2086
+ "onnxruntime"
2087
+ ],
2088
+ "PicoDet-S": [
2089
+ "paddle_tensorrt",
2090
+ "onnxruntime"
2091
+ ],
2092
+ "PicoDet-XS": [
2093
+ "paddle_tensorrt",
2094
+ "onnxruntime"
2095
+ ],
2096
+ "YOLOX-L": [
2097
+ "paddle_tensorrt",
2098
+ "onnxruntime"
2099
+ ],
2100
+ "YOLOX-M": [
2101
+ "paddle_tensorrt_fp16",
2102
+ "onnxruntime"
2103
+ ],
2104
+ "YOLOX-N": [
2105
+ "onnxruntime",
2106
+ "paddle_tensorrt"
2107
+ ],
2108
+ "YOLOX-S": [
2109
+ "onnxruntime",
2110
+ "paddle_tensorrt"
2111
+ ],
2112
+ "YOLOX-T": [
2113
+ "onnxruntime",
2114
+ "paddle_tensorrt"
2115
+ ],
2116
+ "YOLOX-X": [
2117
+ "paddle_tensorrt",
2118
+ "onnxruntime"
2119
+ ],
2120
+ "YOLOv3-DarkNet53": [
2121
+ "paddle_tensorrt"
2122
+ ],
2123
+ "YOLOv3-MobileNetV3": [
2124
+ "paddle_tensorrt_fp16"
2125
+ ],
2126
+ "YOLOv3-ResNet50_vd_DCN": [
2127
+ "paddle_tensorrt"
2128
+ ],
2129
+ "PP-YOLOE-R-L": [
2130
+ "paddle_tensorrt"
2131
+ ],
2132
+ "PP-LiteSeg-B": [
2133
+ "paddle"
2134
+ ],
2135
+ "PP-LiteSeg-T": [
2136
+ "paddle_tensorrt"
2137
+ ],
2138
+ "SegFormer-B0": [
2139
+ "paddle",
2140
+ "onnxruntime"
2141
+ ],
2142
+ "SegFormer-B1": [
2143
+ "paddle",
2144
+ "onnxruntime"
2145
+ ],
2146
+ "SegFormer-B2": [
2147
+ "paddle",
2148
+ "onnxruntime"
2149
+ ],
2150
+ "SegFormer-B3": [
2151
+ "paddle",
2152
+ "onnxruntime"
2153
+ ],
2154
+ "SegFormer-B4": [
2155
+ "paddle",
2156
+ "onnxruntime"
2157
+ ],
2158
+ "SegFormer-B5": [
2159
+ "paddle",
2160
+ "onnxruntime"
2161
+ ],
2162
+ "PP-YOLOE_plus_SOD-L": [
2163
+ "onnxruntime",
2164
+ "paddle_tensorrt"
2165
+ ],
2166
+ "PP-YOLOE_plus_SOD-S": [
2167
+ "onnxruntime",
2168
+ "paddle_tensorrt_fp16"
2169
+ ],
2170
+ "SLANeXt_wired": [
2171
+ "paddle",
2172
+ "onnxruntime"
2173
+ ],
2174
+ "SLANeXt_wireless": [
2175
+ "paddle",
2176
+ "onnxruntime"
2177
+ ],
2178
+ "SLANet_plus": [
2179
+ "paddle_tensorrt",
2180
+ "onnxruntime"
2181
+ ],
2182
+ "SLANet": [
2183
+ "paddle_tensorrt",
2184
+ "onnxruntime"
2185
+ ],
2186
+ "Nonstationary_ad": [
2187
+ "onnxruntime",
2188
+ "paddle"
2189
+ ],
2190
+ "PatchTST_ad": [
2191
+ "paddle_tensorrt",
2192
+ "onnxruntime"
2193
+ ],
2194
+ "TimesNet_ad": [
2195
+ "onnxruntime",
2196
+ "paddle_tensorrt"
2197
+ ],
2198
+ "TimesNet_cls": [
2199
+ "paddle",
2200
+ "onnxruntime"
2201
+ ],
2202
+ "Nonstationary": [
2203
+ "onnxruntime",
2204
+ "paddle_tensorrt"
2205
+ ],
2206
+ "PatchTST": [
2207
+ "paddle_tensorrt",
2208
+ "onnxruntime"
2209
+ ],
2210
+ "TimesNet": [
2211
+ "onnxruntime",
2212
+ "paddle_tensorrt_fp16"
2213
+ ],
2214
+ "PP-YOLOE-L_vehicle": [
2215
+ "paddle_tensorrt",
2216
+ "onnxruntime"
2217
+ ],
2218
+ "PP-YOLOE-S_vehicle": [
2219
+ "paddle_tensorrt",
2220
+ "onnxruntime"
2221
+ ],
2222
+ "PP-FormulaNet-L": [
2223
+ "paddle"
2224
+ ],
2225
+ "PP-YOLOE_plus_SOD-largesize-L": [
2226
+ "onnxruntime",
2227
+ "paddle"
2228
+ ],
2229
+ "LaTeX_OCR_rec": [
2230
+ "paddle"
2231
+ ],
2232
+ "UniMERNet": [
2233
+ "paddle"
2234
+ ],
2235
+ "Mask-RT-DETR-H": [
2236
+ "paddle"
2237
+ ],
2238
+ "Mask-RT-DETR-L": [
2239
+ "paddle"
2240
+ ],
2241
+ "Mask-RT-DETR-M": [
2242
+ "paddle"
2243
+ ],
2244
+ "Mask-RT-DETR-S": [
2245
+ "paddle"
2246
+ ],
2247
+ "Mask-RT-DETR-X": [
2248
+ "paddle"
2249
+ ],
2250
+ "Co-DINO-R50": [
2251
+ "paddle"
2252
+ ],
2253
+ "Co-DINO-Swin-L": [
2254
+ "paddle"
2255
+ ],
2256
+ "Co-Deformable-DETR-R50": [
2257
+ "paddle"
2258
+ ],
2259
+ "Co-Deformable-DETR-Swin-T": [
2260
+ "paddle"
2261
+ ],
2262
+ "MaskFormer_small": [
2263
+ "paddle",
2264
+ "onnxruntime"
2265
+ ],
2266
+ "MaskFormer_tiny": [
2267
+ "paddle",
2268
+ "onnxruntime"
2269
+ ],
2270
+ "TiDE": [
2271
+ "paddle"
2272
+ ],
2273
+ "YOWO": [
2274
+ "paddle"
2275
+ ],
2276
+ "BEVFusion": [
2277
+ "paddle"
2278
+ ],
2279
+ "SAM-H_point": [
2280
+ "paddle"
2281
+ ],
2282
+ "SAM-H_box": [
2283
+ "paddle"
2284
+ ],
2285
+ "GroundingDINO-T": [
2286
+ "paddle"
2287
+ ],
2288
+ "YOLO-Worldv2-L": [
2289
+ "paddle"
2290
+ ],
2291
+ "PP-DocBlockLayout": [
2292
+ "tensorrt",
2293
+ "paddle",
2294
+ "onnxruntime"
2295
+ ],
2296
+ "PP-DocLayout_plus-L": [
2297
+ "tensorrt_fp16",
2298
+ "paddle",
2299
+ "onnxruntime"
2300
+ ],
2301
+ "PP-OCRv5_server_rec": [
2302
+ "paddle_tensorrt_fp16",
2303
+ "tensorrt_fp16",
2304
+ "onnxruntime"
2305
+ ],
2306
+ "PP-OCRv5_mobile_rec": [
2307
+ "paddle_tensorrt_fp16",
2308
+ "tensorrt",
2309
+ "onnxruntime"
2310
+ ],
2311
+ "PP-OCRv5_server_det": [
2312
+ "tensorrt",
2313
+ "onnxruntime",
2314
+ "paddle"
2315
+ ],
2316
+ "PP-OCRv5_mobile_det": [
2317
+ "paddle_tensorrt",
2318
+ "tensorrt",
2319
+ "onnxruntime"
2320
+ ],
2321
+ "PP-FormulaNet_plus-L": [
2322
+ "paddle"
2323
+ ],
2324
+ "PP-FormulaNet_plus-M": [
2325
+ "paddle"
2326
+ ],
2327
+ "PP-FormulaNet_plus-S": [
2328
+ "paddle"
2329
+ ]
2330
+ }
2331
+ }