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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (824) hide show
  1. paddlex/.version +1 -1
  2. paddlex/__init__.py +17 -34
  3. paddlex/__main__.py +1 -1
  4. paddlex/configs/modules/chart_parsing/PP-Chart2Table.yaml +13 -0
  5. paddlex/configs/modules/doc_vlm/PP-DocBee-2B.yaml +14 -0
  6. paddlex/configs/modules/doc_vlm/PP-DocBee-7B.yaml +14 -0
  7. paddlex/configs/modules/doc_vlm/PP-DocBee2-3B.yaml +14 -0
  8. paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-L.yaml +40 -0
  9. paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-M.yaml +40 -0
  10. paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-S.yaml +40 -0
  11. paddlex/configs/modules/layout_detection/PP-DocBlockLayout.yaml +40 -0
  12. paddlex/configs/modules/layout_detection/PP-DocLayout-L.yaml +2 -2
  13. paddlex/configs/modules/layout_detection/PP-DocLayout-M.yaml +2 -2
  14. paddlex/configs/modules/layout_detection/PP-DocLayout-S.yaml +2 -2
  15. paddlex/configs/modules/layout_detection/PP-DocLayout_plus-L.yaml +40 -0
  16. paddlex/configs/modules/open_vocabulary_detection/YOLO-Worldv2-L.yaml +13 -0
  17. paddlex/configs/modules/text_detection/PP-OCRv5_mobile_det.yaml +40 -0
  18. paddlex/configs/modules/text_detection/PP-OCRv5_server_det.yaml +40 -0
  19. paddlex/configs/modules/text_recognition/PP-OCRv5_mobile_rec.yaml +39 -0
  20. paddlex/configs/modules/text_recognition/PP-OCRv5_server_rec.yaml +39 -0
  21. paddlex/configs/modules/textline_orientation/PP-LCNet_x1_0_textline_ori.yaml +41 -0
  22. paddlex/configs/pipelines/OCR.yaml +7 -6
  23. paddlex/configs/pipelines/PP-ChatOCRv3-doc.yaml +3 -1
  24. paddlex/configs/pipelines/PP-ChatOCRv4-doc.yaml +91 -34
  25. paddlex/configs/pipelines/PP-StructureV3.yaml +72 -72
  26. paddlex/configs/pipelines/anomaly_detection.yaml +1 -1
  27. paddlex/configs/pipelines/doc_understanding.yaml +9 -0
  28. paddlex/configs/pipelines/formula_recognition.yaml +2 -2
  29. paddlex/configs/pipelines/layout_parsing.yaml +3 -2
  30. paddlex/configs/pipelines/seal_recognition.yaml +1 -0
  31. paddlex/configs/pipelines/table_recognition.yaml +2 -1
  32. paddlex/configs/pipelines/table_recognition_v2.yaml +7 -1
  33. paddlex/configs/pipelines/ts_anomaly_detection.yaml +1 -1
  34. paddlex/configs/pipelines/ts_classification.yaml +1 -1
  35. paddlex/configs/pipelines/ts_forecast.yaml +1 -1
  36. paddlex/constants.py +17 -0
  37. paddlex/engine.py +7 -5
  38. paddlex/hpip_links.html +23 -11
  39. paddlex/inference/__init__.py +3 -3
  40. paddlex/inference/common/__init__.py +1 -1
  41. paddlex/inference/common/batch_sampler/__init__.py +5 -4
  42. paddlex/inference/common/batch_sampler/audio_batch_sampler.py +5 -6
  43. paddlex/inference/common/batch_sampler/base_batch_sampler.py +20 -16
  44. paddlex/inference/common/batch_sampler/det_3d_batch_sampler.py +4 -7
  45. paddlex/inference/common/batch_sampler/doc_vlm_batch_sampler.py +87 -0
  46. paddlex/inference/common/batch_sampler/image_batch_sampler.py +45 -60
  47. paddlex/inference/common/batch_sampler/ts_batch_sampler.py +9 -10
  48. paddlex/inference/common/batch_sampler/video_batch_sampler.py +2 -22
  49. paddlex/inference/common/reader/__init__.py +4 -4
  50. paddlex/inference/common/reader/audio_reader.py +3 -3
  51. paddlex/inference/common/reader/det_3d_reader.py +7 -5
  52. paddlex/inference/common/reader/image_reader.py +16 -12
  53. paddlex/inference/common/reader/ts_reader.py +3 -2
  54. paddlex/inference/common/reader/video_reader.py +3 -3
  55. paddlex/inference/common/result/__init__.py +7 -7
  56. paddlex/inference/common/result/base_cv_result.py +12 -2
  57. paddlex/inference/common/result/base_result.py +7 -5
  58. paddlex/inference/common/result/base_ts_result.py +1 -2
  59. paddlex/inference/common/result/base_video_result.py +2 -2
  60. paddlex/inference/common/result/mixin.py +31 -25
  61. paddlex/inference/models/__init__.py +41 -85
  62. paddlex/inference/models/anomaly_detection/__init__.py +1 -1
  63. paddlex/inference/models/anomaly_detection/predictor.py +9 -19
  64. paddlex/inference/models/anomaly_detection/processors.py +9 -2
  65. paddlex/inference/models/anomaly_detection/result.py +3 -2
  66. paddlex/inference/models/base/__init__.py +2 -2
  67. paddlex/inference/models/base/predictor/__init__.py +1 -2
  68. paddlex/inference/models/base/predictor/base_predictor.py +278 -39
  69. paddlex/inference/models/common/__init__.py +6 -15
  70. paddlex/inference/models/common/static_infer.py +724 -251
  71. paddlex/inference/models/common/tokenizer/__init__.py +7 -3
  72. paddlex/inference/models/common/tokenizer/bert_tokenizer.py +1 -1
  73. paddlex/inference/models/common/tokenizer/clip_tokenizer.py +609 -0
  74. paddlex/inference/models/common/tokenizer/gpt_tokenizer.py +9 -7
  75. paddlex/inference/models/common/tokenizer/qwen2_5_tokenizer.py +112 -0
  76. paddlex/inference/models/common/tokenizer/qwen2_tokenizer.py +438 -0
  77. paddlex/inference/models/common/tokenizer/qwen_tokenizer.py +288 -0
  78. paddlex/inference/models/common/tokenizer/tokenizer_utils.py +85 -77
  79. paddlex/inference/models/common/tokenizer/tokenizer_utils_base.py +339 -123
  80. paddlex/inference/models/common/tokenizer/utils.py +1 -1
  81. paddlex/inference/models/common/tokenizer/vocab.py +8 -8
  82. paddlex/inference/models/common/ts/__init__.py +1 -1
  83. paddlex/inference/models/common/ts/funcs.py +13 -6
  84. paddlex/inference/models/common/ts/processors.py +14 -5
  85. paddlex/inference/models/common/vision/__init__.py +3 -3
  86. paddlex/inference/models/common/vision/funcs.py +17 -12
  87. paddlex/inference/models/common/vision/processors.py +61 -46
  88. paddlex/inference/models/common/vlm/__init__.py +13 -0
  89. paddlex/inference/models/common/vlm/activations.py +189 -0
  90. paddlex/inference/models/common/vlm/bert_padding.py +127 -0
  91. paddlex/inference/models/common/vlm/conversion_utils.py +99 -0
  92. paddlex/inference/models/common/vlm/distributed.py +229 -0
  93. paddlex/inference/models/common/vlm/flash_attn_utils.py +119 -0
  94. paddlex/inference/models/common/vlm/fusion_ops.py +205 -0
  95. paddlex/inference/models/common/vlm/generation/__init__.py +34 -0
  96. paddlex/inference/models/common/vlm/generation/configuration_utils.py +533 -0
  97. paddlex/inference/models/common/vlm/generation/logits_process.py +730 -0
  98. paddlex/inference/models/common/vlm/generation/stopping_criteria.py +106 -0
  99. paddlex/inference/models/common/vlm/generation/utils.py +2162 -0
  100. paddlex/inference/models/common/vlm/transformers/__init__.py +16 -0
  101. paddlex/inference/models/common/vlm/transformers/configuration_utils.py +1037 -0
  102. paddlex/inference/models/common/vlm/transformers/conversion_utils.py +408 -0
  103. paddlex/inference/models/common/vlm/transformers/model_outputs.py +1612 -0
  104. paddlex/inference/models/common/vlm/transformers/model_utils.py +2014 -0
  105. paddlex/inference/models/common/vlm/transformers/utils.py +178 -0
  106. paddlex/inference/models/common/vlm/utils.py +109 -0
  107. paddlex/inference/models/doc_vlm/__init__.py +15 -0
  108. paddlex/inference/models/doc_vlm/modeling/GOT_ocr_2_0.py +830 -0
  109. paddlex/inference/models/doc_vlm/modeling/__init__.py +17 -0
  110. paddlex/inference/models/doc_vlm/modeling/qwen2.py +1606 -0
  111. paddlex/inference/models/doc_vlm/modeling/qwen2_5_vl.py +3006 -0
  112. paddlex/inference/models/doc_vlm/modeling/qwen2_vl.py +2495 -0
  113. paddlex/inference/models/doc_vlm/predictor.py +253 -0
  114. paddlex/inference/models/doc_vlm/processors/GOT_ocr_2_0.py +97 -0
  115. paddlex/inference/models/doc_vlm/processors/__init__.py +17 -0
  116. paddlex/inference/models/doc_vlm/processors/common.py +561 -0
  117. paddlex/inference/models/doc_vlm/processors/qwen2_5_vl.py +548 -0
  118. paddlex/inference/models/doc_vlm/processors/qwen2_vl.py +543 -0
  119. paddlex/inference/models/doc_vlm/result.py +21 -0
  120. paddlex/inference/models/face_feature/__init__.py +1 -1
  121. paddlex/inference/models/face_feature/predictor.py +2 -1
  122. paddlex/inference/models/formula_recognition/__init__.py +1 -1
  123. paddlex/inference/models/formula_recognition/predictor.py +18 -28
  124. paddlex/inference/models/formula_recognition/processors.py +126 -97
  125. paddlex/inference/models/formula_recognition/result.py +43 -35
  126. paddlex/inference/models/image_classification/__init__.py +1 -1
  127. paddlex/inference/models/image_classification/predictor.py +9 -19
  128. paddlex/inference/models/image_classification/processors.py +4 -2
  129. paddlex/inference/models/image_classification/result.py +4 -3
  130. paddlex/inference/models/image_feature/__init__.py +1 -1
  131. paddlex/inference/models/image_feature/predictor.py +9 -19
  132. paddlex/inference/models/image_feature/processors.py +7 -5
  133. paddlex/inference/models/image_feature/result.py +2 -3
  134. paddlex/inference/models/image_multilabel_classification/__init__.py +1 -1
  135. paddlex/inference/models/image_multilabel_classification/predictor.py +7 -6
  136. paddlex/inference/models/image_multilabel_classification/processors.py +6 -2
  137. paddlex/inference/models/image_multilabel_classification/result.py +4 -3
  138. paddlex/inference/models/image_unwarping/__init__.py +1 -1
  139. paddlex/inference/models/image_unwarping/predictor.py +8 -16
  140. paddlex/inference/models/image_unwarping/processors.py +6 -2
  141. paddlex/inference/models/image_unwarping/result.py +4 -2
  142. paddlex/inference/models/instance_segmentation/__init__.py +1 -1
  143. paddlex/inference/models/instance_segmentation/predictor.py +7 -15
  144. paddlex/inference/models/instance_segmentation/processors.py +4 -7
  145. paddlex/inference/models/instance_segmentation/result.py +11 -10
  146. paddlex/inference/models/keypoint_detection/__init__.py +1 -1
  147. paddlex/inference/models/keypoint_detection/predictor.py +5 -3
  148. paddlex/inference/models/keypoint_detection/processors.py +11 -3
  149. paddlex/inference/models/keypoint_detection/result.py +9 -4
  150. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/__init__.py +1 -1
  151. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/predictor.py +15 -26
  152. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/processors.py +26 -14
  153. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/result.py +15 -12
  154. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/visualizer_3d.py +77 -39
  155. paddlex/inference/models/multilingual_speech_recognition/__init__.py +1 -1
  156. paddlex/inference/models/multilingual_speech_recognition/predictor.py +11 -15
  157. paddlex/inference/models/multilingual_speech_recognition/processors.py +45 -53
  158. paddlex/inference/models/multilingual_speech_recognition/result.py +1 -1
  159. paddlex/inference/models/object_detection/__init__.py +1 -1
  160. paddlex/inference/models/object_detection/predictor.py +8 -12
  161. paddlex/inference/models/object_detection/processors.py +63 -33
  162. paddlex/inference/models/object_detection/result.py +5 -4
  163. paddlex/inference/models/object_detection/utils.py +3 -1
  164. paddlex/inference/models/open_vocabulary_detection/__init__.py +1 -1
  165. paddlex/inference/models/open_vocabulary_detection/predictor.py +31 -14
  166. paddlex/inference/models/open_vocabulary_detection/processors/__init__.py +3 -2
  167. paddlex/inference/models/open_vocabulary_detection/processors/common.py +114 -0
  168. paddlex/inference/models/open_vocabulary_detection/processors/groundingdino_processors.py +19 -8
  169. paddlex/inference/models/open_vocabulary_detection/processors/yoloworld_processors.py +209 -0
  170. paddlex/inference/models/open_vocabulary_segmentation/__init__.py +1 -1
  171. paddlex/inference/models/open_vocabulary_segmentation/predictor.py +6 -13
  172. paddlex/inference/models/open_vocabulary_segmentation/processors/__init__.py +1 -1
  173. paddlex/inference/models/open_vocabulary_segmentation/processors/sam_processer.py +12 -12
  174. paddlex/inference/models/open_vocabulary_segmentation/results/__init__.py +1 -1
  175. paddlex/inference/models/open_vocabulary_segmentation/results/sam_result.py +11 -9
  176. paddlex/inference/models/semantic_segmentation/__init__.py +1 -1
  177. paddlex/inference/models/semantic_segmentation/predictor.py +9 -18
  178. paddlex/inference/models/semantic_segmentation/processors.py +11 -8
  179. paddlex/inference/models/semantic_segmentation/result.py +4 -3
  180. paddlex/inference/models/table_structure_recognition/__init__.py +1 -1
  181. paddlex/inference/models/table_structure_recognition/predictor.py +8 -18
  182. paddlex/inference/models/table_structure_recognition/processors.py +23 -29
  183. paddlex/inference/models/table_structure_recognition/result.py +8 -15
  184. paddlex/inference/models/text_detection/__init__.py +1 -1
  185. paddlex/inference/models/text_detection/predictor.py +24 -24
  186. paddlex/inference/models/text_detection/processors.py +116 -44
  187. paddlex/inference/models/text_detection/result.py +8 -13
  188. paddlex/inference/models/text_recognition/__init__.py +1 -1
  189. paddlex/inference/models/text_recognition/predictor.py +11 -19
  190. paddlex/inference/models/text_recognition/processors.py +27 -13
  191. paddlex/inference/models/text_recognition/result.py +3 -2
  192. paddlex/inference/models/ts_anomaly_detection/__init__.py +1 -1
  193. paddlex/inference/models/ts_anomaly_detection/predictor.py +12 -17
  194. paddlex/inference/models/ts_anomaly_detection/processors.py +6 -2
  195. paddlex/inference/models/ts_anomaly_detection/result.py +21 -10
  196. paddlex/inference/models/ts_classification/__init__.py +1 -1
  197. paddlex/inference/models/ts_classification/predictor.py +14 -27
  198. paddlex/inference/models/ts_classification/processors.py +7 -2
  199. paddlex/inference/models/ts_classification/result.py +21 -12
  200. paddlex/inference/models/ts_forecasting/__init__.py +1 -1
  201. paddlex/inference/models/ts_forecasting/predictor.py +13 -18
  202. paddlex/inference/models/ts_forecasting/processors.py +12 -3
  203. paddlex/inference/models/ts_forecasting/result.py +24 -11
  204. paddlex/inference/models/video_classification/__init__.py +1 -1
  205. paddlex/inference/models/video_classification/predictor.py +9 -15
  206. paddlex/inference/models/video_classification/processors.py +24 -24
  207. paddlex/inference/models/video_classification/result.py +7 -3
  208. paddlex/inference/models/video_detection/__init__.py +1 -1
  209. paddlex/inference/models/video_detection/predictor.py +8 -15
  210. paddlex/inference/models/video_detection/processors.py +24 -11
  211. paddlex/inference/models/video_detection/result.py +10 -5
  212. paddlex/inference/pipelines/__init__.py +48 -37
  213. paddlex/inference/pipelines/_parallel.py +172 -0
  214. paddlex/inference/pipelines/anomaly_detection/__init__.py +1 -1
  215. paddlex/inference/pipelines/anomaly_detection/pipeline.py +29 -9
  216. paddlex/inference/pipelines/attribute_recognition/__init__.py +1 -1
  217. paddlex/inference/pipelines/attribute_recognition/pipeline.py +24 -9
  218. paddlex/inference/pipelines/attribute_recognition/result.py +10 -8
  219. paddlex/inference/pipelines/base.py +43 -13
  220. paddlex/inference/pipelines/components/__init__.py +14 -8
  221. paddlex/inference/pipelines/components/chat_server/__init__.py +1 -1
  222. paddlex/inference/pipelines/components/chat_server/base.py +2 -2
  223. paddlex/inference/pipelines/components/chat_server/openai_bot_chat.py +8 -8
  224. paddlex/inference/pipelines/components/common/__init__.py +5 -4
  225. paddlex/inference/pipelines/components/common/base_operator.py +2 -1
  226. paddlex/inference/pipelines/components/common/base_result.py +3 -2
  227. paddlex/inference/pipelines/components/common/convert_points_and_boxes.py +1 -2
  228. paddlex/inference/pipelines/components/common/crop_image_regions.py +11 -5
  229. paddlex/inference/pipelines/components/common/seal_det_warp.py +44 -13
  230. paddlex/inference/pipelines/components/common/sort_boxes.py +4 -2
  231. paddlex/inference/pipelines/components/common/warp_image.py +50 -0
  232. paddlex/inference/pipelines/components/faisser.py +10 -5
  233. paddlex/inference/pipelines/components/prompt_engineering/__init__.py +2 -2
  234. paddlex/inference/pipelines/components/prompt_engineering/base.py +2 -2
  235. paddlex/inference/pipelines/components/prompt_engineering/generate_ensemble_prompt.py +2 -1
  236. paddlex/inference/pipelines/components/prompt_engineering/generate_kie_prompt.py +2 -2
  237. paddlex/inference/pipelines/components/retriever/__init__.py +2 -2
  238. paddlex/inference/pipelines/components/retriever/base.py +18 -16
  239. paddlex/inference/pipelines/components/retriever/openai_bot_retriever.py +2 -2
  240. paddlex/inference/pipelines/components/retriever/qianfan_bot_retriever.py +87 -84
  241. paddlex/inference/pipelines/components/utils/__init__.py +1 -1
  242. paddlex/inference/pipelines/components/utils/mixin.py +7 -7
  243. paddlex/inference/pipelines/doc_preprocessor/__init__.py +1 -1
  244. paddlex/inference/pipelines/doc_preprocessor/pipeline.py +70 -51
  245. paddlex/inference/pipelines/doc_preprocessor/result.py +5 -10
  246. paddlex/inference/pipelines/doc_understanding/__init__.py +15 -0
  247. paddlex/inference/pipelines/doc_understanding/pipeline.py +71 -0
  248. paddlex/inference/pipelines/face_recognition/__init__.py +1 -1
  249. paddlex/inference/pipelines/face_recognition/pipeline.py +3 -1
  250. paddlex/inference/pipelines/face_recognition/result.py +3 -2
  251. paddlex/inference/pipelines/formula_recognition/__init__.py +1 -1
  252. paddlex/inference/pipelines/formula_recognition/pipeline.py +137 -93
  253. paddlex/inference/pipelines/formula_recognition/result.py +20 -29
  254. paddlex/inference/pipelines/image_classification/__init__.py +1 -1
  255. paddlex/inference/pipelines/image_classification/pipeline.py +30 -11
  256. paddlex/inference/pipelines/image_multilabel_classification/__init__.py +1 -1
  257. paddlex/inference/pipelines/image_multilabel_classification/pipeline.py +31 -12
  258. paddlex/inference/pipelines/instance_segmentation/__init__.py +1 -1
  259. paddlex/inference/pipelines/instance_segmentation/pipeline.py +30 -9
  260. paddlex/inference/pipelines/keypoint_detection/__init__.py +1 -1
  261. paddlex/inference/pipelines/keypoint_detection/pipeline.py +30 -9
  262. paddlex/inference/pipelines/layout_parsing/__init__.py +1 -1
  263. paddlex/inference/pipelines/layout_parsing/pipeline.py +54 -56
  264. paddlex/inference/pipelines/layout_parsing/pipeline_v2.py +904 -261
  265. paddlex/inference/pipelines/layout_parsing/result.py +9 -21
  266. paddlex/inference/pipelines/layout_parsing/result_v2.py +525 -250
  267. paddlex/inference/pipelines/layout_parsing/setting.py +87 -0
  268. paddlex/inference/pipelines/layout_parsing/utils.py +570 -2004
  269. paddlex/inference/pipelines/layout_parsing/xycut_enhanced/__init__.py +16 -0
  270. paddlex/inference/pipelines/layout_parsing/xycut_enhanced/utils.py +1144 -0
  271. paddlex/inference/pipelines/layout_parsing/xycut_enhanced/xycuts.py +563 -0
  272. paddlex/inference/pipelines/{3d_bev_detection → m_3d_bev_detection}/__init__.py +1 -1
  273. paddlex/inference/pipelines/{3d_bev_detection → m_3d_bev_detection}/pipeline.py +17 -10
  274. paddlex/inference/pipelines/multilingual_speech_recognition/__init__.py +1 -1
  275. paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py +17 -6
  276. paddlex/inference/pipelines/object_detection/__init__.py +1 -1
  277. paddlex/inference/pipelines/object_detection/pipeline.py +29 -9
  278. paddlex/inference/pipelines/ocr/__init__.py +1 -1
  279. paddlex/inference/pipelines/ocr/pipeline.py +151 -77
  280. paddlex/inference/pipelines/ocr/result.py +31 -24
  281. paddlex/inference/pipelines/open_vocabulary_detection/__init__.py +1 -1
  282. paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py +17 -6
  283. paddlex/inference/pipelines/open_vocabulary_segmentation/__init__.py +1 -1
  284. paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py +17 -6
  285. paddlex/inference/pipelines/pp_chatocr/__init__.py +1 -1
  286. paddlex/inference/pipelines/pp_chatocr/pipeline_base.py +14 -5
  287. paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py +22 -14
  288. paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py +34 -16
  289. paddlex/inference/pipelines/pp_shitu_v2/__init__.py +1 -1
  290. paddlex/inference/pipelines/pp_shitu_v2/pipeline.py +12 -8
  291. paddlex/inference/pipelines/pp_shitu_v2/result.py +4 -4
  292. paddlex/inference/pipelines/rotated_object_detection/__init__.py +1 -1
  293. paddlex/inference/pipelines/rotated_object_detection/pipeline.py +30 -9
  294. paddlex/inference/pipelines/seal_recognition/__init__.py +1 -1
  295. paddlex/inference/pipelines/seal_recognition/pipeline.py +127 -63
  296. paddlex/inference/pipelines/seal_recognition/result.py +4 -2
  297. paddlex/inference/pipelines/semantic_segmentation/__init__.py +1 -1
  298. paddlex/inference/pipelines/semantic_segmentation/pipeline.py +30 -9
  299. paddlex/inference/pipelines/small_object_detection/__init__.py +1 -1
  300. paddlex/inference/pipelines/small_object_detection/pipeline.py +30 -9
  301. paddlex/inference/pipelines/table_recognition/__init__.py +1 -1
  302. paddlex/inference/pipelines/table_recognition/pipeline.py +61 -37
  303. paddlex/inference/pipelines/table_recognition/pipeline_v2.py +668 -65
  304. paddlex/inference/pipelines/table_recognition/result.py +12 -10
  305. paddlex/inference/pipelines/table_recognition/table_recognition_post_processing.py +12 -8
  306. paddlex/inference/pipelines/table_recognition/table_recognition_post_processing_v2.py +55 -37
  307. paddlex/inference/pipelines/table_recognition/utils.py +1 -1
  308. paddlex/inference/pipelines/ts_anomaly_detection/__init__.py +1 -1
  309. paddlex/inference/pipelines/ts_anomaly_detection/pipeline.py +16 -6
  310. paddlex/inference/pipelines/ts_classification/__init__.py +1 -1
  311. paddlex/inference/pipelines/ts_classification/pipeline.py +16 -6
  312. paddlex/inference/pipelines/ts_forecasting/__init__.py +1 -1
  313. paddlex/inference/pipelines/ts_forecasting/pipeline.py +16 -6
  314. paddlex/inference/pipelines/video_classification/__init__.py +1 -1
  315. paddlex/inference/pipelines/video_classification/pipeline.py +17 -6
  316. paddlex/inference/pipelines/video_detection/__init__.py +1 -1
  317. paddlex/inference/pipelines/video_detection/pipeline.py +20 -7
  318. paddlex/inference/serving/__init__.py +5 -1
  319. paddlex/inference/serving/basic_serving/__init__.py +1 -1
  320. paddlex/inference/serving/basic_serving/_app.py +31 -19
  321. paddlex/inference/serving/basic_serving/_pipeline_apps/__init__.py +7 -4
  322. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/__init__.py +1 -1
  323. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/common.py +12 -4
  324. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/image_recognition.py +1 -1
  325. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/ocr.py +7 -2
  326. paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py +10 -7
  327. paddlex/inference/serving/basic_serving/_pipeline_apps/doc_preprocessor.py +10 -7
  328. paddlex/inference/serving/basic_serving/_pipeline_apps/doc_understanding.py +153 -0
  329. paddlex/inference/serving/basic_serving/_pipeline_apps/face_recognition.py +16 -13
  330. paddlex/inference/serving/basic_serving/_pipeline_apps/formula_recognition.py +10 -7
  331. paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.py +10 -7
  332. paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py +10 -7
  333. paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py +10 -7
  334. paddlex/inference/serving/basic_serving/_pipeline_apps/instance_segmentation.py +13 -7
  335. paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py +10 -8
  336. paddlex/inference/serving/basic_serving/_pipeline_apps/m_3d_bev_detection.py +10 -7
  337. paddlex/inference/serving/basic_serving/_pipeline_apps/multilingual_speech_recognition.py +10 -7
  338. paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py +10 -7
  339. paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py +10 -7
  340. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py +10 -7
  341. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py +13 -7
  342. paddlex/inference/serving/basic_serving/_pipeline_apps/pedestrian_attribute_recognition.py +10 -7
  343. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py +14 -12
  344. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py +17 -14
  345. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_shituv2.py +16 -13
  346. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py +16 -9
  347. paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py +10 -7
  348. paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py +10 -7
  349. paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py +10 -7
  350. paddlex/inference/serving/basic_serving/_pipeline_apps/small_object_detection.py +10 -7
  351. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py +11 -12
  352. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py +14 -12
  353. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py +10 -7
  354. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py +10 -7
  355. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py +10 -7
  356. paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recognition.py +10 -7
  357. paddlex/inference/serving/basic_serving/_pipeline_apps/video_classification.py +10 -7
  358. paddlex/inference/serving/basic_serving/_pipeline_apps/video_detection.py +10 -7
  359. paddlex/inference/serving/basic_serving/_server.py +9 -4
  360. paddlex/inference/serving/infra/__init__.py +1 -1
  361. paddlex/inference/serving/infra/config.py +1 -1
  362. paddlex/inference/serving/infra/models.py +13 -6
  363. paddlex/inference/serving/infra/storage.py +9 -4
  364. paddlex/inference/serving/infra/utils.py +54 -28
  365. paddlex/inference/serving/schemas/__init__.py +1 -1
  366. paddlex/inference/serving/schemas/anomaly_detection.py +1 -1
  367. paddlex/inference/serving/schemas/doc_preprocessor.py +1 -1
  368. paddlex/inference/serving/schemas/doc_understanding.py +78 -0
  369. paddlex/inference/serving/schemas/face_recognition.py +1 -1
  370. paddlex/inference/serving/schemas/formula_recognition.py +2 -2
  371. paddlex/inference/serving/schemas/human_keypoint_detection.py +1 -1
  372. paddlex/inference/serving/schemas/image_classification.py +1 -1
  373. paddlex/inference/serving/schemas/image_multilabel_classification.py +1 -1
  374. paddlex/inference/serving/schemas/instance_segmentation.py +1 -1
  375. paddlex/inference/serving/schemas/layout_parsing.py +2 -3
  376. paddlex/inference/serving/schemas/m_3d_bev_detection.py +1 -1
  377. paddlex/inference/serving/schemas/multilingual_speech_recognition.py +1 -1
  378. paddlex/inference/serving/schemas/object_detection.py +1 -1
  379. paddlex/inference/serving/schemas/ocr.py +1 -1
  380. paddlex/inference/serving/schemas/open_vocabulary_detection.py +1 -1
  381. paddlex/inference/serving/schemas/open_vocabulary_segmentation.py +1 -1
  382. paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py +1 -1
  383. paddlex/inference/serving/schemas/pp_chatocrv3_doc.py +2 -3
  384. paddlex/inference/serving/schemas/pp_chatocrv4_doc.py +3 -3
  385. paddlex/inference/serving/schemas/pp_shituv2.py +1 -1
  386. paddlex/inference/serving/schemas/pp_structurev3.py +11 -7
  387. paddlex/inference/serving/schemas/rotated_object_detection.py +1 -1
  388. paddlex/inference/serving/schemas/seal_recognition.py +2 -2
  389. paddlex/inference/serving/schemas/semantic_segmentation.py +1 -1
  390. paddlex/inference/serving/schemas/shared/__init__.py +1 -1
  391. paddlex/inference/serving/schemas/shared/classification.py +1 -1
  392. paddlex/inference/serving/schemas/shared/image_segmentation.py +1 -1
  393. paddlex/inference/serving/schemas/shared/object_detection.py +1 -1
  394. paddlex/inference/serving/schemas/shared/ocr.py +1 -1
  395. paddlex/inference/serving/schemas/small_object_detection.py +1 -1
  396. paddlex/inference/serving/schemas/table_recognition.py +3 -7
  397. paddlex/inference/serving/schemas/table_recognition_v2.py +6 -7
  398. paddlex/inference/serving/schemas/ts_anomaly_detection.py +1 -1
  399. paddlex/inference/serving/schemas/ts_classification.py +1 -1
  400. paddlex/inference/serving/schemas/ts_forecast.py +1 -1
  401. paddlex/inference/serving/schemas/vehicle_attribute_recognition.py +1 -1
  402. paddlex/inference/serving/schemas/video_classification.py +1 -1
  403. paddlex/inference/serving/schemas/video_detection.py +1 -1
  404. paddlex/inference/utils/__init__.py +1 -1
  405. paddlex/inference/utils/benchmark.py +332 -179
  406. paddlex/inference/utils/color_map.py +1 -1
  407. paddlex/inference/utils/get_pipeline_path.py +1 -1
  408. paddlex/inference/utils/hpi.py +258 -0
  409. paddlex/inference/utils/hpi_model_info_collection.json +2331 -0
  410. paddlex/inference/utils/io/__init__.py +11 -11
  411. paddlex/inference/utils/io/readers.py +31 -27
  412. paddlex/inference/utils/io/style.py +21 -14
  413. paddlex/inference/utils/io/tablepyxl.py +13 -5
  414. paddlex/inference/utils/io/writers.py +9 -10
  415. paddlex/inference/utils/mkldnn_blocklist.py +25 -0
  416. paddlex/inference/utils/model_paths.py +48 -0
  417. paddlex/inference/utils/{new_ir_blacklist.py → new_ir_blocklist.py} +1 -2
  418. paddlex/inference/utils/official_models.py +278 -262
  419. paddlex/inference/utils/pp_option.py +184 -92
  420. paddlex/inference/utils/trt_blocklist.py +43 -0
  421. paddlex/inference/utils/trt_config.py +420 -0
  422. paddlex/model.py +30 -12
  423. paddlex/modules/__init__.py +57 -80
  424. paddlex/modules/anomaly_detection/__init__.py +2 -2
  425. paddlex/modules/anomaly_detection/dataset_checker/__init__.py +2 -3
  426. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/__init__.py +2 -2
  427. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py +6 -3
  428. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/check_dataset.py +8 -4
  429. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py +7 -4
  430. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/split_dataset.py +2 -2
  431. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  432. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/visualizer.py +7 -2
  433. paddlex/modules/anomaly_detection/evaluator.py +3 -3
  434. paddlex/modules/anomaly_detection/exportor.py +1 -1
  435. paddlex/modules/anomaly_detection/model_list.py +1 -1
  436. paddlex/modules/anomaly_detection/trainer.py +3 -4
  437. paddlex/modules/base/__init__.py +5 -5
  438. paddlex/modules/base/build_model.py +1 -2
  439. paddlex/modules/base/dataset_checker/__init__.py +2 -2
  440. paddlex/modules/base/dataset_checker/dataset_checker.py +4 -4
  441. paddlex/modules/base/dataset_checker/utils.py +1 -3
  442. paddlex/modules/base/evaluator.py +13 -13
  443. paddlex/modules/base/exportor.py +12 -13
  444. paddlex/modules/base/trainer.py +21 -11
  445. paddlex/modules/base/utils/__init__.py +13 -0
  446. paddlex/modules/base/utils/cinn_setting.py +89 -0
  447. paddlex/modules/base/utils/coco_eval.py +94 -0
  448. paddlex/modules/base/utils/topk_eval.py +118 -0
  449. paddlex/modules/doc_vlm/__init__.py +18 -0
  450. paddlex/modules/doc_vlm/dataset_checker.py +29 -0
  451. paddlex/modules/doc_vlm/evaluator.py +29 -0
  452. paddlex/modules/doc_vlm/exportor.py +29 -0
  453. paddlex/modules/doc_vlm/model_list.py +16 -0
  454. paddlex/modules/doc_vlm/trainer.py +41 -0
  455. paddlex/modules/face_recognition/__init__.py +2 -2
  456. paddlex/modules/face_recognition/dataset_checker/__init__.py +2 -2
  457. paddlex/modules/face_recognition/dataset_checker/dataset_src/__init__.py +1 -1
  458. paddlex/modules/face_recognition/dataset_checker/dataset_src/check_dataset.py +3 -5
  459. paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/__init__.py +1 -1
  460. paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  461. paddlex/modules/face_recognition/evaluator.py +3 -3
  462. paddlex/modules/face_recognition/exportor.py +1 -1
  463. paddlex/modules/face_recognition/model_list.py +1 -1
  464. paddlex/modules/face_recognition/trainer.py +1 -1
  465. paddlex/modules/formula_recognition/__init__.py +2 -2
  466. paddlex/modules/formula_recognition/dataset_checker/__init__.py +3 -3
  467. paddlex/modules/formula_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  468. paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py +13 -12
  469. paddlex/modules/formula_recognition/dataset_checker/dataset_src/check_dataset.py +2 -6
  470. paddlex/modules/formula_recognition/dataset_checker/dataset_src/convert_dataset.py +11 -10
  471. paddlex/modules/formula_recognition/dataset_checker/dataset_src/split_dataset.py +1 -2
  472. paddlex/modules/formula_recognition/evaluator.py +6 -3
  473. paddlex/modules/formula_recognition/exportor.py +1 -1
  474. paddlex/modules/formula_recognition/model_list.py +4 -1
  475. paddlex/modules/formula_recognition/trainer.py +5 -3
  476. paddlex/modules/general_recognition/__init__.py +2 -2
  477. paddlex/modules/general_recognition/dataset_checker/__init__.py +2 -2
  478. paddlex/modules/general_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  479. paddlex/modules/general_recognition/dataset_checker/dataset_src/analyse_dataset.py +7 -9
  480. paddlex/modules/general_recognition/dataset_checker/dataset_src/check_dataset.py +4 -5
  481. paddlex/modules/general_recognition/dataset_checker/dataset_src/convert_dataset.py +6 -5
  482. paddlex/modules/general_recognition/dataset_checker/dataset_src/split_dataset.py +1 -1
  483. paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/__init__.py +1 -1
  484. paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  485. paddlex/modules/general_recognition/evaluator.py +2 -2
  486. paddlex/modules/general_recognition/exportor.py +1 -1
  487. paddlex/modules/general_recognition/model_list.py +1 -1
  488. paddlex/modules/general_recognition/trainer.py +1 -1
  489. paddlex/modules/image_classification/__init__.py +2 -2
  490. paddlex/modules/image_classification/dataset_checker/__init__.py +2 -2
  491. paddlex/modules/image_classification/dataset_checker/dataset_src/__init__.py +2 -2
  492. paddlex/modules/image_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  493. paddlex/modules/image_classification/dataset_checker/dataset_src/check_dataset.py +4 -3
  494. paddlex/modules/image_classification/dataset_checker/dataset_src/convert_dataset.py +4 -4
  495. paddlex/modules/image_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  496. paddlex/modules/image_classification/dataset_checker/dataset_src/utils/__init__.py +1 -1
  497. paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  498. paddlex/modules/image_classification/evaluator.py +3 -3
  499. paddlex/modules/image_classification/exportor.py +1 -1
  500. paddlex/modules/image_classification/model_list.py +2 -1
  501. paddlex/modules/image_classification/trainer.py +3 -3
  502. paddlex/modules/image_unwarping/__init__.py +1 -1
  503. paddlex/modules/image_unwarping/model_list.py +1 -1
  504. paddlex/modules/instance_segmentation/__init__.py +2 -2
  505. paddlex/modules/instance_segmentation/dataset_checker/__init__.py +2 -3
  506. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/__init__.py +2 -2
  507. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/analyse_dataset.py +9 -5
  508. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/check_dataset.py +8 -5
  509. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/convert_dataset.py +8 -8
  510. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/split_dataset.py +7 -4
  511. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/__init__.py +1 -1
  512. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py +10 -8
  513. paddlex/modules/instance_segmentation/evaluator.py +2 -2
  514. paddlex/modules/instance_segmentation/exportor.py +1 -1
  515. paddlex/modules/instance_segmentation/model_list.py +1 -1
  516. paddlex/modules/instance_segmentation/trainer.py +1 -1
  517. paddlex/modules/keypoint_detection/__init__.py +2 -2
  518. paddlex/modules/keypoint_detection/dataset_checker/__init__.py +2 -2
  519. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/__init__.py +1 -1
  520. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/check_dataset.py +10 -5
  521. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  522. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/visualizer.py +8 -3
  523. paddlex/modules/keypoint_detection/evaluator.py +2 -2
  524. paddlex/modules/keypoint_detection/exportor.py +1 -1
  525. paddlex/modules/keypoint_detection/model_list.py +1 -1
  526. paddlex/modules/keypoint_detection/trainer.py +2 -2
  527. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/__init__.py +2 -2
  528. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/__init__.py +3 -3
  529. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/dataset_src/__init__.py +2 -2
  530. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/dataset_src/analyse_dataset.py +8 -8
  531. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/dataset_src/check_dataset.py +1 -2
  532. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/evaluator.py +3 -3
  533. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/exportor.py +1 -1
  534. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/model_list.py +1 -1
  535. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/trainer.py +5 -7
  536. paddlex/modules/multilabel_classification/__init__.py +2 -2
  537. paddlex/modules/multilabel_classification/dataset_checker/__init__.py +2 -2
  538. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/__init__.py +2 -2
  539. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  540. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/check_dataset.py +4 -3
  541. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/convert_dataset.py +10 -7
  542. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  543. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/__init__.py +1 -1
  544. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/visualizer.py +1 -5
  545. paddlex/modules/multilabel_classification/evaluator.py +3 -3
  546. paddlex/modules/multilabel_classification/exportor.py +1 -1
  547. paddlex/modules/multilabel_classification/model_list.py +1 -1
  548. paddlex/modules/multilabel_classification/trainer.py +3 -3
  549. paddlex/modules/multilingual_speech_recognition/__init__.py +2 -2
  550. paddlex/modules/multilingual_speech_recognition/dataset_checker.py +3 -3
  551. paddlex/modules/multilingual_speech_recognition/evaluator.py +3 -3
  552. paddlex/modules/multilingual_speech_recognition/exportor.py +3 -3
  553. paddlex/modules/multilingual_speech_recognition/model_list.py +1 -1
  554. paddlex/modules/multilingual_speech_recognition/trainer.py +7 -5
  555. paddlex/modules/object_detection/__init__.py +2 -2
  556. paddlex/modules/object_detection/dataset_checker/__init__.py +2 -11
  557. paddlex/modules/object_detection/dataset_checker/dataset_src/__init__.py +2 -2
  558. paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py +10 -8
  559. paddlex/modules/object_detection/dataset_checker/dataset_src/check_dataset.py +10 -5
  560. paddlex/modules/object_detection/dataset_checker/dataset_src/convert_dataset.py +17 -12
  561. paddlex/modules/object_detection/dataset_checker/dataset_src/split_dataset.py +8 -4
  562. paddlex/modules/object_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  563. paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py +9 -8
  564. paddlex/modules/object_detection/evaluator.py +11 -6
  565. paddlex/modules/object_detection/exportor.py +1 -1
  566. paddlex/modules/object_detection/model_list.py +3 -1
  567. paddlex/modules/object_detection/trainer.py +4 -5
  568. paddlex/modules/open_vocabulary_detection/__init__.py +2 -2
  569. paddlex/modules/open_vocabulary_detection/dataset_checker.py +3 -3
  570. paddlex/modules/open_vocabulary_detection/evaluator.py +3 -3
  571. paddlex/modules/open_vocabulary_detection/exportor.py +3 -3
  572. paddlex/modules/open_vocabulary_detection/model_list.py +2 -4
  573. paddlex/modules/open_vocabulary_detection/trainer.py +7 -5
  574. paddlex/modules/open_vocabulary_segmentation/__init__.py +2 -2
  575. paddlex/modules/open_vocabulary_segmentation/dataset_checker.py +3 -3
  576. paddlex/modules/open_vocabulary_segmentation/evaluator.py +3 -3
  577. paddlex/modules/open_vocabulary_segmentation/exportor.py +3 -3
  578. paddlex/modules/open_vocabulary_segmentation/model_list.py +1 -1
  579. paddlex/modules/open_vocabulary_segmentation/trainer.py +7 -5
  580. paddlex/modules/semantic_segmentation/__init__.py +2 -2
  581. paddlex/modules/semantic_segmentation/dataset_checker/__init__.py +2 -3
  582. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/__init__.py +2 -2
  583. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/analyse_dataset.py +6 -3
  584. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/check_dataset.py +2 -2
  585. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/convert_dataset.py +7 -4
  586. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/split_dataset.py +2 -2
  587. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/__init__.py +1 -1
  588. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/visualizer.py +6 -2
  589. paddlex/modules/semantic_segmentation/evaluator.py +3 -3
  590. paddlex/modules/semantic_segmentation/exportor.py +1 -1
  591. paddlex/modules/semantic_segmentation/model_list.py +1 -1
  592. paddlex/modules/semantic_segmentation/trainer.py +3 -4
  593. paddlex/modules/table_recognition/__init__.py +2 -2
  594. paddlex/modules/table_recognition/dataset_checker/__init__.py +5 -5
  595. paddlex/modules/table_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  596. paddlex/modules/table_recognition/dataset_checker/dataset_src/analyse_dataset.py +3 -2
  597. paddlex/modules/table_recognition/dataset_checker/dataset_src/check_dataset.py +8 -7
  598. paddlex/modules/table_recognition/dataset_checker/dataset_src/split_dataset.py +2 -1
  599. paddlex/modules/table_recognition/evaluator.py +3 -3
  600. paddlex/modules/table_recognition/exportor.py +1 -1
  601. paddlex/modules/table_recognition/model_list.py +1 -1
  602. paddlex/modules/table_recognition/trainer.py +2 -5
  603. paddlex/modules/text_detection/__init__.py +2 -2
  604. paddlex/modules/text_detection/dataset_checker/__init__.py +4 -6
  605. paddlex/modules/text_detection/dataset_checker/dataset_src/__init__.py +2 -2
  606. paddlex/modules/text_detection/dataset_checker/dataset_src/analyse_dataset.py +12 -9
  607. paddlex/modules/text_detection/dataset_checker/dataset_src/check_dataset.py +3 -3
  608. paddlex/modules/text_detection/dataset_checker/dataset_src/split_dataset.py +3 -3
  609. paddlex/modules/text_detection/evaluator.py +3 -3
  610. paddlex/modules/text_detection/exportor.py +1 -1
  611. paddlex/modules/text_detection/model_list.py +3 -1
  612. paddlex/modules/text_detection/trainer.py +2 -5
  613. paddlex/modules/text_recognition/__init__.py +2 -2
  614. paddlex/modules/text_recognition/dataset_checker/__init__.py +4 -5
  615. paddlex/modules/text_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  616. paddlex/modules/text_recognition/dataset_checker/dataset_src/analyse_dataset.py +13 -12
  617. paddlex/modules/text_recognition/dataset_checker/dataset_src/check_dataset.py +2 -5
  618. paddlex/modules/text_recognition/dataset_checker/dataset_src/convert_dataset.py +11 -10
  619. paddlex/modules/text_recognition/dataset_checker/dataset_src/split_dataset.py +1 -2
  620. paddlex/modules/text_recognition/evaluator.py +3 -3
  621. paddlex/modules/text_recognition/exportor.py +1 -1
  622. paddlex/modules/text_recognition/model_list.py +3 -1
  623. paddlex/modules/text_recognition/trainer.py +2 -3
  624. paddlex/modules/ts_anomaly_detection/__init__.py +2 -2
  625. paddlex/modules/ts_anomaly_detection/dataset_checker/__init__.py +4 -5
  626. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/__init__.py +2 -2
  627. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py +1 -9
  628. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/check_dataset.py +2 -2
  629. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/convert_dataset.py +2 -6
  630. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/split_dataset.py +4 -4
  631. paddlex/modules/ts_anomaly_detection/evaluator.py +3 -3
  632. paddlex/modules/ts_anomaly_detection/exportor.py +2 -3
  633. paddlex/modules/ts_anomaly_detection/model_list.py +1 -1
  634. paddlex/modules/ts_anomaly_detection/trainer.py +8 -8
  635. paddlex/modules/ts_classification/__init__.py +2 -2
  636. paddlex/modules/ts_classification/dataset_checker/__init__.py +4 -5
  637. paddlex/modules/ts_classification/dataset_checker/dataset_src/__init__.py +2 -2
  638. paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -5
  639. paddlex/modules/ts_classification/dataset_checker/dataset_src/check_dataset.py +2 -2
  640. paddlex/modules/ts_classification/dataset_checker/dataset_src/convert_dataset.py +2 -6
  641. paddlex/modules/ts_classification/dataset_checker/dataset_src/split_dataset.py +5 -5
  642. paddlex/modules/ts_classification/evaluator.py +3 -3
  643. paddlex/modules/ts_classification/exportor.py +2 -3
  644. paddlex/modules/ts_classification/model_list.py +1 -1
  645. paddlex/modules/ts_classification/trainer.py +7 -7
  646. paddlex/modules/ts_forecast/__init__.py +2 -2
  647. paddlex/modules/ts_forecast/dataset_checker/__init__.py +4 -5
  648. paddlex/modules/ts_forecast/dataset_checker/dataset_src/__init__.py +2 -2
  649. paddlex/modules/ts_forecast/dataset_checker/dataset_src/analyse_dataset.py +1 -9
  650. paddlex/modules/ts_forecast/dataset_checker/dataset_src/check_dataset.py +2 -2
  651. paddlex/modules/ts_forecast/dataset_checker/dataset_src/convert_dataset.py +2 -6
  652. paddlex/modules/ts_forecast/dataset_checker/dataset_src/split_dataset.py +4 -4
  653. paddlex/modules/ts_forecast/evaluator.py +3 -3
  654. paddlex/modules/ts_forecast/exportor.py +2 -3
  655. paddlex/modules/ts_forecast/model_list.py +1 -1
  656. paddlex/modules/ts_forecast/trainer.py +7 -7
  657. paddlex/modules/video_classification/__init__.py +2 -2
  658. paddlex/modules/video_classification/dataset_checker/__init__.py +2 -2
  659. paddlex/modules/video_classification/dataset_checker/dataset_src/__init__.py +2 -2
  660. paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset.py +9 -9
  661. paddlex/modules/video_classification/dataset_checker/dataset_src/check_dataset.py +2 -3
  662. paddlex/modules/video_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  663. paddlex/modules/video_classification/evaluator.py +3 -3
  664. paddlex/modules/video_classification/exportor.py +1 -1
  665. paddlex/modules/video_classification/model_list.py +1 -1
  666. paddlex/modules/video_classification/trainer.py +3 -3
  667. paddlex/modules/video_detection/__init__.py +2 -2
  668. paddlex/modules/video_detection/dataset_checker/__init__.py +2 -2
  669. paddlex/modules/video_detection/dataset_checker/dataset_src/__init__.py +2 -2
  670. paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  671. paddlex/modules/video_detection/dataset_checker/dataset_src/check_dataset.py +3 -5
  672. paddlex/modules/video_detection/evaluator.py +3 -3
  673. paddlex/modules/video_detection/exportor.py +1 -1
  674. paddlex/modules/video_detection/model_list.py +1 -1
  675. paddlex/modules/video_detection/trainer.py +3 -3
  676. paddlex/ops/__init__.py +7 -4
  677. paddlex/ops/iou3d_nms/iou3d_cpu.cpp +8 -6
  678. paddlex/ops/iou3d_nms/iou3d_cpu.h +3 -2
  679. paddlex/ops/iou3d_nms/iou3d_nms.cpp +8 -6
  680. paddlex/ops/iou3d_nms/iou3d_nms.h +6 -4
  681. paddlex/ops/iou3d_nms/iou3d_nms_api.cpp +24 -18
  682. paddlex/ops/iou3d_nms/iou3d_nms_kernel.cu +9 -7
  683. paddlex/ops/setup.py +3 -3
  684. paddlex/ops/voxel/voxelize_op.cc +22 -19
  685. paddlex/ops/voxel/voxelize_op.cu +25 -25
  686. paddlex/paddlex_cli.py +104 -87
  687. paddlex/repo_apis/Paddle3D_api/__init__.py +1 -1
  688. paddlex/repo_apis/Paddle3D_api/bev_fusion/__init__.py +1 -1
  689. paddlex/repo_apis/Paddle3D_api/bev_fusion/config.py +1 -1
  690. paddlex/repo_apis/Paddle3D_api/bev_fusion/model.py +6 -6
  691. paddlex/repo_apis/Paddle3D_api/bev_fusion/register.py +2 -2
  692. paddlex/repo_apis/Paddle3D_api/bev_fusion/runner.py +1 -1
  693. paddlex/repo_apis/Paddle3D_api/pp3d_config.py +3 -2
  694. paddlex/repo_apis/PaddleClas_api/__init__.py +1 -1
  695. paddlex/repo_apis/PaddleClas_api/cls/__init__.py +3 -3
  696. paddlex/repo_apis/PaddleClas_api/cls/config.py +5 -4
  697. paddlex/repo_apis/PaddleClas_api/cls/model.py +4 -4
  698. paddlex/repo_apis/PaddleClas_api/cls/register.py +12 -3
  699. paddlex/repo_apis/PaddleClas_api/cls/runner.py +2 -3
  700. paddlex/repo_apis/PaddleClas_api/shitu_rec/__init__.py +2 -2
  701. paddlex/repo_apis/PaddleClas_api/shitu_rec/config.py +2 -2
  702. paddlex/repo_apis/PaddleClas_api/shitu_rec/model.py +1 -4
  703. paddlex/repo_apis/PaddleClas_api/shitu_rec/register.py +2 -2
  704. paddlex/repo_apis/PaddleClas_api/shitu_rec/runner.py +1 -6
  705. paddlex/repo_apis/PaddleDetection_api/__init__.py +2 -2
  706. paddlex/repo_apis/PaddleDetection_api/config_helper.py +3 -3
  707. paddlex/repo_apis/PaddleDetection_api/instance_seg/__init__.py +2 -2
  708. paddlex/repo_apis/PaddleDetection_api/instance_seg/config.py +2 -3
  709. paddlex/repo_apis/PaddleDetection_api/instance_seg/model.py +4 -4
  710. paddlex/repo_apis/PaddleDetection_api/instance_seg/register.py +2 -3
  711. paddlex/repo_apis/PaddleDetection_api/instance_seg/runner.py +2 -3
  712. paddlex/repo_apis/PaddleDetection_api/object_det/__init__.py +3 -3
  713. paddlex/repo_apis/PaddleDetection_api/object_det/config.py +5 -4
  714. paddlex/repo_apis/PaddleDetection_api/object_det/model.py +6 -7
  715. paddlex/repo_apis/PaddleDetection_api/object_det/official_categories.py +26 -1
  716. paddlex/repo_apis/PaddleDetection_api/object_det/register.py +32 -3
  717. paddlex/repo_apis/PaddleDetection_api/object_det/runner.py +2 -3
  718. paddlex/repo_apis/PaddleNLP_api/__init__.py +1 -1
  719. paddlex/repo_apis/PaddleOCR_api/__init__.py +4 -3
  720. paddlex/repo_apis/PaddleOCR_api/config_utils.py +1 -1
  721. paddlex/repo_apis/PaddleOCR_api/formula_rec/__init__.py +1 -1
  722. paddlex/repo_apis/PaddleOCR_api/formula_rec/config.py +7 -6
  723. paddlex/repo_apis/PaddleOCR_api/formula_rec/model.py +9 -13
  724. paddlex/repo_apis/PaddleOCR_api/formula_rec/register.py +29 -3
  725. paddlex/repo_apis/PaddleOCR_api/formula_rec/runner.py +2 -3
  726. paddlex/repo_apis/PaddleOCR_api/table_rec/__init__.py +1 -1
  727. paddlex/repo_apis/PaddleOCR_api/table_rec/config.py +1 -1
  728. paddlex/repo_apis/PaddleOCR_api/table_rec/model.py +4 -4
  729. paddlex/repo_apis/PaddleOCR_api/table_rec/register.py +2 -3
  730. paddlex/repo_apis/PaddleOCR_api/table_rec/runner.py +3 -3
  731. paddlex/repo_apis/PaddleOCR_api/text_det/__init__.py +1 -1
  732. paddlex/repo_apis/PaddleOCR_api/text_det/config.py +1 -1
  733. paddlex/repo_apis/PaddleOCR_api/text_det/model.py +4 -4
  734. paddlex/repo_apis/PaddleOCR_api/text_det/register.py +20 -3
  735. paddlex/repo_apis/PaddleOCR_api/text_det/runner.py +3 -3
  736. paddlex/repo_apis/PaddleOCR_api/text_rec/__init__.py +1 -1
  737. paddlex/repo_apis/PaddleOCR_api/text_rec/config.py +7 -6
  738. paddlex/repo_apis/PaddleOCR_api/text_rec/model.py +9 -13
  739. paddlex/repo_apis/PaddleOCR_api/text_rec/register.py +20 -3
  740. paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py +2 -3
  741. paddlex/repo_apis/PaddleSeg_api/__init__.py +1 -1
  742. paddlex/repo_apis/PaddleSeg_api/base_seg_config.py +2 -2
  743. paddlex/repo_apis/PaddleSeg_api/seg/__init__.py +1 -1
  744. paddlex/repo_apis/PaddleSeg_api/seg/config.py +3 -6
  745. paddlex/repo_apis/PaddleSeg_api/seg/model.py +6 -6
  746. paddlex/repo_apis/PaddleSeg_api/seg/register.py +2 -3
  747. paddlex/repo_apis/PaddleSeg_api/seg/runner.py +2 -3
  748. paddlex/repo_apis/PaddleTS_api/__init__.py +4 -3
  749. paddlex/repo_apis/PaddleTS_api/ts_ad/__init__.py +1 -1
  750. paddlex/repo_apis/PaddleTS_api/ts_ad/config.py +5 -6
  751. paddlex/repo_apis/PaddleTS_api/ts_ad/register.py +2 -2
  752. paddlex/repo_apis/PaddleTS_api/ts_ad/runner.py +2 -2
  753. paddlex/repo_apis/PaddleTS_api/ts_base/__init__.py +1 -1
  754. paddlex/repo_apis/PaddleTS_api/ts_base/config.py +2 -4
  755. paddlex/repo_apis/PaddleTS_api/ts_base/model.py +4 -4
  756. paddlex/repo_apis/PaddleTS_api/ts_base/runner.py +2 -2
  757. paddlex/repo_apis/PaddleTS_api/ts_cls/__init__.py +1 -1
  758. paddlex/repo_apis/PaddleTS_api/ts_cls/config.py +4 -5
  759. paddlex/repo_apis/PaddleTS_api/ts_cls/register.py +2 -2
  760. paddlex/repo_apis/PaddleTS_api/ts_cls/runner.py +2 -2
  761. paddlex/repo_apis/PaddleTS_api/ts_fc/__init__.py +1 -1
  762. paddlex/repo_apis/PaddleTS_api/ts_fc/config.py +6 -7
  763. paddlex/repo_apis/PaddleTS_api/ts_fc/register.py +1 -1
  764. paddlex/repo_apis/PaddleVideo_api/__init__.py +1 -1
  765. paddlex/repo_apis/PaddleVideo_api/config_utils.py +1 -1
  766. paddlex/repo_apis/PaddleVideo_api/video_cls/__init__.py +3 -3
  767. paddlex/repo_apis/PaddleVideo_api/video_cls/config.py +5 -4
  768. paddlex/repo_apis/PaddleVideo_api/video_cls/model.py +4 -4
  769. paddlex/repo_apis/PaddleVideo_api/video_cls/register.py +2 -3
  770. paddlex/repo_apis/PaddleVideo_api/video_cls/runner.py +2 -3
  771. paddlex/repo_apis/PaddleVideo_api/video_det/__init__.py +3 -3
  772. paddlex/repo_apis/PaddleVideo_api/video_det/config.py +5 -4
  773. paddlex/repo_apis/PaddleVideo_api/video_det/model.py +5 -5
  774. paddlex/repo_apis/PaddleVideo_api/video_det/register.py +2 -3
  775. paddlex/repo_apis/PaddleVideo_api/video_det/runner.py +2 -3
  776. paddlex/repo_apis/__init__.py +1 -1
  777. paddlex/repo_apis/base/__init__.py +4 -5
  778. paddlex/repo_apis/base/config.py +3 -4
  779. paddlex/repo_apis/base/model.py +11 -19
  780. paddlex/repo_apis/base/register.py +1 -1
  781. paddlex/repo_apis/base/runner.py +11 -12
  782. paddlex/repo_apis/base/utils/__init__.py +1 -1
  783. paddlex/repo_apis/base/utils/arg.py +1 -1
  784. paddlex/repo_apis/base/utils/subprocess.py +1 -1
  785. paddlex/repo_manager/__init__.py +2 -9
  786. paddlex/repo_manager/core.py +12 -30
  787. paddlex/repo_manager/meta.py +41 -31
  788. paddlex/repo_manager/repo.py +171 -161
  789. paddlex/repo_manager/utils.py +13 -224
  790. paddlex/utils/__init__.py +1 -1
  791. paddlex/utils/cache.py +8 -10
  792. paddlex/utils/config.py +6 -5
  793. paddlex/utils/{custom_device_whitelist.py → custom_device_list.py} +53 -199
  794. paddlex/utils/deps.py +249 -0
  795. paddlex/utils/device.py +87 -36
  796. paddlex/utils/download.py +4 -4
  797. paddlex/utils/env.py +37 -7
  798. paddlex/utils/errors/__init__.py +1 -1
  799. paddlex/utils/errors/dataset_checker.py +1 -1
  800. paddlex/utils/errors/others.py +2 -16
  801. paddlex/utils/file_interface.py +4 -5
  802. paddlex/utils/flags.py +17 -12
  803. paddlex/utils/fonts/__init__.py +36 -5
  804. paddlex/utils/func_register.py +1 -1
  805. paddlex/utils/install.py +87 -0
  806. paddlex/utils/interactive_get_pipeline.py +3 -3
  807. paddlex/utils/lazy_loader.py +3 -3
  808. paddlex/utils/logging.py +10 -1
  809. paddlex/utils/misc.py +6 -6
  810. paddlex/utils/pipeline_arguments.py +15 -7
  811. paddlex/utils/result_saver.py +4 -5
  812. paddlex/utils/subclass_register.py +2 -4
  813. paddlex/version.py +2 -1
  814. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info}/METADATA +237 -102
  815. paddlex-3.0.1.dist-info/RECORD +1095 -0
  816. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info}/WHEEL +1 -1
  817. paddlex/inference/models/base/predictor/basic_predictor.py +0 -139
  818. paddlex/paddle2onnx_requirements.txt +0 -1
  819. paddlex/repo_manager/requirements.txt +0 -21
  820. paddlex/serving_requirements.txt +0 -9
  821. paddlex-3.0.0rc0.dist-info/RECORD +0 -1015
  822. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info}/entry_points.txt +0 -0
  823. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info/licenses}/LICENSE +0 -0
  824. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1095 @@
