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