1
+ paddlex/.version,sha256=BuP-SnoYhNINgcxwZcqM_Uw5TsYCxNGA3cObvU99pSE,6
2
+ paddlex/__init__.py,sha256=gfGHiM_wthbQaWWyZ_Xwb7VwA4YxhJa_E7vsxbD7tVc,1703
3
+ paddlex/__main__.py,sha256=9HXLNHbXfczSIc0uYKqD1cHpsjs86xLmiVoy0cB_aiI,1290
4
+ paddlex/constants.py,sha256=s7As1cvezO0hsuKzkRo1XX5gTIc6Srx0mZqpR6v4H04,680
5
+ paddlex/engine.py,sha256=_x772aN89DVU16NhDyvIilk4UQQcj1whHwCOPpGgw5Y,2057
6
+ paddlex/hpip_links.html,sha256=22RS570jLZsSJH2lOyQ3nkcd3Mo2VzpqwbnHa4nCngY,3891
7
+ paddlex/model.py,sha256=xhtHQGiMdgOKKcGM-FK0K_cIVRsNamlLwkia5SsgmKY,4248
8
+ paddlex/paddlex_cli.py,sha256=ZqMsAlHZqm0Qqx3HlXnysQZlvNnXuB710yIujo8_wgI,16216
9
+ paddlex/version.py,sha256=40pf-VYbXsguYRHs1v1-IRmHaNoDa1F0BgYM6bn3pF4,1692
10
+ paddlex/configs/modules/3d_bev_detection/BEVFusion.yaml,sha256=qox_QOiB2CdOAaRXU55bTVQCf_BbcM26oqHGOQZ623k,1033
11
+ paddlex/configs/modules/chart_parsing/PP-Chart2Table.yaml,sha256=snf083z359JWM8alJliaeTCfsSOV7hwkxYkFGXni5dY,319
12
+ paddlex/configs/modules/doc_text_orientation/PP-LCNet_x1_0_doc_ori.yaml,sha256=AETe_giWiq8ribioePFEhjdS39t_cTGQnvGB6Mkn4jw,1109
13
+ paddlex/configs/modules/doc_vlm/PP-DocBee-2B.yaml,sha256=qLJ2TUwx6S7nm8UFUO987JJABfK2GuCQk7mT2fjYd5k,351
14
+ paddlex/configs/modules/doc_vlm/PP-DocBee-7B.yaml,sha256=xlEKjNJV3CkkYto6Dtk9_U7UWxLfO6I_AbzVHLF3ZZo,351
15
+ paddlex/configs/modules/doc_vlm/PP-DocBee2-3B.yaml,sha256=DZJTm42g-7Mqbs3N3JQlyqTVvvODqyVBPumxjIez3CQ,378
16
+ paddlex/configs/modules/face_detection/BlazeFace-FPN-SSH.yaml,sha256=S92uHNRVm9YABasucmIlriQ00Vy7zUBcyXz9AJAGRn8,1078
17
+ paddlex/configs/modules/face_detection/BlazeFace.yaml,sha256=BMIwuscezZVmZWyNva1_Mkh_sQBH1NHRIlnwgQcAUmY,1054
18
+ paddlex/configs/modules/face_detection/PP-YOLOE_plus-S_face.yaml,sha256=kSJr8mjBNMbH4_ZcuLZk7AkH0JsRkVw4Mn5gD4SKw9k,1088
19
+ paddlex/configs/modules/face_detection/PicoDet_LCNet_x2_5_face.yaml,sha256=WHsjo5iU9QDX13lnpTCE_HhZpk9lakTNG8Dka4FnHVU,1095
20
+ paddlex/configs/modules/face_feature/MobileFaceNet.yaml,sha256=QV571iibXQXO9JMF1UF0_wV8CZonDW4pQoURG0NmGyI,1087
21
+ paddlex/configs/modules/face_feature/ResNet50_face.yaml,sha256=qGhhLwJo3blkTdLMh9_8GiAs3jpNEv8DlqI3GSm7JWY,1086
22
+ paddlex/configs/modules/formula_recognition/LaTeX_OCR_rec.yaml,sha256=X-Z8kgZ_kM_MGsjHH_HOnylItLew0J7nEDRgwz2SFMg,1087
23
+ paddlex/configs/modules/formula_recognition/PP-FormulaNet-L.yaml,sha256=ja7E-X8lP4yIuk-_AS4PH1_R2kwpJ876wlCfF8WVfa8,1092
24
+ paddlex/configs/modules/formula_recognition/PP-FormulaNet-S.yaml,sha256=pL9pZINe-2aVoDJ5CSGOg6aiGwZAQQpjLSqNelozllc,1094
25
+ paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-L.yaml,sha256=61C8LdYabVf03zm67WwD2O7ZM4EMoYNppqNhlwwFdMA,1107
26
+ paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-M.yaml,sha256=ZpIPQEZNOyvDuvN8bg1jHPeqB-I0MgZs20hgvY3mUU4,1109
27
+ paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-S.yaml,sha256=AnyLBe4E9HM0Ols6WI6ybzMDwwDIDwVvWT1oAFbcAw8,1109
28
+ paddlex/configs/modules/formula_recognition/UniMERNet.yaml,sha256=E1OSy2fPSYyMVA5z_QDLUMhxPjDliF3f88pXUQhQlWo,1075
29
+ paddlex/configs/modules/human_detection/PP-YOLOE-L_human.yaml,sha256=NU3jFyEip_TU6aURcqV1kzYDA6dLTsos3-6BW40TeJ4,1080
30
+ paddlex/configs/modules/human_detection/PP-YOLOE-S_human.yaml,sha256=ZsNbemUP-tIBqy1KVLE2MCybtWk1V90AXIY-5k1MbTw,1080
31
+ paddlex/configs/modules/image_anomaly_detection/STFPM.yaml,sha256=m0xBEfchDCBb06cBLpqrHAXPwqENaR36kQp9GwG5M1M,929
32
+ paddlex/configs/modules/image_classification/CLIP_vit_base_patch16_224.yaml,sha256=LK_n8fQaBkfiBHIwU88gG1zZOAGM8oVsguwomjowie8,1138
33
+ paddlex/configs/modules/image_classification/CLIP_vit_large_patch14_224.yaml,sha256=w_YUGfVLSAXZYsSF26HCFU7PpzT__xUhCNH9rD-aB0M,1141
34
+ paddlex/configs/modules/image_classification/ConvNeXt_base_224.yaml,sha256=gn-n3SfGCZ6_OOgwRY7k4EXuFEEtL0PiPdnZMhayRH4,1113
35
+ paddlex/configs/modules/image_classification/ConvNeXt_base_384.yaml,sha256=jqB7RwPQhJuhRgZONnkVSZihXkBhJqlPgbfQ2ErpI64,1113
36
+ paddlex/configs/modules/image_classification/ConvNeXt_large_224.yaml,sha256=echAqQdzckFmG8cZ2xeQUgAuZwyuGWwSZNCGgGg3-0Q,1116
37
+ paddlex/configs/modules/image_classification/ConvNeXt_large_384.yaml,sha256=utgE1-Eoe84BCjoJgipcdovtg-Q2J2aTpVRfMgNoy7Y,1115
38
+ paddlex/configs/modules/image_classification/ConvNeXt_small.yaml,sha256=CoBafC89MdqdPhgCkbYtRqbPmWoNeFa9U0SGXBFbehE,1104
39
+ paddlex/configs/modules/image_classification/ConvNeXt_tiny.yaml,sha256=NikOVm_RaepPQbeciIOy-QHCnJnfaL4iJfaqo05ALEY,1101
40
+ paddlex/configs/modules/image_classification/FasterNet-L.yaml,sha256=IwASicfaAaYMXTBe0Rp3zVopdczXD8P3GHDaVykBER0,1093
41
+ paddlex/configs/modules/image_classification/FasterNet-M.yaml,sha256=qeWU3wmgWIhYcnQmjbA5f--xNx7ChOC9ipbKacniEsc,1093
42
+ paddlex/configs/modules/image_classification/FasterNet-S.yaml,sha256=F5NhqQpLUQZhZI83Po6i8iwnlKuI0ejNDBxOAmoS5ig,1094
43
+ paddlex/configs/modules/image_classification/FasterNet-T0.yaml,sha256=jt6nfJaCEUbsmy4JSaMcgBITep3Fyoj13gfYBC8hXjo,1097
44
+ paddlex/configs/modules/image_classification/FasterNet-T1.yaml,sha256=qlraq3GaqNZfHIYZl7UFOosFND8qfcTTg22yO81L-5Y,1097
45
+ paddlex/configs/modules/image_classification/FasterNet-T2.yaml,sha256=KRRjkp3hsc3n6ZfdrJ4Avfd8al2Q5dP5490PAYT0FTM,1097
46
+ paddlex/configs/modules/image_classification/MobileNetV1_x0_25.yaml,sha256=uLoUWZ6DsLU6AI8Axl2S_TzLNvmUrmRs5iUSRCUDHQw,1111
47
+ paddlex/configs/modules/image_classification/MobileNetV1_x0_5.yaml,sha256=2gSU1bET_sK1Y1yGNDit4xjR6BHrMMKPotW5DzueXig,1108
48
+ paddlex/configs/modules/image_classification/MobileNetV1_x0_75.yaml,sha256=iWz2iNvOfKZwKtYJeeWDC1fG1hcXJa3hVO2wBQyFSpA,1111
49
+ paddlex/configs/modules/image_classification/MobileNetV1_x1_0.yaml,sha256=Wvvj_X4DSmlJYQGPrPnrChL3hD3WakRGFmGdappn_-0,1108
50
+ paddlex/configs/modules/image_classification/MobileNetV2_x0_25.yaml,sha256=psRKr_FG-NYYOO9UN0qrKt2g0eZSO_1W0qVnBAoHNhg,1113
51
+ paddlex/configs/modules/image_classification/MobileNetV2_x0_5.yaml,sha256=qb_yqAv-2faVTl_iArBh2m9NjwOe65qP2hA2YqFsyeA,1110
52
+ paddlex/configs/modules/image_classification/MobileNetV2_x1_0.yaml,sha256=1937V9J05n8BnykdEwXqfpPWfInTMcqaIoUgUwVbqVA,1110
53
+ paddlex/configs/modules/image_classification/MobileNetV2_x1_5.yaml,sha256=obtZs2YvXv6sZPbNFCMJVfD4m76jdlEJp7F_EuPN1F8,1110
54
+ paddlex/configs/modules/image_classification/MobileNetV2_x2_0.yaml,sha256=N0GcWa5yJYZXHZ8J_FhuJfRkbKlnusIQaAFsKBECbhU,1110
55
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x0_35.yaml,sha256=iC1YYIwKmGXR0n6cdQCJejlV-exSYzdqlyEpfTdKSsY,1131
56
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x0_5.yaml,sha256=q_fgzScX9kzHBfr1wpT9LN68rrVoJuDzVZJHiKXS4Pc,1128
57
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x0_75.yaml,sha256=A_HA8UzcoeRl3E3Bpx7jSu4rf8ziXqYR8r-2mMZan1k,1131
58
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x1_0.yaml,sha256=wa_5xcKMe1_U65mHGs2-LXRpDAe6neFJze6ELUZblnY,1128
59
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x1_25.yaml,sha256=-nhvLFSewcu4GF6hRE-O5sh02bMoQDNH7DP5_rr9KP8,1131
60
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x0_35.yaml,sha256=VK0X449vo4Xh0J6yfZBiEmtk0ZzPrhyh7WCRC5w0IFU,1131
61
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x0_5.yaml,sha256=tMU6hQFi0VyP2MBaYFpcXyFm4yg-t4E4P25Di-z4VaA,1128
62
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x0_75.yaml,sha256=lFsgeV0mcZcjaPH1y9VuGT1JzKSGVcxmMaaCo7f2X8E,1131
63
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x1_0.yaml,sha256=A6DJ6GoNVeJaJopRlbkX8BkUHGSiAy37Yp5gnlkT2F8,1128
64
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x1_25.yaml,sha256=zcXwhMKlakpSDmyDn7TaZbKv0G0cWhN80iQKR6zAqCA,1131
65
+ paddlex/configs/modules/image_classification/MobileNetV4_conv_large.yaml,sha256=bSezzL_GQlk5IrB4QW2RjN1W5oxCgKtksJJ7rRM9M-k,1127
66
+ paddlex/configs/modules/image_classification/MobileNetV4_conv_medium.yaml,sha256=wRZ7DiS4l28KG6ZZ_PaS49w83EALTW2AfxPpLEQ4tXc,1131
67
+ paddlex/configs/modules/image_classification/MobileNetV4_conv_small.yaml,sha256=hEkIvgIiXq-RiTzSdZIWEAwC5WDOdNspGipy1OXRIrc,1128
68
+ paddlex/configs/modules/image_classification/MobileNetV4_hybrid_large.yaml,sha256=uWEcHM6VXxe_MxShLvOwaQvk0yuLJEJJOanmAj7SQOY,1133
69
+ paddlex/configs/modules/image_classification/MobileNetV4_hybrid_medium.yaml,sha256=7LIQwtNGjn3tZCw-aZgauG_auuJGA-_FAtJaGLw2c4U,1136
70
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B0.yaml,sha256=zBJupgZWNjJ-vScLqMEaeyEOZk1FEn3ll-09UfCp8GQ,1100
71
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B1.yaml,sha256=HCa-dcRmkKhbgiJjqq2TjIKmb3eldge3pQTjuEXW8F0,1100
72
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B2.yaml,sha256=4UD0nLoR1obIbgx50ECUoK82Tdhxs3pZJ8uJUikZ3ko,1100
73
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B3.yaml,sha256=HDunHsQCUjGd4OgLgrA5yDJNS0NBYc4TGbFDOP_rB3A,1100
74
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B4.yaml,sha256=nOOzk3RJtrNihSTo5KVoTfJGvzlR9w--KFSOwDkCOC8,1100
75
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B5.yaml,sha256=g0aob11iDTk5sMv442cOBxf_SQfm7QXp2qIT84bbHSQ,1100
76
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B6.yaml,sha256=9mrKN9fxI5ueRE8nuJdhAujp3M4xNjKUm9OINRma0Hw,1100
77
+ paddlex/configs/modules/image_classification/PP-HGNet_base.yaml,sha256=l_FgAahuQvut0d4SFNYuStu3Qj-y6USR1WN4iE5c13I,1100
78
+ paddlex/configs/modules/image_classification/PP-HGNet_small.yaml,sha256=_mRqbbfPi7pAKcmSMNmjzZn84978Od5osuAY-wkZEmA,1103
79
+ paddlex/configs/modules/image_classification/PP-HGNet_tiny.yaml,sha256=_cttp27OzbF3FfTAeRMS05UHi3VVULeGzCYnvW7_A9o,1100
80
+ paddlex/configs/modules/image_classification/PP-LCNetV2_base.yaml,sha256=YUmqFg9MlaDdJg9ZMuhvRge7uz-0QoeSoFP6vA-Viuk,1114
81
+ paddlex/configs/modules/image_classification/PP-LCNetV2_large.yaml,sha256=kle9yZYiQVgDVsXAj6o3b0EZPC5QJQCGs_Vb6WD73fA,1117
82
+ paddlex/configs/modules/image_classification/PP-LCNetV2_small.yaml,sha256=NNJEK4-hw3rQSJtpEXcQ8m4btavpYxKQ1bGjfAQ_soA,1117
83
+ paddlex/configs/modules/image_classification/PP-LCNet_x0_25.yaml,sha256=d4tgfqJJLlzXKKVOSIIEgrMaxhy0up7yRjmHgzJb_i8,1103
84
+ paddlex/configs/modules/image_classification/PP-LCNet_x0_35.yaml,sha256=DlwXHwttQVuG_zU3tuVPfyrNG2gu4RtzHmWg_QtXpcs,1103
85
+ paddlex/configs/modules/image_classification/PP-LCNet_x0_5.yaml,sha256=9ay8PBsdpLeze-dKUL56BPY3TPkTXckts8obUTBbNac,1100
86
+ paddlex/configs/modules/image_classification/PP-LCNet_x0_75.yaml,sha256=GxcfHhImq0jg3KVoFBeELFStoO1BAdvP6TjFJXtI9Lk,1103
87
+ paddlex/configs/modules/image_classification/PP-LCNet_x1_0.yaml,sha256=7xS7Nja6fEalFb4CcpN5S9CxMewtWKJ1hnZjBHWhupk,1108
88
+ paddlex/configs/modules/image_classification/PP-LCNet_x1_5.yaml,sha256=SRf-MXXiH0a1upLgvis3ZQU2tuEWXm3gfAqHFjkhW6w,1100
89
+ paddlex/configs/modules/image_classification/PP-LCNet_x2_0.yaml,sha256=zkX6d5O_hQTR5A2TmjKhxTr653q_nehU9zVOgeWwCzI,1100
90
+ paddlex/configs/modules/image_classification/PP-LCNet_x2_5.yaml,sha256=L-Ci_hL-DPIyfohWSDfLrrgvs5widwHOGHcTVMpQZ4c,1100
91
+ paddlex/configs/modules/image_classification/ResNet101.yaml,sha256=WQ5JrCYbBe_I0aWpt3P_X2F-agnWXJ5NlmqDnYNjFEw,1087
92
+ paddlex/configs/modules/image_classification/ResNet101_vd.yaml,sha256=StIUPW6hPFPF5K68FNY8q130xNFnaxAvN3U0REiNLCk,1096
93
+ paddlex/configs/modules/image_classification/ResNet152.yaml,sha256=2lD9xWr5HdoDlPtncaKbxj5ptTcQfxrOLHZffqUPmuE,1087
94
+ paddlex/configs/modules/image_classification/ResNet152_vd.yaml,sha256=x8L7X1qPut9njAlNh0nfrB1tlgMErKXvsowws1EKZ8o,1096
95
+ paddlex/configs/modules/image_classification/ResNet18.yaml,sha256=1HbFG-Yt1cLAMzc8jPfCmdYilTVziwwt1T7NT9p1eYk,1084
96
+ paddlex/configs/modules/image_classification/ResNet18_vd.yaml,sha256=2wwN5bIB8wSiSkz53jR-uHpBgh7M62QOYGdo4wF-ruw,1093
97
+ paddlex/configs/modules/image_classification/ResNet200_vd.yaml,sha256=NejmKMU0waKlZey1U_6ZFpy02Ci9CDUgXPXrjnBSQc4,1096
98
+ paddlex/configs/modules/image_classification/ResNet34.yaml,sha256=qf6VyTjDUdWsotbS8NoxVOaEh3xEdMJ-NFUR16hy4lM,1084
99
+ paddlex/configs/modules/image_classification/ResNet34_vd.yaml,sha256=LKquktvpzifqEbTDQb8l4Al_6A0TQ6Ta6gvtYnoDj0k,1093
100
+ paddlex/configs/modules/image_classification/ResNet50.yaml,sha256=7BVkuhaKyxQQMNvxkeJ-OvMcytmXKWoYfxCr68QByg8,1084
101
+ paddlex/configs/modules/image_classification/ResNet50_vd.yaml,sha256=R0KyYfaOHmIzPy-fRdEXAK5K0kPcjtSMkYm6gEbO-lI,1093
102
+ paddlex/configs/modules/image_classification/StarNet-S1.yaml,sha256=S0QY-NrVyl29fEDnRmYPLpUVVmyDuTIHzfD6qsky16o,1092
103
+ paddlex/configs/modules/image_classification/StarNet-S2.yaml,sha256=hxglkA28lIXqkXupAL14FmCSFN_WVViVr1Z44Xgh_j4,1092
104
+ paddlex/configs/modules/image_classification/StarNet-S3.yaml,sha256=vPLcd__TJ_mcQOTLJt6EihuFLxmJ6Bzgz3y7qSQKi3M,1092
105
+ paddlex/configs/modules/image_classification/StarNet-S4.yaml,sha256=LwPjtgeNfEc3crIKuaVZe3EgzE82KnrP4uBivcsURFc,1092
106
+ paddlex/configs/modules/image_classification/SwinTransformer_base_patch4_window12_384.yaml,sha256=iNgXGMsZ0FqK2ySMAVsyDs7647ejManggJO2G8rZ39k,1182
107
+ paddlex/configs/modules/image_classification/SwinTransformer_base_patch4_window7_224.yaml,sha256=SdlxnlKwb323PKyVCILq8JSrwQTBAGz4jQLAFheNrlg,1180
108
+ paddlex/configs/modules/image_classification/SwinTransformer_large_patch4_window12_384.yaml,sha256=cK11Pc_kOtsrLAdckl8snE8ZGkr0jrNMGMJJh67mnCo,1185
109
+ paddlex/configs/modules/image_classification/SwinTransformer_large_patch4_window7_224.yaml,sha256=oLWNA6zBBUlFfdSVCv7Y9rXeFEMxMcHP0bLy0b1Vqjk,1182
110
+ paddlex/configs/modules/image_classification/SwinTransformer_small_patch4_window7_224.yaml,sha256=B6lvfAzD2ikr--y8P7m5X8u48pLsTwXtVnhr8U20rck,1182
111
+ paddlex/configs/modules/image_classification/SwinTransformer_tiny_patch4_window7_224.yaml,sha256=wWf5-zN-qJa2fbG5MaetinLngqnycf39yXEslrceamc,1179
112
+ paddlex/configs/modules/image_feature/PP-ShiTuV2_rec.yaml,sha256=fXX3iV2GhbEM5fBdDQpPJQJI1dSzK8XrfEKgiuVUABo,1130
113
+ paddlex/configs/modules/image_feature/PP-ShiTuV2_rec_CLIP_vit_base.yaml,sha256=RYSAJP2cOEirVzza5rN0JXqhuvyc5P8u2yezHzG2jGQ,1234
114
+ paddlex/configs/modules/image_feature/PP-ShiTuV2_rec_CLIP_vit_large.yaml,sha256=mHwThGAxiLpUOK4rii3OuiTqjYQlWIzE6QR8mFBA3gI,1238
115
+ paddlex/configs/modules/image_multilabel_classification/CLIP_vit_base_patch16_448_ML.yaml,sha256=79PcH0PNx0Qci2FXH_l2xHVRR1gWD0SUcI-JDEZmidY,1123
116
+ paddlex/configs/modules/image_multilabel_classification/PP-HGNetV2-B0_ML.yaml,sha256=2DQeB_OcLoEztUAWGbORvoGwl9ApOY10_MtNwoM1dlI,1087
117
+ paddlex/configs/modules/image_multilabel_classification/PP-HGNetV2-B4_ML.yaml,sha256=rizP9nQ5lj7ot-kGwGodY6lf8ixteXlXaA-5FoQRnpc,1085
118
+ paddlex/configs/modules/image_multilabel_classification/PP-HGNetV2-B6_ML.yaml,sha256=2EuE24uTLrsQ6eiMbV1YaIUUA439ARncGag1iqoqP_w,1085
119
+ paddlex/configs/modules/image_multilabel_classification/PP-LCNet_x1_0_ML.yaml,sha256=_G8MQ6cRAnxeGBuMAuHWruHVOkRsGlwKkUXpU0DxcAE,1092
120
+ paddlex/configs/modules/image_multilabel_classification/ResNet50_ML.yaml,sha256=ASNTdy4x2x-Wf-9f5nwDPewr2SZyK_djwIRCtJm-FRw,1069
121
+ paddlex/configs/modules/image_unwarping/UVDoc.yaml,sha256=fJ4jj-tumQrW3YU-nL-_9YIbemD1_Y-CywvY2zdam6c,304
122
+ paddlex/configs/modules/instance_segmentation/Cascade-MaskRCNN-ResNet50-FPN.yaml,sha256=cICXUmiwEZWBsMTehKIaLj76q7Evv8j4pruZeveTpuI,1147
123
+ paddlex/configs/modules/instance_segmentation/Cascade-MaskRCNN-ResNet50-vd-SSLDv2-FPN.yaml,sha256=Z8DJqoZZNWeKsJxWdYfoWDnWUM5jm-ghImsjN8odqnM,1177
124
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-H.yaml,sha256=PRSLpfFUIhno1z0n2mC4IzfyKE97EFfo2fvp4Da3gl0,1104
125
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-L.yaml,sha256=5YkieF2M8jbuVTUTa2GB5VL3q-58VS3fkVMt9XqwgJ0,1104
126
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-M.yaml,sha256=gK3NWLfJu2Z9WvisBsJDKsoHB--cvkxQoPJDiFYWhnU,1104
127
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-S.yaml,sha256=xy9yOYMtZO4FaJSLUYZYBw8txBgqlHmw95gJgcERMq4,1104
128
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-X.yaml,sha256=aqu712KiEihlM01hFf_4BHPL3aRmsY2-xGo6i43EO7k,1104
129
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNeXt101-vd-FPN.yaml,sha256=wLoTkTyOVlp2o6xDMky03kZsbG1bYsW28h0thRZNv6U,1137
130
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet101-FPN.yaml,sha256=6nu7ZakzQ84IlhQifP-9rZlvs9oG6kx9IC4hg1Na9mA,1126
131
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet101-vd-FPN.yaml,sha256=ZVrQWaH-r-GTMGO5IAffTvG9xhzBH_Oa9-kQJYgUyEY,1137
132
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet50-FPN.yaml,sha256=Lhm2lrNCUKkycf9CpuBAHUkNc1z7TNYq5AmLcD_EGEs,1123
133
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet50-vd-FPN.yaml,sha256=rcjv6rYi83etpcQ2gl--O9KGld_Jx_8J3hxAjh76Too,1132
134
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet50.yaml,sha256=DZc9pJQNpfWsHuF5KbdmcQis0rbdqeF4COC9lMdNAYs,1111
135
+ paddlex/configs/modules/instance_segmentation/PP-YOLOE_seg-S.yaml,sha256=qLTRXJ13jo0M2QIL9MxvMJxosmtEjEAHOeNp8aboHRs,1103
136
+ paddlex/configs/modules/instance_segmentation/SOLOv2.yaml,sha256=8UHZ27HP1JL4koCsn37RQLU8AAgs6ROXNGBRwkuo780,1078
137
+ paddlex/configs/modules/keypoint_detection/PP-TinyPose_128x96.yaml,sha256=-nU2Q82TplTQFPGnQ-5NL2xKDvd5eAUawH9nAqHRtvQ,1093
138
+ paddlex/configs/modules/keypoint_detection/PP-TinyPose_256x192.yaml,sha256=bI4YYbh1gRncbqHTi0l49oV6Uhq3K1kjgSVU-o04-Ck,1096
139
+ paddlex/configs/modules/layout_detection/PP-DocBlockLayout.yaml,sha256=3eb-vxluipp9Oc7Umo5P2j14Ievp0cE9evpPxs13UvI,1072
140
+ paddlex/configs/modules/layout_detection/PP-DocLayout-L.yaml,sha256=AEB-UO6Gnm4GJ1d7NcXdVgWMQlRQLKbLITTFGgacb1s,1063
141
+ paddlex/configs/modules/layout_detection/PP-DocLayout-M.yaml,sha256=NSXymrJO4g4aA3aOg4rY1riadznwu6S-d2PJFQZbW1Y,1063
142
+ paddlex/configs/modules/layout_detection/PP-DocLayout-S.yaml,sha256=ot2lj1310aGooUWUHDCCr5OHZxGGZ1KUsZg6Xy5bfFo,1063
143
+ paddlex/configs/modules/layout_detection/PP-DocLayout_plus-L.yaml,sha256=1oFBsosKzgoHroPT8ci-gyUFv7Snt3WDDFbFe6VbLZM,1078
144
+ paddlex/configs/modules/layout_detection/PicoDet-L_layout_17cls.yaml,sha256=HLuTMH0JI5rF5lCYiG_SG9hH_XGSGoaAUdv17sgAFVA,1084
145
+ paddlex/configs/modules/layout_detection/PicoDet-L_layout_3cls.yaml,sha256=bfJqMZjnzmHdhzgngZgHPCz_mZ7uZf1xTQWBnmQEzBo,1081
146
+ paddlex/configs/modules/layout_detection/PicoDet-S_layout_17cls.yaml,sha256=jm2_FSvWdIZ99RnyX6NX9zw5CtWEJ8Plxax4tycq3Ks,1084
147
+ paddlex/configs/modules/layout_detection/PicoDet-S_layout_3cls.yaml,sha256=xUnksr6O7Jpq0YGwmgj1k5SR6U6WXhX_QoAMbIi-uhc,1081
148
+ paddlex/configs/modules/layout_detection/PicoDet_layout_1x.yaml,sha256=bLT9XKKWv5W1242Okn7qH4N0N2kmutANXsm2-lSbidw,1068
149
+ paddlex/configs/modules/layout_detection/PicoDet_layout_1x_table.yaml,sha256=dmyNwhUgi1z4LS8gSsKyRe3_Tu6svUB1wF6jP6f8qOU,1086
150
+ paddlex/configs/modules/layout_detection/RT-DETR-H_layout_17cls.yaml,sha256=1S20T2TVCHuL2tyWsUmlQeb0OLGz1WrMU7gmpfnmHb0,1086
151
+ paddlex/configs/modules/layout_detection/RT-DETR-H_layout_3cls.yaml,sha256=nHce6T4VZUu-xTbaxRGgBPdu9NJyc4qanxPp0kDYsjg,1083
152
+ paddlex/configs/modules/mainbody_detection/PP-ShiTuV2_det.yaml,sha256=kMXy-QNH8FbAa3VbZIfvMhbzBCOfk2-guQKO3rh5eL4,1080
153
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_base.yaml,sha256=2uhhfAFJIjdL-e83Ue8glHdp-1204dJzloyiRCofg3E,261
154
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_large.yaml,sha256=xNDVp4xXsQE9H7x45rxyVannH3QJDiyPwfmhHKutzfM,263
155
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_medium.yaml,sha256=Q-3qKm611n2nZz7VoY1O6Q0gkrncNh2a_dTTaNhfr_4,265
156
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_small.yaml,sha256=nxNSloqWEyPjg2R60Gv8cSvxc435wojjK5TR7MwQTjk,263
157
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_tiny.yaml,sha256=fbL0zq5jM7C4ME6yRP0LqbEuY0KrODmJa4BmSyQJPMs,261
158
+ paddlex/configs/modules/object_detection/Cascade-FasterRCNN-ResNet50-FPN.yaml,sha256=R64-W1X32E6OLDOJniQ73gqXuTSrFTo7zppGqsQ4gmI,1128
159
+ paddlex/configs/modules/object_detection/Cascade-FasterRCNN-ResNet50-vd-SSLDv2-FPN.yaml,sha256=F3pP_MLxcPRw4kPC-KrOxv49GCsHSqpoOkNxI91TLr0,1159
160
+ paddlex/configs/modules/object_detection/CenterNet-DLA-34.yaml,sha256=S-Q4VI01AQpj-bSTfa5HKcSnprzIFRdytVqxeWUTsPg,1085
161
+ paddlex/configs/modules/object_detection/CenterNet-ResNet50.yaml,sha256=cIqns-7fWGbdA5kZk4YAPqMrPlIxZZa1U2cLKiATbqU,1091
162
+ paddlex/configs/modules/object_detection/Co-DINO-R50.yaml,sha256=xB5alvGleLc-sLBnQbeXBpyV0967_PxohPvMe15Xp5c,1069
163
+ paddlex/configs/modules/object_detection/Co-DINO-Swin-L.yaml,sha256=O4g3Wmz10Q9acmJH4loyMaqxoQmO8lIBFK7e7zSuq5g,1078
164
+ paddlex/configs/modules/object_detection/Co-Deformable-DETR-R50.yaml,sha256=37nZXVphbRDFuCt7skXJeebAoIIOpyGx7b21YK-Vea0,1102
165
+ paddlex/configs/modules/object_detection/Co-Deformable-DETR-Swin-T.yaml,sha256=aJeBcnJqIhIP-8DcrxNjHKuAxRz21mxBC3NAqCVK91k,1111
166
+ paddlex/configs/modules/object_detection/DETR-R50.yaml,sha256=OQwwjMuCofgJJmBwgxhI2maCcytgi1NtvlHA0U-FcEI,1062
167
+ paddlex/configs/modules/object_detection/FCOS-ResNet50.yaml,sha256=3R-WpASGd9PXBcWNm8UjucyP53Q5FVM8qfPmCTZ66Go,1074
168
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNeXt101-vd-FPN.yaml,sha256=jlPpEbJfBaUuwhQ0ngj12iM0wPIHnHLMWBERfJBQpyI,1120
169
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet101-FPN.yaml,sha256=a4z_-7H-Esa3EgpRIVMGmoXSdF6CvML78jvYb-YTask,1108
170
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet101.yaml,sha256=yOysi1xdYnpibgqqYk2Z6BqlHZ1qLOJqn4-Ezm2lfF8,1096
171
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet34-FPN.yaml,sha256=PsKV1ENMD8WEU1JXhOu6p4hXntFYk2iiYer3Yv1Jsrk,1105
172
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet50-FPN.yaml,sha256=LbScHVrpL9z0FcP9K2ijmMVwzNbxP9ki5aY3kBo2yT4,1105
173
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet50-vd-FPN.yaml,sha256=rop0c8J6zDR7hNZ0NxF65qCFqfipNggOgtsyQltroeA,1114
174
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet50-vd-SSLDv2-FPN.yaml,sha256=vrBOePFgp_PFe6fZtg_bgGYaK_7LQxmiavShEdxUPhI,1135
175
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet50.yaml,sha256=o86nxDTB17irlM31IY4H5qoCHSqElLAbI3LDX0rl7VE,1092
176
+ paddlex/configs/modules/object_detection/FasterRCNN-Swin-Tiny-FPN.yaml,sha256=NyXHOHoAoPDXunxITnH4FlW73qbo0jUWTMAA7cKdPAI,1110
177
+ paddlex/configs/modules/object_detection/PP-YOLOE_plus-L.yaml,sha256=_IrpHxs5_X6EmFDx5mNZmVGSj2PvmSfMGbDrSPG31L8,1115
178
+ paddlex/configs/modules/object_detection/PP-YOLOE_plus-M.yaml,sha256=2bS3lnmfTay2PRYK10p-lXYYJWHiAidO7sPqKitPgf8,1115
179
+ paddlex/configs/modules/object_detection/PP-YOLOE_plus-S.yaml,sha256=83KiBcpUhbIqxLEvDYFOUtjp1pHeWdGPSFwhTEj4CAo,1115
180
+ paddlex/configs/modules/object_detection/PP-YOLOE_plus-X.yaml,sha256=vLxYruqie_KJCeRIb8ccLipdQ3nVCVxHdnq-WVjEp4g,1115
181
+ paddlex/configs/modules/object_detection/PicoDet-L.yaml,sha256=mwHbc-RnT7VXZ0iq9rP-mnOi_a1DPsFWGWWS8obPgws,1062
182
+ paddlex/configs/modules/object_detection/PicoDet-M.yaml,sha256=HUoHddMXH_VE4Z0EBtrXWXAKcvL84aed6CpFuIPBtc0,1063
183
+ paddlex/configs/modules/object_detection/PicoDet-S.yaml,sha256=EXrlKbhBRMNP_YucCAcjHdHan972EmzttqjE3W-bhpo,1062
184
+ paddlex/configs/modules/object_detection/PicoDet-XS.yaml,sha256=B8XZoYxb2-Fcd2pLJd54p0TfPqGgtPKRbF39WiTsF3c,1066
185
+ paddlex/configs/modules/object_detection/RT-DETR-H.yaml,sha256=GA6UWVuqm8NXCgT2KkXBjPnVy5_NW9LnwXkE18joyvw,1064
186
+ paddlex/configs/modules/object_detection/RT-DETR-L.yaml,sha256=7995VHHuTYsp8k1kCM70WMgj2Rt424rrl124hVEiyR0,1063
187
+ paddlex/configs/modules/object_detection/RT-DETR-R18.yaml,sha256=0xollPIfB2rDW_CXpUBNsDrNRyPaMDpxB41oDisp1qk,1070
188
+ paddlex/configs/modules/object_detection/RT-DETR-R50.yaml,sha256=XMHUYXL1jQ7SdYPqfEr2YgndNW0gzd7x50lPKDYCZBA,1069
189
+ paddlex/configs/modules/object_detection/RT-DETR-X.yaml,sha256=ApIVAZUSuLwbjSMcg-BHYu7sxPYdl-G8gwXDRxvfeGo,1065
190
+ paddlex/configs/modules/object_detection/YOLOX-L.yaml,sha256=o1V_5vEJt9PQV2jMUUGIoYgfxhmNj1E2W2oRIwqqidQ,1055
191
+ paddlex/configs/modules/object_detection/YOLOX-M.yaml,sha256=yAQRSf3YlKbQMb_15KE80EJu2dHoI0Ue_0j1orCnjDQ,1055
192
+ paddlex/configs/modules/object_detection/YOLOX-N.yaml,sha256=s_Wr9MZqy4Om7Ah2yA742n_2YkO_rqt-lLUmWvDPVp8,1055
193
+ paddlex/configs/modules/object_detection/YOLOX-S.yaml,sha256=R4A71AwAz361UBFb8l-wuTxVqN8SYGw7ALwqeWV-Etk,1055
194
+ paddlex/configs/modules/object_detection/YOLOX-T.yaml,sha256=00OG763K5Ks7-sLCmMD7SABRyTTtXY0E0edqoIxK-9k,1055
195
+ paddlex/configs/modules/object_detection/YOLOX-X.yaml,sha256=A5Z60MCCiMT1rcN-n71_2avtoAL_uWERhsflTCzuN14,1055
196
+ paddlex/configs/modules/object_detection/YOLOv3-DarkNet53.yaml,sha256=HPzKlh8fWGOnrLYJfPvr2F9t14aBzB3hWOMOOd52mGU,1083
197
+ paddlex/configs/modules/object_detection/YOLOv3-MobileNetV3.yaml,sha256=qYxDNhDRGdEv8P8hZlzDt4pZBNxJsxIcI9SIDQy9d8s,1089
198
+ paddlex/configs/modules/object_detection/YOLOv3-ResNet50_vd_DCN.yaml,sha256=a2FLIUa8f-KnBQUgmqskdpCeglWpiwssZYRu69NMhto,1102
199
+ paddlex/configs/modules/open_vocabulary_detection/GroundingDINO-T.yaml,sha256=5VjSycCV_FzDd809eqe5jM_IQhhoN_nwGmDgPvEbwKI,369
200
+ paddlex/configs/modules/open_vocabulary_detection/YOLO-Worldv2-L.yaml,sha256=NFDuNMyG5IrqJWrG5TaWQAiIXoZUy8Xidn5wZqNLl7g,396
201
+ paddlex/configs/modules/open_vocabulary_segmentation/SAM-H_box.yaml,sha256=8q2HRACvdn9KdGvsX7mIR8TEHdba3npJbQSiYjd9FSw,584
202
+ paddlex/configs/modules/open_vocabulary_segmentation/SAM-H_point.yaml,sha256=yeBo8BG5IRh8i37Nj6to5OVPFngqN1TiMWl1jWMsmQ8,359
203
+ paddlex/configs/modules/pedestrian_attribute_recognition/PP-LCNet_x1_0_pedestrian_attribute.yaml,sha256=orxgl2IEhcH6XqXr4OSsBBcfCaihpepOInPRwiuXUYU,1144
204
+ paddlex/configs/modules/rotated_object_detection/PP-YOLOE-R-L.yaml,sha256=1rMlWLp_jcfd2tnVRE4k_1MRscYX2W2T4ZuROdW8KaA,988
205
+ paddlex/configs/modules/seal_text_detection/PP-OCRv4_mobile_seal_det.yaml,sha256=xY-xeORmBhtARfPzbxB14pHcQW9Q5UAfzu1Q1-C47IM,1119
206
+ paddlex/configs/modules/seal_text_detection/PP-OCRv4_server_seal_det.yaml,sha256=VK_PB8x22-8jkLT659GZuYxP_MSk8W3934d1vUIpWwQ,1119
207
+ paddlex/configs/modules/semantic_segmentation/Deeplabv3-R101.yaml,sha256=IDRcI6NwJLe1CA1zkMrhyZv6H6ijvnMOnIGL1lxP4Tw,1129
208
+ paddlex/configs/modules/semantic_segmentation/Deeplabv3-R50.yaml,sha256=1AM1SGak4YQo_tTszmiJsPM123ij1sDGKEEbN07npMs,1125
209
+ paddlex/configs/modules/semantic_segmentation/Deeplabv3_Plus-R101.yaml,sha256=FNCSWZSqP7jGkXAgSXT0d8SzsJNrr4hQE5m0yX3aqoU,1143
210
+ paddlex/configs/modules/semantic_segmentation/Deeplabv3_Plus-R50.yaml,sha256=taMzlAQk9qjpdiX-4q7Cqnxjm7i7_HUDpzjj56UnNTE,1139
211
+ paddlex/configs/modules/semantic_segmentation/MaskFormer_small.yaml,sha256=bNHlDsfy2TuOSGX9uxLWauJTl8bGldUW2zpCF75OO0k,1192
212
+ paddlex/configs/modules/semantic_segmentation/MaskFormer_tiny.yaml,sha256=Jo2S0FheKHxFhJk53d8RnK_HCDnGK1SO_KMeriCS9N8,1189
213
+ paddlex/configs/modules/semantic_segmentation/OCRNet_HRNet-W18.yaml,sha256=fFtIkYTYWiwJy41nAmjEiX4lUIxKRJ0U0xWsgCtvvzo,1132
214
+ paddlex/configs/modules/semantic_segmentation/OCRNet_HRNet-W48.yaml,sha256=h9L_pB71Tm-hYw5vTAjGTzO61H_FtZ4WDyXjOnnNGbI,1132
215
+ paddlex/configs/modules/semantic_segmentation/PP-LiteSeg-B.yaml,sha256=VRKtQDylPfxfkgPVkYoZDS-SGQv9R3WRNvfp08eRSak,1117
216
+ paddlex/configs/modules/semantic_segmentation/PP-LiteSeg-T.yaml,sha256=P6dewzO-ECkHWpYTY1AtnFLbRCvsaEU-8UHXYT_fStE,1116
217
+ paddlex/configs/modules/semantic_segmentation/SeaFormer_base.yaml,sha256=dV0INmbLQbtWf0nq4KM2fGYJWZla-S-sdbG7N_EQwbA,1098
218
+ paddlex/configs/modules/semantic_segmentation/SeaFormer_large.yaml,sha256=Ho_4skOR9uTOyeT7gi5hEBUdid-OIYM1inEIaDQiFTA,1101
219
+ paddlex/configs/modules/semantic_segmentation/SeaFormer_small.yaml,sha256=8vtllLGsmcOMZXCQl0dIrgtr74_hSxseW4uycjgB-X0,1102
220
+ paddlex/configs/modules/semantic_segmentation/SeaFormer_tiny.yaml,sha256=ctj-Jj3T6aSq4nesFTbFNq55tsrhF6paqGJPtPwIH58,1098
221
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B0.yaml,sha256=gCs1Q9NezMzwMP7yacVFAmNlmegG_Bc0h0SZsucP3wc,1134
222
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B1.yaml,sha256=45bk3bXFQZk9x3ksnlgmbp4kYGGz6Ph3aklJTksqEu8,1134
223
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B2.yaml,sha256=sX_VdBqQ_XYmojnkOlFNVxggmxa98ld_lvv-l0Zh-ZQ,1134
224
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B3.yaml,sha256=mWpR4gC9VQ7RK6QBGVip6WHAKGxLSJ0pg7-oD6214DI,1134
225
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B4.yaml,sha256=j5fti-87wu2BU65h4qF4zlIJAUwPwkFgenQgAwuiLGY,1134
226
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B5.yaml,sha256=GHzp8thVTYBU9UNyKGjj28l_lVp2a9Dxj2SdByaEu6o,1134
227
+ paddlex/configs/modules/small_object_detection/PP-YOLOE_plus_SOD-L.yaml,sha256=HzHRP7vqofcjoOXIamRmr3iCGbJPkaFCapinjiaeRdg,1089
228
+ paddlex/configs/modules/small_object_detection/PP-YOLOE_plus_SOD-S.yaml,sha256=WDubgBZ6a7QGSfoVRfAocKVVVkXRQacfu2Sn5ZzBrLE,1089
229
+ paddlex/configs/modules/small_object_detection/PP-YOLOE_plus_SOD-largesize-L.yaml,sha256=r4Zz4XGCHqIU16nFsCqW_uH3rNrhlNV0dVo6BqHhTLY,1121
230
+ paddlex/configs/modules/table_cells_detection/RT-DETR-L_wired_table_cell_det.yaml,sha256=PiBBlZW0JCy0pSTXQ6yGdERSb13fuL0xFCnevTPSt4I,1131
231
+ paddlex/configs/modules/table_cells_detection/RT-DETR-L_wireless_table_cell_det.yaml,sha256=Pnl9HgkM3v1xLkRYlTs36x_h_BWwbG7JfJ0BnHuf-RU,1140
232
+ paddlex/configs/modules/table_classification/PP-LCNet_x1_0_table_cls.yaml,sha256=Ubzhvoo8e4GYwktivx-EW0Mx2121ppeWB9LlloG4uF8,1123
233
+ paddlex/configs/modules/table_structure_recognition/SLANeXt_wired.yaml,sha256=AUQ73-PfJKsMP4YHkGX_IoBYwgT6XOAvntJQwqR9TcE,1073
234
+ paddlex/configs/modules/table_structure_recognition/SLANeXt_wireless.yaml,sha256=5qrgGCXO6RZm1HbH1OK_eF0qSmuf_SnIFoa69EGxbpM,1082
235
+ paddlex/configs/modules/table_structure_recognition/SLANet.yaml,sha256=RzPFajc6NezpzkJ3LISa2NPklQVEmXyb-nmTscBUopA,1048
236
+ paddlex/configs/modules/table_structure_recognition/SLANet_plus.yaml,sha256=Xj_lnuGqN-rhlWheybgcxQkBduv9n37j88RNhUXCP00,1063
237
+ paddlex/configs/modules/text_detection/PP-OCRv3_mobile_det.yaml,sha256=plyVDZGbmo6AXwYQbfYYC3fGPt0AU3cQD0nvJsdtT5w,1100
238
+ paddlex/configs/modules/text_detection/PP-OCRv3_server_det.yaml,sha256=1YsZDgK0GC7_VmmHZZqplrIZAjDw7FmsCjX1h24RrJw,1100
239
+ paddlex/configs/modules/text_detection/PP-OCRv4_mobile_det.yaml,sha256=C6uDlATN38eBiBnIkodoXSDZ92BUm-M5NMQ8kTAETWE,1100
240
+ paddlex/configs/modules/text_detection/PP-OCRv4_server_det.yaml,sha256=omCQ-fOjyB-PX9Y-n5qITE2PwcYPol47g4YztR99lMo,1100
241
+ paddlex/configs/modules/text_detection/PP-OCRv5_mobile_det.yaml,sha256=wKV5UJ2TAtRnCVtgyqsLwRVbfcuQTCQYGuLwEudXBw0,1100
242
+ paddlex/configs/modules/text_detection/PP-OCRv5_server_det.yaml,sha256=_cS2Eaqb1IJdN0jXPqtc8wsC-gHY0BdS3oOzZfVINCI,1100
243
+ paddlex/configs/modules/text_recognition/PP-OCRv3_mobile_rec.yaml,sha256=V0DMsvY6XqQr7rzGJWm8qhvFulgm-jVCHg6l57NKyFI,1086
244
+ paddlex/configs/modules/text_recognition/PP-OCRv4_mobile_rec.yaml,sha256=fbFTMnncTxJ63GdGhCH__lEwKXOUXO7gITrUyjkr6wY,1086
245
+ paddlex/configs/modules/text_recognition/PP-OCRv4_server_rec.yaml,sha256=47DQ0sdCYGKY35NeuhpAVovbxGyc4NpDqDA_g_1koU4,1086
246
+ paddlex/configs/modules/text_recognition/PP-OCRv4_server_rec_doc.yaml,sha256=4LfFXhUxxtBxpW99Way_gUtnrd-vP1BDUD72T2D3uVI,1098
247
+ paddlex/configs/modules/text_recognition/PP-OCRv5_mobile_rec.yaml,sha256=27NRkNT686MnZhBVjhWj9R-idoLgy7m2RiuJKl0fqpU,1086
248
+ paddlex/configs/modules/text_recognition/PP-OCRv5_server_rec.yaml,sha256=hcTU0yq5WojJaRYrdkgrPPS-H1Mvy5-5GSoGvZYw39g,1086
249
+ paddlex/configs/modules/text_recognition/arabic_PP-OCRv3_mobile_rec.yaml,sha256=v6VDFbeexafeR4c74wTjXkcwEx3y1Z55kt0ZF7UAuHE,1114
250
+ paddlex/configs/modules/text_recognition/ch_RepSVTR_rec.yaml,sha256=OMj-mzZ_aqYp1NZUtD_j56wzoqai2onraMmVMyFIDJU,1071
251
+ paddlex/configs/modules/text_recognition/ch_SVTRv2_rec.yaml,sha256=6DHZpUEDIZJdvp8y27_Bdvu7zUpbpA2_2KpvbyvhgYI,1068
252
+ paddlex/configs/modules/text_recognition/chinese_cht_PP-OCRv3_mobile_rec.yaml,sha256=8Ov83Aw45gXN4Fv55PlikbhuFPElqlZf1xbkqDZW5sc,1134
253
+ paddlex/configs/modules/text_recognition/cyrillic_PP-OCRv3_mobile_rec.yaml,sha256=P1XA4qXwzw2HqRMZV2fV8cslkCFvuS4Jxl5QTSj-XP0,1122
254
+ paddlex/configs/modules/text_recognition/devanagari_PP-OCRv3_mobile_rec.yaml,sha256=VqvQuijRHV7_KwzIMDndau0zSjABLL13gYrkXjXt6B0,1130
255
+ paddlex/configs/modules/text_recognition/en_PP-OCRv3_mobile_rec.yaml,sha256=GKnLFZymAJvJjqkxDgRQxx5GkXicg6AYKTGbXpyZfec,1098
256
+ paddlex/configs/modules/text_recognition/en_PP-OCRv4_mobile_rec.yaml,sha256=j6vryUgV3n7yVtRoFeLk_iOdBSfRNMa1renR3jMADPw,1098
257
+ paddlex/configs/modules/text_recognition/japan_PP-OCRv3_mobile_rec.yaml,sha256=AfnM7QJq0bwJigFqvG7jQBeeNPYvtQ8aGWL59D4IZgE,1110
258
+ paddlex/configs/modules/text_recognition/ka_PP-OCRv3_mobile_rec.yaml,sha256=edFWnY1Ie_SR8uA1igDm5hdzlC8pdI_GYBg-H4a3IZ8,1098
259
+ paddlex/configs/modules/text_recognition/korean_PP-OCRv3_mobile_rec.yaml,sha256=Hfh9U3cnCNgNLfvo5CEe2aZ88iRJkzE4DvBMFCU2XlQ,1114
260
+ paddlex/configs/modules/text_recognition/latin_PP-OCRv3_mobile_rec.yaml,sha256=0w226g-Wyk1-L47-fqAeyZ0eQBhTq-oxxzSTpQUJzSg,1110
261
+ paddlex/configs/modules/text_recognition/ta_PP-OCRv3_mobile_rec.yaml,sha256=iuwr3F6JZjOHStrdmKpPHYgEjw2C-WNn0kHUwCaummc,1098
262
+ paddlex/configs/modules/text_recognition/te_PP-OCRv3_mobile_rec.yaml,sha256=RZgNy4rbU2MR_SDZan3jPwYlu453A2l7tgydPk7BbsA,1098
263
+ paddlex/configs/modules/textline_orientation/PP-LCNet_x0_25_textline_ori.yaml,sha256=PktRWgZv5HeJQ2Hkf6L7oSazs5JrGOQ3zWW2hjfR3vE,1142
264
+ paddlex/configs/modules/textline_orientation/PP-LCNet_x1_0_textline_ori.yaml,sha256=o78CcLlmZlYtHat5rJtwM-DV46yetBa9-6U4DMg4aEs,1139
265
+ paddlex/configs/modules/ts_anomaly_detection/AutoEncoder_ad.yaml,sha256=vF_iaZhMAG5qzF-MA9wqPodxI_5ywVCEkSt6Z6S76co,863
266
+ paddlex/configs/modules/ts_anomaly_detection/DLinear_ad.yaml,sha256=KfD0YhhNFhz0gdKN_JGhEQ85JcpzSr-G4DJQMPVF57M,855
267
+ paddlex/configs/modules/ts_anomaly_detection/Nonstationary_ad.yaml,sha256=uM-CmsGLkigSHKRYZBiOsXnFmJMJa4M8iItwHs_zo6o,867
268
+ paddlex/configs/modules/ts_anomaly_detection/PatchTST_ad.yaml,sha256=OZbuSavr_mitk8ybXUNvQMK9SNdvv4s_XH_GipEy4gg,857
269
+ paddlex/configs/modules/ts_anomaly_detection/TimesNet_ad.yaml,sha256=GLwXVVtSuMIKxVlmNVWCkjUQ-TmU15QvUg4w8qGv6E8,857
270
+ paddlex/configs/modules/ts_classification/TimesNet_cls.yaml,sha256=qzdfp4W7voFXvLdsk2r8rs_ws343xgumEL20xVAuos4,864
271
+ paddlex/configs/modules/ts_forecast/DLinear.yaml,sha256=4rJP0G6DHO2leNEdm_DS4TXxqCZ1aRklnwa_aBD5LI0,840
272
+ paddlex/configs/modules/ts_forecast/NLinear.yaml,sha256=dzwKTFy1AU7LxWFI4s-rNz47RIQfuwj8s_C4qXRYwMY,840
273
+ paddlex/configs/modules/ts_forecast/Nonstationary.yaml,sha256=SHMFu6wLSLc4t0oJLfFBIY5l-HfV557YcDIFUIKtxwo,852
274
+ paddlex/configs/modules/ts_forecast/PatchTST.yaml,sha256=i6sz3X_KoT4w-41q1hsLNg9kzCMQvWhmYdHCUDjTgCc,842
275
+ paddlex/configs/modules/ts_forecast/RLinear.yaml,sha256=TWfNWCXUOjD2PprFLAGsiyDtLd7_o7gvvSGXKuNsgfc,840
276
+ paddlex/configs/modules/ts_forecast/TiDE.yaml,sha256=7pPQaImeATDibYgZwd2E1zG2Q9rCOfVlx7X5GdB9lrc,834
277
+ paddlex/configs/modules/ts_forecast/TimesNet.yaml,sha256=kMbn31jCqKqQGHJLvHVlaO8RFmkMCkKvFPFUHF9aY4g,842
278
+ paddlex/configs/modules/vehicle_attribute_recognition/PP-LCNet_x1_0_vehicle_attribute.yaml,sha256=xeiCFhCZVB9xSkz6vPkANRqTn1rvOTuIDW-jDELxKcY,1129
279
+ paddlex/configs/modules/vehicle_detection/PP-YOLOE-L_vehicle.yaml,sha256=ZkoARRc4IIx7ub9o7VZZHlAT2wU0aMMTERq3-Xp13sE,1083
280
+ paddlex/configs/modules/vehicle_detection/PP-YOLOE-S_vehicle.yaml,sha256=tozzrMIK2Em33r9_vIjIPYEiF1I3ifbpgH_5YrCjvKI,1084
281
+ paddlex/configs/modules/video_classification/PP-TSM-R50_8frames_uniform.yaml,sha256=znv8lxRoXQpuwHdJNxW3oXQyQxUn3DKhVv4M1Tt3DyA,1131
282
+ paddlex/configs/modules/video_classification/PP-TSMv2-LCNetV2_16frames_uniform.yaml,sha256=sqT5aS0vQmbbm5nUWPOocm_0b4hidcZKpt2Bi_TBE_U,1152
283
+ paddlex/configs/modules/video_classification/PP-TSMv2-LCNetV2_8frames_uniform.yaml,sha256=chzzPSQSxnP72529E7pqvL3aSoX-WpbcnWynmmPimXQ,1149
284
+ paddlex/configs/modules/video_detection/YOWO.yaml,sha256=jNcjPxqfPH3rgkJ9eizaQpkS5ZlMehs3oVaBpkcrRfw,1034
285
+ paddlex/configs/pipelines/3d_bev_detection.yaml,sha256=T-BPJTF_myAhzQLxcfhDFSpnGAlAPxJKJgtbFfPiybk,162
286
+ paddlex/configs/pipelines/OCR.yaml,sha256=BJW935GPmkV0U0XVvYWKexAqME9aCKsJH5ktjiRU398,1038
287
+ paddlex/configs/pipelines/PP-ChatOCRv3-doc.yaml,sha256=HnDZbUDfLMaSyYiBaA7Psy8_xv2uFtOnNuXzhcv0Dzs,5262
288
+ paddlex/configs/pipelines/PP-ChatOCRv4-doc.yaml,sha256=6kuRT4L6CSSOnucjbR4aOKNHDMAwrqNtADfkA0QkODk,10842
289
+ paddlex/configs/pipelines/PP-ShiTuV2.yaml,sha256=01z8buwMDHix9gfiGFFPnjd3Ko_IzfDJ2zz3bi7Gn2E,338
290
+ paddlex/configs/pipelines/PP-StructureV3.yaml,sha256=NfX8Rh5BNSxKqNGrtWr46MDGIbbKU0LgIqbbPIhaLtk,6188
291
+ paddlex/configs/pipelines/anomaly_detection.yaml,sha256=JBDy9Al4Jtpx-FcOk2jzrjuu3XE0_r-fqF1I6pJq28U,164
292
+ paddlex/configs/pipelines/doc_preprocessor.yaml,sha256=QLPZj5nBu9F4GZf-kKyeTduZJpmD68cg2shoxly8pV0,319
293
+ paddlex/configs/pipelines/doc_understanding.yaml,sha256=qVt_OTEp6iMhzgO0V6lAaROPw-sqWL2VAGfqITA0jTc,160
294
+ paddlex/configs/pipelines/face_recognition.yaml,sha256=KIzhHfqwEooqCxw0Ysgfd06Oo9q33W42WmhtjaGAe4M,342
295
+ paddlex/configs/pipelines/formula_recognition.yaml,sha256=EMTY7IZfRrC_-UPfp7XPMweDG_UJ7Yw0azT96ag-NZU,915
296
+ paddlex/configs/pipelines/human_keypoint_detection.yaml,sha256=hbqfnaMpYMf9lVXXQX5fdB-S4dggIik7nm_wRk-olrA,380
297
+ paddlex/configs/pipelines/image_classification.yaml,sha256=zTHeExJsAIpg0vHFz0xdzVSt7VsBjtju5cuu_8ESPog,192
298
+ paddlex/configs/pipelines/image_multilabel_classification.yaml,sha256=ZXoTDOpyGqGbmNr3dXsQw7eMQ2yxbQMMYt-rqvLVJW4,218
299
+ paddlex/configs/pipelines/instance_segmentation.yaml,sha256=cEhSDa5KVlO6EE-gF-CyhaYD3p1o2ChaGB9OnVHqFHU,202
300
+ paddlex/configs/pipelines/layout_parsing.yaml,sha256=4GOuGPD54aojGGHzOTpPOw3XRoO6MkVfubbEzegXxtQ,2678
301
+ paddlex/configs/pipelines/multilingual_speech_recognition.yaml,sha256=3GMqISimyTOBxCtxelcCFL1bSvV1ZX4dcNnMHB26B9Y,214
302
+ paddlex/configs/pipelines/object_detection.yaml,sha256=P9q0qg1znAM0DzpI5S6b3Z_dX8j5UJzXOH_fJk_KVQA,201
303
+ paddlex/configs/pipelines/open_vocabulary_detection.yaml,sha256=WmgaCiMu8-lR5Bu3-mbFeuhwSgl4e3tBwvqYttqGmhg,263
304
+ paddlex/configs/pipelines/open_vocabulary_segmentation.yaml,sha256=6EjUPBmBnXVZxDE8YVDd1m3Eum1_xZnjB3ohxZVPo8A,323
305
+ paddlex/configs/pipelines/pedestrian_attribute_recognition.yaml,sha256=5HBesXcSamvlJ3-HSQ4V_Mo5htsFJoqHFWm-fzAQ2LU,368
306
+ paddlex/configs/pipelines/rotated_object_detection.yaml,sha256=Q9fubmAWilKWpTZxurILM1SZC4ZzeH2WoIeJeL2t-G8,208
307
+ paddlex/configs/pipelines/seal_recognition.yaml,sha256=JaaP7NaxidAcQMz00hsBWrdUMqqMj_ggMBpRlgsquzU,1299
308
+ paddlex/configs/pipelines/semantic_segmentation.yaml,sha256=dTR-utVCQJ-YX52eAEQbn0wutCQkME0oLZ2wBKdTcWo,203
309
+ paddlex/configs/pipelines/small_object_detection.yaml,sha256=t_dF50ZzFcfPEFvtrFXU2f_sameKotvUs104mxoiSh8,209
310
+ paddlex/configs/pipelines/table_recognition.yaml,sha256=BlrntfQBBHTkKK_2KExyKsCj2Hrzj4gyv7jOUPUN6-o,1349
311
+ paddlex/configs/pipelines/table_recognition_v2.yaml,sha256=eudhiAef7Q5MrcPqVXDKhbUGtxRLLPDDrbrYTrjQ9KA,2028
312
+ paddlex/configs/pipelines/ts_anomaly_detection.yaml,sha256=3dvsXd8og6aomhgZU1f3pGcbWB1uVDIWQJ7B-qjCac8,177
313
+ paddlex/configs/pipelines/ts_classification.yaml,sha256=V_WuRgvgzs5dEmDa73geOZZPA89ru-SOATzLPACRfOE,171
314
+ paddlex/configs/pipelines/ts_forecast.yaml,sha256=LM1zY2RC9jtdP295fjdl1MaB2XyJqt__Gy5SKw279sg,148
315
+ paddlex/configs/pipelines/vehicle_attribute_recognition.yaml,sha256=lrHxLkdbYe7of1Ef3DIcH73yMrOTp2pP2pGfSrhNgeQ,367
316
+ paddlex/configs/pipelines/video_classification.yaml,sha256=OQEmOPi0CyEHmubj6UiOPWoBlSd9aRKMfmlypiGEFdc,213
317
+ paddlex/configs/pipelines/video_detection.yaml,sha256=YnBJ507XcKQtEzVDuy_QhCjt4iytQB8O0gh_NJ6NxE8,200
318
+ paddlex/inference/__init__.py,sha256=UfPHnv9zOQROhT7HFy_QLSmV3I7kLha4EhB7RntI-QA,820
319
+ paddlex/inference/common/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
320
+ paddlex/inference/common/batch_sampler/__init__.py,sha256=LdTd0bNRnmj-gkJTjRvVw_pFaK2S7pzMNFo5BZiTM2g,963
321
+ paddlex/inference/common/batch_sampler/audio_batch_sampler.py,sha256=5Z6mQ-ikBSwZVJzW5uA7kZVsO9gDLya8rog5vdZskdw,2611
322
+ paddlex/inference/common/batch_sampler/base_batch_sampler.py,sha256=F_nT55mXlI5NcSwyOZ_Ze_6S-BfDoY6uDwdPBPSTx1M,2744
323
+ paddlex/inference/common/batch_sampler/det_3d_batch_sampler.py,sha256=gUnTqNpRHYqqVCjmEbB4BHSU_f3rBwxF_jSxCtjXn-4,5353
324
+ paddlex/inference/common/batch_sampler/doc_vlm_batch_sampler.py,sha256=y8wnsIPln42q08Lu_daZuXIbk_qh3Bdg0qaaZLELdqM,2928
325
+ paddlex/inference/common/batch_sampler/image_batch_sampler.py,sha256=7n1aqIYBLUPxb5YlvYIC2FFn5J7-L4YcHKpBtal8hvg,4350
326
+ paddlex/inference/common/batch_sampler/ts_batch_sampler.py,sha256=beYmo3uN0iI2v4yyFx0KYyXiMgcVNXxVc2MoweSg5mw,3863
327
+ paddlex/inference/common/batch_sampler/video_batch_sampler.py,sha256=CBApNWjdyLqGr-0UG2GW3GHW5IPZKZTiqUh4H6jTgRY,2740
328
+ paddlex/inference/common/reader/__init__.py,sha256=8k1-TUD_1LT47RRykhMQg_AszWjjOrtA4ozTpFIaJhI,792
329
+ paddlex/inference/common/reader/audio_reader.py,sha256=UP2KXygL6E0ISgBiWwHSCSeFNwZiRbVaYUdVpPy-5sM,1542
330
+ paddlex/inference/common/reader/det_3d_reader.py,sha256=v2DhYB-W_yfjo90j1lXNcCJRPOYttVEVj5nCRBZcjMU,8734
331
+ paddlex/inference/common/reader/image_reader.py,sha256=EuuN-RAxRBnc7tmFKY4SjISDJjKe0BnvGIzTJung5uU,2576
332
+ paddlex/inference/common/reader/ts_reader.py,sha256=NgPqaSgWx81zeS8JF-yDRg-yF_KcgZO8FZj4yFI6sjc,1589
333
+ paddlex/inference/common/reader/video_reader.py,sha256=ClKpdf_-mPZVezZMKVzF7Uoua9VMaNZBJ0tu9GNOoGY,1433
334
+ paddlex/inference/common/result/__init__.py,sha256=Kaosq38ysFyenrDmiPlDoFlxYXJVGgca4UaORt9_WYc,937
335
+ paddlex/inference/common/result/base_cv_result.py,sha256=pK0wJcBGmjARC-FpimcxoRSi3wSCetdB12mtTw9EmCE,1321
336
+ paddlex/inference/common/result/base_result.py,sha256=MQajOAGk_HF_UNExMxzRkaXbEUy49bftYIL-zWQvkl0,2432
337
+ paddlex/inference/common/result/base_ts_result.py,sha256=pb7ld9OCb61LQYy02wvYppZgFMzspasy3DGaUBQmmIg,1411
338
+ paddlex/inference/common/result/base_video_result.py,sha256=yT36itBPBc-6KRAwImZjR4TmY0_T0Cic25uZW-1oVWY,1177
339
+ paddlex/inference/common/result/mixin.py,sha256=dgUGVano672o3kkt8EuJGmyOEoA8mLC5WHD3OFvXN-I,26615
340
+ paddlex/inference/models/__init__.py,sha256=FszFkx_E5qXfdOAE3VRq05nbieWSmlBEHXzdUo2jmU8,3271
341
+ paddlex/inference/models/anomaly_detection/__init__.py,sha256=5sWWsKp9B07ntVA3l_1iMdypwwSlWcvko6W89lLEdXU,646
342
+ paddlex/inference/models/anomaly_detection/predictor.py,sha256=rKfu3H_Kpq1K7oy5-bzO3Ic4DAmzjALs2vPl-m3z4gQ,4823
343
+ paddlex/inference/models/anomaly_detection/processors.py,sha256=OhPoGXkF5Wr1AFSeuRlWHfzPEIqGJc0Qtt3S72ewgjI,1492
344
+ paddlex/inference/models/anomaly_detection/result.py,sha256=vEqBIw9cOgBZzBuoniao4AztdSkiAuqMJEGHQevMz4M,2368
345
+ paddlex/inference/models/base/__init__.py,sha256=XmfOH2Zt6T28bilPm9aHPy88zlthnpz8zufxQuHU2nI,647
346
+ paddlex/inference/models/base/predictor/__init__.py,sha256=euD01o3s0Zg9VlzA5spCak2TElkU4RFiSUxCEiatH8Y,652
347
+ paddlex/inference/models/base/predictor/base_predictor.py,sha256=GZXWaOjLk0AAp7PKdbeTbNBGi0oTjqES2lkVLvJEeqg,14728
348
+ paddlex/inference/models/common/__init__.py,sha256=3lMwinLaX3HHXCFUcppc8uV_5P-XGv0Nf5aWvZYcbqw,926
349
+ paddlex/inference/models/common/static_infer.py,sha256=6sm5w_mDkdSo2UfWoNTBfSrx4UsCAprxHarrXrqXB2E,33719
350
+ paddlex/inference/models/common/tokenizer/__init__.py,sha256=WyNKDrT6xhWwHmgVVaWYig_TV2xOQIVUHdsmkKjLjs4,940
351
+ paddlex/inference/models/common/tokenizer/bert_tokenizer.py,sha256=xPEENMCnZq-0ofMA5Ylxu9qcFybIc6fEOXqEue3ogDU,25274
352
+ paddlex/inference/models/common/tokenizer/clip_tokenizer.py,sha256=g9YU0PmxppCoIi9mub_3AQDBt8kzrBblKrDig5UDTZE,22426
353
+ paddlex/inference/models/common/tokenizer/gpt_tokenizer.py,sha256=Pd6Lsvz3chjSLua_8Hi8WTnO1huiFA-07TRTaO5mIFo,15661
354
+ paddlex/inference/models/common/tokenizer/qwen2_5_tokenizer.py,sha256=NFMt24ioXP8h0WpFqyVkNbvbK3oUywbNf7a192mpDyk,4486
355
+ paddlex/inference/models/common/tokenizer/qwen2_tokenizer.py,sha256=zVVYO9VNgK0Qyvi1_3RmlZuQzdsd-8gUYjW8o6mIoJA,16942
356
+ paddlex/inference/models/common/tokenizer/qwen_tokenizer.py,sha256=YM7rRmLq-xjb0tRo3PxV0lEx5bQMgMLI8_9MAB6mi0I,9886
357
+ paddlex/inference/models/common/tokenizer/tokenizer_utils.py,sha256=DqlzW9mLjpDvF3Vd6pobcbbwSl3AEC1YjM5nQXJXSWk,85580
358
+ paddlex/inference/models/common/tokenizer/tokenizer_utils_base.py,sha256=dUkbI6MK2qVdbELUM4Vb5i7lI5rOKAV1QnHjSUGE4lc,163634
359
+ paddlex/inference/models/common/tokenizer/utils.py,sha256=xZgYmYWB0Ecl6Ej0AgrnfgETD0jW-xjZfjq91lPs5js,2425
360
+ paddlex/inference/models/common/tokenizer/vocab.py,sha256=rtrhKqxXHQSnmJC_SeiLf1v2Vhg4YvufM_jPf9VAc0c,25129
361
+ paddlex/inference/models/common/ts/__init__.py,sha256=A6i6FhzY9lRnoJH_JPH5nNHmaVI5qOZaQhbxueVkZKc,636
362
+ paddlex/inference/models/common/ts/funcs.py,sha256=Xl0VijMMO9RY4S4W4Xrs4lCmwiPZb2lpA8xyenvKlao,18144
363
+ paddlex/inference/models/common/ts/processors.py,sha256=lcouD6Zbhf28jJ6eySfJGmYt_Sn_He-uTEc4lI8f8Z0,11004
364
+ paddlex/inference/models/common/vision/__init__.py,sha256=TyB2P9CvNYlv91NoV7WikGsZHnn7PQcYyMnRIMS1ULA,756
365
+ paddlex/inference/models/common/vision/funcs.py,sha256=-j0MO7xtXPAW2icTLqxMq7CJ0alvxwaYR3bIBdYjf7Y,2777
366
+ paddlex/inference/models/common/vision/processors.py,sha256=iT-oVtN9jz24MySo9jYlhqe3L18HRbMmHfgpJvdxaFE,9388
367
+ paddlex/inference/models/common/vlm/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
368
+ paddlex/inference/models/common/vlm/activations.py,sha256=wob-fu7nHFas_9TILbFHJZampnVy_smQZJhN_RZSf0A,6345
369
+ paddlex/inference/models/common/vlm/bert_padding.py,sha256=aCM0GUyNblcBmU54VG8hHOcWzeuBypHLBlDHJlXGUy8,4827
370
+ paddlex/inference/models/common/vlm/conversion_utils.py,sha256=CQ9yL7zrElzPbvUbOR-80uYuJKWVqoBrqnV89KP0ye4,3727
371
+ paddlex/inference/models/common/vlm/distributed.py,sha256=qZ5Lxa2ybZKL33G47PBbPvhNesP8PHBENkrOtB1tH-0,8013
372
+ paddlex/inference/models/common/vlm/flash_attn_utils.py,sha256=FaaYGoLjebMVy1nXyd0djYuOUnmmh41pB82Pdo7RluU,4073
373
+ paddlex/inference/models/common/vlm/fusion_ops.py,sha256=Qkd5M0FY66nk9HOMjwtjLHR4Q7Z3FqzWPFaGW_Grr8I,7043
374
+ paddlex/inference/models/common/vlm/utils.py,sha256=34z4X-T60Ic8ExqeBdP_q0jHHOqK1TI6QXgxR-cZ424,3777
375
+ paddlex/inference/models/common/vlm/generation/__init__.py,sha256=ZutyBjZTAWL6cn2g6SgCDDIdtZ7kjaVL-Ml44G_l7_I,1141
376
+ paddlex/inference/models/common/vlm/generation/configuration_utils.py,sha256=kp64AD52WxH8vO20R_yWtoYCLSq4LALQ4heWiNviJjY,24893
377
+ paddlex/inference/models/common/vlm/generation/logits_process.py,sha256=SUZHsN_0Rzkv5-vPlSAzbFPDcxKUCKvTSq7L74Uyfpk,29575
378
+ paddlex/inference/models/common/vlm/generation/stopping_criteria.py,sha256=vWHy-HoYjFHFyaT-WmjT7pVzcOoyew3nAJ6hnJrAwTk,3720
379
+ paddlex/inference/models/common/vlm/generation/utils.py,sha256=qzD_cwN-xN3YbFqv-XuMcCr6sXDNy4EhaBIJs8gb1o8,85130
380
+ paddlex/inference/models/common/vlm/transformers/__init__.py,sha256=PL-6UTfCxiiBCzeIMV3N9pESIgMICrmUDNab4LJ9Qx8,701
381
+ paddlex/inference/models/common/vlm/transformers/configuration_utils.py,sha256=w8X_6IrDb_aJ-AKoInKOnOm3_HZauI_yd6pevRq4rIY,45699
382
+ paddlex/inference/models/common/vlm/transformers/conversion_utils.py,sha256=T3Kvqo9pUqIipAKQaCLYovz5dXiNcgomNP2Zm-fZQiw,14425
383
+ paddlex/inference/models/common/vlm/transformers/model_outputs.py,sha256=liCNRBio5VN_zcSwhvOdSTx-7WBsi5VRHycFMfsf-nY,84290
384
+ paddlex/inference/models/common/vlm/transformers/model_utils.py,sha256=zGvW-ZSXd51OOe6T-kCIM4Gp_2w8RzDhM78z9aU_JOE,85818
385
+ paddlex/inference/models/common/vlm/transformers/utils.py,sha256=EqBUBKoYWJ9R6e3qt-Vp9-BDEq5gkbN3Ymy5JAX-e0g,5886
386
+ paddlex/inference/models/doc_vlm/__init__.py,sha256=oXFqFKX0vWQRuri3wb72aNCZIEv0daDOTOK1Ysl1W8E,649
387
+ paddlex/inference/models/doc_vlm/predictor.py,sha256=zicjxZw4IT728uScQxsprPKAayu7H436Uh7eFS518nc,9350
388
+ paddlex/inference/models/doc_vlm/result.py,sha256=l1dTYhbuAHx6EsXvslLseWEj48NIBc7L3s4BxnonYS8,760
389
+ paddlex/inference/models/doc_vlm/modeling/GOT_ocr_2_0.py,sha256=RsTpMGl5YIfEegxhqJxkVWMbORz9jXkgeWpfrmheAq8,29970
390
+ paddlex/inference/models/doc_vlm/modeling/__init__.py,sha256=_-aNqY5UEdxyQ7cIGgpd23F2v55WPY0-6EqHRPHcgKw,774
391
+ paddlex/inference/models/doc_vlm/modeling/qwen2.py,sha256=4vEwlalDFm78fH27xjS0Ab1PpY3yO0UO6dYCJnFcCYU,62211
392
+ paddlex/inference/models/doc_vlm/modeling/qwen2_5_vl.py,sha256=QuaX0PLulhAyDmSfmbX8aigXS1NDsBvV3RFoySsQWPA,128026
393
+ paddlex/inference/models/doc_vlm/modeling/qwen2_vl.py,sha256=FR_oncXHo43JqWGLmRy5IvSAkDwwRk83fBwklLvdQhQ,101164
394
+ paddlex/inference/models/doc_vlm/processors/GOT_ocr_2_0.py,sha256=RU3abpLXXH6jcSnCidfXZoNEnAzwglKk4LANNPhIEN8,3389
395
+ paddlex/inference/models/doc_vlm/processors/__init__.py,sha256=P0j7WwNi3lNO24MUdEr9afplmQk1zcEJLd5XyFCikZo,809
396
+ paddlex/inference/models/doc_vlm/processors/common.py,sha256=H2A7SSGqow4nMeUy6NgUfRM4gJxYev5JN41_B5w7l8g,17839
397
+ paddlex/inference/models/doc_vlm/processors/qwen2_5_vl.py,sha256=hv2cwvzRdHPAgdf7ZfY8yuR8YV5XS8AOm1wnq3lFtis,25341
398
+ paddlex/inference/models/doc_vlm/processors/qwen2_vl.py,sha256=cPyj_32xytsTdvQi9epGPGKEXRQTk9g7nnLuEkHid_w,25742
399
+ paddlex/inference/models/face_feature/__init__.py,sha256=7bctvoJnxoOsp2FzTisub1M8M0WL97_y7524vHOg6FA,654
400
+ paddlex/inference/models/face_feature/predictor.py,sha256=mRd2VoWFAH7wVT3-z8JBsdA7GaHO1h0xvVpCLavgj5I,2828
401
+ paddlex/inference/models/formula_recognition/__init__.py,sha256=JxjoRLv_6dZtM--Acg4lTpG-XKBKSeQkApQlVNubB9Y,653
402
+ paddlex/inference/models/formula_recognition/predictor.py,sha256=RLi-9uThQ0jTSnJ2ZC-Ia4eqNWuXX__xrluufny3PPY,7353
403
+ paddlex/inference/models/formula_recognition/processors.py,sha256=6UzKReVez09LSL3QAZMJxq2TcImuRdI80L-KacNeYFY,37287
404
+ paddlex/inference/models/formula_recognition/result.py,sha256=lyPeOKOiNq_D04BG2ZwMiyJz2mtwocmTvXBEU7MPGac,14951
405
+ paddlex/inference/models/image_classification/__init__.py,sha256=-dzTrk-2RlpLeziUvQCt42WFaydfukBODqmik1t3DQc,647
406
+ paddlex/inference/models/image_classification/predictor.py,sha256=uZ9xuhg2ElGIdh8cG57K9VnXqX65Paa_7mUG3GfUfqo,6383
407
+ paddlex/inference/models/image_classification/processors.py,sha256=DBUjdK5RNkCZQ1DgrUT--GPUqUZU0vip2PbvRw67l68,2884
408
+ paddlex/inference/models/image_classification/result.py,sha256=6XSRPx3HVuuMwsUQRX0nKsojSs4nTXTdvusQVTUTgkY,3501
409
+ paddlex/inference/models/image_feature/__init__.py,sha256=yd0A7GuW_JCurnJIfqE6doBz437ApSiLEtwjXDDNzsk,655
410
+ paddlex/inference/models/image_feature/predictor.py,sha256=3eujK5vOH0tLorvb7M_YbL8iUDuq_k6huHIYmnDFwA0,5459
411
+ paddlex/inference/models/image_feature/processors.py,sha256=vDUTdQd7Pebh_B5BRtxTYg0XTU6CErx3kNpKWWKh5ZI,1034
412
+ paddlex/inference/models/image_feature/result.py,sha256=-LrF-NEwbthimk_5ORvU184uOM7BYV08-ZlFBL1IE_U,1111
413
+ paddlex/inference/models/image_multilabel_classification/__init__.py,sha256=uYUa5EDODdPwx25vP3CixQJK7FXTkRVJWWv6M2-w41U,649
414
+ paddlex/inference/models/image_multilabel_classification/predictor.py,sha256=HdSrEQUYUB87sR1g58bRq9WT_3LkjX3pAVlHdZe7nOc,3824
415
+ paddlex/inference/models/image_multilabel_classification/processors.py,sha256=LNUHtkdJt6qhDpg31QjHKWqyFpq7xtVLGQHUwJ0ejAw,3588
416
+ paddlex/inference/models/image_multilabel_classification/result.py,sha256=bxddGcj4i-wNS_OS-9lUQ6nL6EwZpxYeE7OniZO9CaU,3485
417
+ paddlex/inference/models/image_unwarping/__init__.py,sha256=JFYHFPiP98CiU5-16qXdMqqG5g28Duqc4wfREV02X0A,647
418
+ paddlex/inference/models/image_unwarping/predictor.py,sha256=Gf_aGGjKhG45LGecFIWZDN3ME8b6DLFMNEql8JoPPuo,3761
419
+ paddlex/inference/models/image_unwarping/processors.py,sha256=PLA0z73jV0IDnKp4e-58baHQyPKJrVri3Y4v6voG6q4,3313
420
+ paddlex/inference/models/image_unwarping/result.py,sha256=eYVv4OQsS0Vwo3JsUObliSTbXkzh0ywshfAJcaMebNc,1523
421
+ paddlex/inference/models/instance_segmentation/__init__.py,sha256=vX2etEORTiXdHpYONUpaAlu6-mgiCNnFmPVURycip64,654
422
+ paddlex/inference/models/instance_segmentation/predictor.py,sha256=NjgpgdHSahdifxq0SH3of4fQIxEavtByrw5gNv8sPU0,7999
423
+ paddlex/inference/models/instance_segmentation/processors.py,sha256=PgGuCQcBY_RS_G458qeBl4E9ThztuWnFXrG2OwagZZ4,3503
424
+ paddlex/inference/models/instance_segmentation/result.py,sha256=X6crfsSnItUkSDzdQnNQdQijE5rncR2OWmx2Sajfr-E,5544
425
+ paddlex/inference/models/keypoint_detection/__init__.py,sha256=Jc3KuTEwW3sR9wipO7_Q5EbWP7C9fLA54hXWDr2Gql4,646
426
+ paddlex/inference/models/keypoint_detection/predictor.py,sha256=NilvIo7o0rAJs2HaRsUw-fMbWD6m851Cslt-BRAG7d8,6239
427
+ paddlex/inference/models/keypoint_detection/processors.py,sha256=TCgl9fF1DfgwrRfSxpeD0KWacQsvTx8t7yJW-1odJTk,14057
428
+ paddlex/inference/models/keypoint_detection/result.py,sha256=QIL716d-phVajnbyOwo24mDYT2TgqqhZfb6kVBuF0jQ,5816
429
+ paddlex/inference/models/m_3d_bev_detection/__init__.py,sha256=6QNv9b86co6xByjrFVB4XW0Gaq_6_6a-G6cnEqyZubM,651
430
+ paddlex/inference/models/m_3d_bev_detection/predictor.py,sha256=6C1ZFs2LQ4kdXY5K5LFdCVAZ-jtfwLKKudZU3pvaUwA,10679
431
+ paddlex/inference/models/m_3d_bev_detection/processors.py,sha256=7-8gP0AxINOK5b3VM7WVXGZsUFYEbf8P5u5OyVKl7J8,36986
432
+ paddlex/inference/models/m_3d_bev_detection/result.py,sha256=SxQ3pRNgytUpBIwnb2b14H7mWwBjQH39tFa3f3KiQlE,2352
433
+ paddlex/inference/models/m_3d_bev_detection/visualizer_3d.py,sha256=eMInqwMsEbQLzENmQuMIdZWcyhzyB5W8jkxc_tmr4Ck,5931
434
+ paddlex/inference/models/multilingual_speech_recognition/__init__.py,sha256=iBNcCWOBCE0EdEjhntIMQFEZ00GtUAok8u-z0n5Dy0Q,650
435
+ paddlex/inference/models/multilingual_speech_recognition/predictor.py,sha256=cAdNZF9lfcAwnXz8B_3QEJ68Ym2FjREzRfBnf3Gl3OA,4805
436
+ paddlex/inference/models/multilingual_speech_recognition/processors.py,sha256=UcqkKl3Fzg4LfRYToCL6H1U1eubqk2mpVWal_ww3OFY,69834
437
+ paddlex/inference/models/multilingual_speech_recognition/result.py,sha256=QrlcWrYIK9Iznr8M3bd4zVzwsCa-k1ijv57RDlb9gjI,761
438
+ paddlex/inference/models/object_detection/__init__.py,sha256=0WydRdG37hGdALUiBE3t_Y5uhT74GuzV3IDXcD75eTk,646
439
+ paddlex/inference/models/object_detection/predictor.py,sha256=7PzC-QbV1m8RfHHlNhAxoot_Or1ANli5G3_-SlrOBl4,13287
440
+ paddlex/inference/models/object_detection/processors.py,sha256=5e47YqJ0MAf7rhKfvRlgRzG11ppfIBp4rDut1pCQ8VI,31764
441
+ paddlex/inference/models/object_detection/result.py,sha256=B6dXFoqxVaV2ovkr0Hj4ACXY1Fcn6QN6W55ps0dliyM,4077
442
+ paddlex/inference/models/object_detection/utils.py,sha256=A11qOJcP2KP0f-JImKBxaSQcjgz1fBkox0YeRIuhItk,1893
443
+ paddlex/inference/models/open_vocabulary_detection/__init__.py,sha256=_AXgoWGKTe2oN7FwcZMkCC8baN_-ESu2LaKqVGuj1-M,648
444
+ paddlex/inference/models/open_vocabulary_detection/predictor.py,sha256=d5VbuK_mc6QKZq9NkE5OmX0SFZCb--sX1ONFJPIiXaY,6081
445
+ paddlex/inference/models/open_vocabulary_detection/processors/__init__.py,sha256=OOP9FbItTE8D4K3uOpzZbPv-pYVlQaiQXvtEpSoL_kM,776
446
+ paddlex/inference/models/open_vocabulary_detection/processors/common.py,sha256=-aVkdcidEqwHBeq_rXY3u2hBhXHbeg18UqYHVqkwOkg,3735
447
+ paddlex/inference/models/open_vocabulary_detection/processors/groundingdino_processors.py,sha256=PTde1ji_W85046H83a3gu5O5d0AhmihjXJEmXebkrns,16853
448
+ paddlex/inference/models/open_vocabulary_detection/processors/yoloworld_processors.py,sha256=cWVwX1Yrzy6Org9W9A-xdIZgm-Dwv7X2k-ffJDdwNyY,6372
449
+ paddlex/inference/models/open_vocabulary_segmentation/__init__.py,sha256=0WD9dkkVPIyrdvPLFk0GFOtLcRO8hf1WY8WO_eI1Lig,648
450
+ paddlex/inference/models/open_vocabulary_segmentation/predictor.py,sha256=EnKLTyA8y77vcIsJi1cGGlfcWaxUz5W6DCPCLQhrtDA,3944
451
+ paddlex/inference/models/open_vocabulary_segmentation/processors/__init__.py,sha256=igzbSrV8yh8ZFVpYagqdy5bFdABG8M55ejv2a0vIAlM,650
452
+ paddlex/inference/models/open_vocabulary_segmentation/processors/sam_processer.py,sha256=ArAwXdWLKF1E-lY8OP3-G3EdA2Y1SvCkUNWnARhqAyE,8046
453
+ paddlex/inference/models/open_vocabulary_segmentation/results/__init__.py,sha256=FWhqvqMWZM-z6sc7fZa1Xx8hPptFnDTKzEjd8idrgoE,647
454
+ paddlex/inference/models/open_vocabulary_segmentation/results/sam_result.py,sha256=gyQTXTCSYaCs0B2tWeLkwHSN-n5zY7EAYkwN0X31zqw,4929
455
+ paddlex/inference/models/semantic_segmentation/__init__.py,sha256=F-9o29B2YiKU_EfAp-mW-m5u4sMak76aH8X_ieIl5Z0,646
456
+ paddlex/inference/models/semantic_segmentation/predictor.py,sha256=GBjyppJUIx-7MRAfqmLev8b2MI_nqT1BSX84dZZ6AF4,5403
457
+ paddlex/inference/models/semantic_segmentation/processors.py,sha256=ZlGmbR-68Ul45zfY5WfiGu0gTF0YVILOvnSBcANqlYI,4279
458
+ paddlex/inference/models/semantic_segmentation/result.py,sha256=O1tp5qbG61JdN6UNa3npKq8Irltp3PbVzFnGrgw_Fvw,2442
459
+ paddlex/inference/models/table_structure_recognition/__init__.py,sha256=j_TRDubOHdlyQLQ_oTxLIfeSx4QD4JivxpwBb4SGfKI,648
460
+ paddlex/inference/models/table_structure_recognition/predictor.py,sha256=rtSGUhPt2yKczrVh-PDW_9bv6yB57ZH67SJJBsSZBKw,5891
461
+ paddlex/inference/models/table_structure_recognition/processors.py,sha256=fDEaWz81yFfdZx9fFqH2ystVhKl_TMy9cGzYGLoj8w8,7952
462
+ paddlex/inference/models/table_structure_recognition/result.py,sha256=P6Vvdq3-SihRFyKislTG8dublal6EajzI-bqUt7Lgmg,2134
463
+ paddlex/inference/models/text_detection/__init__.py,sha256=lttOr1-tNqPUMZ_dMEc6v8ds6n-jTuSeeHNca-0c5cI,650
464
+ paddlex/inference/models/text_detection/predictor.py,sha256=yQl7ksiYZ9_N_rmHHj7XY_DrlTr52ZsYL6tm66a2Reg,6516
465
+ paddlex/inference/models/text_detection/processors.py,sha256=IovuIBdQfpZwJktztlXzDaSahSKAPV2EomdOsjfAWk8,18124
466
+ paddlex/inference/models/text_detection/result.py,sha256=uhhPCdIvRLU-7aC_yma0SmXZ2Rlga3_XHaZmpwgkeYs,1567
467
+ paddlex/inference/models/text_recognition/__init__.py,sha256=oljAcj8MBt4t_fa03kvDAzXJIJSKIAKtB7B0I90G4aU,650
468
+ paddlex/inference/models/text_recognition/predictor.py,sha256=am7PG17yDxHDfGvRxvr9XRie8npXe9v08h7npk6fNok,3386
469
+ paddlex/inference/models/text_recognition/processors.py,sha256=hvnnY96ENYwaDeLXPmA3LSFTx37kDZrwNllag4fdQS0,8174
470
+ paddlex/inference/models/text_recognition/result.py,sha256=sYDHUJEMemDHc48J4DR3wm_go4IOCbKH0qyU1jFSV-0,2633
471
+ paddlex/inference/models/ts_anomaly_detection/__init__.py,sha256=4gvhfI6Z4QZpKsBLyHjTt0UBJ381EW7JfjuIYQBXe1E,647
472
+ paddlex/inference/models/ts_anomaly_detection/predictor.py,sha256=FjNtWgEPWvgjWzVP5RE3EjS0tbEALLdnm1fPBYY6ujs,5233
473
+ paddlex/inference/models/ts_anomaly_detection/processors.py,sha256=U9HwTL7ZS8iLyJXbCgNrZfI8JLRKp4bsBV-9PEhJkIc,3803
474
+ paddlex/inference/models/ts_anomaly_detection/result.py,sha256=uz3rLCjPfPatzToQFl_GbBGpxNS5IAUhf9MzoFJfYv4,2436
475
+ paddlex/inference/models/ts_classification/__init__.py,sha256=9u7HSqrKE0xmSLQcpu-WdyxnE-wZlNvkVaGhFzK3eys,648
476
+ paddlex/inference/models/ts_classification/predictor.py,sha256=q2JRG_dDHHAf35wIJIlDDymc--wGSDNMlX3ZZo5gBbg,4797
477
+ paddlex/inference/models/ts_classification/processors.py,sha256=nBtWQUQXmDizxyFMd_62CFCyOdJETaVBxC6LgNksINs,4729
478
+ paddlex/inference/models/ts_classification/result.py,sha256=V-N_oTDvMsaB43ft6pTPqkLq9k94U-ASowsdoBHqaGg,2627
479
+ paddlex/inference/models/ts_forecasting/__init__.py,sha256=DKYqJGbKqlUbkD1TcIgwb2pQLJpKDHAz5XLtEaq22-M,647
480
+ paddlex/inference/models/ts_forecasting/predictor.py,sha256=k5_0Rw1st5FGO-jrp-3qkeu6J3ybeoPnUXD8O3qfgH8,5853
481
+ paddlex/inference/models/ts_forecasting/processors.py,sha256=kUq3JDLmheSvcsq2jh1v67bhmbWu4p3_konrhylKFu8,5862
482
+ paddlex/inference/models/ts_forecasting/result.py,sha256=IXXepSeQVpm6m3shYM0nnnrl3YdPBhVQqDvMFEDbQWY,2942
483
+ paddlex/inference/models/video_classification/__init__.py,sha256=U7LldafigbDPiTPjXU9v2rfnmSshmG02ibE2l0efe2M,652
484
+ paddlex/inference/models/video_classification/predictor.py,sha256=LpDCLjjnsFOrss8s5eZx8-HCjuI3r1FHFHHoittNWUw,4504
485
+ paddlex/inference/models/video_classification/processors.py,sha256=vvAxEBLHYnn7pmz_OxnDHZQEGrCTGu_Ej41DWl76Xr0,14206
486
+ paddlex/inference/models/video_classification/result.py,sha256=BPD3qhNIbyEIYXDSneDQQWO2v2FmIxwF2Dd1ZPwSdMI,3911
487
+ paddlex/inference/models/video_detection/__init__.py,sha256=RMejdlh-qxQnL0eECfhMDdcX4SIDzw5ruPeZ9oO_T84,651
488
+ paddlex/inference/models/video_detection/predictor.py,sha256=u7BXV-yKVnEkZG5d9EQ9fr81thCIIkHyObAl1GEuAzE,4447
489
+ paddlex/inference/models/video_detection/processors.py,sha256=oIcElrELn7TUgEOoZ3evXRjsR8_A2r7hhiLZVwYt_48,15575
490
+ paddlex/inference/models/video_detection/result.py,sha256=tFPxNzdsKKhPHO0xxMJIxZYlnBDvafkeSzyLdDJd0jE,4247
491
+ paddlex/inference/pipelines/__init__.py,sha256=jNvVpm7q-V0wScsJ49kOZn5sAcjhf5LlZUXH_tVrKNo,9230
492
+ paddlex/inference/pipelines/_parallel.py,sha256=tnkK96d5LZcgngTdqY2fFvZwfO9tcs0xWeCH4Uh4qmM,5994
493
+ paddlex/inference/pipelines/base.py,sha256=ZHSnDL9iTGOyUQobZjuLJR2kyhNuvkZN_pKH8rGEiA8,5787
494
+ paddlex/inference/pipelines/anomaly_detection/__init__.py,sha256=ZXwsw5NJSbdtj4BHGfFm_SgVfbgUGSTABtnVHplWLSo,657
495
+ paddlex/inference/pipelines/anomaly_detection/pipeline.py,sha256=au3chST6c7Kavn4Y5Hyoch6X7b_9y_pPrNv7rT7AYoA,3207
496
+ paddlex/inference/pipelines/attribute_recognition/__init__.py,sha256=a3LuEnZYLEEGNHl5P1o2ldnPaPWqhIBC5RRCvrCIK5E,692
497
+ paddlex/inference/pipelines/attribute_recognition/pipeline.py,sha256=JHoN0q12Od87v80E6rTIR52jjyanZD4XYKzKA6l5f9E,4740
498
+ paddlex/inference/pipelines/attribute_recognition/result.py,sha256=mAQIAALF1ie92yNrCVbt2_xufw_hfvIa_RSJPcHt1Kw,3557
499
+ paddlex/inference/pipelines/components/__init__.py,sha256=nXliR_FqHJcIwxlLj_9yxe2MAJkCcCceoJ1vOb3WQv8,1025
500
+ paddlex/inference/pipelines/components/faisser.py,sha256=qtPqcA-Rz6hm4kaaiNzC9S4YsODyX29nl1og8M3kUCM,12343
501
+ paddlex/inference/pipelines/components/chat_server/__init__.py,sha256=2LthhLNi8BtARKCwilAv1VFOC2lpib-WiXbAVe1w4OI,680
502
+ paddlex/inference/pipelines/components/chat_server/base.py,sha256=vRI-61XvCSNEyUAoRr9yHESYEuprgRSCFh-Jjt1ioWM,1365
503
+ paddlex/inference/pipelines/components/chat_server/openai_bot_chat.py,sha256=K80Ag7AcU7POPH9jCaVt3Ck37mMrTBIbon_3xZH4sKI,9058
504
+ paddlex/inference/pipelines/components/common/__init__.py,sha256=l93PRX5Ttw6QyMBT_4l8yPL4tprCETZ2DkEBqQqfKcw,865
505
+ paddlex/inference/pipelines/components/common/base_operator.py,sha256=CvsD1CsKvk8qJD2hM9HMV7teApYWFZBwGL1bSKughUY,1248
506
+ paddlex/inference/pipelines/components/common/base_result.py,sha256=MVg2Sjr2VkeZBVFl9CAGCIoab_o3CpGkwFJT9WGOaGQ,2175
507
+ paddlex/inference/pipelines/components/common/convert_points_and_boxes.py,sha256=k4lXZ8VKXZRH98uXami_oxRc7UMvx0N8BNou7wc096U,1703
508
+ paddlex/inference/pipelines/components/common/crop_image_regions.py,sha256=yB5xOpNbRMjaKmKLQkYF05q5POTducJbCC2DzFDz45s,20869
509
+ paddlex/inference/pipelines/components/common/seal_det_warp.py,sha256=csXqMKh_Ne1ghGQqlbBjzNA3klJsfRBUllcLD5EFPa4,32957
510
+ paddlex/inference/pipelines/components/common/sort_boxes.py,sha256=oqTZT3vCU-9KjbC9TdaTQ9ZhoZc_1ICGU8hFNAmXYJQ,2769
511
+ paddlex/inference/pipelines/components/common/warp_image.py,sha256=VrJgyyS5SKRCM-WZ-fK1JQIsD1N-fYe6I1JKDRWwU3o,1507
512
+ paddlex/inference/pipelines/components/prompt_engineering/__init__.py,sha256=C9fESl3Ffo2ZDTsWVwvJN79RDBLyozpKc1ZOAEr3dpo,722
513
+ paddlex/inference/pipelines/components/prompt_engineering/base.py,sha256=gTKgCLinDMUEmwYcgXYF1ieS5cOsqsGUxxQmtElhi0M,1272
514
+ paddlex/inference/pipelines/components/prompt_engineering/generate_ensemble_prompt.py,sha256=32T3-A5DcNbM-X1coL7eOG_I7cgOVt_TWFOezCoCFBI,5336
515
+ paddlex/inference/pipelines/components/prompt_engineering/generate_kie_prompt.py,sha256=NmnEQYevFYV9wcgtyFjmWdslLWStWnPXnhyNs7gc4P4,6137
516
+ paddlex/inference/pipelines/components/retriever/__init__.py,sha256=cMexXHUrlknx5b_ZKZIWGd3RahmihHwE-ykhAS6LCaw,718
517
+ paddlex/inference/pipelines/components/retriever/base.py,sha256=lWlpMdnyMaNF6gqZ6f27_ll2orYKblfkgRpKWZC9Xmg,7967
518
+ paddlex/inference/pipelines/components/retriever/openai_bot_retriever.py,sha256=z5DFqzgH9HKa0YsHbeUBIRqVe5gKjaYWRw7eVcdajkc,2426
519
+ paddlex/inference/pipelines/components/retriever/qianfan_bot_retriever.py,sha256=B-krytmBqILDGLQbMZKoU-K8b7YNV1co7qaPo3EuzLs,5738
520
+ paddlex/inference/pipelines/components/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
521
+ paddlex/inference/pipelines/components/utils/mixin.py,sha256=JxCJ2pqihd8wB4y5hSiGaXX_wIk4-SW2WO8S6-IZGQw,6549
522
+ paddlex/inference/pipelines/doc_preprocessor/__init__.py,sha256=XTOS7rmOkSk8Ad4ybRoEiSABeeE-FwAijlASCWSZYEg,656
523
+ paddlex/inference/pipelines/doc_preprocessor/pipeline.py,sha256=drd6zngUTKpkrZvwMf_kxLZO7_d27eOchr_BcKfPObU,8251
524
+ paddlex/inference/pipelines/doc_preprocessor/result.py,sha256=Juemk5tqwV-D4ahdgwxDQavFuliyTtf_Hk6OQnSj4t4,4021
525
+ paddlex/inference/pipelines/doc_understanding/__init__.py,sha256=otW18h6AQw-d0sy_1bZ0W5hVjse021YhDl48CFl57cU,657
526
+ paddlex/inference/pipelines/doc_understanding/pipeline.py,sha256=K8mQbG53DA9kEQXkEYKCQY-ii5UDBi-YroMeU26xYjg,2867
527
+ paddlex/inference/pipelines/face_recognition/__init__.py,sha256=PvjBS-zaPlcbVdw4yGnVkY5mhN1_LUcKc2fbQRmnS0U,648
528
+ paddlex/inference/pipelines/face_recognition/pipeline.py,sha256=Gpklhl-VrB1DtJrcavd9Pd31V7RYswwBeKzjw2z-q_E,2399
529
+ paddlex/inference/pipelines/face_recognition/result.py,sha256=K0XS95GEq1zdU33DbopOWN4FFdh34KZBjrNJscN2eMs,1533
530
+ paddlex/inference/pipelines/formula_recognition/__init__.py,sha256=1ohbSE3gGnXwDkT9BoY47N1c9rtgf4I6sPjijLE6pVs,659
531
+ paddlex/inference/pipelines/formula_recognition/pipeline.py,sha256=uTy7WVnIOCueEiq14QBeZYrGUYFq9bztu3ZKe8mQLjU,15020
532
+ paddlex/inference/pipelines/formula_recognition/result.py,sha256=QYa2TPTYat4bSJ-0E6cPs4MULdn_ZOoyDdWGEcecBcM,11800
533
+ paddlex/inference/pipelines/image_classification/__init__.py,sha256=t0NEUXKqdc60LNZRKheo_AR73QoAYKTgv_DlyoR14PA,660
534
+ paddlex/inference/pipelines/image_classification/pipeline.py,sha256=ll-wbXl9oCua1BbDnFDpBYbBC7JWRWN6KxAh3mlxZSU,3577
535
+ paddlex/inference/pipelines/image_multilabel_classification/__init__.py,sha256=0G1gDkzsZpfUvmZTJX4JxFqFjyMFBdPmYih88dDWwrU,670
536
+ paddlex/inference/pipelines/image_multilabel_classification/pipeline.py,sha256=NZhDqOp5-KM9jCrL460jXwIj58R5Mvd9BX8G8UkbWLo,3800
537
+ paddlex/inference/pipelines/instance_segmentation/__init__.py,sha256=hq0t02zs2bcvV33hy1bDCwWmXBzyaSjK2H9CRoDDYks,661
538
+ paddlex/inference/pipelines/instance_segmentation/pipeline.py,sha256=37YMJhzejHo24t3AAcn8QQyalLmhDfDPCpd2bqvzBAM,3628
539
+ paddlex/inference/pipelines/keypoint_detection/__init__.py,sha256=R4TzgozUZphiJzcWLsSciP0oWD7AeIWxqz2T-WTgqz8,658
540
+ paddlex/inference/pipelines/keypoint_detection/pipeline.py,sha256=bhjn1rBJRIV0xIX8J3mlJ1F8xE7i7rjE4AmAv2x1T0w,6202
541
+ paddlex/inference/pipelines/layout_parsing/__init__.py,sha256=eikh0TU4nFoO7C-dI5jzRj02G8PiIXUYu6whU5JTdjE,703
542
+ paddlex/inference/pipelines/layout_parsing/pipeline.py,sha256=Qmqtf0Et30CFnNxNDtGiMGSYGxNhUezSZKIsyAloTiA,25847
543
+ paddlex/inference/pipelines/layout_parsing/pipeline_v2.py,sha256=VOVtS8Txo2ucgRKjhHfNHM8tbHkEpuPIgh3JE4xprHw,62609
544
+ paddlex/inference/pipelines/layout_parsing/result.py,sha256=R6wHENrYfrAbJfwZ-bi-_ha4EaU4hzsRNuwqKiH9Mhc,8688
545
+ paddlex/inference/pipelines/layout_parsing/result_v2.py,sha256=A5TtEyWmEOVEDh2qgR6Yd0pQJtZ5EaIPKkdJff1IHLI,28783
546
+ paddlex/inference/pipelines/layout_parsing/setting.py,sha256=sRVofeM2bADiEYsCJunVawgMgtFdQoxDhv4U4yCSegs,2392
547
+ paddlex/inference/pipelines/layout_parsing/utils.py,sha256=ahh4d8WpOmk5rdrzzbG0nzp9AfM6fq9HkpTTtejkd9c,35097
548
+ paddlex/inference/pipelines/layout_parsing/xycut_enhanced/__init__.py,sha256=VG_OmZclRXlQrnMEm7Ovu4Va31zWaQ1S1Tbqr-_-dvQ,653
549
+ paddlex/inference/pipelines/layout_parsing/xycut_enhanced/utils.py,sha256=LRIfAboYnLkEuT94wYDGwFOEaWpSiWcUX5SVD_32bvo,43469
550
+ paddlex/inference/pipelines/layout_parsing/xycut_enhanced/xycuts.py,sha256=CQy-Bscvi3mFFedrIQn2WWHt3mJwaxR-4ImyBRbHMT4,22165
551
+ paddlex/inference/pipelines/m_3d_bev_detection/__init__.py,sha256=EcjBbaz4P_BKQ6b8rFdQ_JSN2tfMQAwe1_qOQmkWV-M,649
552
+ paddlex/inference/pipelines/m_3d_bev_detection/pipeline.py,sha256=-i0H4n75tY9qZwhA_0rdxcJQhnpRLforCJYqLbFFMQM,2892
553
+ paddlex/inference/pipelines/multilingual_speech_recognition/__init__.py,sha256=7QB9Wx7YCvmZInmrrgafzfQkL6C495sSro5CoH1HH2Q,670
554
+ paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py,sha256=XBFfLFVHqSdews5RkIMy-7vSJrphAk4Er7kT-wLZE14,3173
555
+ paddlex/inference/pipelines/object_detection/__init__.py,sha256=c2ZYFYRbb0J6daRAv9uwTf4nqUw1w5mG6nkgp6vTtZ4,656
556
+ paddlex/inference/pipelines/object_detection/pipeline.py,sha256=FpXmt4UoUS-10cZQUfmrJDEwQd5Unzb7GhTbD1j9wBI,5140
557
+ paddlex/inference/pipelines/ocr/__init__.py,sha256=ikqbgokLsaCuqyOet1ul-2mtNGO7d7sAXLTdAp6E0qs,644
558
+ paddlex/inference/pipelines/ocr/pipeline.py,sha256=0BmvkcYIr3YJoYFycpEkA35Rdz9UZi6TJqYcwTIaL1Y,20178
559
+ paddlex/inference/pipelines/ocr/result.py,sha256=1xP7RAS3IfdIBvD1IjpsgvrrDEhzTibQoQJkSAxGw8U,9993
560
+ paddlex/inference/pipelines/open_vocabulary_detection/__init__.py,sha256=aOYM8QAwEr_mL_GA4rWOs4iLpc16rye6vl3ObPNwWbI,664
561
+ paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py,sha256=u7qV-1KuT1nyD-hSyJ0bWNcnhfaBh7H9UYS8AZb38jk,3597
562
+ paddlex/inference/pipelines/open_vocabulary_segmentation/__init__.py,sha256=AWiP79r5eAv5i-sVCXTVmSLWeHnQwCh8GeZ1I5mB6fk,667
563
+ paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py,sha256=HO9pGGRr_jv8x8qNEii_b_s2Q254ETxnrH-a-HLWsXA,4064
564
+ paddlex/inference/pipelines/pp_chatocr/__init__.py,sha256=sGGz9xscTsDLMHyVr7XHD4aUNvfzi9VdKbcogWx-wsA,704
565
+ paddlex/inference/pipelines/pp_chatocr/pipeline_base.py,sha256=DvUu01oKY9KU3oIpTCbF-Sai6bRuvxqpZpBHe8gAuOE,3994
566
+ paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py,sha256=m4C4O0xLrjBMFcRlOTzXkEwP4iHjaPtLyu5EKA2-ZxA,32500
567
+ paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py,sha256=HvyqLaI7oNY6MfiTFd1fGm1Ad8KDbjB60JTG63sDh6s,41756
568
+ paddlex/inference/pipelines/pp_shitu_v2/__init__.py,sha256=ZI-x84D1hyQ8U77a8VLsv_4faIbTstX48iD9PWnYHDQ,648
569
+ paddlex/inference/pipelines/pp_shitu_v2/pipeline.py,sha256=G3fzKKyjscJKz5iQ4jSvBjEoGCa6KuiG10WY4n2AdlM,5828
570
+ paddlex/inference/pipelines/pp_shitu_v2/result.py,sha256=3600yup0xoEL0dA_7BqljeZPgvledruh1VoLMpIH2tc,4354
571
+ paddlex/inference/pipelines/rotated_object_detection/__init__.py,sha256=0xOtCBKkj3DJQkIbO2EUekYcBf50U57LEwIC_MsM4Jc,663
572
+ paddlex/inference/pipelines/rotated_object_detection/pipeline.py,sha256=DwU6h4uFOX7nOtySfxzn5t6rwE80uiGIHyvmPFe2G88,4038
573
+ paddlex/inference/pipelines/seal_recognition/__init__.py,sha256=Hf4BsknzV22IeT8dG2VYBuHdKEP5rrWetaV0HxxihC4,656
574
+ paddlex/inference/pipelines/seal_recognition/pipeline.py,sha256=Y2Slw2NTL85zbOCn4DZSikkXAZklETeK_eGeBT4oRrM,14152
575
+ paddlex/inference/pipelines/seal_recognition/result.py,sha256=yQJZejB-bufIE-PxcjNEfhLFRS8tfV-8W3nZIWlyYh8,3733
576
+ paddlex/inference/pipelines/semantic_segmentation/__init__.py,sha256=sjct9rWDAodXzT73QZreE-li9bsZBislMfGu4fVBJPQ,661
577
+ paddlex/inference/pipelines/semantic_segmentation/pipeline.py,sha256=BkICHvJsLDR2GQAkgQsjsB_sxEiOFH0KthtNn3_Cr5o,4022
578
+ paddlex/inference/pipelines/small_object_detection/__init__.py,sha256=3Nu17bbFqaFAZy5XYUfNr8cN4UI9Jtb71JcVOi4FXsQ,661
579
+ paddlex/inference/pipelines/small_object_detection/pipeline.py,sha256=GCddl7l-rKSlRnHq1hL56F46SHGJT4jFuR-hFva4FaA,4010
580
+ paddlex/inference/pipelines/table_recognition/__init__.py,sha256=njpOeQCLmGcqpyqoD6vPfR4ZlOgH-n9eVZNtW01Gin0,709
581
+ paddlex/inference/pipelines/table_recognition/pipeline.py,sha256=GBqU2y05TOlTsl_-shyP1R1Fo7IyYrk6HrwcqWxrjJY,21392
582
+ paddlex/inference/pipelines/table_recognition/pipeline_v2.py,sha256=YSvZPIj-3hv1LCWBsE6P_ifQhtxgcwmaAx-6nrQ6LQ0,61616
583
+ paddlex/inference/pipelines/table_recognition/result.py,sha256=W8-RtrfVPLzu5ci61vu3dU9KjIPEpN7_2WQtbdM1LME,8551
584
+ paddlex/inference/pipelines/table_recognition/table_recognition_post_processing.py,sha256=e_EBxJ8FhbVfxTMXgvKgWioYFmlL60Vy68DxON1koFo,13687
585
+ paddlex/inference/pipelines/table_recognition/table_recognition_post_processing_v2.py,sha256=1LnMrLe58kb5dpm2qHw6VtxoHweBNiWdrgNYA15BpAA,17491
586
+ paddlex/inference/pipelines/table_recognition/utils.py,sha256=ccE_gO0FpEnirOPgs2tZ5sUpFIecJKh4x0XHM3RMgZA,1744
587
+ paddlex/inference/pipelines/ts_anomaly_detection/__init__.py,sha256=tEqgLUUG96b-ZXSXxp6Aaw6j4j2ZCB1mSiZIA3vZccY,653
588
+ paddlex/inference/pipelines/ts_anomaly_detection/pipeline.py,sha256=RKm0I7n2Fbcftk7HvKfugCkLUM6XKauXLBYVwSZKAro,2851
589
+ paddlex/inference/pipelines/ts_classification/__init__.py,sha256=BV9eJHwPYamtJvBpqOf0_Dp1BRsNI4JUyJlz8NMyPLc,646
590
+ paddlex/inference/pipelines/ts_classification/pipeline.py,sha256=ucS8PIMC_EfZv7iJyWI8hdJPFXEsP2JxU5BPDStM5ik,2885
591
+ paddlex/inference/pipelines/ts_forecasting/__init__.py,sha256=q3PlYiv1859mFHaPXM6jy1GDtB12rbK3vqxQAUYlSAA,645
592
+ paddlex/inference/pipelines/ts_forecasting/pipeline.py,sha256=nq26i48RsAloH7nSu0OacEhDlmZQ3iJFlHuVH7eKdig,2824
593
+ paddlex/inference/pipelines/video_classification/__init__.py,sha256=Oc-0vfKoaBRDZNJpu5138EsNG8Fp7nsmzUt5gfMyqIQ,660
594
+ paddlex/inference/pipelines/video_classification/pipeline.py,sha256=vd0GqiE8ztliRMPxru7s9jw8hx0e5LhMhBgvjimMQYY,3103
595
+ paddlex/inference/pipelines/video_detection/__init__.py,sha256=5fwogRCREggvQgge-ur-bGnfKP-9xh5dUR0gkjzl1Rw,655
596
+ paddlex/inference/pipelines/video_detection/pipeline.py,sha256=k-QJZl2t-J2oboDfeWZ812P8TqVM1T3Lb4KsRV9xHrQ,3391
597
+ paddlex/inference/serving/__init__.py,sha256=toJfQp9IogLuJwLzprv8lieB-EERPqU4B0FJv8ZoNec,685
598
+ paddlex/inference/serving/basic_serving/__init__.py,sha256=_NwYgeYL6HTpLWAxf7aRwRP-rBfP-Fsaff3vZe0GUkg,739
599
+ paddlex/inference/serving/basic_serving/_app.py,sha256=7KKwaeeZDEqj-623AYOw6JvtmwnDVu2Aw9zsKcrhVsU,7368
600
+ paddlex/inference/serving/basic_serving/_server.py,sha256=c_nqZFecjAIQxw2huCKzLWZ_BSO_pFh9xaUSGZ1WrTg,1484
601
+ paddlex/inference/serving/basic_serving/_pipeline_apps/__init__.py,sha256=z5_SMYmGTeBJTCwbipHBzuitWjraIEpy63y4od9Wtbg,1707
602
+ paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py,sha256=9eDaXVlXC5sEvmBGDvtE4Lv6bz0riZvT48nq7ccFCAE,2374
603
+ paddlex/inference/serving/basic_serving/_pipeline_apps/doc_preprocessor.py,sha256=dsABJvWCkY0fAAVqPsCgj5ZCM9rmpBgziZlggT_Jj_A,3641
604
+ paddlex/inference/serving/basic_serving/_pipeline_apps/doc_understanding.py,sha256=jwEE3Rlo2_F1GXD3VkmvoCmEiirvhW40JROsSpfrQq8,5618
605
+ paddlex/inference/serving/basic_serving/_pipeline_apps/face_recognition.py,sha256=h1Pc_NULak1v-kGK-2m68ZeeEUY1Jr56FgI6aePVDNI,7985
606
+ paddlex/inference/serving/basic_serving/_pipeline_apps/formula_recognition.py,sha256=t9Ee63B9JSKcvkzf2lGuF-fyMvGf3O57ZWuWPPFq690,3614
607
+ paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.py,sha256=rzQniNgVxJAwuL8AJg1EVTMTe8F7vt45GtfyVNpzLb8,2648
608
+ paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py,sha256=DDfpOzLvXRvQXBz279ybi3RDCCRGbbJait87wipq6B4,2568
609
+ paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py,sha256=LJa_GBCadv5z-3q_ypHmtX2YUx6uh-GDzlESZfUrxiQ,2606
610
+ paddlex/inference/serving/basic_serving/_pipeline_apps/instance_segmentation.py,sha256=l0gMJCWOyd-sP7pXDWXPoGdiBOYCf5cm1Nqe3yoZqhg,3032
611
+ paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py,sha256=_AXb70cyXepfFsq6yEUnOSLa2A0WGNABCQftGReFOw4,4547
612
+ paddlex/inference/serving/basic_serving/_pipeline_apps/m_3d_bev_detection.py,sha256=67-XMeJpt38WJyWDlWz8ejdbZDsQ81WQ4Jye9z0zP-E,2553
613
+ paddlex/inference/serving/basic_serving/_pipeline_apps/multilingual_speech_recognition.py,sha256=5_r3Ze_F4N0n5L-D9EK-8jVgbtNxhbY-wOgwRwVd62c,3111
614
+ paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py,sha256=KbkK3FQsLcTlRjFxeEVh_fe-B4uznaDoCEFjzxbD4Tk,2620
615
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py,sha256=m5xEmhbV49HWVob_Xf8RfyZ56lfX-uenyso-VJgZ5fk,3839
616
+ paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py,sha256=38_lV8SgDtK6DxqYwAGgPI4ARA8x-qA7prg7rIPRz08,2641
617
+ paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py,sha256=2RBFFOYmz7yM8jUDOSTNGJGyhPb5SXVwSumjct_k46E,2868
618
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pedestrian_attribute_recognition.py,sha256=KAk8-ng09DEtmOXU3GLdjPdUmm5eYtrAWt0bvViT6ag,2787
619
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py,sha256=4zfZ_zYpMZWn6EA0NaFpfCgyKSfQfeFRaH6TdkoQ1Hw,7446
620
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py,sha256=iJQjCR-XRHWe_-kwr_vNkShCUwJss_eqY1mx_ZFVdU0,8567
621
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_shituv2.py,sha256=mejMNXongcpReJPi2IfmpUpekbxX3CIP0BCCxEuAD54,7747
622
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py,sha256=CtwEBKsGWv4pKnlL46pD-OuOMwYuTr-QviT7jl18lqI,5952
623
+ paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py,sha256=3grQrKFhUuY1HVRqTDNOsi9Ss9ADPE4Uxc2qLAVUdf8,2645
624
+ paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py,sha256=AGV5TfrgaQNrTmN7b4Sca_n1QeTEx2uQ1Ft5Lu6Csec,3955
625
+ paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py,sha256=4Eut660kUrXzIMFVlJ8GiQfM_pMuR7KKV_Ihnr3w4iQ,2410
626
+ paddlex/inference/serving/basic_serving/_pipeline_apps/small_object_detection.py,sha256=I-lN4umtW4MdMOfrS7f84ME2oGNxKUO623VxcP0qIzg,2557
627
+ paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py,sha256=y0KuqMkFQeOnVxA0ERsyl9IiXM4LGp2bLMTqEEl9b-k,3866
628
+ paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py,sha256=iLeF-4mJu-I4C5-XDsBcaPg-CeU1uKkdzRu4Z90W8DI,4287
629
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py,sha256=6z0kkq1kXpS7aLlCn6TvL8g1uS02SZAHkhOeuJzaB8E,2281
630
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py,sha256=luHJWk_jWVVSluCbXdc8pjsf5bBnWyoYSqh4G-1Fe_o,2289
631
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py,sha256=Uk5VHQEfrYkwPcvdXcl8x_tgXMJBxMvGVghCb-CwLLw,2273
632
+ paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recognition.py,sha256=O36USuzEuunoZtwKwLiLD3Dwb2S-UzkeDqJHX6NPOTo,2781
633
+ paddlex/inference/serving/basic_serving/_pipeline_apps/video_classification.py,sha256=O81Dqdqz_aKY_lza-Qnx5BAhdJMEURwSFBsa7WGnVMY,2743
634
+ paddlex/inference/serving/basic_serving/_pipeline_apps/video_detection.py,sha256=CW-UrSTBQZIbLvzFwWAKrH5o7-v8fVhdul-NAIARpBE,3055
635
+ paddlex/inference/serving/basic_serving/_pipeline_apps/_common/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
636
+ paddlex/inference/serving/basic_serving/_pipeline_apps/_common/common.py,sha256=41bSImqd5aaPViY5Z3ix4ervK8dg0jcN0cRLdfRRC8g,3534
637
+ paddlex/inference/serving/basic_serving/_pipeline_apps/_common/image_recognition.py,sha256=EWHNeFPwiZHt9hkC8-9mV8shKVIJH4CbS3EvQQs6RjA,1244
638
+ paddlex/inference/serving/basic_serving/_pipeline_apps/_common/ocr.py,sha256=B2vexhyMSUMy0Vvyy85ZObwTsrieplyb-LiT3lc-Hng,3578
639
+ paddlex/inference/serving/infra/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
640
+ paddlex/inference/serving/infra/config.py,sha256=-6StYn1pF_VQdCWsthZ5b86O-m31ye_KWp7j-mwc9N8,1152
641
+ paddlex/inference/serving/infra/models.py,sha256=KXxvV39dGzrbGeHDacZMGvtlcKPF4PEkjtuov0Vt9y4,1980
642
+ paddlex/inference/serving/infra/storage.py,sha256=8Pw5mhvornnF2NnwOblRX5N_FGMrCvCkz0WfmQX7bXM,5379
643
+ paddlex/inference/serving/infra/utils.py,sha256=8Vz3xYVcoZ_QEJAHlhGEakfojqvvZuHEi0tCBfgklIY,8457
644
+ paddlex/inference/serving/schemas/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
645
+ paddlex/inference/serving/schemas/anomaly_detection.py,sha256=407q-QdNYiCHSjuGnbnndoFK6CXWN4Y8HfzVaIzE_8U,1189
646
+ paddlex/inference/serving/schemas/doc_preprocessor.py,sha256=rCYnssIaIpnulPGFRTE15U5zl7l6ylWzqpMJl1QEvVI,1630
647
+ paddlex/inference/serving/schemas/doc_understanding.py,sha256=urKhmbceO9TCL2_9bWSC8_buePyGSGixfryoRfESw_w,2058
648
+ paddlex/inference/serving/schemas/face_recognition.py,sha256=N6SHf5UB63yyva3y9Z2xYh1_mjJSh1bSIFDjf6be8iU,3011
649
+ paddlex/inference/serving/schemas/formula_recognition.py,sha256=wf9ya-85l9a8p2jk0pugMFdLdikqWjT4n5GUl-fbkjw,1723
650
+ paddlex/inference/serving/schemas/human_keypoint_detection.py,sha256=C61vn-1MYsjdpKy8H78VrEJeJQMKhZMVJ2odCoxfxfY,1473
651
+ paddlex/inference/serving/schemas/image_classification.py,sha256=I_lquPPda7W7RAbDVQhhCJiXz28DYIzk2ki5CQzNO7c,1291
652
+ paddlex/inference/serving/schemas/image_multilabel_classification.py,sha256=-Id6g1RLeTE4O_RzbyboN_YhImuopm7IbBqVVE_c44w,1368
653
+ paddlex/inference/serving/schemas/instance_segmentation.py,sha256=aLPdJftqCkHVFakDWz9PKM9itBmHGuh4hrOq622mSC0,1411
654
+ paddlex/inference/serving/schemas/layout_parsing.py,sha256=CF0nLt0fHfBPAeYGwBBESRvQKQ0htPqvc6NQ7EyMEmI,2416
655
+ paddlex/inference/serving/schemas/m_3d_bev_detection.py,sha256=i9WJnV2t_aVsuxIYxp6jue_H0mhOk3PJNBIAFmr11nM,1289
656
+ paddlex/inference/serving/schemas/multilingual_speech_recognition.py,sha256=98SL_0vkAfbDdy6-G426lLolMmaf3U6-uMGDEF_aYy4,1371
657
+ paddlex/inference/serving/schemas/object_detection.py,sha256=IjPxEvK5-suGOXHeXOSo7LgIyHJZbuwvixgq1fa_KPA,1414
658
+ paddlex/inference/serving/schemas/ocr.py,sha256=D0XLhCa9uxTb7xxNATwS7NW5p2vk5Frz_ukGq0q_NUE,1827
659
+ paddlex/inference/serving/schemas/open_vocabulary_detection.py,sha256=T8WgzB9Np4AP0ifzumueUL4LwQsrPZCnCvcElOrrAHo,1399
660
+ paddlex/inference/serving/schemas/open_vocabulary_segmentation.py,sha256=9L7sZsSibZ8nyAgHgkjfm_A4T_mSZyCuOXf0EEdmUYQ,1360
661
+ paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py,sha256=p5I5Gcs3fJb2YnJdQSZElVM-ij5yd1nqr0L6R8RTEx4,1619
662
+ paddlex/inference/serving/schemas/pp_chatocrv3_doc.py,sha256=Sj2gC3Tkfc8w9XyET4Sr7NwZbF4wLB2h6mrlODMdYK4,4320
663
+ paddlex/inference/serving/schemas/pp_chatocrv4_doc.py,sha256=6c5fRGN2Z541x5nwdkzv1L5kUPBMPv0b1WrS-uNdIhY,4566
664
+ paddlex/inference/serving/schemas/pp_shituv2.py,sha256=bD_xTuab4t4o4h7ycBVYl3nlA86bvk59aLggZ-j_KlE,3007
665
+ paddlex/inference/serving/schemas/pp_structurev3.py,sha256=hAkGogT1dDoXo9SDRL5mNiu2Hw64VvPzcUMMzG_nQ_Y,2963
666
+ paddlex/inference/serving/schemas/rotated_object_detection.py,sha256=LRZHlTR15onDcsXshOHqbKwyaJ5mJCZrVlm4x-h427Y,1429
667
+ paddlex/inference/serving/schemas/seal_recognition.py,sha256=rNzFjzUhnXCx-4Cu8dN0KLHs60Jp87eFnWmeAAvKhwU,1978
668
+ paddlex/inference/serving/schemas/semantic_segmentation.py,sha256=QlsjszHI4MZUumBiNlxY7KacMNKEXKDH8oaS6wyEbiI,1282
669
+ paddlex/inference/serving/schemas/small_object_detection.py,sha256=dbd7B79UHqkN3slzi01ui-Q7jkUQlYfEIzFZQOYT-wU,1420
670
+ paddlex/inference/serving/schemas/table_recognition.py,sha256=VEsNYaaWq16ZcOwma3A906lcgWXQnAXMa1ottGMOUZc,1838
671
+ paddlex/inference/serving/schemas/table_recognition_v2.py,sha256=UPnumlbEz1bSZMyDK9vl8UmUeKhqkg-ZYozwlsxK1kU,2070
672
+ paddlex/inference/serving/schemas/ts_anomaly_detection.py,sha256=gYHuJL4MEL8-v7PMze0T1_YTCjnEjDczb-QWUAuuf7g,1103
673
+ paddlex/inference/serving/schemas/ts_classification.py,sha256=NScw6DzaZ0kZNUIlQoQhSsE0aEZeZLQ5orBPk8nyl3U,1119
674
+ paddlex/inference/serving/schemas/ts_forecast.py,sha256=L17DUN8GF5ffaj_u__xirD2R_FB7zaSolh4PMn6KxOQ,1097
675
+ paddlex/inference/serving/schemas/vehicle_attribute_recognition.py,sha256=zQbiI-3JW0M-5ytBSMbDFww9sAftKmg2k7_qSF6CvkU,1604
676
+ paddlex/inference/serving/schemas/video_classification.py,sha256=NEuxh1VIMmXlhab4-jV_2OVhPxB58qIXOpdcZyEopP8,1259
677
+ paddlex/inference/serving/schemas/video_detection.py,sha256=U7wpB2dN-F76J-3moqomGzSL-Mqw7cFOni2_mRAFZRE,1428
678
+ paddlex/inference/serving/schemas/shared/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
679
+ paddlex/inference/serving/schemas/shared/classification.py,sha256=xza25RVSyjxZCASrvZ1Tb-LvRoiLMfhb60Aa1m3PoLY,737
680
+ paddlex/inference/serving/schemas/shared/image_segmentation.py,sha256=hkRK83EtvHdlt63CqWAQq5QFBr5wGamPYxelTLRzqmc,830
681
+ paddlex/inference/serving/schemas/shared/object_detection.py,sha256=hRraFDkMn67ovX5Y9otsMtwE9-bYYtOo45a0DPt83z4,885
682
+ paddlex/inference/serving/schemas/shared/ocr.py,sha256=UAmHt2subCJvrtGOuy43axOxjrMaVOPLm5bYSOamgEQ,847
683
+ paddlex/inference/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
684
+ paddlex/inference/utils/benchmark.py,sha256=l2ATIuPwAd1uD4rZgADbt4HKEiobeFLm3P-bIbKtD4s,12932
685
+ paddlex/inference/utils/color_map.py,sha256=mU1FdhHuyiJBn_thBkSndiMJtfkn3i3rLtPAPNPFid0,2953
686
+ paddlex/inference/utils/get_pipeline_path.py,sha256=LCjXho0ix4jgG-sJ1DyKIAFfC8Yv2cj6hBlA3eOFJIo,985
687
+ paddlex/inference/utils/hpi.py,sha256=09dJXUiU9vHb-0gHISIQHVlnSMOzktm9xjDDavDYOQY,9252
688
+ paddlex/inference/utils/hpi_model_info_collection.json,sha256=cHWQQWEBSe5-z29QeLbscVAJ6ixkL7ZZ9iPz5gZk8xE,43321
689
+ paddlex/inference/utils/mkldnn_blocklist.py,sha256=1dkuIvUYq9ykUNzuJi5S0vcMfxbcAPQWYMGBE7v9t8w,846
690
+ paddlex/inference/utils/model_paths.py,sha256=uRsEO-uHEd4xKQZqNyU5T7Vp6QI6iYZ5anZMXXpmKAg,1803
691
+ paddlex/inference/utils/new_ir_blocklist.py,sha256=wdN1jiRWGo-YQvzoMOLhsqDjAcqhhkwfPBZEJ3-ldAw,880
692
+ paddlex/inference/utils/official_models.py,sha256=wr-R2OUDV40bwYtfBoukllIjb0nS3CVT0yxRZOFhFeU,41069
693
+ paddlex/inference/utils/pp_option.py,sha256=asA2yAry-YBixJsW0-f3cp2Avs6CZqHn7KYZHrf-Uqg,11850
694
+ paddlex/inference/utils/trt_blocklist.py,sha256=vaFJs6gvkMncYKTL5R6C93Nq2eYAdeBNcmJ4-abSFa0,1465
695
+ paddlex/inference/utils/trt_config.py,sha256=995uGRdKFyaU9EB4jLDiS85EjVLXmsCyL7gJIl3c8h0,12661
696
+ paddlex/inference/utils/io/__init__.py,sha256=KE8WngZIEjrOPEGeN6AEwKU-yt5nReDRWIBcmiRPM5s,939
697
+ paddlex/inference/utils/io/readers.py,sha256=5Xj0tSo6HW8ZPMetwSyFgMkr5JG1pH86XLLLWX1exGE,14112
698
+ paddlex/inference/utils/io/style.py,sha256=0wIJQ9Gq8lgHec65TKq17W626kMHkwIqyUI1okkZOzg,11522
699
+ paddlex/inference/utils/io/tablepyxl.py,sha256=jTgpLrYbpJ20SWKNI87ZAF03xPHQJNjzGuYkbIE-KE8,5264
700
+ paddlex/inference/utils/io/writers.py,sha256=eQzWGFFf0JKvgk_UnqvdQZs1aCDGbs9MQW0EST3IoJo,12720
701
+ paddlex/modules/__init__.py,sha256=Ow5J6NKjMeOmR64EaJmX3PPRyhle9HlebXOHP-ZSFiw,3002
702
+ paddlex/modules/anomaly_detection/__init__.py,sha256=-KBaNC_byJeI2uisbbBePhif2OI4odukBI2kg2jdOzY,759
703
+ paddlex/modules/anomaly_detection/evaluator.py,sha256=HM45C8XxQ6FFuCRTJaw922RIZJ-qJHfN2xoCO7yx3z8,1754
704
+ paddlex/modules/anomaly_detection/exportor.py,sha256=aUnXJzLIzrdoAQ3NgPx6pOBgpeVYIP0EkqOygnC9IhQ,778
705
+ paddlex/modules/anomaly_detection/model_list.py,sha256=oZbKWDV4kNV8rkXS2gPSv0AmvTCSUonHiGNv834GO8g,630
706
+ paddlex/modules/anomaly_detection/trainer.py,sha256=A13rPYH4FiV4AO9ffwHHlTLiYkZVcdLASZ4jNlpQAkc,2797
707
+ paddlex/modules/anomaly_detection/dataset_checker/__init__.py,sha256=-CgtodAg2-8aqlo2sdJgMaMMB0dn6tHY7oAVP-WQwm4,2877
708
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/__init__.py,sha256=X7tKpOP8SC5V857urIX6C7A3I_OCi7rTgNFiro-wb1U,783
709
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=oHzquwZ-16_A__pnlEqSM-8M_gzBAJB851AiiMrPcAM,3150
710
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/check_dataset.py,sha256=jJgZ7AILeRF9smCYsOgk6JNf2rdaVmcmni2yvPYUOqw,3911
711
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=cwcDBJ_HxEhnG2j85viVBQ240gcNHo8442QE5lJizEE,8312
712
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/split_dataset.py,sha256=k8oWJZs3srA5gZeJpgBFmzj8xVzIAsy6xfgnYRNMsEg,3295
713
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
714
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=3SzTKeTPFgOYKmcNjua6Gi9CsAw9cFMC7IG-r7-uayk,2829
715
+ paddlex/modules/base/__init__.py,sha256=2OR1bRWirjy4Tj6lIexbrX17u8YLGa-Xvw1rakDtBi4,834
716
+ paddlex/modules/base/build_model.py,sha256=jZzZakdeB6NCyZfbprOuP6IOCNO18h_hlWiDvLUmM9w,1217
717
+ paddlex/modules/base/evaluator.py,sha256=O1psRBQaUP1J6spQWcujt-iIbTPwG8jzPMZIcI4Ryvs,5480
718
+ paddlex/modules/base/exportor.py,sha256=kMZaevotxpVTfdhfY5U2V3vGc0pz_wPO-UkmFL3ggsA,4652
719
+ paddlex/modules/base/trainer.py,sha256=WDWgZjCrMThIRGjEJ9jqsoGs673clSVPPHYzdYHtGHg,4961
720
+ paddlex/modules/base/dataset_checker/__init__.py,sha256=HyzVN0-XxQ0Ru3lX_jJvZ3q3DbETXpKo4RoJi45O5KE,682
721
+ paddlex/modules/base/dataset_checker/dataset_checker.py,sha256=8fM1IWvIqHngzhurkx0BTSpb-jeIS6hJ75B5DbHMjg4,5199
722
+ paddlex/modules/base/dataset_checker/utils.py,sha256=q_FWg-awWTaNE_nuD_jQ4mvJPaGGB66pNSen4WcuGEs,3324
723
+ paddlex/modules/base/utils/__init__.py,sha256=fovvnzWDJkOEjCTxy4zn5e1Gf0E65goCyPMahVMjuWY,609
724
+ paddlex/modules/base/utils/cinn_setting.py,sha256=wXw6oSpDBCaPzSqorhjto_ZZxmS1gMdxfksnNOGqUjM,2406
725
+ paddlex/modules/base/utils/coco_eval.py,sha256=ZoTF3hLyDVOw8FqE4d1jSzT7tjpJQkD4R12DXe8TFmA,3001
726
+ paddlex/modules/base/utils/topk_eval.py,sha256=VDmawEu-emOujFrTsGJSA9ob0IbsOgNGMoOMUa9adNo,3610
727
+ paddlex/modules/doc_vlm/__init__.py,sha256=IyrGCdr7Xb2pj6KoZAHELgB3US-IsfRfNnxS7MKHkxE,771
728
+ paddlex/modules/doc_vlm/dataset_checker.py,sha256=bYsGlLKAF_6gLVivuk0UYqJJ9dpG29Hyf31pxUhkxkU,1050
729
+ paddlex/modules/doc_vlm/evaluator.py,sha256=PJviR5RT-ZbTqeyloYDCWgs6rjHuqSZ8tTDYodozZzM,1023
730
+ paddlex/modules/doc_vlm/exportor.py,sha256=2RAPnW-ia3DbxUH9kTPOQjJNInhdQbueWaX3mLqZWcE,1017
731
+ paddlex/modules/doc_vlm/model_list.py,sha256=nqUD5sSowyKmN03tMMv2HzHwjr0siOx9zMNj4C-LzhM,688
732
+ paddlex/modules/doc_vlm/trainer.py,sha256=fd5n7kO1z5s5ExViswE4scB2Dg7Qn39ouOsxnFV_3gM,1343
733
+ paddlex/modules/face_recognition/__init__.py,sha256=cirPmSAP4s3lhIjMYpa_NnRRRRduuvIzT78EIz4bUNI,775
734
+ paddlex/modules/face_recognition/evaluator.py,sha256=q5uMUbgOqEejQLSKgFAdC-UuKJxEUVLLmFFU_jI6otI,1940
735
+ paddlex/modules/face_recognition/exportor.py,sha256=98Sw9yhdDQyokxx4nNua5XDSYbCH2OheI4Bb7WRYLo0,777
736
+ paddlex/modules/face_recognition/model_list.py,sha256=gwqwCZD8mngz4NQcblx8drYcuKsN6T3oSSV5VD1_gHw,654
737
+ paddlex/modules/face_recognition/trainer.py,sha256=F7tmyOUeOUtlW0LHG9iNEaNe5J3aMTyRNbw7GPdLblg,3349
738
+ paddlex/modules/face_recognition/dataset_checker/__init__.py,sha256=-AUsLe9dJ0ndjKDd_rUgv5bcf_VGSBqvV5KVAV8cLyc,2259
739
+ paddlex/modules/face_recognition/dataset_checker/dataset_src/__init__.py,sha256=RNCezGsXclcWQVBjEWX7ezxG1728ZKCmOPi2X3Z7cVI,661
740
+ paddlex/modules/face_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=pOuLRoqiDhbA-WqrZJEVy4zLqgf_FcdIIIoROz3qxAY,6458
741
+ paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
742
+ paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=mdNvYxWo1M17W3eI1sslcuHfbtiTR-MyBue-cqZbU3g,4192
743
+ paddlex/modules/formula_recognition/__init__.py,sha256=pcSvdDzb6aYvYQ6EtD8IeiWcA5B1i6UxvAVd91vwCcA,787
744
+ paddlex/modules/formula_recognition/evaluator.py,sha256=2DKs82uO07DtCZZ6GixBGAa1kSo4nZsgviZ7aKzOBRM,2898
745
+ paddlex/modules/formula_recognition/exportor.py,sha256=WbYjW3kSUHanO8PWEB_pmKHirqXJpe8ouFibXDSsOIw,780
746
+ paddlex/modules/formula_recognition/model_list.py,sha256=bk6ylR5DfXDVnkKQzz1iFTh-EGNaQqazjg4T_nNYQas,791
747
+ paddlex/modules/formula_recognition/trainer.py,sha256=JyVHmGhv3h2A7pT1H90B9zHt73Nu9kswPtQp8VJx2lM,4738
748
+ paddlex/modules/formula_recognition/dataset_checker/__init__.py,sha256=gNsmua_EtPCt45NICbaf1DPguSyL9V54pgIjfEA1tGg,3448
749
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
750
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=8BKm_4GMcdyGg8YUAhXCHIxnq-eGnOCM4Pfo31nDcYs,5401
751
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=XNiFYuX9IQ6j_z87GEUi8f2whRrn4VAqAI8wAODvDsM,3244
752
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=4u1T7bqwfBgCI407A-DuJHkasktZVKodwkPPcS12TDA,3549
753
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
754
+ paddlex/modules/general_recognition/__init__.py,sha256=4h6ETfyLPSjiJ8XzedUYBOqaVCTO-E5_rYjipxH2AXs,779
755
+ paddlex/modules/general_recognition/evaluator.py,sha256=1cbt4szDTN2-LmdR1uGbaVFZ50KguqCNuCZQBpG_DsY,1179
756
+ paddlex/modules/general_recognition/exportor.py,sha256=K3AMTFlH9AvBEtmUmMw6Q2bHp7R7h-CpcQi_xL-ipNQ,793
757
+ paddlex/modules/general_recognition/model_list.py,sha256=U44cV1nO54JzantxiXvIlC6FMayR4RavX1JWlfrtk_A,718
758
+ paddlex/modules/general_recognition/trainer.py,sha256=8QWw8gSA1htePeJbSvWSnZdAG8BIaH-wr8nUTuJf1DY,2315
759
+ paddlex/modules/general_recognition/dataset_checker/__init__.py,sha256=KYtNWnZGbOsPgzIUUPwgZoA2jaUuISB8GSeF19z0LkA,3320
760
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
761
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=oYBvBPR1gHSIxNA8E_nsvDeVFsQlNnFRex7W7X5V_SE,3520
762
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=FBztILCCr7StVx9g244ij8UeIVQ5L3nZ_77JcjGAM-o,3841
763
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=nEax57jJsjsCLUdwGSW6zvLJuHGcuzmdWkJpLFGG-hE,3459
764
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=8UVAXYuYD_90DcNGS4RnHD6VGZpVPJPm7wz1yEu9Gsk,3049
765
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
766
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=HL2H_swoXZMg81Ge9cB1cmAUQq5AYP-C0ooXQuWPhOA,3989
767
+ paddlex/modules/image_classification/__init__.py,sha256=KTGmo4qYKKAWWVqYKxfjzczeJn18jjiS0Zu18_-S7pI,759
768
+ paddlex/modules/image_classification/evaluator.py,sha256=Ap23zMreohRnzAPVdljypm9S-OG-HNIIV3Ad2lMNmoc,1673
769
+ paddlex/modules/image_classification/exportor.py,sha256=qaselLfpPO_LrHxl3598UtkblGonohX-nJLVu6ErGKM,777
770
+ paddlex/modules/image_classification/model_list.py,sha256=S173j3JjJ2CCneMHbMaIzft9q2sMr_e84YVjqO4pFNE,2773
771
+ paddlex/modules/image_classification/trainer.py,sha256=PocPdlfXcZtcN0mIIKnyVnqzLtQBFpe2_2EvwoJqMHo,3470
772
+ paddlex/modules/image_classification/dataset_checker/__init__.py,sha256=unY-5uqZd7UNnxHbdHc21PtTXD6_B2DHub7upl2678U,3176
773
+ paddlex/modules/image_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
774
+ paddlex/modules/image_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=xyNtu4GGhMNPpVFLVOknpLJhh5yAp75M0u0Rm4SPeJg,3461
775
+ paddlex/modules/image_classification/dataset_checker/dataset_src/check_dataset.py,sha256=W7NLRMDWjucKBJU7x9NsZ66YGJR4OOR9OM-BCq4VYpo,5036
776
+ paddlex/modules/image_classification/dataset_checker/dataset_src/convert_dataset.py,sha256=x26AOotf6Fj4iol8aUgIwpOyBhoT9b0OiKwnMTlkIrw,1959
777
+ paddlex/modules/image_classification/dataset_checker/dataset_src/split_dataset.py,sha256=l1JLNa86-RxX3Ugfk3_Xx6Cc5p4zShaz0jP7jDoRMRg,2789
778
+ paddlex/modules/image_classification/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
779
+ paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualizer.py,sha256=mdNvYxWo1M17W3eI1sslcuHfbtiTR-MyBue-cqZbU3g,4192
780
+ paddlex/modules/image_unwarping/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
781
+ paddlex/modules/image_unwarping/model_list.py,sha256=83RWeL82dZfj1nfgR6veqxHerNMurXi7KUF_GSX59Ik,636
782
+ paddlex/modules/instance_segmentation/__init__.py,sha256=jc6nMbJQJnKEkbV2B_D8iNBhVjZ7a23vPuI3q8NgOjk,791
783
+ paddlex/modules/instance_segmentation/evaluator.py,sha256=chacmiESmRcBKp9dZJCTBuQQWgm2entQXoEObCKd9pM,1175
784
+ paddlex/modules/instance_segmentation/exportor.py,sha256=khMYIu1X00n9jkoHDiTuU3CHa8If0Qe3NZ0iRD6og4k,786
785
+ paddlex/modules/instance_segmentation/model_list.py,sha256=ShpbY2snmkpZl1mbkjP6G-ltNlzDMBgbp4dzaL8BmwM,1076
786
+ paddlex/modules/instance_segmentation/trainer.py,sha256=drrvAbDw1U71DxXjzk2OO06svsoE-YIR42GsJ9U1e-A,1072
787
+ paddlex/modules/instance_segmentation/dataset_checker/__init__.py,sha256=NMByjD0tlhOhz7WTs6ACTcZgjy3n_akbdmto7rKa5fM,3277
788
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
789
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/analyse_dataset.py,sha256=Fxv4JU3P4YsTjQfc71SdA0M_0Dggb53ItZZZIvzAVaU,3098
790
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/check_dataset.py,sha256=35uxzst8XLPfL3z-rrM7iBSRjp_V_3jjfn3vnsEEAVE,3722
791
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/convert_dataset.py,sha256=FPlRhU77rqEPHws96G3jCp-Q9TBv2reo9WSauMOo9RE,8265
792
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/split_dataset.py,sha256=ugPOL-h-FUyw_YGdoiXaccRS82RPMHUkCkR2WpSKMkk,4409
793
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
794
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py,sha256=QMkty3QWgHaVI27Bwh8uKerMjZbuxX0tLVVfXVOUbGQ,6606
795
+ paddlex/modules/keypoint_detection/__init__.py,sha256=xU6gi2URJH9mBXEXdPIZREwKMCzY-0rT6Cn_3DLNpbM,779
796
+ paddlex/modules/keypoint_detection/evaluator.py,sha256=vBqBqM7gPP7_jiHJbSX4YonN1GKfVYxxma5O8oDkO3g,1465
797
+ paddlex/modules/keypoint_detection/exportor.py,sha256=cMM1kFCXz9lBTI2U0uC5FkWRjiQqymhvWHM7xd0KrtM,778
798
+ paddlex/modules/keypoint_detection/model_list.py,sha256=aUAx8RpIz-eRgoP8GulC_G3LQjcezCecm1e6fDSJffg,666
799
+ paddlex/modules/keypoint_detection/trainer.py,sha256=L6SuwrJuBarVYd-iz3agWs2ajg0pg0QgBnj2F47X_Js,1274
800
+ paddlex/modules/keypoint_detection/dataset_checker/__init__.py,sha256=0wXAtxVkimgIRVFRREICbx3aWr3hz4HAse_-i0OsSIA,1850
801
+ paddlex/modules/keypoint_detection/dataset_checker/dataset_src/__init__.py,sha256=KPhp6nt_rDlGXYuCcPuNA5U8fEe2znozo35FsyoDK30,643
802
+ paddlex/modules/keypoint_detection/dataset_checker/dataset_src/check_dataset.py,sha256=iyTpwvN7b2MJmdDwGQTFfpUQluCkdLkeqgkViWd2UdQ,3505
803
+ paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
804
+ paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=o78fUZyezA14KDKo3epBiKQ-Kaa6QIvl0S9RWx4ci04,3962
805
+ paddlex/modules/m_3d_bev_detection/__init__.py,sha256=QZcxqb_7K8nNIP9ymoOkZejjbOHhOQk-KShmEn-j8YE,783
806
+ paddlex/modules/m_3d_bev_detection/evaluator.py,sha256=t-u3ugaFJZc3iYHDfBvfHcQ_PfrKKBliiac2QP4_jI0,1606
807
+ paddlex/modules/m_3d_bev_detection/exportor.py,sha256=JUqaYfXK5OFbiqHAwHLco6yQRNQo2ZgO2FC5Svb56wA,779
808
+ paddlex/modules/m_3d_bev_detection/model_list.py,sha256=sJ-OTE82aymYKxt1CeFAcXO_pcjr0rv755cJNlbE_wA,641
809
+ paddlex/modules/m_3d_bev_detection/trainer.py,sha256=finGEesecfSBqwbJLqa-uEbHIr7Q87OTn5QI4bwz2J0,2585
810
+ paddlex/modules/m_3d_bev_detection/dataset_checker/__init__.py,sha256=vqWBaKFjOdKNp-P-ICTj4pLISGcnH_rfvLt4p3QPBaY,2936
811
+ paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/__init__.py,sha256=sJLqyXL-owy_gbtpQjEA2kceE6neSMJ0AIOylxApsLw,686
812
+ paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=VTwHbnoMqpWrRFJVqjWzz5KI9BkKYpHML3eBiLKjuzc,3720
813
+ paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/check_dataset.py,sha256=4GWk6wPfjQAlSyBGVlmAulzoakNLJBQ7VNC_OkCUgS4,3149
814
+ paddlex/modules/multilabel_classification/__init__.py,sha256=5ohdWA7uRdEjOF96iTBdQ66HOLrx_Kb9IE8gYlC_c5o,767
815
+ paddlex/modules/multilabel_classification/evaluator.py,sha256=w85sLQ-3fshDrhFu1giw-2SBQpxzahNkbjYgF7xpXsc,1677
816
+ paddlex/modules/multilabel_classification/exportor.py,sha256=UgjzNwodoAR_OTI7fldMSwGnkonQmhAz817wNBC5Agk,779
817
+ paddlex/modules/multilabel_classification/model_list.py,sha256=ADgstt_DXLCWO8jtc4R94wkyeHi5gQVvVGAdV_7EXF4,855
818
+ paddlex/modules/multilabel_classification/trainer.py,sha256=HrXzTJwlFhRi1CV9DMCFJI6SZS6c1_tm9n0OxU5rQpk,3553
819
+ paddlex/modules/multilabel_classification/dataset_checker/__init__.py,sha256=MMhBXbNa-oU-tnnvFJrn9cXUXBjVUwo_uvHKxICXrcs,3254
820
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
821
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=Pro_Hpd4U-nHyzmZktwr4Wq3fwVNHcEET5GgYVZ6Pdk,3560
822
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/check_dataset.py,sha256=eRYbSsYYB7ngLkIVCORmrQqG5zhDxej2UJ8Ao40s-MY,5071
823
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/convert_dataset.py,sha256=ZXMxhi3iwx_e9xKdhgULP_qmrRyTP6vwlU4cNVPO6AQ,4578
824
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/split_dataset.py,sha256=l1JLNa86-RxX3Ugfk3_Xx6Cc5p4zShaz0jP7jDoRMRg,2789
825
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
826
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/visualizer.py,sha256=oIetCED-GiTQkhCphKAMqw4Mgdwze6k2j48YSfWzBtI,3840
827
+ paddlex/modules/multilingual_speech_recognition/__init__.py,sha256=2oF6pQLy2IPeOLGIlrXejD3o2NSd3fUvTAakME7QMME,775
828
+ paddlex/modules/multilingual_speech_recognition/dataset_checker.py,sha256=6dEDFf6HF1lm2i-R3fAfkHRBaf0S10BaxBsvZ0oMsNU,991
829
+ paddlex/modules/multilingual_speech_recognition/evaluator.py,sha256=-DDE0S9k1Ct-fs3Z4M1ogpN1DLWOdAv6lT9rIxHwei4,973
830
+ paddlex/modules/multilingual_speech_recognition/exportor.py,sha256=aXVrdk-zS9EZdPd32-CivlpzRELQ-i7104GKdpUKXJ8,967
831
+ paddlex/modules/multilingual_speech_recognition/model_list.py,sha256=R6faqu1SIjQAjrbam_W3EcPl465qlZTqg1HuwNlyzuA,728
832
+ paddlex/modules/multilingual_speech_recognition/trainer.py,sha256=Zv-5LbQEspcjnmtBJzRMtL2-EuOzAjZKmk9J5638dF8,1405
833
+ paddlex/modules/object_detection/__init__.py,sha256=eaYQ78PX7yX06YGjowiYNOQh-yO5GTVxThc7ys3iD2E,760
834
+ paddlex/modules/object_detection/evaluator.py,sha256=0sisy-MEpvjVO6APV2Q_hDMJGa1ASpTKsUxE8zTsOto,1917
835
+ paddlex/modules/object_detection/exportor.py,sha256=nizJg--qIMXywaDNNcgVbFDqZpQ-naIF8V8uFjC4Kx8,773
836
+ paddlex/modules/object_detection/model_list.py,sha256=_jCPiQiQy99msVMkUQXjck-ucFdSzsP9dfIq-2UoVkc,2379
837
+ paddlex/modules/object_detection/trainer.py,sha256=7c_bx20pK-akmuwTgrfIeq1UlSRHM-CkgbzpRiKL89M,3870
838
+ paddlex/modules/object_detection/dataset_checker/__init__.py,sha256=Dq-3Qp70x7D5aymh0wx32ygaqdrLi7zX92nPNPPs7DE,3251
839
+ paddlex/modules/object_detection/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
840
+ paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=Fxv4JU3P4YsTjQfc71SdA0M_0Dggb53ItZZZIvzAVaU,3098
841
+ paddlex/modules/object_detection/dataset_checker/dataset_src/check_dataset.py,sha256=fsWdFyaAQJJ21-9GFUYQoOrx6cutLk2B4AHhPMiN9hE,3497
842
+ paddlex/modules/object_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=7uwlx1gzzXCAiSAYNSv0upyuLoiu5n2Drrt-HSk-1xo,15061
843
+ paddlex/modules/object_detection/dataset_checker/dataset_src/split_dataset.py,sha256=gDmr5gQLsNbEvAEiAnXI379kYLRnNb-Z2YHiEXltu5U,4456
844
+ paddlex/modules/object_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
845
+ paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=cgtHbrXRxjPE5X82sAm7Jtf-f6XGo-rqm4hMR6hBjrg,5552
846
+ paddlex/modules/open_vocabulary_detection/__init__.py,sha256=J96y4YydfxzaoyRgrE7-OgztkzTZZTudvpt5mGTNTUI,767
847
+ paddlex/modules/open_vocabulary_detection/dataset_checker.py,sha256=45TNPA-OyrQmQWMBWADLFTeLrG9py0wKlluqqMKonqE,1051
848
+ paddlex/modules/open_vocabulary_detection/evaluator.py,sha256=oTfoDknLong0Z6vxMPXaBppshTSi6MS__GYzo4iQkJA,1024
849
+ paddlex/modules/open_vocabulary_detection/exportor.py,sha256=jDwZAUc1y1Mf6WAe8wzTGA4WNmz4qFsQLSN2uYmPkg8,1018
850
+ paddlex/modules/open_vocabulary_detection/model_list.py,sha256=d9I0vShB2dTv6yNaS3Y-d6y_duhaalNbXQOSMeKUhHQ,658
851
+ paddlex/modules/open_vocabulary_detection/trainer.py,sha256=QKZRNdwAHIjVCEGYRFtfpQ0KSjViMEqn-tOMPgoW-dk,1456
852
+ paddlex/modules/open_vocabulary_segmentation/__init__.py,sha256=FKdtyXhJkIfEidSoiPD1mU5QYlJ34hLfZueLGZcWnKM,767
853
+ paddlex/modules/open_vocabulary_segmentation/dataset_checker.py,sha256=t1Z0MtMl8MHlSojRTzmqOHJPXwl4ipvtZIcO_nN9vGk,1057
854
+ paddlex/modules/open_vocabulary_segmentation/evaluator.py,sha256=N-EgVTA0-5WRm6dXSsJ5yIbVrOsdWlyRHKif-O15A-U,1030
855
+ paddlex/modules/open_vocabulary_segmentation/exportor.py,sha256=RLfFEuJZVapYyzOzUCw9X4c3GH2-IKJMrLvJsj6xhWA,1024
856
+ paddlex/modules/open_vocabulary_segmentation/model_list.py,sha256=7Eogc7a9Qk_NCpWTT0MActRhbCY3MSWxTAfGsJkSRbs,660
857
+ paddlex/modules/open_vocabulary_segmentation/trainer.py,sha256=hffDadHzLr64PEIR2ml88rSpkjEWhkw_WNc7AcsprIg,1462
858
+ paddlex/modules/semantic_segmentation/__init__.py,sha256=21DFXZfdTj3A7FA4hEJz-Zs3IfA9N2j7FyUaZ6BSYEE,759
859
+ paddlex/modules/semantic_segmentation/evaluator.py,sha256=7G-BvANJNaYNPIKiC0m80mmIJ-mHU7FSRYiNmtmZIPo,1754
860
+ paddlex/modules/semantic_segmentation/exportor.py,sha256=i8AugqgI8ISUe9sGa34qS2M70Nr0f4SSvD3vVFpqxDM,1087
861
+ paddlex/modules/semantic_segmentation/model_list.py,sha256=gy8YzruYBiUfwkipKxcsdlEoKuNNtJXmm_Fgszwcbag,1065
862
+ paddlex/modules/semantic_segmentation/trainer.py,sha256=CDQ1RV7iBRxLu2yb4mPTTI9KMbWMJibGkQa3KIPR4hE,2946
863
+ paddlex/modules/semantic_segmentation/dataset_checker/__init__.py,sha256=5holJZ_yllwO7k5zSePo2pQCtQOPE1XYZFYBEvjSZWs,3334
864
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/__init__.py,sha256=X7tKpOP8SC5V857urIX6C7A3I_OCi7rTgNFiro-wb1U,783
865
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/analyse_dataset.py,sha256=r4j83eZF78qvV2-CToVV5rLeto4g2Ld2TuUx9LrjhII,2881
866
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/check_dataset.py,sha256=Svl_gmhOr5tnOwPmdEfer8zUoNgc3E8hUfThDSrCSas,3492
867
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/convert_dataset.py,sha256=5TlqhV4k95tgDO_yrhLp4S4ChUg68JBtnoCk0S6RPdY,6291
868
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/split_dataset.py,sha256=k8oWJZs3srA5gZeJpgBFmzj8xVzIAsy6xfgnYRNMsEg,3295
869
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
870
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/visualizer.py,sha256=KEeBlMPY0uJxw_iubH8swH1Cxuv6cGgCVdgNZU1unyY,2765
871
+ paddlex/modules/table_recognition/__init__.py,sha256=2azLY8sZyVujg5juoi1XvhOeNc5WuoDUF5qkItHkV2g,779
872
+ paddlex/modules/table_recognition/evaluator.py,sha256=gRZK7UbGBN2P7pGQSv4BPFux51nG_h3BTq5WYsZmQek,1408
873
+ paddlex/modules/table_recognition/exportor.py,sha256=bOrkJLJbHwZ8291rcL6tWHaHh2QmlFhXdn2vmS_Brjc,779
874
+ paddlex/modules/table_recognition/model_list.py,sha256=JzrsHva1j575QhjSy6Y0FL2vbz1t2ZYhc-iVuNaPrMk,702
875
+ paddlex/modules/table_recognition/trainer.py,sha256=b4CfGjlnuAp--_19dWN-6AliKU87anpJnltnOgO-ekE,2686
876
+ paddlex/modules/table_recognition/dataset_checker/__init__.py,sha256=-XEGxOCArrJek4dVVr95jckexuvJdOgbUzlsr2gcG94,2908
877
+ paddlex/modules/table_recognition/dataset_checker/dataset_src/__init__.py,sha256=96FTutWNDvku-5ZxTw8eT-gkZuMEMbOX0z3ebaZ-sIc,727
878
+ paddlex/modules/table_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=0gwM62ljT-_6GJ9DRJRTXttODBTIgRGaEVoAKg3IXKI,1912
879
+ paddlex/modules/table_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=NE-hPQkMX5O6-tuBfhI3dn0oXAhO2kgoYGcgT9DX9Cw,3451
880
+ paddlex/modules/table_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
881
+ paddlex/modules/text_detection/__init__.py,sha256=qHvtAWmoQXhgSRNti5y4EjHCyOgkXILRAj_pVqU0lR8,775
882
+ paddlex/modules/text_detection/evaluator.py,sha256=WUj7KSgcQ1GkeUGDgHck-elUFFDoJxhd8ZQMM4k4r5k,1375
883
+ paddlex/modules/text_detection/exportor.py,sha256=fkDS2RGU27lK368Wc-O-sN8YhKGtu23S-pd93i6ZYfg,775
884
+ paddlex/modules/text_detection/model_list.py,sha256=d7x4jcqzzRm15nkA7xfH9CiZGgNAZl0mi_o0yjHfT68,922
885
+ paddlex/modules/text_detection/trainer.py,sha256=63YE5RGSRKi8jtvbHsSRfu7qEZ-Ipadk_kXNZOhqBh0,2653
886
+ paddlex/modules/text_detection/dataset_checker/__init__.py,sha256=I7HcoFCgml8U4uO0uoIWKKJVencObFWJ_A6qD7AxR50,3159
887
+ paddlex/modules/text_detection/dataset_checker/dataset_src/__init__.py,sha256=96FTutWNDvku-5ZxTw8eT-gkZuMEMbOX0z3ebaZ-sIc,727
888
+ paddlex/modules/text_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=u8S_KrYIDLFz5pgi7Y3Wqn_-1DeSrdqrbrbMAFF-7e8,8132
889
+ paddlex/modules/text_detection/dataset_checker/dataset_src/check_dataset.py,sha256=QTSfBgHCHyC50vmQKQEwwcRHU7z2meKCh_0eGN9r9as,4309
890
+ paddlex/modules/text_detection/dataset_checker/dataset_src/split_dataset.py,sha256=Uhj46-7BsOV3r-6jXmZoMiH_JwmqMSCPaB1KtFjjjqw,4769
891
+ paddlex/modules/text_recognition/__init__.py,sha256=NZSK1WT-lLtT407BGiUIMHLoNmTRwBxrKkW69KsiHgw,775
892
+ paddlex/modules/text_recognition/evaluator.py,sha256=xlreNiqba9yTzz7zjvwdShTchr-idgh3W1gyvhRkMWE,2288
893
+ paddlex/modules/text_recognition/exportor.py,sha256=FO-0PMhoO5ZqLjjYWG2XywrxdW98vnDq1r5TMyXOe8g,777
894
+ paddlex/modules/text_recognition/model_list.py,sha256=KD_jdQ5T5DAR1yUXBVZ77oIKbbJ3HwIVtw0dJziGi7Q,1229
895
+ paddlex/modules/text_recognition/trainer.py,sha256=if77U014_hqvbK7VrzlP5LA3WZ0M3nuscpHlqYheQtc,4091
896
+ paddlex/modules/text_recognition/dataset_checker/__init__.py,sha256=Psu2rjBm3EYp57pli6-CB-2QZQwMnU5fhZ-muls__iE,3777
897
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
898
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=pZR48Zq3Q5P2V3ImdyxzDUy5P7hBxsG1-JrjJNecJXA,5693
899
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=ZMqG1LkeMnzDU_oSmG515ydBZqbS8rfdGEU9dh-Eq9k,4577
900
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=MdXpA2tHueA_w2ZQ9my8x4xuI-NdOQdM-kKSzjYMmoA,3573
901
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
902
+ paddlex/modules/ts_anomaly_detection/__init__.py,sha256=L8Nc-uH2IG0EYEW5tPedTRbXzbcyrAGxZtI4FmB27rM,764
903
+ paddlex/modules/ts_anomaly_detection/evaluator.py,sha256=ymxXeKyDbQhqes8o7b7CkvWd8lfi0KopP02M4I8D9vI,2283
904
+ paddlex/modules/ts_anomaly_detection/exportor.py,sha256=MC8kOv4Nr8FthT2iUkjTBRY_JtA3bBPTv9nvO_2cQZY,1422
905
+ paddlex/modules/ts_anomaly_detection/model_list.py,sha256=3mUjWIqpxNr_-BgD_bKAwFlwVbeKJ6o9hI0IP57Kd8Y,726
906
+ paddlex/modules/ts_anomaly_detection/trainer.py,sha256=p9auPFk6fztMv5J-D6ZlaOD9CiCh6R9saYgNEcLrFXo,4826
907
+ paddlex/modules/ts_anomaly_detection/dataset_checker/__init__.py,sha256=EArJ1yFk4vStapWb_T7iz97KUzIQuOhks0HSxRNIy7I,3292
908
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
909
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=tgNHULPQxvOBM6ke1npcwHBiZd83pnGKYelTHUhKhPI,717
910
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/check_dataset.py,sha256=0ga6CkFwuJLOkYidngLXlhmfVcL99KOIvrC7AwwBCvk,2302
911
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=N0Ju-yqeuGYfs80t39zcoUK-coNvd6Ow9kzJfzAddt0,2666
912
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/split_dataset.py,sha256=JLmONID9VxSMojKzLDOwsCCHxqTQ4Hl1rcbgXmUWdb4,2133
913
+ paddlex/modules/ts_classification/__init__.py,sha256=avWAVCpd_KCqW9mEKjzl8ns81gaduWjLgXZBamnbaMo,768
914
+ paddlex/modules/ts_classification/evaluator.py,sha256=7_OjW2oFU5_GkxXl5cao-yXO9YmbSwZ586fNy3NVl7s,2213
915
+ paddlex/modules/ts_classification/exportor.py,sha256=r_udQangw_nFfSsOroz70QTXjZW8e89hk_lbMj-Ng8o,1423
916
+ paddlex/modules/ts_classification/model_list.py,sha256=ncShFgm5mX8zGXoV1Mr9ZVtYaQxdmHC-7mqheM1lPDQ,644
917
+ paddlex/modules/ts_classification/trainer.py,sha256=BqF9VQFw8H8BYwWkyNQxa4MaHJZJKK12M5IAwM1qZI8,4588
918
+ paddlex/modules/ts_classification/dataset_checker/__init__.py,sha256=b0Vbe6JujEY985HO2si44FPVsN_2NhRSRk5ID3jfpPo,3291
919
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
920
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=fY1AbJ3WKUF8PvCvfkw7HmrCVhyfwW5rXTsEYH0MGHU,2929
921
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/check_dataset.py,sha256=0ga6CkFwuJLOkYidngLXlhmfVcL99KOIvrC7AwwBCvk,2302
922
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/convert_dataset.py,sha256=8lV9_e4Vvw2ijBlEm5s80Bm_UFPFlVyxpu19vjRlWqg,2689
923
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/split_dataset.py,sha256=QlorUATL9UYybLpohJeD_1qXEDTVf89j7Ugbi0AMoxk,3314
924
+ paddlex/modules/ts_forecast/__init__.py,sha256=IdQqvY2rYepVut_DMPUlUQizyxGeXE1OS85190g4IKc,764
925
+ paddlex/modules/ts_forecast/evaluator.py,sha256=NAhz3JAYOCialMilmEVqqJWDtMvVSdJPH44cx-KLzfM,2203
926
+ paddlex/modules/ts_forecast/exportor.py,sha256=vtIvOfugI0WsIahZyrJ9DmJ7TENSgSUKSfceS2WJa8M,1422
927
+ paddlex/modules/ts_forecast/model_list.py,sha256=l92EzjDRry06YeO4eH-8aBGBSsrHsksDbuZsu1XbTw8,734
928
+ paddlex/modules/ts_forecast/trainer.py,sha256=UPAdjUQwesynx34LW51cGIBzPIKeQXwqK3sp5beSvzk,4630
929
+ paddlex/modules/ts_forecast/dataset_checker/__init__.py,sha256=_ERBjyPz43Txwra7ZF8BEUL_NOtGZIqhE6zPLiOMUOE,3281
930
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
931
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/analyse_dataset.py,sha256=tgNHULPQxvOBM6ke1npcwHBiZd83pnGKYelTHUhKhPI,717
932
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/check_dataset.py,sha256=0ga6CkFwuJLOkYidngLXlhmfVcL99KOIvrC7AwwBCvk,2302
933
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/convert_dataset.py,sha256=kAnqThstkcn0Wn_4xvGkFH-JGufRTKrTcJmd3FFG6H8,2688
934
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/split_dataset.py,sha256=JLmONID9VxSMojKzLDOwsCCHxqTQ4Hl1rcbgXmUWdb4,2133
935
+ paddlex/modules/video_classification/__init__.py,sha256=bjDrjcHU2isDJUDi4GKLXFp0aP9HQg1czW4h6RlWmvg,779
936
+ paddlex/modules/video_classification/evaluator.py,sha256=vKP0oAVekWNIP7j0XKbx_nbzCPmGPPrUYkp4yQIusIQ,1644
937
+ paddlex/modules/video_classification/exportor.py,sha256=V8Lgt3JPmSOsGfouN2RlthyFzYyIBXvwWOeV9yQ4hIE,782
938
+ paddlex/modules/video_classification/model_list.py,sha256=oc4cq9Hweb-3lRw--NJMuIvO_D9CbTTv1RHTRFjhzYs,738
939
+ paddlex/modules/video_classification/trainer.py,sha256=Ci0ciVIhJHFEBVCdHfFZcRDHkvj4NRxS8ZSpuMI5q88,3686
940
+ paddlex/modules/video_classification/dataset_checker/__init__.py,sha256=dCBRqSn53BtjgKBkR-1i4LTzHInPIHl_kKAAP3qtXgQ,2842
941
+ paddlex/modules/video_classification/dataset_checker/dataset_src/__init__.py,sha256=96FTutWNDvku-5ZxTw8eT-gkZuMEMbOX0z3ebaZ-sIc,727
942
+ paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=Kw9jBEn6510NsG2FOYM1DqXJntnfBKO17o67hD83194,3462
943
+ paddlex/modules/video_classification/dataset_checker/dataset_src/check_dataset.py,sha256=kRsO7itR0UmTfDAy08nCI_t0xoUc_T_8QoDO4fPBiD8,4491
944
+ paddlex/modules/video_classification/dataset_checker/dataset_src/split_dataset.py,sha256=a7xE1gC5Lwzmxa_8N64UabOKl18FiRyL5hNE8uwUCCI,2886
945
+ paddlex/modules/video_detection/__init__.py,sha256=BQqsxvL85NaOClwvOIq_681btrsnkx9MeqZogsSjci0,779
946
+ paddlex/modules/video_detection/evaluator.py,sha256=75EFN_MYprm_-9urSMnr73Xs_tCUL2zqcV3Brz1IClI,1504
947
+ paddlex/modules/video_detection/exportor.py,sha256=cZaTEwyScv_FP0wjEKcnsBdtcoVSrVRHff-wk9F6MU0,782
948
+ paddlex/modules/video_detection/model_list.py,sha256=pRzjeiRpi9LcBqUZ0B54UOU3FpZAxTNSkWwdlhOLlEg,628
949
+ paddlex/modules/video_detection/trainer.py,sha256=ORwQauyZnp0mBTBMMMthcDlD9HFUS_yzYkUa9qL68wc,3382
950
+ paddlex/modules/video_detection/dataset_checker/__init__.py,sha256=c5jNtdwElm97vpXNMMqAQTXyZh80kkOFg4PQgf1WOLk,2567
951
+ paddlex/modules/video_detection/dataset_checker/dataset_src/__init__.py,sha256=sJLqyXL-owy_gbtpQjEA2kceE6neSMJ0AIOylxApsLw,686
952
+ paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=PIeAD38D_tgDSY12Q574iLdl6cBI_qhLPhvU-rUdqD8,3776
953
+ paddlex/modules/video_detection/dataset_checker/dataset_src/check_dataset.py,sha256=_rZDkMwn73J2oxzdWkh_cj6MUrWo7ziNYL49DdC5hW4,5316
954
+ paddlex/ops/__init__.py,sha256=NmH2yABtmleYUAkzI4-d3i5MKemyF0mIU7QW-MxEyvU,4607
955
+ paddlex/ops/setup.py,sha256=k7bXqdmK02lHKgq6c8dtMw8copz53lHSh7waH-Hyvew,1336
956
+ paddlex/ops/iou3d_nms/iou3d_cpu.cpp,sha256=AUhprzEQqdSqFWl5fhJ1jGKjE8WPh6RQksXzFDHIU7g,8415
957
+ paddlex/ops/iou3d_nms/iou3d_cpu.h,sha256=n47pTnTFyeb_A4gZaACHTkkaM4zcwvxJhvv1Vd6bJ-U,912
958
+ paddlex/ops/iou3d_nms/iou3d_nms.cpp,sha256=TMQlVxGRMaGRDaIMIHieAvCOonjMLN1mYvVc_kx8pm4,7631
959
+ paddlex/ops/iou3d_nms/iou3d_nms.h,sha256=khxhiebRzjWY3YQ8ORW0A9oCArTQyiA2sjDc73EgLkA,1317
960
+ paddlex/ops/iou3d_nms/iou3d_nms_api.cpp,sha256=mYkqYRO3giMTzR-kmpf2hU3KYPtD2POR-O542xLJlEg,3902
961
+ paddlex/ops/iou3d_nms/iou3d_nms_kernel.cu,sha256=YDsiFiYgkQMjoBsQPaNO2Hvdk-m7p8pbVHuCB1LYIXM,17401
962
+ paddlex/ops/voxel/voxelize_op.cc,sha256=bal88fmCVVPljBrhJ1RYc9aeht8KCH2awg3qwW9jRPA,7889
963
+ paddlex/ops/voxel/voxelize_op.cu,sha256=EC5HZhW65Va7g8LDui36PCk8xm8YTjBUfmd4-lLRcEQ,14158
964
+ paddlex/repo_apis/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
965
+ paddlex/repo_apis/Paddle3D_api/__init__.py,sha256=CNgSV4Wm-BEMayCnlyFCkqwfbHVqQee8sRQ1lyXqtcI,737
966
+ paddlex/repo_apis/Paddle3D_api/pp3d_config.py,sha256=H4XXkN4Rl12ehrazfZl8HW_SdPz1JazgYbXnKPa2UbI,5179
967
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/__init__.py,sha256=GjNtmTbKpQ1I1QgLMjX7wIJxRDoBnoccsx6pydhbRg4,704
968
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/config.py,sha256=JaG5K1UAifGsUJP9pJjVzAKLhWUyM4zJtd70ODI3esE,4715
969
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/model.py,sha256=UnXJurDNLIHtNduO1IGfGAumy4YKidAC19mr2ix7Qho,8774
970
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/register.py,sha256=qm1l6LHrtYTg6wpZc8Zl32C6n1qUxCjAoyhHna8lyDY,1871
971
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/runner.py,sha256=rQja2WOxAirwdzh0fmLfKPlu5ngB7fjSrV7IYCiOCdY,3536
972
+ paddlex/repo_apis/PaddleClas_api/__init__.py,sha256=X0TVcUpJlq_AL4hfDumtv_uQNKM74Xt_9UOWetyenF8,721
973
+ paddlex/repo_apis/PaddleClas_api/cls/__init__.py,sha256=eIdSpXUxY9lbft8RKclk376Sm06SL2wBBHhTtdmICHs,722
974
+ paddlex/repo_apis/PaddleClas_api/cls/config.py,sha256=D9SMOEq-UH57lD0Ru3Uc0RNmm7Xa9JAmJ13HB59AFoo,20376
975
+ paddlex/repo_apis/PaddleClas_api/cls/model.py,sha256=6t2pNFzAW4_a7ASKNPdqUwf-ssXrbXFjB_pVDOjqm3c,14450
976
+ paddlex/repo_apis/PaddleClas_api/cls/register.py,sha256=yrSuh3N_aNYxve1xopeU-lagqej9uC1Tu2FQb36X-8Q,26355
977
+ paddlex/repo_apis/PaddleClas_api/cls/runner.py,sha256=ZNEZ51pzte3GCLL5oHKtFEaov-TwecuiWJmJ8doUwbI,7400
978
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/__init__.py,sha256=nn1qwVV6ccGkPWWf6Xi5yQWx3hMYyYIqRzmgTK2lWJM,702
979
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/config.py,sha256=snoeE_Xr7Dg41fq7D_1qqsrLEqE05XjB5Hd5_NzF1bI,5390
980
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/model.py,sha256=XP-dlNuGTwI3TsNt26iRHaQLRMUxWxB-IKXrjmavGd0,705
981
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/register.py,sha256=FyDI5PlYdMONRg0MeNphzjixuFX5fvMhAtG2jAEw3_Y,2293
982
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/runner.py,sha256=OpjNxst3f9Q0gYVyN4Qmd-1L01P_50uOiqCKTEnN4Es,1619
983
+ paddlex/repo_apis/PaddleDetection_api/__init__.py,sha256=nz0LmGflO85zJ38TadpEbwJEhvjlhbiQ3N0HZJph018,737
984
+ paddlex/repo_apis/PaddleDetection_api/config_helper.py,sha256=PaEDOES8tJNoSFUmHpk5OaTB0ab-lErGE9TbsWKUa48,9359
985
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/__init__.py,sha256=pkhp0_V6Xj03aBWPzfQFPdKqcjo03FR9_YP5cBccksE,708
986
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/config.py,sha256=X0B7XThAs4vGBq2TQroxXUwqUWYTIymsOTAi_3uF3Tk,15348
987
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/model.py,sha256=WJ4fkOn5qgqZWQu-jUOmqa3u-BhCJzBj26cPJxS5qJE,16349
988
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/register.py,sha256=05aUjcij59gi29JYNmbo3sHyhZjnjA6klR8KqrHT0Dw,8560
989
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/runner.py,sha256=eRGSPSu9_J8vrOoVkRM4-CYQ7-_qZC0msS33SBWEZNg,7559
990
+ paddlex/repo_apis/PaddleDetection_api/object_det/__init__.py,sha256=xMiqXOspalcXIFt1aVVWXt6xJJEmEMkiECvQ8yteDVA,745
991
+ paddlex/repo_apis/PaddleDetection_api/object_det/config.py,sha256=YLSKAUJODaTNB7DIgQP6TPsP0HwNBOFrp2NGAl-KksY,18598
992
+ paddlex/repo_apis/PaddleDetection_api/object_det/model.py,sha256=MDY31r7lBmctFeSDE3eyEQNnEYyRISiOGeB2v5x1_LU,17601
993
+ paddlex/repo_apis/PaddleDetection_api/object_det/official_categories.py,sha256=3GjBjO2R5CA4ni9Mz7R2u0UjI_wFvtPg3UPYCSfhk_M,9132
994
+ paddlex/repo_apis/PaddleDetection_api/object_det/register.py,sha256=9EgLJKqzJJOo1YE4Oclnl5b4a-R-69_aR4YjTD-vFQI,35351
995
+ paddlex/repo_apis/PaddleDetection_api/object_det/runner.py,sha256=8VGt2EG40PTatYLrKa4KJvpJSTPfpJ01JMItVOpxQCI,7543
996
+ paddlex/repo_apis/PaddleNLP_api/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
997
+ paddlex/repo_apis/PaddleOCR_api/__init__.py,sha256=qzAJeQjKkW4ErZcQKYyld04eHDvMOntuK90y_2Kmsh0,783
998
+ paddlex/repo_apis/PaddleOCR_api/config_utils.py,sha256=fGh_tFyUH2hsdmJxNekBP0GkZO63jlePjOMLMpAlD-s,1982
999
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1000
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/config.py,sha256=CmxVY-nhO58f9V-xfIvMD_B8C0GUouQgDOpblp9-P2k,19176
1001
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/model.py,sha256=JtcvEezQnGdZh5efJg2aTBp_4HXqbKWOFhZyeTzCC4Q,14220
1002
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/register.py,sha256=3ukG8xGVf-rSkNtWx3sYQPYO-5A49iSjH21VUl5iXUs,3021
1003
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/runner.py,sha256=yY4gyS1jqYpWVQSVuZ93TOd5bPkyoKw_rQaItMAUlvw,8303
1004
+ paddlex/repo_apis/PaddleOCR_api/table_rec/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1005
+ paddlex/repo_apis/PaddleOCR_api/table_rec/config.py,sha256=_P3wEEBtoURUqhSSqCLy_yJz85YiTSuEvkW4btmJd0E,2335
1006
+ paddlex/repo_apis/PaddleOCR_api/table_rec/model.py,sha256=iuz4-Bz4PxggrjE_dY2iqZAXIwCQYs4WILVYQrSeerE,4423
1007
+ paddlex/repo_apis/PaddleOCR_api/table_rec/register.py,sha256=hk4TlGOUDM9NjN-F4S2_Yjgbp9Ei3NsgP6KXI9R-wXY,2139
1008
+ paddlex/repo_apis/PaddleOCR_api/table_rec/runner.py,sha256=U00oZuPjQNvTQPg9ZnaOVeR2-vGGSE2n0UF6OWgb7tU,1938
1009
+ paddlex/repo_apis/PaddleOCR_api/text_det/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1010
+ paddlex/repo_apis/PaddleOCR_api/text_det/config.py,sha256=CZpTUuwQRZTrp48BVNUhaSvH0-4Q3fffAdE8Eqgz8NM,2157
1011
+ paddlex/repo_apis/PaddleOCR_api/text_det/model.py,sha256=iCyRnSPBWvfTsHqtPCam9QTSBmLo6pjmK3smzjEn8KU,2565
1012
+ paddlex/repo_apis/PaddleOCR_api/text_det/register.py,sha256=d2fdSfyhWRYj26qn1q3MW7mZSsH_JDbgJx8sASCzbJY,3296
1013
+ paddlex/repo_apis/PaddleOCR_api/text_det/runner.py,sha256=eyQWbTiA8J2vojVSqILyvIIJh2T6qgPGXWh4lc62gc8,2005
1014
+ paddlex/repo_apis/PaddleOCR_api/text_rec/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1015
+ paddlex/repo_apis/PaddleOCR_api/text_rec/config.py,sha256=LLk6Pr7MPOQIOSC15sUkdNRJ7PN1Dom_sn8iEJEs7C4,19338
1016
+ paddlex/repo_apis/PaddleOCR_api/text_rec/model.py,sha256=sXlVD-p-pRFd2auCzpqV2PJO3rFOSBiCCXruRqhIBrA,14214
1017
+ paddlex/repo_apis/PaddleOCR_api/text_rec/register.py,sha256=GTysrnCjbJ1hKOOXvofKi_nbN5JRiVkcrIPo01FF__A,6436
1018
+ paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py,sha256=n7irgiPmLRQCa-m0RT9GCiH2hsjTs_vKHM6fZPosd6Q,8297
1019
+ paddlex/repo_apis/PaddleSeg_api/__init__.py,sha256=DpeE4i2hFC3AFtngLAIYb6yxJKJ1yxL_YLaC234zEGI,637
1020
+ paddlex/repo_apis/PaddleSeg_api/base_seg_config.py,sha256=_ryWxmTRtOeCbY2l3Hmd10aTn4PPlJ-dlCkkkmYrhZ0,4634
1021
+ paddlex/repo_apis/PaddleSeg_api/seg/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1022
+ paddlex/repo_apis/PaddleSeg_api/seg/config.py,sha256=PmVVmqj6Cuhv1HMCJCzVjVG5EjjIa6Dza-L_lQjA7i0,6261
1023
+ paddlex/repo_apis/PaddleSeg_api/seg/model.py,sha256=hR6X6MuOILdSxgywpMDriNzFK0thgDf4efkp5v1dS9s,19274
1024
+ paddlex/repo_apis/PaddleSeg_api/seg/register.py,sha256=Yr--CZpsKwCwcnTfnq1q6EAEUpa_Wrum11YP7XlPhpA,7762
1025
+ paddlex/repo_apis/PaddleSeg_api/seg/runner.py,sha256=eF2UOuwZAHUjfJBrwZp4mBhJ0hhZDOf_dYoEBhr-bEs,8776
1026
+ paddlex/repo_apis/PaddleTS_api/__init__.py,sha256=c66y2HfMbBzp_xSkwA3LZ06NkRVW0PhuF-OdZJ6Zp6k,726
1027
+ paddlex/repo_apis/PaddleTS_api/ts_ad/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1028
+ paddlex/repo_apis/PaddleTS_api/ts_ad/config.py,sha256=QRjvM2q1BcpS39_e0SFX2atUESDboHikiPEMBPR9np0,2802
1029
+ paddlex/repo_apis/PaddleTS_api/ts_ad/register.py,sha256=QZKCJJ5a4pbVtBDYkJA2mTm7Y8LGJrteIsHeK5M7qaQ,4998
1030
+ paddlex/repo_apis/PaddleTS_api/ts_ad/runner.py,sha256=fa9a35y2cyt0dOA6UNXrBk4GNVAol-NazEBGzWt51LY,5383
1031
+ paddlex/repo_apis/PaddleTS_api/ts_base/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
1032
+ paddlex/repo_apis/PaddleTS_api/ts_base/config.py,sha256=xZnBPDKuDJcCW28nzkOeIuPJ736KoW58vpuXo3sonMk,8028
1033
+ paddlex/repo_apis/PaddleTS_api/ts_base/model.py,sha256=UUnmICkPnWl38Z-9HcZ6wRnyGCDeLnIX9lPQh3OrkrQ,10449
1034
+ paddlex/repo_apis/PaddleTS_api/ts_base/runner.py,sha256=AWWHQx-qrlIJjsguEDJ4GPgiFG-DireoP-X4A2SwhgE,5309
1035
+ paddlex/repo_apis/PaddleTS_api/ts_cls/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1036
+ paddlex/repo_apis/PaddleTS_api/ts_cls/config.py,sha256=yfVg3nJOI_CEpJK4aUs6IgGlVgW_mMg6MEdDCnqOwtg,2343
1037
+ paddlex/repo_apis/PaddleTS_api/ts_cls/register.py,sha256=X1RrnYkriKmZeB6s6DKUK2OerIj4cfrqTnIRgOjYwnU,1992
1038
+ paddlex/repo_apis/PaddleTS_api/ts_cls/runner.py,sha256=Ygv2oO0ihGcwNdFpDn7Tq6vXObkNF0yp4VEDApUsRAg,5306
1039
+ paddlex/repo_apis/PaddleTS_api/ts_fc/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1040
+ paddlex/repo_apis/PaddleTS_api/ts_fc/config.py,sha256=cb7BaF52G2g9Fw5YVeytXrDam-8QaV4tKtCd7FmZEag,4336
1041
+ paddlex/repo_apis/PaddleTS_api/ts_fc/register.py,sha256=Q-mfHPumMT-hpOsVozHy2oTQ0X1pGbq670m76LDO6DU,6323
1042
+ paddlex/repo_apis/PaddleVideo_api/__init__.py,sha256=ltAKRzWHMZbUcvYGzAvEr68X3ZDwA4fSJC8GszfqElI,737
1043
+ paddlex/repo_apis/PaddleVideo_api/config_utils.py,sha256=F-dV79B2qOCphwADu6A_1BflYbJajPpiZn_7drkHyRM,1734
1044
+ paddlex/repo_apis/PaddleVideo_api/video_cls/__init__.py,sha256=dukU3_7HpN_3CsTH33PwQckmknpg7XUE6s2hz4_-tIk,737
1045
+ paddlex/repo_apis/PaddleVideo_api/video_cls/config.py,sha256=NEyk7QXKgHs3IXrKzYZuamleWfxbHSmYH0ifZLJUvEk,18036
1046
+ paddlex/repo_apis/PaddleVideo_api/video_cls/model.py,sha256=o5piktHmsIYjTc5dP0azeNmbzOK6atuk0U3nNqUzu2g,13983
1047
+ paddlex/repo_apis/PaddleVideo_api/video_cls/register.py,sha256=NPQJ6nHg6gB0OH8L1ca-8NIQliQW1RIiAhqpkpMdfwM,2331
1048
+ paddlex/repo_apis/PaddleVideo_api/video_cls/runner.py,sha256=paQvrVHg4Uvbgv48_vljUwh8CZDxw9NnAUtfXjE65RE,6788
1049
+ paddlex/repo_apis/PaddleVideo_api/video_det/__init__.py,sha256=KYHXWC1Rv2I_jrBnEnD9t1p6sbfOuRD1aLV-VAj8eJw,737
1050
+ paddlex/repo_apis/PaddleVideo_api/video_det/config.py,sha256=arZf9Wb8hq2QuAgAr2hIseNweDubA2JM9Qrgchkf3Us,18075
1051
+ paddlex/repo_apis/PaddleVideo_api/video_det/model.py,sha256=GJBcEcDAGYxWHNVNTghGy-OkIWur8RH5fsGgaQw55Wc,11906
1052
+ paddlex/repo_apis/PaddleVideo_api/video_det/register.py,sha256=EuRXQjbY9H16MWaw-vR3b9IQXwfb7psX1PPmOqyYKFE,1473
1053
+ paddlex/repo_apis/PaddleVideo_api/video_det/runner.py,sha256=taT730ZYVioJSI-EiEEei8DPvUsw3YDmW3FsrljXCYk,6661
1054
+ paddlex/repo_apis/base/__init__.py,sha256=s2il5LQ3eNlh9JRjznDojDRMYz2AbUTDEYzEIdiPiLI,817
1055
+ paddlex/repo_apis/base/config.py,sha256=Cv7gRIgVcL3WEaoUcJXFbuv9i1JNgDEyq4xDhSvEdsc,6903
1056
+ paddlex/repo_apis/base/model.py,sha256=OXI2XIodMMtcRL6cF2F8WY1S0Ph5Kz6LBYHsJXn77LQ,21329
1057
+ paddlex/repo_apis/base/register.py,sha256=McsvpydlDjz08XTabLSyS-sbXQl7RnEOL3-1nG4KWFw,4176
1058
+ paddlex/repo_apis/base/runner.py,sha256=YsK3bG3MyHgsXhI7QrAeDZP_tJE_c2mVZljofN4tUI4,13891
1059
+ paddlex/repo_apis/base/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
1060
+ paddlex/repo_apis/base/utils/arg.py,sha256=5ys3bQQM8SerntsUyjs9a2kJFh_q8iUDvKNvl0buc8o,1826
1061
+ paddlex/repo_apis/base/utils/subprocess.py,sha256=_okQOuvvanAwDn-i8uPWb0RWwRK2No6EM1eRsPSY-Ss,3199
1062
+ paddlex/repo_manager/__init__.py,sha256=ZlHiGf_IbfSKhM91bgO0AilkIKdUs-twStzXeMyez4M,763
1063
+ paddlex/repo_manager/core.py,sha256=D5CggbjpJpgmSaMIdfF8z6LDJeM2G1J0JTdY3_6JMkY,8160
1064
+ paddlex/repo_manager/meta.py,sha256=T0wCiItQCphSmow-sjxAoAniTs-6zZj5yqIRGOIQzFg,5695
1065
+ paddlex/repo_manager/repo.py,sha256=dOp3YeUYz3GTNrKX9X5b1zcIlnfMvgXg7QJslBoOy6g,16016
1066
+ paddlex/repo_manager/utils.py,sha256=H33cKaFjU4Un6a9-gwzfznNdKVTLmLp9wEloog18AP0,4803
1067
+ paddlex/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
1068
+ paddlex/utils/cache.py,sha256=xcdPyZKcL6SQvtz0Sk66FpQWhjLW7QqSdU44ocme0zE,4778
1069
+ paddlex/utils/config.py,sha256=mMP-WHMBB98hW-paFSc8vDnR7h87UpAe6X34W6ggIlQ,6255
1070
+ paddlex/utils/custom_device_list.py,sha256=_9t81bfHijsjpk23_anibl8r484iYdhENsdETg0obj0,7216
1071
+ paddlex/utils/deps.py,sha256=E5kj9QBp-r-fJDPLMhdSCg1JPv-w_ZatwUS5Mn458Uk,7907
1072
+ paddlex/utils/device.py,sha256=C2zqlezNS84TtnAu_PL6j69bdNWFv9JtE6UYKVoAEJY,6653
1073
+ paddlex/utils/download.py,sha256=CC7TTOaOFXfcWCAg6CRJ-ECMIF9QVuvWFCOe39X2dhM,6402
1074
+ paddlex/utils/env.py,sha256=dVOm9yQgXOGd4xFOFAmBHcKMDXCq-cuv3VDilGv-iHk,1617
1075
+ paddlex/utils/file_interface.py,sha256=KfMl_NQIpRGxBL9bRd54OK60RkSesDBQFeMftdDlVt8,6523
1076
+ paddlex/utils/flags.py,sha256=QAVfMX4W6H5HDrzcj9OghqJkOtN4PuJZtVedbOxAklw,2533
1077
+ paddlex/utils/func_register.py,sha256=XEMaJ_ttfLp8Tos3vb1HH5cdsQX7uGiZ77W0t9tWHuE,1355
1078
+ paddlex/utils/install.py,sha256=C8GMNv7YLoTi6MdOl1B1ojlsWOQFxX8piuIO-5Hkg8c,2507
1079
+ paddlex/utils/interactive_get_pipeline.py,sha256=J0RIY_gry2J9s_c1-vF5oN49gDzjLnxtJhtLJMp1u7I,1916
1080
+ paddlex/utils/lazy_loader.py,sha256=6TrRlNUtDWKrw-I50D-_GdoflRZWQljULnGGBCq12BE,2341
1081
+ paddlex/utils/logging.py,sha256=up6qyU-pgjISPTInsm5P5vnr45-4n3xK97r1Ad6nTKA,4847
1082
+ paddlex/utils/misc.py,sha256=XzpCR5MF270dHVtllyrieBQ3RPAxh_sWsDY8Hqu_Tpc,5864
1083
+ paddlex/utils/pipeline_arguments.py,sha256=h3MEAK8cBGf3LBA3m6NFDJov87M2Ad7tJAKzYduWsso,23708
1084
+ paddlex/utils/result_saver.py,sha256=slcYMg1ImdX58106DRq8DhLa8XqxQnnPZvxJhtcv5WM,1980
1085
+ paddlex/utils/subclass_register.py,sha256=93cqmNtGHkqJqvXQDCoaVmoVjppG10ZPBJgipko3_9I,3386
1086
+ paddlex/utils/errors/__init__.py,sha256=1ooQ6m7PWkmniQbq4xVMVubjBKlMbZzoIvoPlKBoBgI,664
1087
+ paddlex/utils/errors/dataset_checker.py,sha256=hnLeqMyMLuQQVWhHsfakpcZAN4Tu2ULaqtlQ9BzC1pI,2200
1088
+ paddlex/utils/errors/others.py,sha256=5RwDvxq4_K4UHMFRldrbwoDMnW8mW2KATinIwac7v-4,4303
1089
+ paddlex/utils/fonts/__init__.py,sha256=o47S4aK6ZKt5pfCc1_paMMig4fcSwgWX4m1BN4ybQ2Q,3297
1090
+ paddlex-3.0.1.dist-info/licenses/LICENSE,sha256=rMw2yBesXt5HPQVzLhSvwRy25V71kZvIJrZT9jEWUEM,11325
1091
+ paddlex-3.0.1.dist-info/METADATA,sha256=BZEvH0q9ITdUy0Qev6YaX67KprJVTTVynSJMNNhex8k,72398
1092
+ paddlex-3.0.1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
1093
+ paddlex-3.0.1.dist-info/entry_points.txt,sha256=rTKXuuCwUUNjzEG9fG9JF1JFAHAD05PksWevGuRxYoM,59
1094
+ paddlex-3.0.1.dist-info/top_level.txt,sha256=KWSxMIrEchP3dxsAjzSRR-jmnjW0YGHECxG9OA5YB_g,8
1095
+ paddlex-3.0.1.dist-info/RECORD,,