paddlex 3.0.0rc0__py3-none-any.whl → 3.0.0rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (785) hide show
  1. paddlex/.version +1 -1
  2. paddlex/__init__.py +17 -34
  3. paddlex/__main__.py +1 -1
  4. paddlex/configs/modules/doc_vlm/PP-DocBee-2B.yaml +14 -0
  5. paddlex/configs/modules/doc_vlm/PP-DocBee-7B.yaml +14 -0
  6. paddlex/configs/modules/open_vocabulary_detection/YOLO-Worldv2-L.yaml +13 -0
  7. paddlex/configs/pipelines/anomaly_detection.yaml +1 -1
  8. paddlex/configs/pipelines/doc_understanding.yaml +9 -0
  9. paddlex/configs/pipelines/ts_anomaly_detection.yaml +1 -1
  10. paddlex/configs/pipelines/ts_classification.yaml +1 -1
  11. paddlex/configs/pipelines/ts_forecast.yaml +1 -1
  12. paddlex/constants.py +17 -0
  13. paddlex/engine.py +7 -5
  14. paddlex/hpip_links.html +23 -11
  15. paddlex/inference/__init__.py +3 -3
  16. paddlex/inference/common/__init__.py +1 -1
  17. paddlex/inference/common/batch_sampler/__init__.py +5 -4
  18. paddlex/inference/common/batch_sampler/audio_batch_sampler.py +5 -6
  19. paddlex/inference/common/batch_sampler/base_batch_sampler.py +20 -16
  20. paddlex/inference/common/batch_sampler/det_3d_batch_sampler.py +4 -7
  21. paddlex/inference/common/batch_sampler/doc_vlm_batch_sampler.py +64 -0
  22. paddlex/inference/common/batch_sampler/image_batch_sampler.py +12 -36
  23. paddlex/inference/common/batch_sampler/ts_batch_sampler.py +9 -10
  24. paddlex/inference/common/batch_sampler/video_batch_sampler.py +2 -22
  25. paddlex/inference/common/reader/__init__.py +4 -4
  26. paddlex/inference/common/reader/audio_reader.py +3 -3
  27. paddlex/inference/common/reader/det_3d_reader.py +7 -5
  28. paddlex/inference/common/reader/image_reader.py +16 -12
  29. paddlex/inference/common/reader/ts_reader.py +3 -2
  30. paddlex/inference/common/reader/video_reader.py +3 -3
  31. paddlex/inference/common/result/__init__.py +7 -7
  32. paddlex/inference/common/result/base_cv_result.py +12 -2
  33. paddlex/inference/common/result/base_result.py +7 -5
  34. paddlex/inference/common/result/base_ts_result.py +1 -2
  35. paddlex/inference/common/result/base_video_result.py +2 -2
  36. paddlex/inference/common/result/mixin.py +12 -13
  37. paddlex/inference/models/__init__.py +41 -85
  38. paddlex/inference/models/anomaly_detection/__init__.py +1 -1
  39. paddlex/inference/models/anomaly_detection/predictor.py +9 -19
  40. paddlex/inference/models/anomaly_detection/processors.py +9 -2
  41. paddlex/inference/models/anomaly_detection/result.py +3 -2
  42. paddlex/inference/models/base/__init__.py +2 -2
  43. paddlex/inference/models/base/predictor/__init__.py +1 -2
  44. paddlex/inference/models/base/predictor/base_predictor.py +284 -39
  45. paddlex/inference/models/common/__init__.py +6 -15
  46. paddlex/inference/models/common/static_infer.py +764 -243
  47. paddlex/inference/models/common/tokenizer/__init__.py +5 -3
  48. paddlex/inference/models/common/tokenizer/bert_tokenizer.py +1 -1
  49. paddlex/inference/models/common/tokenizer/clip_tokenizer.py +609 -0
  50. paddlex/inference/models/common/tokenizer/gpt_tokenizer.py +7 -5
  51. paddlex/inference/models/common/tokenizer/qwen2_tokenizer.py +432 -0
  52. paddlex/inference/models/common/tokenizer/tokenizer_utils.py +72 -64
  53. paddlex/inference/models/common/tokenizer/tokenizer_utils_base.py +337 -121
  54. paddlex/inference/models/common/tokenizer/utils.py +1 -1
  55. paddlex/inference/models/common/tokenizer/vocab.py +1 -1
  56. paddlex/inference/models/common/ts/__init__.py +1 -1
  57. paddlex/inference/models/common/ts/funcs.py +13 -6
  58. paddlex/inference/models/common/ts/processors.py +14 -5
  59. paddlex/inference/models/common/vision/__init__.py +3 -3
  60. paddlex/inference/models/common/vision/funcs.py +17 -12
  61. paddlex/inference/models/common/vision/processors.py +61 -46
  62. paddlex/inference/models/common/vlm/__init__.py +13 -0
  63. paddlex/inference/models/common/vlm/activations.py +189 -0
  64. paddlex/inference/models/common/vlm/bert_padding.py +127 -0
  65. paddlex/inference/models/common/vlm/distributed.py +229 -0
  66. paddlex/inference/models/common/vlm/flash_attn_utils.py +119 -0
  67. paddlex/inference/models/common/vlm/generation/__init__.py +34 -0
  68. paddlex/inference/models/common/vlm/generation/configuration_utils.py +533 -0
  69. paddlex/inference/models/common/vlm/generation/logits_process.py +730 -0
  70. paddlex/inference/models/common/vlm/generation/stopping_criteria.py +106 -0
  71. paddlex/inference/models/common/vlm/generation/utils.py +2162 -0
  72. paddlex/inference/models/common/vlm/transformers/__init__.py +16 -0
  73. paddlex/inference/models/common/vlm/transformers/configuration_utils.py +1037 -0
  74. paddlex/inference/models/common/vlm/transformers/conversion_utils.py +408 -0
  75. paddlex/inference/models/common/vlm/transformers/model_outputs.py +1612 -0
  76. paddlex/inference/models/common/vlm/transformers/model_utils.py +2038 -0
  77. paddlex/inference/models/common/vlm/transformers/utils.py +178 -0
  78. paddlex/inference/models/common/vlm/utils.py +109 -0
  79. paddlex/inference/models/doc_vlm/__init__.py +15 -0
  80. paddlex/inference/models/doc_vlm/modeling/__init__.py +15 -0
  81. paddlex/inference/models/doc_vlm/modeling/qwen2_vl.py +2600 -0
  82. paddlex/inference/models/doc_vlm/predictor.py +198 -0
  83. paddlex/inference/models/doc_vlm/processors/__init__.py +15 -0
  84. paddlex/inference/models/doc_vlm/processors/common.py +372 -0
  85. paddlex/inference/models/doc_vlm/processors/qwen2_vl.py +698 -0
  86. paddlex/inference/models/doc_vlm/result.py +21 -0
  87. paddlex/inference/models/face_feature/__init__.py +1 -1
  88. paddlex/inference/models/face_feature/predictor.py +2 -1
  89. paddlex/inference/models/formula_recognition/__init__.py +1 -1
  90. paddlex/inference/models/formula_recognition/predictor.py +11 -27
  91. paddlex/inference/models/formula_recognition/processors.py +35 -19
  92. paddlex/inference/models/formula_recognition/result.py +19 -12
  93. paddlex/inference/models/image_classification/__init__.py +1 -1
  94. paddlex/inference/models/image_classification/predictor.py +9 -19
  95. paddlex/inference/models/image_classification/processors.py +4 -2
  96. paddlex/inference/models/image_classification/result.py +4 -3
  97. paddlex/inference/models/image_feature/__init__.py +1 -1
  98. paddlex/inference/models/image_feature/predictor.py +9 -19
  99. paddlex/inference/models/image_feature/processors.py +4 -1
  100. paddlex/inference/models/image_feature/result.py +2 -3
  101. paddlex/inference/models/image_multilabel_classification/__init__.py +1 -1
  102. paddlex/inference/models/image_multilabel_classification/predictor.py +7 -6
  103. paddlex/inference/models/image_multilabel_classification/processors.py +6 -2
  104. paddlex/inference/models/image_multilabel_classification/result.py +4 -3
  105. paddlex/inference/models/image_unwarping/__init__.py +1 -1
  106. paddlex/inference/models/image_unwarping/predictor.py +8 -16
  107. paddlex/inference/models/image_unwarping/processors.py +6 -2
  108. paddlex/inference/models/image_unwarping/result.py +4 -2
  109. paddlex/inference/models/instance_segmentation/__init__.py +1 -1
  110. paddlex/inference/models/instance_segmentation/predictor.py +7 -15
  111. paddlex/inference/models/instance_segmentation/processors.py +4 -7
  112. paddlex/inference/models/instance_segmentation/result.py +11 -10
  113. paddlex/inference/models/keypoint_detection/__init__.py +1 -1
  114. paddlex/inference/models/keypoint_detection/predictor.py +2 -3
  115. paddlex/inference/models/keypoint_detection/processors.py +11 -3
  116. paddlex/inference/models/keypoint_detection/result.py +9 -4
  117. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/__init__.py +1 -1
  118. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/predictor.py +15 -26
  119. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/processors.py +26 -14
  120. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/result.py +15 -12
  121. paddlex/inference/models/{3d_bev_detection → m_3d_bev_detection}/visualizer_3d.py +77 -39
  122. paddlex/inference/models/multilingual_speech_recognition/__init__.py +1 -1
  123. paddlex/inference/models/multilingual_speech_recognition/predictor.py +11 -15
  124. paddlex/inference/models/multilingual_speech_recognition/processors.py +45 -53
  125. paddlex/inference/models/multilingual_speech_recognition/result.py +1 -1
  126. paddlex/inference/models/object_detection/__init__.py +1 -1
  127. paddlex/inference/models/object_detection/predictor.py +6 -12
  128. paddlex/inference/models/object_detection/processors.py +36 -31
  129. paddlex/inference/models/object_detection/result.py +5 -4
  130. paddlex/inference/models/object_detection/utils.py +1 -1
  131. paddlex/inference/models/open_vocabulary_detection/__init__.py +1 -1
  132. paddlex/inference/models/open_vocabulary_detection/predictor.py +31 -14
  133. paddlex/inference/models/open_vocabulary_detection/processors/__init__.py +3 -2
  134. paddlex/inference/models/open_vocabulary_detection/processors/common.py +114 -0
  135. paddlex/inference/models/open_vocabulary_detection/processors/groundingdino_processors.py +19 -8
  136. paddlex/inference/models/open_vocabulary_detection/processors/yoloworld_processors.py +209 -0
  137. paddlex/inference/models/open_vocabulary_segmentation/__init__.py +1 -1
  138. paddlex/inference/models/open_vocabulary_segmentation/predictor.py +6 -13
  139. paddlex/inference/models/open_vocabulary_segmentation/processors/__init__.py +1 -1
  140. paddlex/inference/models/open_vocabulary_segmentation/processors/sam_processer.py +12 -12
  141. paddlex/inference/models/open_vocabulary_segmentation/results/__init__.py +1 -1
  142. paddlex/inference/models/open_vocabulary_segmentation/results/sam_result.py +11 -9
  143. paddlex/inference/models/semantic_segmentation/__init__.py +1 -1
  144. paddlex/inference/models/semantic_segmentation/predictor.py +9 -18
  145. paddlex/inference/models/semantic_segmentation/processors.py +11 -8
  146. paddlex/inference/models/semantic_segmentation/result.py +4 -3
  147. paddlex/inference/models/table_structure_recognition/__init__.py +1 -1
  148. paddlex/inference/models/table_structure_recognition/predictor.py +8 -18
  149. paddlex/inference/models/table_structure_recognition/processors.py +23 -29
  150. paddlex/inference/models/table_structure_recognition/result.py +9 -6
  151. paddlex/inference/models/text_detection/__init__.py +1 -1
  152. paddlex/inference/models/text_detection/predictor.py +16 -24
  153. paddlex/inference/models/text_detection/processors.py +74 -36
  154. paddlex/inference/models/text_detection/result.py +9 -4
  155. paddlex/inference/models/text_recognition/__init__.py +1 -1
  156. paddlex/inference/models/text_recognition/predictor.py +11 -19
  157. paddlex/inference/models/text_recognition/processors.py +27 -13
  158. paddlex/inference/models/text_recognition/result.py +3 -2
  159. paddlex/inference/models/ts_anomaly_detection/__init__.py +1 -1
  160. paddlex/inference/models/ts_anomaly_detection/predictor.py +12 -17
  161. paddlex/inference/models/ts_anomaly_detection/processors.py +6 -2
  162. paddlex/inference/models/ts_anomaly_detection/result.py +21 -10
  163. paddlex/inference/models/ts_classification/__init__.py +1 -1
  164. paddlex/inference/models/ts_classification/predictor.py +14 -27
  165. paddlex/inference/models/ts_classification/processors.py +7 -2
  166. paddlex/inference/models/ts_classification/result.py +21 -12
  167. paddlex/inference/models/ts_forecasting/__init__.py +1 -1
  168. paddlex/inference/models/ts_forecasting/predictor.py +13 -18
  169. paddlex/inference/models/ts_forecasting/processors.py +12 -3
  170. paddlex/inference/models/ts_forecasting/result.py +24 -11
  171. paddlex/inference/models/video_classification/__init__.py +1 -1
  172. paddlex/inference/models/video_classification/predictor.py +9 -15
  173. paddlex/inference/models/video_classification/processors.py +24 -24
  174. paddlex/inference/models/video_classification/result.py +7 -3
  175. paddlex/inference/models/video_detection/__init__.py +1 -1
  176. paddlex/inference/models/video_detection/predictor.py +8 -15
  177. paddlex/inference/models/video_detection/processors.py +24 -11
  178. paddlex/inference/models/video_detection/result.py +10 -5
  179. paddlex/inference/pipelines/__init__.py +44 -37
  180. paddlex/inference/pipelines/anomaly_detection/__init__.py +1 -1
  181. paddlex/inference/pipelines/anomaly_detection/pipeline.py +16 -6
  182. paddlex/inference/pipelines/attribute_recognition/__init__.py +1 -1
  183. paddlex/inference/pipelines/attribute_recognition/pipeline.py +13 -8
  184. paddlex/inference/pipelines/attribute_recognition/result.py +10 -8
  185. paddlex/inference/pipelines/base.py +31 -11
  186. paddlex/inference/pipelines/components/__init__.py +14 -8
  187. paddlex/inference/pipelines/components/chat_server/__init__.py +1 -1
  188. paddlex/inference/pipelines/components/chat_server/base.py +2 -2
  189. paddlex/inference/pipelines/components/chat_server/openai_bot_chat.py +8 -8
  190. paddlex/inference/pipelines/components/common/__init__.py +5 -4
  191. paddlex/inference/pipelines/components/common/base_operator.py +2 -1
  192. paddlex/inference/pipelines/components/common/base_result.py +3 -2
  193. paddlex/inference/pipelines/components/common/convert_points_and_boxes.py +1 -2
  194. paddlex/inference/pipelines/components/common/crop_image_regions.py +11 -5
  195. paddlex/inference/pipelines/components/common/seal_det_warp.py +44 -13
  196. paddlex/inference/pipelines/components/common/sort_boxes.py +4 -2
  197. paddlex/inference/pipelines/components/common/warp_image.py +50 -0
  198. paddlex/inference/pipelines/components/faisser.py +9 -4
  199. paddlex/inference/pipelines/components/prompt_engineering/__init__.py +2 -2
  200. paddlex/inference/pipelines/components/prompt_engineering/base.py +2 -2
  201. paddlex/inference/pipelines/components/prompt_engineering/generate_ensemble_prompt.py +2 -1
  202. paddlex/inference/pipelines/components/prompt_engineering/generate_kie_prompt.py +2 -2
  203. paddlex/inference/pipelines/components/retriever/__init__.py +2 -2
  204. paddlex/inference/pipelines/components/retriever/base.py +18 -16
  205. paddlex/inference/pipelines/components/retriever/openai_bot_retriever.py +2 -2
  206. paddlex/inference/pipelines/components/retriever/qianfan_bot_retriever.py +87 -84
  207. paddlex/inference/pipelines/components/utils/__init__.py +1 -1
  208. paddlex/inference/pipelines/components/utils/mixin.py +7 -7
  209. paddlex/inference/pipelines/doc_preprocessor/__init__.py +1 -1
  210. paddlex/inference/pipelines/doc_preprocessor/pipeline.py +21 -28
  211. paddlex/inference/pipelines/doc_preprocessor/result.py +5 -10
  212. paddlex/inference/pipelines/doc_understanding/__init__.py +15 -0
  213. paddlex/inference/pipelines/doc_understanding/pipeline.py +71 -0
  214. paddlex/inference/pipelines/face_recognition/__init__.py +1 -1
  215. paddlex/inference/pipelines/face_recognition/pipeline.py +3 -1
  216. paddlex/inference/pipelines/face_recognition/result.py +3 -2
  217. paddlex/inference/pipelines/formula_recognition/__init__.py +1 -1
  218. paddlex/inference/pipelines/formula_recognition/pipeline.py +22 -16
  219. paddlex/inference/pipelines/formula_recognition/result.py +20 -19
  220. paddlex/inference/pipelines/image_classification/__init__.py +1 -1
  221. paddlex/inference/pipelines/image_classification/pipeline.py +17 -8
  222. paddlex/inference/pipelines/image_multilabel_classification/__init__.py +1 -1
  223. paddlex/inference/pipelines/image_multilabel_classification/pipeline.py +18 -9
  224. paddlex/inference/pipelines/instance_segmentation/__init__.py +1 -1
  225. paddlex/inference/pipelines/instance_segmentation/pipeline.py +17 -6
  226. paddlex/inference/pipelines/keypoint_detection/__init__.py +1 -1
  227. paddlex/inference/pipelines/keypoint_detection/pipeline.py +17 -6
  228. paddlex/inference/pipelines/layout_parsing/__init__.py +1 -1
  229. paddlex/inference/pipelines/layout_parsing/pipeline.py +23 -12
  230. paddlex/inference/pipelines/layout_parsing/pipeline_v2.py +16 -6
  231. paddlex/inference/pipelines/layout_parsing/result.py +5 -4
  232. paddlex/inference/pipelines/layout_parsing/result_v2.py +5 -8
  233. paddlex/inference/pipelines/layout_parsing/utils.py +7 -8
  234. paddlex/inference/pipelines/{3d_bev_detection → m_3d_bev_detection}/__init__.py +1 -1
  235. paddlex/inference/pipelines/{3d_bev_detection → m_3d_bev_detection}/pipeline.py +17 -10
  236. paddlex/inference/pipelines/multilingual_speech_recognition/__init__.py +1 -1
  237. paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py +17 -6
  238. paddlex/inference/pipelines/object_detection/__init__.py +1 -1
  239. paddlex/inference/pipelines/object_detection/pipeline.py +16 -6
  240. paddlex/inference/pipelines/ocr/__init__.py +1 -1
  241. paddlex/inference/pipelines/ocr/pipeline.py +28 -11
  242. paddlex/inference/pipelines/ocr/result.py +13 -9
  243. paddlex/inference/pipelines/open_vocabulary_detection/__init__.py +1 -1
  244. paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py +17 -6
  245. paddlex/inference/pipelines/open_vocabulary_segmentation/__init__.py +1 -1
  246. paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py +17 -6
  247. paddlex/inference/pipelines/pp_chatocr/__init__.py +1 -1
  248. paddlex/inference/pipelines/pp_chatocr/pipeline_base.py +14 -5
  249. paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py +22 -11
  250. paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py +31 -13
  251. paddlex/inference/pipelines/pp_shitu_v2/__init__.py +1 -1
  252. paddlex/inference/pipelines/pp_shitu_v2/pipeline.py +12 -8
  253. paddlex/inference/pipelines/pp_shitu_v2/result.py +4 -4
  254. paddlex/inference/pipelines/rotated_object_detection/__init__.py +1 -1
  255. paddlex/inference/pipelines/rotated_object_detection/pipeline.py +17 -6
  256. paddlex/inference/pipelines/seal_recognition/__init__.py +1 -1
  257. paddlex/inference/pipelines/seal_recognition/pipeline.py +21 -13
  258. paddlex/inference/pipelines/seal_recognition/result.py +4 -2
  259. paddlex/inference/pipelines/semantic_segmentation/__init__.py +1 -1
  260. paddlex/inference/pipelines/semantic_segmentation/pipeline.py +17 -6
  261. paddlex/inference/pipelines/small_object_detection/__init__.py +1 -1
  262. paddlex/inference/pipelines/small_object_detection/pipeline.py +17 -6
  263. paddlex/inference/pipelines/table_recognition/__init__.py +1 -1
  264. paddlex/inference/pipelines/table_recognition/pipeline.py +41 -25
  265. paddlex/inference/pipelines/table_recognition/pipeline_v2.py +65 -33
  266. paddlex/inference/pipelines/table_recognition/result.py +11 -9
  267. paddlex/inference/pipelines/table_recognition/table_recognition_post_processing.py +12 -8
  268. paddlex/inference/pipelines/table_recognition/table_recognition_post_processing_v2.py +46 -32
  269. paddlex/inference/pipelines/table_recognition/utils.py +1 -1
  270. paddlex/inference/pipelines/ts_anomaly_detection/__init__.py +1 -1
  271. paddlex/inference/pipelines/ts_anomaly_detection/pipeline.py +16 -6
  272. paddlex/inference/pipelines/ts_classification/__init__.py +1 -1
  273. paddlex/inference/pipelines/ts_classification/pipeline.py +16 -6
  274. paddlex/inference/pipelines/ts_forecasting/__init__.py +1 -1
  275. paddlex/inference/pipelines/ts_forecasting/pipeline.py +16 -6
  276. paddlex/inference/pipelines/video_classification/__init__.py +1 -1
  277. paddlex/inference/pipelines/video_classification/pipeline.py +17 -6
  278. paddlex/inference/pipelines/video_detection/__init__.py +1 -1
  279. paddlex/inference/pipelines/video_detection/pipeline.py +20 -7
  280. paddlex/inference/serving/__init__.py +5 -1
  281. paddlex/inference/serving/basic_serving/__init__.py +1 -1
  282. paddlex/inference/serving/basic_serving/_app.py +31 -19
  283. paddlex/inference/serving/basic_serving/_pipeline_apps/__init__.py +7 -4
  284. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/__init__.py +1 -1
  285. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/common.py +7 -3
  286. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/image_recognition.py +1 -1
  287. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/ocr.py +7 -2
  288. paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py +10 -7
  289. paddlex/inference/serving/basic_serving/_pipeline_apps/doc_preprocessor.py +10 -7
  290. paddlex/inference/serving/basic_serving/_pipeline_apps/doc_understanding.py +153 -0
  291. paddlex/inference/serving/basic_serving/_pipeline_apps/face_recognition.py +16 -13
  292. paddlex/inference/serving/basic_serving/_pipeline_apps/formula_recognition.py +10 -7
  293. paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.py +10 -7
  294. paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py +10 -7
  295. paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py +10 -7
  296. paddlex/inference/serving/basic_serving/_pipeline_apps/instance_segmentation.py +13 -7
  297. paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py +10 -7
  298. paddlex/inference/serving/basic_serving/_pipeline_apps/m_3d_bev_detection.py +10 -7
  299. paddlex/inference/serving/basic_serving/_pipeline_apps/multilingual_speech_recognition.py +10 -7
  300. paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py +10 -7
  301. paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py +10 -7
  302. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py +10 -7
  303. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py +13 -7
  304. paddlex/inference/serving/basic_serving/_pipeline_apps/pedestrian_attribute_recognition.py +10 -7
  305. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py +14 -11
  306. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py +16 -13
  307. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_shituv2.py +16 -13
  308. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py +10 -7
  309. paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py +10 -7
  310. paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py +10 -7
  311. paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py +10 -7
  312. paddlex/inference/serving/basic_serving/_pipeline_apps/small_object_detection.py +10 -7
  313. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py +10 -7
  314. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py +10 -7
  315. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py +10 -7
  316. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py +10 -7
  317. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py +10 -7
  318. paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recognition.py +10 -7
  319. paddlex/inference/serving/basic_serving/_pipeline_apps/video_classification.py +10 -7
  320. paddlex/inference/serving/basic_serving/_pipeline_apps/video_detection.py +10 -7
  321. paddlex/inference/serving/basic_serving/_server.py +9 -4
  322. paddlex/inference/serving/infra/__init__.py +1 -1
  323. paddlex/inference/serving/infra/config.py +1 -1
  324. paddlex/inference/serving/infra/models.py +13 -6
  325. paddlex/inference/serving/infra/storage.py +9 -4
  326. paddlex/inference/serving/infra/utils.py +37 -9
  327. paddlex/inference/serving/schemas/__init__.py +1 -1
  328. paddlex/inference/serving/schemas/anomaly_detection.py +1 -1
  329. paddlex/inference/serving/schemas/doc_preprocessor.py +1 -1
  330. paddlex/inference/serving/schemas/doc_understanding.py +78 -0
  331. paddlex/inference/serving/schemas/face_recognition.py +1 -1
  332. paddlex/inference/serving/schemas/formula_recognition.py +1 -1
  333. paddlex/inference/serving/schemas/human_keypoint_detection.py +1 -1
  334. paddlex/inference/serving/schemas/image_classification.py +1 -1
  335. paddlex/inference/serving/schemas/image_multilabel_classification.py +1 -1
  336. paddlex/inference/serving/schemas/instance_segmentation.py +1 -1
  337. paddlex/inference/serving/schemas/layout_parsing.py +1 -1
  338. paddlex/inference/serving/schemas/m_3d_bev_detection.py +1 -1
  339. paddlex/inference/serving/schemas/multilingual_speech_recognition.py +1 -1
  340. paddlex/inference/serving/schemas/object_detection.py +1 -1
  341. paddlex/inference/serving/schemas/ocr.py +1 -1
  342. paddlex/inference/serving/schemas/open_vocabulary_detection.py +1 -1
  343. paddlex/inference/serving/schemas/open_vocabulary_segmentation.py +1 -1
  344. paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py +1 -1
  345. paddlex/inference/serving/schemas/pp_chatocrv3_doc.py +1 -1
  346. paddlex/inference/serving/schemas/pp_chatocrv4_doc.py +1 -1
  347. paddlex/inference/serving/schemas/pp_shituv2.py +1 -1
  348. paddlex/inference/serving/schemas/pp_structurev3.py +1 -1
  349. paddlex/inference/serving/schemas/rotated_object_detection.py +1 -1
  350. paddlex/inference/serving/schemas/seal_recognition.py +1 -1
  351. paddlex/inference/serving/schemas/semantic_segmentation.py +1 -1
  352. paddlex/inference/serving/schemas/shared/__init__.py +1 -1
  353. paddlex/inference/serving/schemas/shared/classification.py +1 -1
  354. paddlex/inference/serving/schemas/shared/image_segmentation.py +1 -1
  355. paddlex/inference/serving/schemas/shared/object_detection.py +1 -1
  356. paddlex/inference/serving/schemas/shared/ocr.py +1 -1
  357. paddlex/inference/serving/schemas/small_object_detection.py +1 -1
  358. paddlex/inference/serving/schemas/table_recognition.py +1 -1
  359. paddlex/inference/serving/schemas/table_recognition_v2.py +1 -1
  360. paddlex/inference/serving/schemas/ts_anomaly_detection.py +1 -1
  361. paddlex/inference/serving/schemas/ts_classification.py +1 -1
  362. paddlex/inference/serving/schemas/ts_forecast.py +1 -1
  363. paddlex/inference/serving/schemas/vehicle_attribute_recognition.py +1 -1
  364. paddlex/inference/serving/schemas/video_classification.py +1 -1
  365. paddlex/inference/serving/schemas/video_detection.py +1 -1
  366. paddlex/inference/utils/__init__.py +1 -1
  367. paddlex/inference/utils/benchmark.py +332 -179
  368. paddlex/inference/utils/color_map.py +1 -1
  369. paddlex/inference/utils/get_pipeline_path.py +1 -1
  370. paddlex/inference/utils/hpi.py +251 -0
  371. paddlex/inference/utils/hpi_model_info_collection.json +2252 -0
  372. paddlex/inference/utils/io/__init__.py +11 -11
  373. paddlex/inference/utils/io/readers.py +22 -18
  374. paddlex/inference/utils/io/style.py +21 -14
  375. paddlex/inference/utils/io/tablepyxl.py +13 -5
  376. paddlex/inference/utils/io/writers.py +9 -10
  377. paddlex/inference/utils/model_paths.py +48 -0
  378. paddlex/inference/utils/{new_ir_blacklist.py → new_ir_blocklist.py} +1 -2
  379. paddlex/inference/utils/official_models.py +264 -262
  380. paddlex/inference/utils/pp_option.py +164 -93
  381. paddlex/inference/utils/trt_blocklist.py +43 -0
  382. paddlex/inference/utils/trt_config.py +420 -0
  383. paddlex/model.py +28 -10
  384. paddlex/modules/__init__.py +57 -80
  385. paddlex/modules/anomaly_detection/__init__.py +2 -2
  386. paddlex/modules/anomaly_detection/dataset_checker/__init__.py +2 -3
  387. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/__init__.py +2 -2
  388. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py +6 -3
  389. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/check_dataset.py +8 -4
  390. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py +7 -4
  391. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/split_dataset.py +2 -2
  392. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  393. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/visualizer.py +7 -2
  394. paddlex/modules/anomaly_detection/evaluator.py +1 -1
  395. paddlex/modules/anomaly_detection/exportor.py +1 -1
  396. paddlex/modules/anomaly_detection/model_list.py +1 -1
  397. paddlex/modules/anomaly_detection/trainer.py +3 -4
  398. paddlex/modules/base/__init__.py +5 -5
  399. paddlex/modules/base/build_model.py +1 -2
  400. paddlex/modules/base/dataset_checker/__init__.py +2 -2
  401. paddlex/modules/base/dataset_checker/dataset_checker.py +4 -4
  402. paddlex/modules/base/dataset_checker/utils.py +1 -3
  403. paddlex/modules/base/evaluator.py +8 -8
  404. paddlex/modules/base/exportor.py +12 -13
  405. paddlex/modules/base/trainer.py +21 -11
  406. paddlex/modules/base/utils/__init__.py +13 -0
  407. paddlex/modules/base/utils/cinn_setting.py +89 -0
  408. paddlex/modules/base/utils/coco_eval.py +94 -0
  409. paddlex/modules/base/utils/topk_eval.py +118 -0
  410. paddlex/modules/doc_vlm/__init__.py +18 -0
  411. paddlex/modules/doc_vlm/dataset_checker.py +29 -0
  412. paddlex/modules/doc_vlm/evaluator.py +29 -0
  413. paddlex/modules/doc_vlm/exportor.py +29 -0
  414. paddlex/modules/doc_vlm/model_list.py +16 -0
  415. paddlex/modules/doc_vlm/trainer.py +41 -0
  416. paddlex/modules/face_recognition/__init__.py +2 -2
  417. paddlex/modules/face_recognition/dataset_checker/__init__.py +2 -2
  418. paddlex/modules/face_recognition/dataset_checker/dataset_src/__init__.py +1 -1
  419. paddlex/modules/face_recognition/dataset_checker/dataset_src/check_dataset.py +3 -5
  420. paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/__init__.py +1 -1
  421. paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  422. paddlex/modules/face_recognition/evaluator.py +1 -1
  423. paddlex/modules/face_recognition/exportor.py +1 -1
  424. paddlex/modules/face_recognition/model_list.py +1 -1
  425. paddlex/modules/face_recognition/trainer.py +1 -1
  426. paddlex/modules/formula_recognition/__init__.py +2 -2
  427. paddlex/modules/formula_recognition/dataset_checker/__init__.py +3 -3
  428. paddlex/modules/formula_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  429. paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py +13 -12
  430. paddlex/modules/formula_recognition/dataset_checker/dataset_src/check_dataset.py +2 -6
  431. paddlex/modules/formula_recognition/dataset_checker/dataset_src/convert_dataset.py +11 -10
  432. paddlex/modules/formula_recognition/dataset_checker/dataset_src/split_dataset.py +1 -2
  433. paddlex/modules/formula_recognition/evaluator.py +1 -1
  434. paddlex/modules/formula_recognition/exportor.py +1 -1
  435. paddlex/modules/formula_recognition/model_list.py +1 -1
  436. paddlex/modules/formula_recognition/trainer.py +2 -3
  437. paddlex/modules/general_recognition/__init__.py +2 -2
  438. paddlex/modules/general_recognition/dataset_checker/__init__.py +2 -2
  439. paddlex/modules/general_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  440. paddlex/modules/general_recognition/dataset_checker/dataset_src/analyse_dataset.py +7 -9
  441. paddlex/modules/general_recognition/dataset_checker/dataset_src/check_dataset.py +4 -5
  442. paddlex/modules/general_recognition/dataset_checker/dataset_src/convert_dataset.py +6 -5
  443. paddlex/modules/general_recognition/dataset_checker/dataset_src/split_dataset.py +1 -1
  444. paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/__init__.py +1 -1
  445. paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  446. paddlex/modules/general_recognition/evaluator.py +1 -1
  447. paddlex/modules/general_recognition/exportor.py +1 -1
  448. paddlex/modules/general_recognition/model_list.py +1 -1
  449. paddlex/modules/general_recognition/trainer.py +1 -1
  450. paddlex/modules/image_classification/__init__.py +2 -2
  451. paddlex/modules/image_classification/dataset_checker/__init__.py +2 -2
  452. paddlex/modules/image_classification/dataset_checker/dataset_src/__init__.py +2 -2
  453. paddlex/modules/image_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  454. paddlex/modules/image_classification/dataset_checker/dataset_src/check_dataset.py +4 -3
  455. paddlex/modules/image_classification/dataset_checker/dataset_src/convert_dataset.py +4 -4
  456. paddlex/modules/image_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  457. paddlex/modules/image_classification/dataset_checker/dataset_src/utils/__init__.py +1 -1
  458. paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  459. paddlex/modules/image_classification/evaluator.py +1 -1
  460. paddlex/modules/image_classification/exportor.py +1 -1
  461. paddlex/modules/image_classification/model_list.py +1 -1
  462. paddlex/modules/image_classification/trainer.py +3 -3
  463. paddlex/modules/image_unwarping/__init__.py +1 -1
  464. paddlex/modules/image_unwarping/model_list.py +1 -1
  465. paddlex/modules/instance_segmentation/__init__.py +2 -2
  466. paddlex/modules/instance_segmentation/dataset_checker/__init__.py +2 -3
  467. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/__init__.py +2 -2
  468. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/analyse_dataset.py +9 -5
  469. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/check_dataset.py +8 -5
  470. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/convert_dataset.py +8 -8
  471. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/split_dataset.py +7 -4
  472. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/__init__.py +1 -1
  473. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py +10 -8
  474. paddlex/modules/instance_segmentation/evaluator.py +1 -1
  475. paddlex/modules/instance_segmentation/exportor.py +1 -1
  476. paddlex/modules/instance_segmentation/model_list.py +1 -1
  477. paddlex/modules/instance_segmentation/trainer.py +1 -1
  478. paddlex/modules/keypoint_detection/__init__.py +2 -2
  479. paddlex/modules/keypoint_detection/dataset_checker/__init__.py +2 -2
  480. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/__init__.py +1 -1
  481. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/check_dataset.py +10 -5
  482. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  483. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/visualizer.py +8 -3
  484. paddlex/modules/keypoint_detection/evaluator.py +1 -1
  485. paddlex/modules/keypoint_detection/exportor.py +1 -1
  486. paddlex/modules/keypoint_detection/model_list.py +1 -1
  487. paddlex/modules/keypoint_detection/trainer.py +2 -2
  488. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/__init__.py +2 -2
  489. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/__init__.py +3 -3
  490. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/dataset_src/__init__.py +2 -2
  491. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/dataset_src/analyse_dataset.py +8 -8
  492. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/dataset_checker/dataset_src/check_dataset.py +1 -2
  493. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/evaluator.py +1 -1
  494. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/exportor.py +1 -1
  495. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/model_list.py +1 -1
  496. paddlex/modules/{3d_bev_detection → m_3d_bev_detection}/trainer.py +5 -7
  497. paddlex/modules/multilabel_classification/__init__.py +2 -2
  498. paddlex/modules/multilabel_classification/dataset_checker/__init__.py +2 -2
  499. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/__init__.py +2 -2
  500. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  501. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/check_dataset.py +4 -3
  502. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/convert_dataset.py +10 -7
  503. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  504. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/__init__.py +1 -1
  505. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/visualizer.py +1 -5
  506. paddlex/modules/multilabel_classification/evaluator.py +1 -1
  507. paddlex/modules/multilabel_classification/exportor.py +1 -1
  508. paddlex/modules/multilabel_classification/model_list.py +1 -1
  509. paddlex/modules/multilabel_classification/trainer.py +3 -3
  510. paddlex/modules/multilingual_speech_recognition/__init__.py +2 -2
  511. paddlex/modules/multilingual_speech_recognition/dataset_checker.py +3 -3
  512. paddlex/modules/multilingual_speech_recognition/evaluator.py +3 -3
  513. paddlex/modules/multilingual_speech_recognition/exportor.py +3 -3
  514. paddlex/modules/multilingual_speech_recognition/model_list.py +1 -1
  515. paddlex/modules/multilingual_speech_recognition/trainer.py +7 -5
  516. paddlex/modules/object_detection/__init__.py +2 -2
  517. paddlex/modules/object_detection/dataset_checker/__init__.py +2 -11
  518. paddlex/modules/object_detection/dataset_checker/dataset_src/__init__.py +2 -2
  519. paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py +10 -8
  520. paddlex/modules/object_detection/dataset_checker/dataset_src/check_dataset.py +10 -5
  521. paddlex/modules/object_detection/dataset_checker/dataset_src/convert_dataset.py +13 -8
  522. paddlex/modules/object_detection/dataset_checker/dataset_src/split_dataset.py +8 -4
  523. paddlex/modules/object_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  524. paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py +9 -8
  525. paddlex/modules/object_detection/evaluator.py +9 -4
  526. paddlex/modules/object_detection/exportor.py +1 -1
  527. paddlex/modules/object_detection/model_list.py +1 -1
  528. paddlex/modules/object_detection/trainer.py +4 -5
  529. paddlex/modules/open_vocabulary_detection/__init__.py +2 -2
  530. paddlex/modules/open_vocabulary_detection/dataset_checker.py +3 -3
  531. paddlex/modules/open_vocabulary_detection/evaluator.py +3 -3
  532. paddlex/modules/open_vocabulary_detection/exportor.py +3 -3
  533. paddlex/modules/open_vocabulary_detection/model_list.py +2 -4
  534. paddlex/modules/open_vocabulary_detection/trainer.py +7 -5
  535. paddlex/modules/open_vocabulary_segmentation/__init__.py +2 -2
  536. paddlex/modules/open_vocabulary_segmentation/dataset_checker.py +3 -3
  537. paddlex/modules/open_vocabulary_segmentation/evaluator.py +3 -3
  538. paddlex/modules/open_vocabulary_segmentation/exportor.py +3 -3
  539. paddlex/modules/open_vocabulary_segmentation/model_list.py +1 -1
  540. paddlex/modules/open_vocabulary_segmentation/trainer.py +7 -5
  541. paddlex/modules/semantic_segmentation/__init__.py +2 -2
  542. paddlex/modules/semantic_segmentation/dataset_checker/__init__.py +2 -3
  543. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/__init__.py +2 -2
  544. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/analyse_dataset.py +6 -3
  545. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/check_dataset.py +2 -2
  546. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/convert_dataset.py +7 -4
  547. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/split_dataset.py +2 -2
  548. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/__init__.py +1 -1
  549. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/visualizer.py +6 -2
  550. paddlex/modules/semantic_segmentation/evaluator.py +1 -1
  551. paddlex/modules/semantic_segmentation/exportor.py +1 -1
  552. paddlex/modules/semantic_segmentation/model_list.py +1 -1
  553. paddlex/modules/semantic_segmentation/trainer.py +3 -4
  554. paddlex/modules/table_recognition/__init__.py +2 -2
  555. paddlex/modules/table_recognition/dataset_checker/__init__.py +5 -5
  556. paddlex/modules/table_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  557. paddlex/modules/table_recognition/dataset_checker/dataset_src/analyse_dataset.py +3 -2
  558. paddlex/modules/table_recognition/dataset_checker/dataset_src/check_dataset.py +8 -7
  559. paddlex/modules/table_recognition/dataset_checker/dataset_src/split_dataset.py +2 -1
  560. paddlex/modules/table_recognition/evaluator.py +1 -1
  561. paddlex/modules/table_recognition/exportor.py +1 -1
  562. paddlex/modules/table_recognition/model_list.py +1 -1
  563. paddlex/modules/table_recognition/trainer.py +2 -5
  564. paddlex/modules/text_detection/__init__.py +2 -2
  565. paddlex/modules/text_detection/dataset_checker/__init__.py +4 -6
  566. paddlex/modules/text_detection/dataset_checker/dataset_src/__init__.py +2 -2
  567. paddlex/modules/text_detection/dataset_checker/dataset_src/analyse_dataset.py +12 -9
  568. paddlex/modules/text_detection/dataset_checker/dataset_src/check_dataset.py +3 -3
  569. paddlex/modules/text_detection/dataset_checker/dataset_src/split_dataset.py +3 -3
  570. paddlex/modules/text_detection/evaluator.py +1 -1
  571. paddlex/modules/text_detection/exportor.py +1 -1
  572. paddlex/modules/text_detection/model_list.py +1 -1
  573. paddlex/modules/text_detection/trainer.py +2 -5
  574. paddlex/modules/text_recognition/__init__.py +2 -2
  575. paddlex/modules/text_recognition/dataset_checker/__init__.py +4 -5
  576. paddlex/modules/text_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  577. paddlex/modules/text_recognition/dataset_checker/dataset_src/analyse_dataset.py +13 -12
  578. paddlex/modules/text_recognition/dataset_checker/dataset_src/check_dataset.py +2 -5
  579. paddlex/modules/text_recognition/dataset_checker/dataset_src/convert_dataset.py +11 -10
  580. paddlex/modules/text_recognition/dataset_checker/dataset_src/split_dataset.py +1 -2
  581. paddlex/modules/text_recognition/evaluator.py +1 -1
  582. paddlex/modules/text_recognition/exportor.py +1 -1
  583. paddlex/modules/text_recognition/model_list.py +1 -1
  584. paddlex/modules/text_recognition/trainer.py +2 -3
  585. paddlex/modules/ts_anomaly_detection/__init__.py +2 -2
  586. paddlex/modules/ts_anomaly_detection/dataset_checker/__init__.py +4 -5
  587. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/__init__.py +2 -2
  588. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py +1 -9
  589. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/check_dataset.py +2 -2
  590. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/convert_dataset.py +2 -6
  591. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/split_dataset.py +4 -4
  592. paddlex/modules/ts_anomaly_detection/evaluator.py +1 -1
  593. paddlex/modules/ts_anomaly_detection/exportor.py +2 -3
  594. paddlex/modules/ts_anomaly_detection/model_list.py +1 -1
  595. paddlex/modules/ts_anomaly_detection/trainer.py +8 -8
  596. paddlex/modules/ts_classification/__init__.py +2 -2
  597. paddlex/modules/ts_classification/dataset_checker/__init__.py +4 -5
  598. paddlex/modules/ts_classification/dataset_checker/dataset_src/__init__.py +2 -2
  599. paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -5
  600. paddlex/modules/ts_classification/dataset_checker/dataset_src/check_dataset.py +2 -2
  601. paddlex/modules/ts_classification/dataset_checker/dataset_src/convert_dataset.py +2 -6
  602. paddlex/modules/ts_classification/dataset_checker/dataset_src/split_dataset.py +4 -4
  603. paddlex/modules/ts_classification/evaluator.py +1 -1
  604. paddlex/modules/ts_classification/exportor.py +2 -3
  605. paddlex/modules/ts_classification/model_list.py +1 -1
  606. paddlex/modules/ts_classification/trainer.py +7 -7
  607. paddlex/modules/ts_forecast/__init__.py +2 -2
  608. paddlex/modules/ts_forecast/dataset_checker/__init__.py +4 -5
  609. paddlex/modules/ts_forecast/dataset_checker/dataset_src/__init__.py +2 -2
  610. paddlex/modules/ts_forecast/dataset_checker/dataset_src/analyse_dataset.py +1 -9
  611. paddlex/modules/ts_forecast/dataset_checker/dataset_src/check_dataset.py +2 -2
  612. paddlex/modules/ts_forecast/dataset_checker/dataset_src/convert_dataset.py +2 -6
  613. paddlex/modules/ts_forecast/dataset_checker/dataset_src/split_dataset.py +4 -4
  614. paddlex/modules/ts_forecast/evaluator.py +1 -1
  615. paddlex/modules/ts_forecast/exportor.py +2 -3
  616. paddlex/modules/ts_forecast/model_list.py +1 -1
  617. paddlex/modules/ts_forecast/trainer.py +7 -7
  618. paddlex/modules/video_classification/__init__.py +2 -2
  619. paddlex/modules/video_classification/dataset_checker/__init__.py +2 -2
  620. paddlex/modules/video_classification/dataset_checker/dataset_src/__init__.py +2 -2
  621. paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset.py +9 -9
  622. paddlex/modules/video_classification/dataset_checker/dataset_src/check_dataset.py +2 -3
  623. paddlex/modules/video_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  624. paddlex/modules/video_classification/evaluator.py +1 -1
  625. paddlex/modules/video_classification/exportor.py +1 -1
  626. paddlex/modules/video_classification/model_list.py +1 -1
  627. paddlex/modules/video_classification/trainer.py +3 -3
  628. paddlex/modules/video_detection/__init__.py +2 -2
  629. paddlex/modules/video_detection/dataset_checker/__init__.py +2 -2
  630. paddlex/modules/video_detection/dataset_checker/dataset_src/__init__.py +2 -2
  631. paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  632. paddlex/modules/video_detection/dataset_checker/dataset_src/check_dataset.py +3 -5
  633. paddlex/modules/video_detection/evaluator.py +1 -1
  634. paddlex/modules/video_detection/exportor.py +1 -1
  635. paddlex/modules/video_detection/model_list.py +1 -1
  636. paddlex/modules/video_detection/trainer.py +3 -3
  637. paddlex/ops/__init__.py +5 -2
  638. paddlex/ops/iou3d_nms/iou3d_cpu.cpp +8 -6
  639. paddlex/ops/iou3d_nms/iou3d_cpu.h +3 -2
  640. paddlex/ops/iou3d_nms/iou3d_nms.cpp +8 -6
  641. paddlex/ops/iou3d_nms/iou3d_nms.h +6 -4
  642. paddlex/ops/iou3d_nms/iou3d_nms_api.cpp +24 -18
  643. paddlex/ops/iou3d_nms/iou3d_nms_kernel.cu +9 -7
  644. paddlex/ops/setup.py +3 -3
  645. paddlex/ops/voxel/voxelize_op.cc +22 -19
  646. paddlex/ops/voxel/voxelize_op.cu +25 -25
  647. paddlex/paddlex_cli.py +86 -75
  648. paddlex/repo_apis/Paddle3D_api/__init__.py +1 -1
  649. paddlex/repo_apis/Paddle3D_api/bev_fusion/__init__.py +1 -1
  650. paddlex/repo_apis/Paddle3D_api/bev_fusion/config.py +1 -1
  651. paddlex/repo_apis/Paddle3D_api/bev_fusion/model.py +4 -4
  652. paddlex/repo_apis/Paddle3D_api/bev_fusion/register.py +2 -2
  653. paddlex/repo_apis/Paddle3D_api/bev_fusion/runner.py +1 -1
  654. paddlex/repo_apis/Paddle3D_api/pp3d_config.py +3 -2
  655. paddlex/repo_apis/PaddleClas_api/__init__.py +1 -1
  656. paddlex/repo_apis/PaddleClas_api/cls/__init__.py +3 -3
  657. paddlex/repo_apis/PaddleClas_api/cls/config.py +4 -3
  658. paddlex/repo_apis/PaddleClas_api/cls/model.py +3 -3
  659. paddlex/repo_apis/PaddleClas_api/cls/register.py +2 -3
  660. paddlex/repo_apis/PaddleClas_api/cls/runner.py +1 -2
  661. paddlex/repo_apis/PaddleClas_api/shitu_rec/__init__.py +2 -2
  662. paddlex/repo_apis/PaddleClas_api/shitu_rec/config.py +2 -2
  663. paddlex/repo_apis/PaddleClas_api/shitu_rec/model.py +1 -4
  664. paddlex/repo_apis/PaddleClas_api/shitu_rec/register.py +2 -2
  665. paddlex/repo_apis/PaddleClas_api/shitu_rec/runner.py +1 -6
  666. paddlex/repo_apis/PaddleDetection_api/__init__.py +2 -2
  667. paddlex/repo_apis/PaddleDetection_api/config_helper.py +3 -3
  668. paddlex/repo_apis/PaddleDetection_api/instance_seg/__init__.py +2 -2
  669. paddlex/repo_apis/PaddleDetection_api/instance_seg/config.py +2 -3
  670. paddlex/repo_apis/PaddleDetection_api/instance_seg/model.py +3 -3
  671. paddlex/repo_apis/PaddleDetection_api/instance_seg/register.py +2 -3
  672. paddlex/repo_apis/PaddleDetection_api/instance_seg/runner.py +1 -2
  673. paddlex/repo_apis/PaddleDetection_api/object_det/__init__.py +3 -3
  674. paddlex/repo_apis/PaddleDetection_api/object_det/config.py +4 -3
  675. paddlex/repo_apis/PaddleDetection_api/object_det/model.py +5 -6
  676. paddlex/repo_apis/PaddleDetection_api/object_det/official_categories.py +1 -1
  677. paddlex/repo_apis/PaddleDetection_api/object_det/register.py +2 -3
  678. paddlex/repo_apis/PaddleDetection_api/object_det/runner.py +1 -2
  679. paddlex/repo_apis/PaddleNLP_api/__init__.py +1 -1
  680. paddlex/repo_apis/PaddleOCR_api/__init__.py +4 -3
  681. paddlex/repo_apis/PaddleOCR_api/config_utils.py +1 -1
  682. paddlex/repo_apis/PaddleOCR_api/formula_rec/__init__.py +1 -1
  683. paddlex/repo_apis/PaddleOCR_api/formula_rec/config.py +4 -3
  684. paddlex/repo_apis/PaddleOCR_api/formula_rec/model.py +4 -4
  685. paddlex/repo_apis/PaddleOCR_api/formula_rec/register.py +2 -3
  686. paddlex/repo_apis/PaddleOCR_api/formula_rec/runner.py +1 -2
  687. paddlex/repo_apis/PaddleOCR_api/table_rec/__init__.py +1 -1
  688. paddlex/repo_apis/PaddleOCR_api/table_rec/config.py +1 -1
  689. paddlex/repo_apis/PaddleOCR_api/table_rec/model.py +3 -3
  690. paddlex/repo_apis/PaddleOCR_api/table_rec/register.py +2 -3
  691. paddlex/repo_apis/PaddleOCR_api/table_rec/runner.py +2 -2
  692. paddlex/repo_apis/PaddleOCR_api/text_det/__init__.py +1 -1
  693. paddlex/repo_apis/PaddleOCR_api/text_det/config.py +1 -1
  694. paddlex/repo_apis/PaddleOCR_api/text_det/model.py +3 -3
  695. paddlex/repo_apis/PaddleOCR_api/text_det/register.py +2 -3
  696. paddlex/repo_apis/PaddleOCR_api/text_det/runner.py +2 -2
  697. paddlex/repo_apis/PaddleOCR_api/text_rec/__init__.py +1 -1
  698. paddlex/repo_apis/PaddleOCR_api/text_rec/config.py +4 -3
  699. paddlex/repo_apis/PaddleOCR_api/text_rec/model.py +4 -4
  700. paddlex/repo_apis/PaddleOCR_api/text_rec/register.py +2 -3
  701. paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py +1 -2
  702. paddlex/repo_apis/PaddleSeg_api/__init__.py +1 -1
  703. paddlex/repo_apis/PaddleSeg_api/base_seg_config.py +2 -2
  704. paddlex/repo_apis/PaddleSeg_api/seg/__init__.py +1 -1
  705. paddlex/repo_apis/PaddleSeg_api/seg/config.py +3 -6
  706. paddlex/repo_apis/PaddleSeg_api/seg/model.py +5 -5
  707. paddlex/repo_apis/PaddleSeg_api/seg/register.py +2 -3
  708. paddlex/repo_apis/PaddleSeg_api/seg/runner.py +1 -2
  709. paddlex/repo_apis/PaddleTS_api/__init__.py +4 -3
  710. paddlex/repo_apis/PaddleTS_api/ts_ad/__init__.py +1 -1
  711. paddlex/repo_apis/PaddleTS_api/ts_ad/config.py +2 -3
  712. paddlex/repo_apis/PaddleTS_api/ts_ad/register.py +2 -2
  713. paddlex/repo_apis/PaddleTS_api/ts_ad/runner.py +2 -2
  714. paddlex/repo_apis/PaddleTS_api/ts_base/__init__.py +1 -1
  715. paddlex/repo_apis/PaddleTS_api/ts_base/config.py +2 -4
  716. paddlex/repo_apis/PaddleTS_api/ts_base/model.py +4 -4
  717. paddlex/repo_apis/PaddleTS_api/ts_base/runner.py +2 -2
  718. paddlex/repo_apis/PaddleTS_api/ts_cls/__init__.py +1 -1
  719. paddlex/repo_apis/PaddleTS_api/ts_cls/config.py +2 -3
  720. paddlex/repo_apis/PaddleTS_api/ts_cls/register.py +2 -2
  721. paddlex/repo_apis/PaddleTS_api/ts_cls/runner.py +2 -2
  722. paddlex/repo_apis/PaddleTS_api/ts_fc/__init__.py +1 -1
  723. paddlex/repo_apis/PaddleTS_api/ts_fc/config.py +2 -3
  724. paddlex/repo_apis/PaddleTS_api/ts_fc/register.py +1 -1
  725. paddlex/repo_apis/PaddleVideo_api/__init__.py +1 -1
  726. paddlex/repo_apis/PaddleVideo_api/config_utils.py +1 -1
  727. paddlex/repo_apis/PaddleVideo_api/video_cls/__init__.py +3 -3
  728. paddlex/repo_apis/PaddleVideo_api/video_cls/config.py +4 -3
  729. paddlex/repo_apis/PaddleVideo_api/video_cls/model.py +3 -3
  730. paddlex/repo_apis/PaddleVideo_api/video_cls/register.py +2 -3
  731. paddlex/repo_apis/PaddleVideo_api/video_cls/runner.py +1 -2
  732. paddlex/repo_apis/PaddleVideo_api/video_det/__init__.py +3 -3
  733. paddlex/repo_apis/PaddleVideo_api/video_det/config.py +4 -3
  734. paddlex/repo_apis/PaddleVideo_api/video_det/model.py +4 -4
  735. paddlex/repo_apis/PaddleVideo_api/video_det/register.py +2 -3
  736. paddlex/repo_apis/PaddleVideo_api/video_det/runner.py +1 -2
  737. paddlex/repo_apis/__init__.py +1 -1
  738. paddlex/repo_apis/base/__init__.py +4 -5
  739. paddlex/repo_apis/base/config.py +2 -3
  740. paddlex/repo_apis/base/model.py +11 -19
  741. paddlex/repo_apis/base/register.py +1 -1
  742. paddlex/repo_apis/base/runner.py +11 -12
  743. paddlex/repo_apis/base/utils/__init__.py +1 -1
  744. paddlex/repo_apis/base/utils/arg.py +1 -1
  745. paddlex/repo_apis/base/utils/subprocess.py +1 -1
  746. paddlex/repo_manager/__init__.py +2 -9
  747. paddlex/repo_manager/core.py +9 -27
  748. paddlex/repo_manager/meta.py +37 -31
  749. paddlex/repo_manager/repo.py +169 -160
  750. paddlex/repo_manager/utils.py +13 -224
  751. paddlex/utils/__init__.py +1 -1
  752. paddlex/utils/cache.py +8 -10
  753. paddlex/utils/config.py +6 -5
  754. paddlex/utils/{custom_device_whitelist.py → custom_device_list.py} +29 -199
  755. paddlex/utils/deps.py +249 -0
  756. paddlex/utils/device.py +73 -29
  757. paddlex/utils/download.py +4 -4
  758. paddlex/utils/env.py +33 -7
  759. paddlex/utils/errors/__init__.py +1 -1
  760. paddlex/utils/errors/dataset_checker.py +1 -1
  761. paddlex/utils/errors/others.py +2 -16
  762. paddlex/utils/file_interface.py +4 -5
  763. paddlex/utils/flags.py +19 -12
  764. paddlex/utils/fonts/__init__.py +2 -1
  765. paddlex/utils/func_register.py +1 -1
  766. paddlex/utils/install.py +87 -0
  767. paddlex/utils/interactive_get_pipeline.py +3 -3
  768. paddlex/utils/lazy_loader.py +3 -3
  769. paddlex/utils/logging.py +10 -1
  770. paddlex/utils/misc.py +5 -5
  771. paddlex/utils/pipeline_arguments.py +15 -7
  772. paddlex/utils/result_saver.py +4 -5
  773. paddlex/utils/subclass_register.py +2 -4
  774. paddlex/version.py +2 -1
  775. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.0rc1.dist-info}/METADATA +212 -73
  776. paddlex-3.0.0rc1.dist-info/RECORD +1068 -0
  777. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.0rc1.dist-info}/WHEEL +1 -1
  778. paddlex/inference/models/base/predictor/basic_predictor.py +0 -139
  779. paddlex/paddle2onnx_requirements.txt +0 -1
  780. paddlex/repo_manager/requirements.txt +0 -21
  781. paddlex/serving_requirements.txt +0 -9
  782. paddlex-3.0.0rc0.dist-info/RECORD +0 -1015
  783. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.0rc1.dist-info}/entry_points.txt +0 -0
  784. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.0rc1.dist-info/licenses}/LICENSE +0 -0
  785. {paddlex-3.0.0rc0.dist-info → paddlex-3.0.0rc1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1068 @@
1
+ paddlex/.version,sha256=bzjZYpxWBRVdeXwvMLjuTIRHaTJ8_qHMWKQ8Kno8qV0,10
2
+ paddlex/__init__.py,sha256=Lo7RZuG9zgwtNdwiVJalKWrEDzJNyWQVUjMXCrjHto4,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=V49D1XhMatuJZU3DwOT34RukM7fW4Uk7hZGqVNXLuuc,3891
7
+ paddlex/model.py,sha256=gDRfSsW08pVlWoj4j1oI0W7nvlq8pRsNGsJoA-VHnhg,4248
8
+ paddlex/paddlex_cli.py,sha256=pKZMoB_vKy8dHTyUkoVLQ6KRSA6aDoC99lr2rG9652M,16066
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/doc_text_orientation/PP-LCNet_x1_0_doc_ori.yaml,sha256=AETe_giWiq8ribioePFEhjdS39t_cTGQnvGB6Mkn4jw,1109
12
+ paddlex/configs/modules/doc_vlm/PP-DocBee-2B.yaml,sha256=qLJ2TUwx6S7nm8UFUO987JJABfK2GuCQk7mT2fjYd5k,351
13
+ paddlex/configs/modules/doc_vlm/PP-DocBee-7B.yaml,sha256=xlEKjNJV3CkkYto6Dtk9_U7UWxLfO6I_AbzVHLF3ZZo,351
14
+ paddlex/configs/modules/face_detection/BlazeFace-FPN-SSH.yaml,sha256=S92uHNRVm9YABasucmIlriQ00Vy7zUBcyXz9AJAGRn8,1078
15
+ paddlex/configs/modules/face_detection/BlazeFace.yaml,sha256=BMIwuscezZVmZWyNva1_Mkh_sQBH1NHRIlnwgQcAUmY,1054
16
+ paddlex/configs/modules/face_detection/PP-YOLOE_plus-S_face.yaml,sha256=kSJr8mjBNMbH4_ZcuLZk7AkH0JsRkVw4Mn5gD4SKw9k,1088
17
+ paddlex/configs/modules/face_detection/PicoDet_LCNet_x2_5_face.yaml,sha256=WHsjo5iU9QDX13lnpTCE_HhZpk9lakTNG8Dka4FnHVU,1095
18
+ paddlex/configs/modules/face_feature/MobileFaceNet.yaml,sha256=QV571iibXQXO9JMF1UF0_wV8CZonDW4pQoURG0NmGyI,1087
19
+ paddlex/configs/modules/face_feature/ResNet50_face.yaml,sha256=qGhhLwJo3blkTdLMh9_8GiAs3jpNEv8DlqI3GSm7JWY,1086
20
+ paddlex/configs/modules/formula_recognition/LaTeX_OCR_rec.yaml,sha256=X-Z8kgZ_kM_MGsjHH_HOnylItLew0J7nEDRgwz2SFMg,1087
21
+ paddlex/configs/modules/formula_recognition/PP-FormulaNet-L.yaml,sha256=ja7E-X8lP4yIuk-_AS4PH1_R2kwpJ876wlCfF8WVfa8,1092
22
+ paddlex/configs/modules/formula_recognition/PP-FormulaNet-S.yaml,sha256=pL9pZINe-2aVoDJ5CSGOg6aiGwZAQQpjLSqNelozllc,1094
23
+ paddlex/configs/modules/formula_recognition/UniMERNet.yaml,sha256=E1OSy2fPSYyMVA5z_QDLUMhxPjDliF3f88pXUQhQlWo,1075
24
+ paddlex/configs/modules/human_detection/PP-YOLOE-L_human.yaml,sha256=NU3jFyEip_TU6aURcqV1kzYDA6dLTsos3-6BW40TeJ4,1080
25
+ paddlex/configs/modules/human_detection/PP-YOLOE-S_human.yaml,sha256=ZsNbemUP-tIBqy1KVLE2MCybtWk1V90AXIY-5k1MbTw,1080
26
+ paddlex/configs/modules/image_anomaly_detection/STFPM.yaml,sha256=m0xBEfchDCBb06cBLpqrHAXPwqENaR36kQp9GwG5M1M,929
27
+ paddlex/configs/modules/image_classification/CLIP_vit_base_patch16_224.yaml,sha256=LK_n8fQaBkfiBHIwU88gG1zZOAGM8oVsguwomjowie8,1138
28
+ paddlex/configs/modules/image_classification/CLIP_vit_large_patch14_224.yaml,sha256=w_YUGfVLSAXZYsSF26HCFU7PpzT__xUhCNH9rD-aB0M,1141
29
+ paddlex/configs/modules/image_classification/ConvNeXt_base_224.yaml,sha256=gn-n3SfGCZ6_OOgwRY7k4EXuFEEtL0PiPdnZMhayRH4,1113
30
+ paddlex/configs/modules/image_classification/ConvNeXt_base_384.yaml,sha256=jqB7RwPQhJuhRgZONnkVSZihXkBhJqlPgbfQ2ErpI64,1113
31
+ paddlex/configs/modules/image_classification/ConvNeXt_large_224.yaml,sha256=echAqQdzckFmG8cZ2xeQUgAuZwyuGWwSZNCGgGg3-0Q,1116
32
+ paddlex/configs/modules/image_classification/ConvNeXt_large_384.yaml,sha256=utgE1-Eoe84BCjoJgipcdovtg-Q2J2aTpVRfMgNoy7Y,1115
33
+ paddlex/configs/modules/image_classification/ConvNeXt_small.yaml,sha256=CoBafC89MdqdPhgCkbYtRqbPmWoNeFa9U0SGXBFbehE,1104
34
+ paddlex/configs/modules/image_classification/ConvNeXt_tiny.yaml,sha256=NikOVm_RaepPQbeciIOy-QHCnJnfaL4iJfaqo05ALEY,1101
35
+ paddlex/configs/modules/image_classification/FasterNet-L.yaml,sha256=IwASicfaAaYMXTBe0Rp3zVopdczXD8P3GHDaVykBER0,1093
36
+ paddlex/configs/modules/image_classification/FasterNet-M.yaml,sha256=qeWU3wmgWIhYcnQmjbA5f--xNx7ChOC9ipbKacniEsc,1093
37
+ paddlex/configs/modules/image_classification/FasterNet-S.yaml,sha256=F5NhqQpLUQZhZI83Po6i8iwnlKuI0ejNDBxOAmoS5ig,1094
38
+ paddlex/configs/modules/image_classification/FasterNet-T0.yaml,sha256=jt6nfJaCEUbsmy4JSaMcgBITep3Fyoj13gfYBC8hXjo,1097
39
+ paddlex/configs/modules/image_classification/FasterNet-T1.yaml,sha256=qlraq3GaqNZfHIYZl7UFOosFND8qfcTTg22yO81L-5Y,1097
40
+ paddlex/configs/modules/image_classification/FasterNet-T2.yaml,sha256=KRRjkp3hsc3n6ZfdrJ4Avfd8al2Q5dP5490PAYT0FTM,1097
41
+ paddlex/configs/modules/image_classification/MobileNetV1_x0_25.yaml,sha256=uLoUWZ6DsLU6AI8Axl2S_TzLNvmUrmRs5iUSRCUDHQw,1111
42
+ paddlex/configs/modules/image_classification/MobileNetV1_x0_5.yaml,sha256=2gSU1bET_sK1Y1yGNDit4xjR6BHrMMKPotW5DzueXig,1108
43
+ paddlex/configs/modules/image_classification/MobileNetV1_x0_75.yaml,sha256=iWz2iNvOfKZwKtYJeeWDC1fG1hcXJa3hVO2wBQyFSpA,1111
44
+ paddlex/configs/modules/image_classification/MobileNetV1_x1_0.yaml,sha256=Wvvj_X4DSmlJYQGPrPnrChL3hD3WakRGFmGdappn_-0,1108
45
+ paddlex/configs/modules/image_classification/MobileNetV2_x0_25.yaml,sha256=psRKr_FG-NYYOO9UN0qrKt2g0eZSO_1W0qVnBAoHNhg,1113
46
+ paddlex/configs/modules/image_classification/MobileNetV2_x0_5.yaml,sha256=qb_yqAv-2faVTl_iArBh2m9NjwOe65qP2hA2YqFsyeA,1110
47
+ paddlex/configs/modules/image_classification/MobileNetV2_x1_0.yaml,sha256=1937V9J05n8BnykdEwXqfpPWfInTMcqaIoUgUwVbqVA,1110
48
+ paddlex/configs/modules/image_classification/MobileNetV2_x1_5.yaml,sha256=obtZs2YvXv6sZPbNFCMJVfD4m76jdlEJp7F_EuPN1F8,1110
49
+ paddlex/configs/modules/image_classification/MobileNetV2_x2_0.yaml,sha256=N0GcWa5yJYZXHZ8J_FhuJfRkbKlnusIQaAFsKBECbhU,1110
50
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x0_35.yaml,sha256=iC1YYIwKmGXR0n6cdQCJejlV-exSYzdqlyEpfTdKSsY,1131
51
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x0_5.yaml,sha256=q_fgzScX9kzHBfr1wpT9LN68rrVoJuDzVZJHiKXS4Pc,1128
52
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x0_75.yaml,sha256=A_HA8UzcoeRl3E3Bpx7jSu4rf8ziXqYR8r-2mMZan1k,1131
53
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x1_0.yaml,sha256=wa_5xcKMe1_U65mHGs2-LXRpDAe6neFJze6ELUZblnY,1128
54
+ paddlex/configs/modules/image_classification/MobileNetV3_large_x1_25.yaml,sha256=-nhvLFSewcu4GF6hRE-O5sh02bMoQDNH7DP5_rr9KP8,1131
55
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x0_35.yaml,sha256=VK0X449vo4Xh0J6yfZBiEmtk0ZzPrhyh7WCRC5w0IFU,1131
56
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x0_5.yaml,sha256=tMU6hQFi0VyP2MBaYFpcXyFm4yg-t4E4P25Di-z4VaA,1128
57
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x0_75.yaml,sha256=lFsgeV0mcZcjaPH1y9VuGT1JzKSGVcxmMaaCo7f2X8E,1131
58
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x1_0.yaml,sha256=A6DJ6GoNVeJaJopRlbkX8BkUHGSiAy37Yp5gnlkT2F8,1128
59
+ paddlex/configs/modules/image_classification/MobileNetV3_small_x1_25.yaml,sha256=zcXwhMKlakpSDmyDn7TaZbKv0G0cWhN80iQKR6zAqCA,1131
60
+ paddlex/configs/modules/image_classification/MobileNetV4_conv_large.yaml,sha256=bSezzL_GQlk5IrB4QW2RjN1W5oxCgKtksJJ7rRM9M-k,1127
61
+ paddlex/configs/modules/image_classification/MobileNetV4_conv_medium.yaml,sha256=wRZ7DiS4l28KG6ZZ_PaS49w83EALTW2AfxPpLEQ4tXc,1131
62
+ paddlex/configs/modules/image_classification/MobileNetV4_conv_small.yaml,sha256=hEkIvgIiXq-RiTzSdZIWEAwC5WDOdNspGipy1OXRIrc,1128
63
+ paddlex/configs/modules/image_classification/MobileNetV4_hybrid_large.yaml,sha256=uWEcHM6VXxe_MxShLvOwaQvk0yuLJEJJOanmAj7SQOY,1133
64
+ paddlex/configs/modules/image_classification/MobileNetV4_hybrid_medium.yaml,sha256=7LIQwtNGjn3tZCw-aZgauG_auuJGA-_FAtJaGLw2c4U,1136
65
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B0.yaml,sha256=zBJupgZWNjJ-vScLqMEaeyEOZk1FEn3ll-09UfCp8GQ,1100
66
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B1.yaml,sha256=HCa-dcRmkKhbgiJjqq2TjIKmb3eldge3pQTjuEXW8F0,1100
67
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B2.yaml,sha256=4UD0nLoR1obIbgx50ECUoK82Tdhxs3pZJ8uJUikZ3ko,1100
68
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B3.yaml,sha256=HDunHsQCUjGd4OgLgrA5yDJNS0NBYc4TGbFDOP_rB3A,1100
69
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B4.yaml,sha256=nOOzk3RJtrNihSTo5KVoTfJGvzlR9w--KFSOwDkCOC8,1100
70
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B5.yaml,sha256=g0aob11iDTk5sMv442cOBxf_SQfm7QXp2qIT84bbHSQ,1100
71
+ paddlex/configs/modules/image_classification/PP-HGNetV2-B6.yaml,sha256=9mrKN9fxI5ueRE8nuJdhAujp3M4xNjKUm9OINRma0Hw,1100
72
+ paddlex/configs/modules/image_classification/PP-HGNet_base.yaml,sha256=l_FgAahuQvut0d4SFNYuStu3Qj-y6USR1WN4iE5c13I,1100
73
+ paddlex/configs/modules/image_classification/PP-HGNet_small.yaml,sha256=_mRqbbfPi7pAKcmSMNmjzZn84978Od5osuAY-wkZEmA,1103
74
+ paddlex/configs/modules/image_classification/PP-HGNet_tiny.yaml,sha256=_cttp27OzbF3FfTAeRMS05UHi3VVULeGzCYnvW7_A9o,1100
75
+ paddlex/configs/modules/image_classification/PP-LCNetV2_base.yaml,sha256=YUmqFg9MlaDdJg9ZMuhvRge7uz-0QoeSoFP6vA-Viuk,1114
76
+ paddlex/configs/modules/image_classification/PP-LCNetV2_large.yaml,sha256=kle9yZYiQVgDVsXAj6o3b0EZPC5QJQCGs_Vb6WD73fA,1117
77
+ paddlex/configs/modules/image_classification/PP-LCNetV2_small.yaml,sha256=NNJEK4-hw3rQSJtpEXcQ8m4btavpYxKQ1bGjfAQ_soA,1117
78
+ paddlex/configs/modules/image_classification/PP-LCNet_x0_25.yaml,sha256=d4tgfqJJLlzXKKVOSIIEgrMaxhy0up7yRjmHgzJb_i8,1103
79
+ paddlex/configs/modules/image_classification/PP-LCNet_x0_35.yaml,sha256=DlwXHwttQVuG_zU3tuVPfyrNG2gu4RtzHmWg_QtXpcs,1103
80
+ paddlex/configs/modules/image_classification/PP-LCNet_x0_5.yaml,sha256=9ay8PBsdpLeze-dKUL56BPY3TPkTXckts8obUTBbNac,1100
81
+ paddlex/configs/modules/image_classification/PP-LCNet_x0_75.yaml,sha256=GxcfHhImq0jg3KVoFBeELFStoO1BAdvP6TjFJXtI9Lk,1103
82
+ paddlex/configs/modules/image_classification/PP-LCNet_x1_0.yaml,sha256=7xS7Nja6fEalFb4CcpN5S9CxMewtWKJ1hnZjBHWhupk,1108
83
+ paddlex/configs/modules/image_classification/PP-LCNet_x1_5.yaml,sha256=SRf-MXXiH0a1upLgvis3ZQU2tuEWXm3gfAqHFjkhW6w,1100
84
+ paddlex/configs/modules/image_classification/PP-LCNet_x2_0.yaml,sha256=zkX6d5O_hQTR5A2TmjKhxTr653q_nehU9zVOgeWwCzI,1100
85
+ paddlex/configs/modules/image_classification/PP-LCNet_x2_5.yaml,sha256=L-Ci_hL-DPIyfohWSDfLrrgvs5widwHOGHcTVMpQZ4c,1100
86
+ paddlex/configs/modules/image_classification/ResNet101.yaml,sha256=WQ5JrCYbBe_I0aWpt3P_X2F-agnWXJ5NlmqDnYNjFEw,1087
87
+ paddlex/configs/modules/image_classification/ResNet101_vd.yaml,sha256=StIUPW6hPFPF5K68FNY8q130xNFnaxAvN3U0REiNLCk,1096
88
+ paddlex/configs/modules/image_classification/ResNet152.yaml,sha256=2lD9xWr5HdoDlPtncaKbxj5ptTcQfxrOLHZffqUPmuE,1087
89
+ paddlex/configs/modules/image_classification/ResNet152_vd.yaml,sha256=x8L7X1qPut9njAlNh0nfrB1tlgMErKXvsowws1EKZ8o,1096
90
+ paddlex/configs/modules/image_classification/ResNet18.yaml,sha256=1HbFG-Yt1cLAMzc8jPfCmdYilTVziwwt1T7NT9p1eYk,1084
91
+ paddlex/configs/modules/image_classification/ResNet18_vd.yaml,sha256=2wwN5bIB8wSiSkz53jR-uHpBgh7M62QOYGdo4wF-ruw,1093
92
+ paddlex/configs/modules/image_classification/ResNet200_vd.yaml,sha256=NejmKMU0waKlZey1U_6ZFpy02Ci9CDUgXPXrjnBSQc4,1096
93
+ paddlex/configs/modules/image_classification/ResNet34.yaml,sha256=qf6VyTjDUdWsotbS8NoxVOaEh3xEdMJ-NFUR16hy4lM,1084
94
+ paddlex/configs/modules/image_classification/ResNet34_vd.yaml,sha256=LKquktvpzifqEbTDQb8l4Al_6A0TQ6Ta6gvtYnoDj0k,1093
95
+ paddlex/configs/modules/image_classification/ResNet50.yaml,sha256=7BVkuhaKyxQQMNvxkeJ-OvMcytmXKWoYfxCr68QByg8,1084
96
+ paddlex/configs/modules/image_classification/ResNet50_vd.yaml,sha256=R0KyYfaOHmIzPy-fRdEXAK5K0kPcjtSMkYm6gEbO-lI,1093
97
+ paddlex/configs/modules/image_classification/StarNet-S1.yaml,sha256=S0QY-NrVyl29fEDnRmYPLpUVVmyDuTIHzfD6qsky16o,1092
98
+ paddlex/configs/modules/image_classification/StarNet-S2.yaml,sha256=hxglkA28lIXqkXupAL14FmCSFN_WVViVr1Z44Xgh_j4,1092
99
+ paddlex/configs/modules/image_classification/StarNet-S3.yaml,sha256=vPLcd__TJ_mcQOTLJt6EihuFLxmJ6Bzgz3y7qSQKi3M,1092
100
+ paddlex/configs/modules/image_classification/StarNet-S4.yaml,sha256=LwPjtgeNfEc3crIKuaVZe3EgzE82KnrP4uBivcsURFc,1092
101
+ paddlex/configs/modules/image_classification/SwinTransformer_base_patch4_window12_384.yaml,sha256=iNgXGMsZ0FqK2ySMAVsyDs7647ejManggJO2G8rZ39k,1182
102
+ paddlex/configs/modules/image_classification/SwinTransformer_base_patch4_window7_224.yaml,sha256=SdlxnlKwb323PKyVCILq8JSrwQTBAGz4jQLAFheNrlg,1180
103
+ paddlex/configs/modules/image_classification/SwinTransformer_large_patch4_window12_384.yaml,sha256=cK11Pc_kOtsrLAdckl8snE8ZGkr0jrNMGMJJh67mnCo,1185
104
+ paddlex/configs/modules/image_classification/SwinTransformer_large_patch4_window7_224.yaml,sha256=oLWNA6zBBUlFfdSVCv7Y9rXeFEMxMcHP0bLy0b1Vqjk,1182
105
+ paddlex/configs/modules/image_classification/SwinTransformer_small_patch4_window7_224.yaml,sha256=B6lvfAzD2ikr--y8P7m5X8u48pLsTwXtVnhr8U20rck,1182
106
+ paddlex/configs/modules/image_classification/SwinTransformer_tiny_patch4_window7_224.yaml,sha256=wWf5-zN-qJa2fbG5MaetinLngqnycf39yXEslrceamc,1179
107
+ paddlex/configs/modules/image_feature/PP-ShiTuV2_rec.yaml,sha256=fXX3iV2GhbEM5fBdDQpPJQJI1dSzK8XrfEKgiuVUABo,1130
108
+ paddlex/configs/modules/image_feature/PP-ShiTuV2_rec_CLIP_vit_base.yaml,sha256=RYSAJP2cOEirVzza5rN0JXqhuvyc5P8u2yezHzG2jGQ,1234
109
+ paddlex/configs/modules/image_feature/PP-ShiTuV2_rec_CLIP_vit_large.yaml,sha256=mHwThGAxiLpUOK4rii3OuiTqjYQlWIzE6QR8mFBA3gI,1238
110
+ paddlex/configs/modules/image_multilabel_classification/CLIP_vit_base_patch16_448_ML.yaml,sha256=79PcH0PNx0Qci2FXH_l2xHVRR1gWD0SUcI-JDEZmidY,1123
111
+ paddlex/configs/modules/image_multilabel_classification/PP-HGNetV2-B0_ML.yaml,sha256=2DQeB_OcLoEztUAWGbORvoGwl9ApOY10_MtNwoM1dlI,1087
112
+ paddlex/configs/modules/image_multilabel_classification/PP-HGNetV2-B4_ML.yaml,sha256=rizP9nQ5lj7ot-kGwGodY6lf8ixteXlXaA-5FoQRnpc,1085
113
+ paddlex/configs/modules/image_multilabel_classification/PP-HGNetV2-B6_ML.yaml,sha256=2EuE24uTLrsQ6eiMbV1YaIUUA439ARncGag1iqoqP_w,1085
114
+ paddlex/configs/modules/image_multilabel_classification/PP-LCNet_x1_0_ML.yaml,sha256=_G8MQ6cRAnxeGBuMAuHWruHVOkRsGlwKkUXpU0DxcAE,1092
115
+ paddlex/configs/modules/image_multilabel_classification/ResNet50_ML.yaml,sha256=ASNTdy4x2x-Wf-9f5nwDPewr2SZyK_djwIRCtJm-FRw,1069
116
+ paddlex/configs/modules/image_unwarping/UVDoc.yaml,sha256=fJ4jj-tumQrW3YU-nL-_9YIbemD1_Y-CywvY2zdam6c,304
117
+ paddlex/configs/modules/instance_segmentation/Cascade-MaskRCNN-ResNet50-FPN.yaml,sha256=cICXUmiwEZWBsMTehKIaLj76q7Evv8j4pruZeveTpuI,1147
118
+ paddlex/configs/modules/instance_segmentation/Cascade-MaskRCNN-ResNet50-vd-SSLDv2-FPN.yaml,sha256=Z8DJqoZZNWeKsJxWdYfoWDnWUM5jm-ghImsjN8odqnM,1177
119
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-H.yaml,sha256=PRSLpfFUIhno1z0n2mC4IzfyKE97EFfo2fvp4Da3gl0,1104
120
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-L.yaml,sha256=5YkieF2M8jbuVTUTa2GB5VL3q-58VS3fkVMt9XqwgJ0,1104
121
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-M.yaml,sha256=gK3NWLfJu2Z9WvisBsJDKsoHB--cvkxQoPJDiFYWhnU,1104
122
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-S.yaml,sha256=xy9yOYMtZO4FaJSLUYZYBw8txBgqlHmw95gJgcERMq4,1104
123
+ paddlex/configs/modules/instance_segmentation/Mask-RT-DETR-X.yaml,sha256=aqu712KiEihlM01hFf_4BHPL3aRmsY2-xGo6i43EO7k,1104
124
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNeXt101-vd-FPN.yaml,sha256=wLoTkTyOVlp2o6xDMky03kZsbG1bYsW28h0thRZNv6U,1137
125
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet101-FPN.yaml,sha256=6nu7ZakzQ84IlhQifP-9rZlvs9oG6kx9IC4hg1Na9mA,1126
126
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet101-vd-FPN.yaml,sha256=ZVrQWaH-r-GTMGO5IAffTvG9xhzBH_Oa9-kQJYgUyEY,1137
127
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet50-FPN.yaml,sha256=Lhm2lrNCUKkycf9CpuBAHUkNc1z7TNYq5AmLcD_EGEs,1123
128
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet50-vd-FPN.yaml,sha256=rcjv6rYi83etpcQ2gl--O9KGld_Jx_8J3hxAjh76Too,1132
129
+ paddlex/configs/modules/instance_segmentation/MaskRCNN-ResNet50.yaml,sha256=DZc9pJQNpfWsHuF5KbdmcQis0rbdqeF4COC9lMdNAYs,1111
130
+ paddlex/configs/modules/instance_segmentation/PP-YOLOE_seg-S.yaml,sha256=qLTRXJ13jo0M2QIL9MxvMJxosmtEjEAHOeNp8aboHRs,1103
131
+ paddlex/configs/modules/instance_segmentation/SOLOv2.yaml,sha256=8UHZ27HP1JL4koCsn37RQLU8AAgs6ROXNGBRwkuo780,1078
132
+ paddlex/configs/modules/keypoint_detection/PP-TinyPose_128x96.yaml,sha256=-nU2Q82TplTQFPGnQ-5NL2xKDvd5eAUawH9nAqHRtvQ,1093
133
+ paddlex/configs/modules/keypoint_detection/PP-TinyPose_256x192.yaml,sha256=bI4YYbh1gRncbqHTi0l49oV6Uhq3K1kjgSVU-o04-Ck,1096
134
+ paddlex/configs/modules/layout_detection/PP-DocLayout-L.yaml,sha256=ndUiZyuqwwrmCtjtzwsbHxhxFzq-6H-9XiB8pUrOAKI,1059
135
+ paddlex/configs/modules/layout_detection/PP-DocLayout-M.yaml,sha256=OC_OkgCI6cAeIacfbZ2IaOtt8neSr4c2_U8VyuLeRSc,1059
136
+ paddlex/configs/modules/layout_detection/PP-DocLayout-S.yaml,sha256=lU_T6RxcifrYHN77uTEnj4T0PXoMHfOo_S9XQWkM2Es,1059
137
+ paddlex/configs/modules/layout_detection/PicoDet-L_layout_17cls.yaml,sha256=HLuTMH0JI5rF5lCYiG_SG9hH_XGSGoaAUdv17sgAFVA,1084
138
+ paddlex/configs/modules/layout_detection/PicoDet-L_layout_3cls.yaml,sha256=bfJqMZjnzmHdhzgngZgHPCz_mZ7uZf1xTQWBnmQEzBo,1081
139
+ paddlex/configs/modules/layout_detection/PicoDet-S_layout_17cls.yaml,sha256=jm2_FSvWdIZ99RnyX6NX9zw5CtWEJ8Plxax4tycq3Ks,1084
140
+ paddlex/configs/modules/layout_detection/PicoDet-S_layout_3cls.yaml,sha256=xUnksr6O7Jpq0YGwmgj1k5SR6U6WXhX_QoAMbIi-uhc,1081
141
+ paddlex/configs/modules/layout_detection/PicoDet_layout_1x.yaml,sha256=bLT9XKKWv5W1242Okn7qH4N0N2kmutANXsm2-lSbidw,1068
142
+ paddlex/configs/modules/layout_detection/PicoDet_layout_1x_table.yaml,sha256=dmyNwhUgi1z4LS8gSsKyRe3_Tu6svUB1wF6jP6f8qOU,1086
143
+ paddlex/configs/modules/layout_detection/RT-DETR-H_layout_17cls.yaml,sha256=1S20T2TVCHuL2tyWsUmlQeb0OLGz1WrMU7gmpfnmHb0,1086
144
+ paddlex/configs/modules/layout_detection/RT-DETR-H_layout_3cls.yaml,sha256=nHce6T4VZUu-xTbaxRGgBPdu9NJyc4qanxPp0kDYsjg,1083
145
+ paddlex/configs/modules/mainbody_detection/PP-ShiTuV2_det.yaml,sha256=kMXy-QNH8FbAa3VbZIfvMhbzBCOfk2-guQKO3rh5eL4,1080
146
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_base.yaml,sha256=2uhhfAFJIjdL-e83Ue8glHdp-1204dJzloyiRCofg3E,261
147
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_large.yaml,sha256=xNDVp4xXsQE9H7x45rxyVannH3QJDiyPwfmhHKutzfM,263
148
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_medium.yaml,sha256=Q-3qKm611n2nZz7VoY1O6Q0gkrncNh2a_dTTaNhfr_4,265
149
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_small.yaml,sha256=nxNSloqWEyPjg2R60Gv8cSvxc435wojjK5TR7MwQTjk,263
150
+ paddlex/configs/modules/multilingual_speech_recognition/whisper_tiny.yaml,sha256=fbL0zq5jM7C4ME6yRP0LqbEuY0KrODmJa4BmSyQJPMs,261
151
+ paddlex/configs/modules/object_detection/Cascade-FasterRCNN-ResNet50-FPN.yaml,sha256=R64-W1X32E6OLDOJniQ73gqXuTSrFTo7zppGqsQ4gmI,1128
152
+ paddlex/configs/modules/object_detection/Cascade-FasterRCNN-ResNet50-vd-SSLDv2-FPN.yaml,sha256=F3pP_MLxcPRw4kPC-KrOxv49GCsHSqpoOkNxI91TLr0,1159
153
+ paddlex/configs/modules/object_detection/CenterNet-DLA-34.yaml,sha256=S-Q4VI01AQpj-bSTfa5HKcSnprzIFRdytVqxeWUTsPg,1085
154
+ paddlex/configs/modules/object_detection/CenterNet-ResNet50.yaml,sha256=cIqns-7fWGbdA5kZk4YAPqMrPlIxZZa1U2cLKiATbqU,1091
155
+ paddlex/configs/modules/object_detection/Co-DINO-R50.yaml,sha256=xB5alvGleLc-sLBnQbeXBpyV0967_PxohPvMe15Xp5c,1069
156
+ paddlex/configs/modules/object_detection/Co-DINO-Swin-L.yaml,sha256=O4g3Wmz10Q9acmJH4loyMaqxoQmO8lIBFK7e7zSuq5g,1078
157
+ paddlex/configs/modules/object_detection/Co-Deformable-DETR-R50.yaml,sha256=37nZXVphbRDFuCt7skXJeebAoIIOpyGx7b21YK-Vea0,1102
158
+ paddlex/configs/modules/object_detection/Co-Deformable-DETR-Swin-T.yaml,sha256=aJeBcnJqIhIP-8DcrxNjHKuAxRz21mxBC3NAqCVK91k,1111
159
+ paddlex/configs/modules/object_detection/DETR-R50.yaml,sha256=OQwwjMuCofgJJmBwgxhI2maCcytgi1NtvlHA0U-FcEI,1062
160
+ paddlex/configs/modules/object_detection/FCOS-ResNet50.yaml,sha256=3R-WpASGd9PXBcWNm8UjucyP53Q5FVM8qfPmCTZ66Go,1074
161
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNeXt101-vd-FPN.yaml,sha256=jlPpEbJfBaUuwhQ0ngj12iM0wPIHnHLMWBERfJBQpyI,1120
162
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet101-FPN.yaml,sha256=a4z_-7H-Esa3EgpRIVMGmoXSdF6CvML78jvYb-YTask,1108
163
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet101.yaml,sha256=yOysi1xdYnpibgqqYk2Z6BqlHZ1qLOJqn4-Ezm2lfF8,1096
164
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet34-FPN.yaml,sha256=PsKV1ENMD8WEU1JXhOu6p4hXntFYk2iiYer3Yv1Jsrk,1105
165
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet50-FPN.yaml,sha256=LbScHVrpL9z0FcP9K2ijmMVwzNbxP9ki5aY3kBo2yT4,1105
166
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet50-vd-FPN.yaml,sha256=rop0c8J6zDR7hNZ0NxF65qCFqfipNggOgtsyQltroeA,1114
167
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet50-vd-SSLDv2-FPN.yaml,sha256=vrBOePFgp_PFe6fZtg_bgGYaK_7LQxmiavShEdxUPhI,1135
168
+ paddlex/configs/modules/object_detection/FasterRCNN-ResNet50.yaml,sha256=o86nxDTB17irlM31IY4H5qoCHSqElLAbI3LDX0rl7VE,1092
169
+ paddlex/configs/modules/object_detection/FasterRCNN-Swin-Tiny-FPN.yaml,sha256=NyXHOHoAoPDXunxITnH4FlW73qbo0jUWTMAA7cKdPAI,1110
170
+ paddlex/configs/modules/object_detection/PP-YOLOE_plus-L.yaml,sha256=_IrpHxs5_X6EmFDx5mNZmVGSj2PvmSfMGbDrSPG31L8,1115
171
+ paddlex/configs/modules/object_detection/PP-YOLOE_plus-M.yaml,sha256=2bS3lnmfTay2PRYK10p-lXYYJWHiAidO7sPqKitPgf8,1115
172
+ paddlex/configs/modules/object_detection/PP-YOLOE_plus-S.yaml,sha256=83KiBcpUhbIqxLEvDYFOUtjp1pHeWdGPSFwhTEj4CAo,1115
173
+ paddlex/configs/modules/object_detection/PP-YOLOE_plus-X.yaml,sha256=vLxYruqie_KJCeRIb8ccLipdQ3nVCVxHdnq-WVjEp4g,1115
174
+ paddlex/configs/modules/object_detection/PicoDet-L.yaml,sha256=mwHbc-RnT7VXZ0iq9rP-mnOi_a1DPsFWGWWS8obPgws,1062
175
+ paddlex/configs/modules/object_detection/PicoDet-M.yaml,sha256=HUoHddMXH_VE4Z0EBtrXWXAKcvL84aed6CpFuIPBtc0,1063
176
+ paddlex/configs/modules/object_detection/PicoDet-S.yaml,sha256=EXrlKbhBRMNP_YucCAcjHdHan972EmzttqjE3W-bhpo,1062
177
+ paddlex/configs/modules/object_detection/PicoDet-XS.yaml,sha256=B8XZoYxb2-Fcd2pLJd54p0TfPqGgtPKRbF39WiTsF3c,1066
178
+ paddlex/configs/modules/object_detection/RT-DETR-H.yaml,sha256=GA6UWVuqm8NXCgT2KkXBjPnVy5_NW9LnwXkE18joyvw,1064
179
+ paddlex/configs/modules/object_detection/RT-DETR-L.yaml,sha256=7995VHHuTYsp8k1kCM70WMgj2Rt424rrl124hVEiyR0,1063
180
+ paddlex/configs/modules/object_detection/RT-DETR-R18.yaml,sha256=0xollPIfB2rDW_CXpUBNsDrNRyPaMDpxB41oDisp1qk,1070
181
+ paddlex/configs/modules/object_detection/RT-DETR-R50.yaml,sha256=XMHUYXL1jQ7SdYPqfEr2YgndNW0gzd7x50lPKDYCZBA,1069
182
+ paddlex/configs/modules/object_detection/RT-DETR-X.yaml,sha256=ApIVAZUSuLwbjSMcg-BHYu7sxPYdl-G8gwXDRxvfeGo,1065
183
+ paddlex/configs/modules/object_detection/YOLOX-L.yaml,sha256=o1V_5vEJt9PQV2jMUUGIoYgfxhmNj1E2W2oRIwqqidQ,1055
184
+ paddlex/configs/modules/object_detection/YOLOX-M.yaml,sha256=yAQRSf3YlKbQMb_15KE80EJu2dHoI0Ue_0j1orCnjDQ,1055
185
+ paddlex/configs/modules/object_detection/YOLOX-N.yaml,sha256=s_Wr9MZqy4Om7Ah2yA742n_2YkO_rqt-lLUmWvDPVp8,1055
186
+ paddlex/configs/modules/object_detection/YOLOX-S.yaml,sha256=R4A71AwAz361UBFb8l-wuTxVqN8SYGw7ALwqeWV-Etk,1055
187
+ paddlex/configs/modules/object_detection/YOLOX-T.yaml,sha256=00OG763K5Ks7-sLCmMD7SABRyTTtXY0E0edqoIxK-9k,1055
188
+ paddlex/configs/modules/object_detection/YOLOX-X.yaml,sha256=A5Z60MCCiMT1rcN-n71_2avtoAL_uWERhsflTCzuN14,1055
189
+ paddlex/configs/modules/object_detection/YOLOv3-DarkNet53.yaml,sha256=HPzKlh8fWGOnrLYJfPvr2F9t14aBzB3hWOMOOd52mGU,1083
190
+ paddlex/configs/modules/object_detection/YOLOv3-MobileNetV3.yaml,sha256=qYxDNhDRGdEv8P8hZlzDt4pZBNxJsxIcI9SIDQy9d8s,1089
191
+ paddlex/configs/modules/object_detection/YOLOv3-ResNet50_vd_DCN.yaml,sha256=a2FLIUa8f-KnBQUgmqskdpCeglWpiwssZYRu69NMhto,1102
192
+ paddlex/configs/modules/open_vocabulary_detection/GroundingDINO-T.yaml,sha256=5VjSycCV_FzDd809eqe5jM_IQhhoN_nwGmDgPvEbwKI,369
193
+ paddlex/configs/modules/open_vocabulary_detection/YOLO-Worldv2-L.yaml,sha256=NFDuNMyG5IrqJWrG5TaWQAiIXoZUy8Xidn5wZqNLl7g,396
194
+ paddlex/configs/modules/open_vocabulary_segmentation/SAM-H_box.yaml,sha256=8q2HRACvdn9KdGvsX7mIR8TEHdba3npJbQSiYjd9FSw,584
195
+ paddlex/configs/modules/open_vocabulary_segmentation/SAM-H_point.yaml,sha256=yeBo8BG5IRh8i37Nj6to5OVPFngqN1TiMWl1jWMsmQ8,359
196
+ paddlex/configs/modules/pedestrian_attribute_recognition/PP-LCNet_x1_0_pedestrian_attribute.yaml,sha256=orxgl2IEhcH6XqXr4OSsBBcfCaihpepOInPRwiuXUYU,1144
197
+ paddlex/configs/modules/rotated_object_detection/PP-YOLOE-R-L.yaml,sha256=1rMlWLp_jcfd2tnVRE4k_1MRscYX2W2T4ZuROdW8KaA,988
198
+ paddlex/configs/modules/seal_text_detection/PP-OCRv4_mobile_seal_det.yaml,sha256=xY-xeORmBhtARfPzbxB14pHcQW9Q5UAfzu1Q1-C47IM,1119
199
+ paddlex/configs/modules/seal_text_detection/PP-OCRv4_server_seal_det.yaml,sha256=VK_PB8x22-8jkLT659GZuYxP_MSk8W3934d1vUIpWwQ,1119
200
+ paddlex/configs/modules/semantic_segmentation/Deeplabv3-R101.yaml,sha256=IDRcI6NwJLe1CA1zkMrhyZv6H6ijvnMOnIGL1lxP4Tw,1129
201
+ paddlex/configs/modules/semantic_segmentation/Deeplabv3-R50.yaml,sha256=1AM1SGak4YQo_tTszmiJsPM123ij1sDGKEEbN07npMs,1125
202
+ paddlex/configs/modules/semantic_segmentation/Deeplabv3_Plus-R101.yaml,sha256=FNCSWZSqP7jGkXAgSXT0d8SzsJNrr4hQE5m0yX3aqoU,1143
203
+ paddlex/configs/modules/semantic_segmentation/Deeplabv3_Plus-R50.yaml,sha256=taMzlAQk9qjpdiX-4q7Cqnxjm7i7_HUDpzjj56UnNTE,1139
204
+ paddlex/configs/modules/semantic_segmentation/MaskFormer_small.yaml,sha256=bNHlDsfy2TuOSGX9uxLWauJTl8bGldUW2zpCF75OO0k,1192
205
+ paddlex/configs/modules/semantic_segmentation/MaskFormer_tiny.yaml,sha256=Jo2S0FheKHxFhJk53d8RnK_HCDnGK1SO_KMeriCS9N8,1189
206
+ paddlex/configs/modules/semantic_segmentation/OCRNet_HRNet-W18.yaml,sha256=fFtIkYTYWiwJy41nAmjEiX4lUIxKRJ0U0xWsgCtvvzo,1132
207
+ paddlex/configs/modules/semantic_segmentation/OCRNet_HRNet-W48.yaml,sha256=h9L_pB71Tm-hYw5vTAjGTzO61H_FtZ4WDyXjOnnNGbI,1132
208
+ paddlex/configs/modules/semantic_segmentation/PP-LiteSeg-B.yaml,sha256=VRKtQDylPfxfkgPVkYoZDS-SGQv9R3WRNvfp08eRSak,1117
209
+ paddlex/configs/modules/semantic_segmentation/PP-LiteSeg-T.yaml,sha256=P6dewzO-ECkHWpYTY1AtnFLbRCvsaEU-8UHXYT_fStE,1116
210
+ paddlex/configs/modules/semantic_segmentation/SeaFormer_base.yaml,sha256=dV0INmbLQbtWf0nq4KM2fGYJWZla-S-sdbG7N_EQwbA,1098
211
+ paddlex/configs/modules/semantic_segmentation/SeaFormer_large.yaml,sha256=Ho_4skOR9uTOyeT7gi5hEBUdid-OIYM1inEIaDQiFTA,1101
212
+ paddlex/configs/modules/semantic_segmentation/SeaFormer_small.yaml,sha256=8vtllLGsmcOMZXCQl0dIrgtr74_hSxseW4uycjgB-X0,1102
213
+ paddlex/configs/modules/semantic_segmentation/SeaFormer_tiny.yaml,sha256=ctj-Jj3T6aSq4nesFTbFNq55tsrhF6paqGJPtPwIH58,1098
214
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B0.yaml,sha256=gCs1Q9NezMzwMP7yacVFAmNlmegG_Bc0h0SZsucP3wc,1134
215
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B1.yaml,sha256=45bk3bXFQZk9x3ksnlgmbp4kYGGz6Ph3aklJTksqEu8,1134
216
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B2.yaml,sha256=sX_VdBqQ_XYmojnkOlFNVxggmxa98ld_lvv-l0Zh-ZQ,1134
217
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B3.yaml,sha256=mWpR4gC9VQ7RK6QBGVip6WHAKGxLSJ0pg7-oD6214DI,1134
218
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B4.yaml,sha256=j5fti-87wu2BU65h4qF4zlIJAUwPwkFgenQgAwuiLGY,1134
219
+ paddlex/configs/modules/semantic_segmentation/SegFormer-B5.yaml,sha256=GHzp8thVTYBU9UNyKGjj28l_lVp2a9Dxj2SdByaEu6o,1134
220
+ paddlex/configs/modules/small_object_detection/PP-YOLOE_plus_SOD-L.yaml,sha256=HzHRP7vqofcjoOXIamRmr3iCGbJPkaFCapinjiaeRdg,1089
221
+ paddlex/configs/modules/small_object_detection/PP-YOLOE_plus_SOD-S.yaml,sha256=WDubgBZ6a7QGSfoVRfAocKVVVkXRQacfu2Sn5ZzBrLE,1089
222
+ paddlex/configs/modules/small_object_detection/PP-YOLOE_plus_SOD-largesize-L.yaml,sha256=r4Zz4XGCHqIU16nFsCqW_uH3rNrhlNV0dVo6BqHhTLY,1121
223
+ paddlex/configs/modules/table_cells_detection/RT-DETR-L_wired_table_cell_det.yaml,sha256=PiBBlZW0JCy0pSTXQ6yGdERSb13fuL0xFCnevTPSt4I,1131
224
+ paddlex/configs/modules/table_cells_detection/RT-DETR-L_wireless_table_cell_det.yaml,sha256=Pnl9HgkM3v1xLkRYlTs36x_h_BWwbG7JfJ0BnHuf-RU,1140
225
+ paddlex/configs/modules/table_classification/PP-LCNet_x1_0_table_cls.yaml,sha256=Ubzhvoo8e4GYwktivx-EW0Mx2121ppeWB9LlloG4uF8,1123
226
+ paddlex/configs/modules/table_structure_recognition/SLANeXt_wired.yaml,sha256=AUQ73-PfJKsMP4YHkGX_IoBYwgT6XOAvntJQwqR9TcE,1073
227
+ paddlex/configs/modules/table_structure_recognition/SLANeXt_wireless.yaml,sha256=5qrgGCXO6RZm1HbH1OK_eF0qSmuf_SnIFoa69EGxbpM,1082
228
+ paddlex/configs/modules/table_structure_recognition/SLANet.yaml,sha256=RzPFajc6NezpzkJ3LISa2NPklQVEmXyb-nmTscBUopA,1048
229
+ paddlex/configs/modules/table_structure_recognition/SLANet_plus.yaml,sha256=Xj_lnuGqN-rhlWheybgcxQkBduv9n37j88RNhUXCP00,1063
230
+ paddlex/configs/modules/text_detection/PP-OCRv3_mobile_det.yaml,sha256=plyVDZGbmo6AXwYQbfYYC3fGPt0AU3cQD0nvJsdtT5w,1100
231
+ paddlex/configs/modules/text_detection/PP-OCRv3_server_det.yaml,sha256=1YsZDgK0GC7_VmmHZZqplrIZAjDw7FmsCjX1h24RrJw,1100
232
+ paddlex/configs/modules/text_detection/PP-OCRv4_mobile_det.yaml,sha256=C6uDlATN38eBiBnIkodoXSDZ92BUm-M5NMQ8kTAETWE,1100
233
+ paddlex/configs/modules/text_detection/PP-OCRv4_server_det.yaml,sha256=omCQ-fOjyB-PX9Y-n5qITE2PwcYPol47g4YztR99lMo,1100
234
+ paddlex/configs/modules/text_recognition/PP-OCRv3_mobile_rec.yaml,sha256=V0DMsvY6XqQr7rzGJWm8qhvFulgm-jVCHg6l57NKyFI,1086
235
+ paddlex/configs/modules/text_recognition/PP-OCRv4_mobile_rec.yaml,sha256=fbFTMnncTxJ63GdGhCH__lEwKXOUXO7gITrUyjkr6wY,1086
236
+ paddlex/configs/modules/text_recognition/PP-OCRv4_server_rec.yaml,sha256=47DQ0sdCYGKY35NeuhpAVovbxGyc4NpDqDA_g_1koU4,1086
237
+ paddlex/configs/modules/text_recognition/PP-OCRv4_server_rec_doc.yaml,sha256=4LfFXhUxxtBxpW99Way_gUtnrd-vP1BDUD72T2D3uVI,1098
238
+ paddlex/configs/modules/text_recognition/arabic_PP-OCRv3_mobile_rec.yaml,sha256=v6VDFbeexafeR4c74wTjXkcwEx3y1Z55kt0ZF7UAuHE,1114
239
+ paddlex/configs/modules/text_recognition/ch_RepSVTR_rec.yaml,sha256=OMj-mzZ_aqYp1NZUtD_j56wzoqai2onraMmVMyFIDJU,1071
240
+ paddlex/configs/modules/text_recognition/ch_SVTRv2_rec.yaml,sha256=6DHZpUEDIZJdvp8y27_Bdvu7zUpbpA2_2KpvbyvhgYI,1068
241
+ paddlex/configs/modules/text_recognition/chinese_cht_PP-OCRv3_mobile_rec.yaml,sha256=8Ov83Aw45gXN4Fv55PlikbhuFPElqlZf1xbkqDZW5sc,1134
242
+ paddlex/configs/modules/text_recognition/cyrillic_PP-OCRv3_mobile_rec.yaml,sha256=P1XA4qXwzw2HqRMZV2fV8cslkCFvuS4Jxl5QTSj-XP0,1122
243
+ paddlex/configs/modules/text_recognition/devanagari_PP-OCRv3_mobile_rec.yaml,sha256=VqvQuijRHV7_KwzIMDndau0zSjABLL13gYrkXjXt6B0,1130
244
+ paddlex/configs/modules/text_recognition/en_PP-OCRv3_mobile_rec.yaml,sha256=GKnLFZymAJvJjqkxDgRQxx5GkXicg6AYKTGbXpyZfec,1098
245
+ paddlex/configs/modules/text_recognition/en_PP-OCRv4_mobile_rec.yaml,sha256=j6vryUgV3n7yVtRoFeLk_iOdBSfRNMa1renR3jMADPw,1098
246
+ paddlex/configs/modules/text_recognition/japan_PP-OCRv3_mobile_rec.yaml,sha256=AfnM7QJq0bwJigFqvG7jQBeeNPYvtQ8aGWL59D4IZgE,1110
247
+ paddlex/configs/modules/text_recognition/ka_PP-OCRv3_mobile_rec.yaml,sha256=edFWnY1Ie_SR8uA1igDm5hdzlC8pdI_GYBg-H4a3IZ8,1098
248
+ paddlex/configs/modules/text_recognition/korean_PP-OCRv3_mobile_rec.yaml,sha256=Hfh9U3cnCNgNLfvo5CEe2aZ88iRJkzE4DvBMFCU2XlQ,1114
249
+ paddlex/configs/modules/text_recognition/latin_PP-OCRv3_mobile_rec.yaml,sha256=0w226g-Wyk1-L47-fqAeyZ0eQBhTq-oxxzSTpQUJzSg,1110
250
+ paddlex/configs/modules/text_recognition/ta_PP-OCRv3_mobile_rec.yaml,sha256=iuwr3F6JZjOHStrdmKpPHYgEjw2C-WNn0kHUwCaummc,1098
251
+ paddlex/configs/modules/text_recognition/te_PP-OCRv3_mobile_rec.yaml,sha256=RZgNy4rbU2MR_SDZan3jPwYlu453A2l7tgydPk7BbsA,1098
252
+ paddlex/configs/modules/textline_orientation/PP-LCNet_x0_25_textline_ori.yaml,sha256=PktRWgZv5HeJQ2Hkf6L7oSazs5JrGOQ3zWW2hjfR3vE,1142
253
+ paddlex/configs/modules/ts_anomaly_detection/AutoEncoder_ad.yaml,sha256=vF_iaZhMAG5qzF-MA9wqPodxI_5ywVCEkSt6Z6S76co,863
254
+ paddlex/configs/modules/ts_anomaly_detection/DLinear_ad.yaml,sha256=KfD0YhhNFhz0gdKN_JGhEQ85JcpzSr-G4DJQMPVF57M,855
255
+ paddlex/configs/modules/ts_anomaly_detection/Nonstationary_ad.yaml,sha256=uM-CmsGLkigSHKRYZBiOsXnFmJMJa4M8iItwHs_zo6o,867
256
+ paddlex/configs/modules/ts_anomaly_detection/PatchTST_ad.yaml,sha256=OZbuSavr_mitk8ybXUNvQMK9SNdvv4s_XH_GipEy4gg,857
257
+ paddlex/configs/modules/ts_anomaly_detection/TimesNet_ad.yaml,sha256=GLwXVVtSuMIKxVlmNVWCkjUQ-TmU15QvUg4w8qGv6E8,857
258
+ paddlex/configs/modules/ts_classification/TimesNet_cls.yaml,sha256=qzdfp4W7voFXvLdsk2r8rs_ws343xgumEL20xVAuos4,864
259
+ paddlex/configs/modules/ts_forecast/DLinear.yaml,sha256=4rJP0G6DHO2leNEdm_DS4TXxqCZ1aRklnwa_aBD5LI0,840
260
+ paddlex/configs/modules/ts_forecast/NLinear.yaml,sha256=dzwKTFy1AU7LxWFI4s-rNz47RIQfuwj8s_C4qXRYwMY,840
261
+ paddlex/configs/modules/ts_forecast/Nonstationary.yaml,sha256=SHMFu6wLSLc4t0oJLfFBIY5l-HfV557YcDIFUIKtxwo,852
262
+ paddlex/configs/modules/ts_forecast/PatchTST.yaml,sha256=i6sz3X_KoT4w-41q1hsLNg9kzCMQvWhmYdHCUDjTgCc,842
263
+ paddlex/configs/modules/ts_forecast/RLinear.yaml,sha256=TWfNWCXUOjD2PprFLAGsiyDtLd7_o7gvvSGXKuNsgfc,840
264
+ paddlex/configs/modules/ts_forecast/TiDE.yaml,sha256=7pPQaImeATDibYgZwd2E1zG2Q9rCOfVlx7X5GdB9lrc,834
265
+ paddlex/configs/modules/ts_forecast/TimesNet.yaml,sha256=kMbn31jCqKqQGHJLvHVlaO8RFmkMCkKvFPFUHF9aY4g,842
266
+ paddlex/configs/modules/vehicle_attribute_recognition/PP-LCNet_x1_0_vehicle_attribute.yaml,sha256=xeiCFhCZVB9xSkz6vPkANRqTn1rvOTuIDW-jDELxKcY,1129
267
+ paddlex/configs/modules/vehicle_detection/PP-YOLOE-L_vehicle.yaml,sha256=ZkoARRc4IIx7ub9o7VZZHlAT2wU0aMMTERq3-Xp13sE,1083
268
+ paddlex/configs/modules/vehicle_detection/PP-YOLOE-S_vehicle.yaml,sha256=tozzrMIK2Em33r9_vIjIPYEiF1I3ifbpgH_5YrCjvKI,1084
269
+ paddlex/configs/modules/video_classification/PP-TSM-R50_8frames_uniform.yaml,sha256=znv8lxRoXQpuwHdJNxW3oXQyQxUn3DKhVv4M1Tt3DyA,1131
270
+ paddlex/configs/modules/video_classification/PP-TSMv2-LCNetV2_16frames_uniform.yaml,sha256=sqT5aS0vQmbbm5nUWPOocm_0b4hidcZKpt2Bi_TBE_U,1152
271
+ paddlex/configs/modules/video_classification/PP-TSMv2-LCNetV2_8frames_uniform.yaml,sha256=chzzPSQSxnP72529E7pqvL3aSoX-WpbcnWynmmPimXQ,1149
272
+ paddlex/configs/modules/video_detection/YOWO.yaml,sha256=jNcjPxqfPH3rgkJ9eizaQpkS5ZlMehs3oVaBpkcrRfw,1034
273
+ paddlex/configs/pipelines/3d_bev_detection.yaml,sha256=T-BPJTF_myAhzQLxcfhDFSpnGAlAPxJKJgtbFfPiybk,162
274
+ paddlex/configs/pipelines/OCR.yaml,sha256=tfac8vADysUf9nuEP_FlUoFDLrRqnw-TP6ztYrt4FZc,1015
275
+ paddlex/configs/pipelines/PP-ChatOCRv3-doc.yaml,sha256=gV50n2W9s7IGXH_qWNMYbK0pBPD63JNT-tjFQmjQatg,5192
276
+ paddlex/configs/pipelines/PP-ChatOCRv4-doc.yaml,sha256=Noi0Tj6Fcm8VsVO5OEwcc9ooghXKXkRyrG_WUnGbxdQ,6981
277
+ paddlex/configs/pipelines/PP-ShiTuV2.yaml,sha256=01z8buwMDHix9gfiGFFPnjd3Ko_IzfDJ2zz3bi7Gn2E,338
278
+ paddlex/configs/pipelines/PP-StructureV3.yaml,sha256=Ynmb9hQ0IcRr9XKe4N4ZkvTcG7OOxuWuUSZR1AHPJQc,6363
279
+ paddlex/configs/pipelines/anomaly_detection.yaml,sha256=JBDy9Al4Jtpx-FcOk2jzrjuu3XE0_r-fqF1I6pJq28U,164
280
+ paddlex/configs/pipelines/doc_preprocessor.yaml,sha256=QLPZj5nBu9F4GZf-kKyeTduZJpmD68cg2shoxly8pV0,319
281
+ paddlex/configs/pipelines/doc_understanding.yaml,sha256=1t64A_yiyGOag2HDrjqvAyADB1dJ_wzZuVSCSfw6jok,159
282
+ paddlex/configs/pipelines/face_recognition.yaml,sha256=KIzhHfqwEooqCxw0Ysgfd06Oo9q33W42WmhtjaGAe4M,342
283
+ paddlex/configs/pipelines/formula_recognition.yaml,sha256=HWWIFnLIMbWw5HETOudRFZ46le0HTFA5oBre9QgayYU,905
284
+ paddlex/configs/pipelines/human_keypoint_detection.yaml,sha256=hbqfnaMpYMf9lVXXQX5fdB-S4dggIik7nm_wRk-olrA,380
285
+ paddlex/configs/pipelines/image_classification.yaml,sha256=zTHeExJsAIpg0vHFz0xdzVSt7VsBjtju5cuu_8ESPog,192
286
+ paddlex/configs/pipelines/image_multilabel_classification.yaml,sha256=ZXoTDOpyGqGbmNr3dXsQw7eMQ2yxbQMMYt-rqvLVJW4,218
287
+ paddlex/configs/pipelines/instance_segmentation.yaml,sha256=cEhSDa5KVlO6EE-gF-CyhaYD3p1o2ChaGB9OnVHqFHU,202
288
+ paddlex/configs/pipelines/layout_parsing.yaml,sha256=S1prYksFiw9kgBmTUJZ_SeG2XI-zsq_C3yZeLJhdvpI,2638
289
+ paddlex/configs/pipelines/multilingual_speech_recognition.yaml,sha256=3GMqISimyTOBxCtxelcCFL1bSvV1ZX4dcNnMHB26B9Y,214
290
+ paddlex/configs/pipelines/object_detection.yaml,sha256=P9q0qg1znAM0DzpI5S6b3Z_dX8j5UJzXOH_fJk_KVQA,201
291
+ paddlex/configs/pipelines/open_vocabulary_detection.yaml,sha256=WmgaCiMu8-lR5Bu3-mbFeuhwSgl4e3tBwvqYttqGmhg,263
292
+ paddlex/configs/pipelines/open_vocabulary_segmentation.yaml,sha256=6EjUPBmBnXVZxDE8YVDd1m3Eum1_xZnjB3ohxZVPo8A,323
293
+ paddlex/configs/pipelines/pedestrian_attribute_recognition.yaml,sha256=5HBesXcSamvlJ3-HSQ4V_Mo5htsFJoqHFWm-fzAQ2LU,368
294
+ paddlex/configs/pipelines/rotated_object_detection.yaml,sha256=Q9fubmAWilKWpTZxurILM1SZC4ZzeH2WoIeJeL2t-G8,208
295
+ paddlex/configs/pipelines/seal_recognition.yaml,sha256=m3ZgQl_vLnWiHrMtQccEjaVpe-IWraRik98dM-x42Vc,1272
296
+ paddlex/configs/pipelines/semantic_segmentation.yaml,sha256=dTR-utVCQJ-YX52eAEQbn0wutCQkME0oLZ2wBKdTcWo,203
297
+ paddlex/configs/pipelines/small_object_detection.yaml,sha256=t_dF50ZzFcfPEFvtrFXU2f_sameKotvUs104mxoiSh8,209
298
+ paddlex/configs/pipelines/table_recognition.yaml,sha256=XBpBG_wHtP_A2uvh4DKirVoDtrG-u4Bhv_uu5_OrIoQ,1320
299
+ paddlex/configs/pipelines/table_recognition_v2.yaml,sha256=zmhO9WHaOgkf0ItAOtdaDVnQZA28xXEbz5wfUsYEQyQ,1872
300
+ paddlex/configs/pipelines/ts_anomaly_detection.yaml,sha256=3dvsXd8og6aomhgZU1f3pGcbWB1uVDIWQJ7B-qjCac8,177
301
+ paddlex/configs/pipelines/ts_classification.yaml,sha256=V_WuRgvgzs5dEmDa73geOZZPA89ru-SOATzLPACRfOE,171
302
+ paddlex/configs/pipelines/ts_forecast.yaml,sha256=LM1zY2RC9jtdP295fjdl1MaB2XyJqt__Gy5SKw279sg,148
303
+ paddlex/configs/pipelines/vehicle_attribute_recognition.yaml,sha256=lrHxLkdbYe7of1Ef3DIcH73yMrOTp2pP2pGfSrhNgeQ,367
304
+ paddlex/configs/pipelines/video_classification.yaml,sha256=OQEmOPi0CyEHmubj6UiOPWoBlSd9aRKMfmlypiGEFdc,213
305
+ paddlex/configs/pipelines/video_detection.yaml,sha256=YnBJ507XcKQtEzVDuy_QhCjt4iytQB8O0gh_NJ6NxE8,200
306
+ paddlex/inference/__init__.py,sha256=UfPHnv9zOQROhT7HFy_QLSmV3I7kLha4EhB7RntI-QA,820
307
+ paddlex/inference/common/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
308
+ paddlex/inference/common/batch_sampler/__init__.py,sha256=LdTd0bNRnmj-gkJTjRvVw_pFaK2S7pzMNFo5BZiTM2g,963
309
+ paddlex/inference/common/batch_sampler/audio_batch_sampler.py,sha256=5Z6mQ-ikBSwZVJzW5uA7kZVsO9gDLya8rog5vdZskdw,2611
310
+ paddlex/inference/common/batch_sampler/base_batch_sampler.py,sha256=F_nT55mXlI5NcSwyOZ_Ze_6S-BfDoY6uDwdPBPSTx1M,2744
311
+ paddlex/inference/common/batch_sampler/det_3d_batch_sampler.py,sha256=gUnTqNpRHYqqVCjmEbB4BHSU_f3rBwxF_jSxCtjXn-4,5353
312
+ paddlex/inference/common/batch_sampler/doc_vlm_batch_sampler.py,sha256=RRDl5PrGGy2odVUteMAhscVaLw0nYrFpchMnSR4TJ6M,2009
313
+ paddlex/inference/common/batch_sampler/image_batch_sampler.py,sha256=-GfVKzgKUV1_CW5ePiKVGiXApey7dYhvadcZ6D96zMY,4083
314
+ paddlex/inference/common/batch_sampler/ts_batch_sampler.py,sha256=beYmo3uN0iI2v4yyFx0KYyXiMgcVNXxVc2MoweSg5mw,3863
315
+ paddlex/inference/common/batch_sampler/video_batch_sampler.py,sha256=CBApNWjdyLqGr-0UG2GW3GHW5IPZKZTiqUh4H6jTgRY,2740
316
+ paddlex/inference/common/reader/__init__.py,sha256=8k1-TUD_1LT47RRykhMQg_AszWjjOrtA4ozTpFIaJhI,792
317
+ paddlex/inference/common/reader/audio_reader.py,sha256=UP2KXygL6E0ISgBiWwHSCSeFNwZiRbVaYUdVpPy-5sM,1542
318
+ paddlex/inference/common/reader/det_3d_reader.py,sha256=v2DhYB-W_yfjo90j1lXNcCJRPOYttVEVj5nCRBZcjMU,8734
319
+ paddlex/inference/common/reader/image_reader.py,sha256=EuuN-RAxRBnc7tmFKY4SjISDJjKe0BnvGIzTJung5uU,2576
320
+ paddlex/inference/common/reader/ts_reader.py,sha256=NgPqaSgWx81zeS8JF-yDRg-yF_KcgZO8FZj4yFI6sjc,1589
321
+ paddlex/inference/common/reader/video_reader.py,sha256=ClKpdf_-mPZVezZMKVzF7Uoua9VMaNZBJ0tu9GNOoGY,1433
322
+ paddlex/inference/common/result/__init__.py,sha256=Kaosq38ysFyenrDmiPlDoFlxYXJVGgca4UaORt9_WYc,937
323
+ paddlex/inference/common/result/base_cv_result.py,sha256=pK0wJcBGmjARC-FpimcxoRSi3wSCetdB12mtTw9EmCE,1321
324
+ paddlex/inference/common/result/base_result.py,sha256=MQajOAGk_HF_UNExMxzRkaXbEUy49bftYIL-zWQvkl0,2432
325
+ paddlex/inference/common/result/base_ts_result.py,sha256=pb7ld9OCb61LQYy02wvYppZgFMzspasy3DGaUBQmmIg,1411
326
+ paddlex/inference/common/result/base_video_result.py,sha256=yT36itBPBc-6KRAwImZjR4TmY0_T0Cic25uZW-1oVWY,1177
327
+ paddlex/inference/common/result/mixin.py,sha256=quDvno0MlnMz8oggvcSScxQlO1F21EnOLUH2k2V1jvw,26385
328
+ paddlex/inference/models/__init__.py,sha256=FszFkx_E5qXfdOAE3VRq05nbieWSmlBEHXzdUo2jmU8,3271
329
+ paddlex/inference/models/anomaly_detection/__init__.py,sha256=5sWWsKp9B07ntVA3l_1iMdypwwSlWcvko6W89lLEdXU,646
330
+ paddlex/inference/models/anomaly_detection/predictor.py,sha256=rKfu3H_Kpq1K7oy5-bzO3Ic4DAmzjALs2vPl-m3z4gQ,4823
331
+ paddlex/inference/models/anomaly_detection/processors.py,sha256=OhPoGXkF5Wr1AFSeuRlWHfzPEIqGJc0Qtt3S72ewgjI,1492
332
+ paddlex/inference/models/anomaly_detection/result.py,sha256=vEqBIw9cOgBZzBuoniao4AztdSkiAuqMJEGHQevMz4M,2368
333
+ paddlex/inference/models/base/__init__.py,sha256=XmfOH2Zt6T28bilPm9aHPy88zlthnpz8zufxQuHU2nI,647
334
+ paddlex/inference/models/base/predictor/__init__.py,sha256=euD01o3s0Zg9VlzA5spCak2TElkU4RFiSUxCEiatH8Y,652
335
+ paddlex/inference/models/base/predictor/base_predictor.py,sha256=cuqJY1KugVOgWzEGlyOYwZrCBy49VHbxT8fPer1Zo2k,15018
336
+ paddlex/inference/models/common/__init__.py,sha256=3lMwinLaX3HHXCFUcppc8uV_5P-XGv0Nf5aWvZYcbqw,926
337
+ paddlex/inference/models/common/static_infer.py,sha256=kQKeYQ95XvMf1GuJDW5KQEybFBHPE61XPyYCDD0ocio,34966
338
+ paddlex/inference/models/common/tokenizer/__init__.py,sha256=4nePxy6in4qQV17KQfQrlzsRM4ktZ6GmbIFxxSCyoUE,846
339
+ paddlex/inference/models/common/tokenizer/bert_tokenizer.py,sha256=xPEENMCnZq-0ofMA5Ylxu9qcFybIc6fEOXqEue3ogDU,25274
340
+ paddlex/inference/models/common/tokenizer/clip_tokenizer.py,sha256=UbM7JP5lDNnGeSFxzJYaY4GC4iY0GG9P8ahi8EYYCU4,22426
341
+ paddlex/inference/models/common/tokenizer/gpt_tokenizer.py,sha256=U6Z2KD1SL54mnaUf_WcG_KXOr7emxsMHcKgQ61_M5SU,15660
342
+ paddlex/inference/models/common/tokenizer/qwen2_tokenizer.py,sha256=Y_GFL2lX7AgjJae1fY6V7zi5D3p1ASfz0I3Lz4QjRQ8,16745
343
+ paddlex/inference/models/common/tokenizer/tokenizer_utils.py,sha256=qzXvs0m5oWyl4xi9LRltXphg4w0EYaTu2g5Pfw-TSEk,85572
344
+ paddlex/inference/models/common/tokenizer/tokenizer_utils_base.py,sha256=0A2xFpuztPbjN8CcSRv99COmROBVKKK_cIU124EwUis,163635
345
+ paddlex/inference/models/common/tokenizer/utils.py,sha256=xZgYmYWB0Ecl6Ej0AgrnfgETD0jW-xjZfjq91lPs5js,2425
346
+ paddlex/inference/models/common/tokenizer/vocab.py,sha256=JTUM5wiD4ppDqQHd1IuFbQ3Z8ZYNDjgs7serOUSXmC4,25123
347
+ paddlex/inference/models/common/ts/__init__.py,sha256=A6i6FhzY9lRnoJH_JPH5nNHmaVI5qOZaQhbxueVkZKc,636
348
+ paddlex/inference/models/common/ts/funcs.py,sha256=Xl0VijMMO9RY4S4W4Xrs4lCmwiPZb2lpA8xyenvKlao,18144
349
+ paddlex/inference/models/common/ts/processors.py,sha256=lcouD6Zbhf28jJ6eySfJGmYt_Sn_He-uTEc4lI8f8Z0,11004
350
+ paddlex/inference/models/common/vision/__init__.py,sha256=TyB2P9CvNYlv91NoV7WikGsZHnn7PQcYyMnRIMS1ULA,756
351
+ paddlex/inference/models/common/vision/funcs.py,sha256=-j0MO7xtXPAW2icTLqxMq7CJ0alvxwaYR3bIBdYjf7Y,2777
352
+ paddlex/inference/models/common/vision/processors.py,sha256=iT-oVtN9jz24MySo9jYlhqe3L18HRbMmHfgpJvdxaFE,9388
353
+ paddlex/inference/models/common/vlm/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
354
+ paddlex/inference/models/common/vlm/activations.py,sha256=wob-fu7nHFas_9TILbFHJZampnVy_smQZJhN_RZSf0A,6345
355
+ paddlex/inference/models/common/vlm/bert_padding.py,sha256=aCM0GUyNblcBmU54VG8hHOcWzeuBypHLBlDHJlXGUy8,4827
356
+ paddlex/inference/models/common/vlm/distributed.py,sha256=qZ5Lxa2ybZKL33G47PBbPvhNesP8PHBENkrOtB1tH-0,8013
357
+ paddlex/inference/models/common/vlm/flash_attn_utils.py,sha256=FaaYGoLjebMVy1nXyd0djYuOUnmmh41pB82Pdo7RluU,4073
358
+ paddlex/inference/models/common/vlm/utils.py,sha256=34z4X-T60Ic8ExqeBdP_q0jHHOqK1TI6QXgxR-cZ424,3777
359
+ paddlex/inference/models/common/vlm/generation/__init__.py,sha256=ZutyBjZTAWL6cn2g6SgCDDIdtZ7kjaVL-Ml44G_l7_I,1141
360
+ paddlex/inference/models/common/vlm/generation/configuration_utils.py,sha256=898-Hxv0HEzrFr_gTHCz-SHJtDYqS7kqH2S5NrMQ5Xk,24892
361
+ paddlex/inference/models/common/vlm/generation/logits_process.py,sha256=t6rCIZ249B3SagXVCuoHql3GptgPTA8QVP__TJxAdzk,29574
362
+ paddlex/inference/models/common/vlm/generation/stopping_criteria.py,sha256=vWHy-HoYjFHFyaT-WmjT7pVzcOoyew3nAJ6hnJrAwTk,3720
363
+ paddlex/inference/models/common/vlm/generation/utils.py,sha256=XRMK4Ngrp8ot6Ebb1i8-S1mOq692C1_eggGADFy6uYc,85130
364
+ paddlex/inference/models/common/vlm/transformers/__init__.py,sha256=PL-6UTfCxiiBCzeIMV3N9pESIgMICrmUDNab4LJ9Qx8,701
365
+ paddlex/inference/models/common/vlm/transformers/configuration_utils.py,sha256=BPEfEL-fwpAE5R8gG5zKyh7E9xndaJllsRJnvBr8v_Q,45699
366
+ paddlex/inference/models/common/vlm/transformers/conversion_utils.py,sha256=gl5BAdwKI6kNtcnXDXCfS5ggfMOuLIVN02UCmlqSi2M,14422
367
+ paddlex/inference/models/common/vlm/transformers/model_outputs.py,sha256=EgYMIeI26fjvtAa0niS3x7Nkz3N3DK9_H1mppYRe5bY,84289
368
+ paddlex/inference/models/common/vlm/transformers/model_utils.py,sha256=YP6Lt-d-pRe8LvXkDGK4uT79qNUS-2jnpGwb_A23aG0,86735
369
+ paddlex/inference/models/common/vlm/transformers/utils.py,sha256=EqBUBKoYWJ9R6e3qt-Vp9-BDEq5gkbN3Ymy5JAX-e0g,5886
370
+ paddlex/inference/models/doc_vlm/__init__.py,sha256=oXFqFKX0vWQRuri3wb72aNCZIEv0daDOTOK1Ysl1W8E,649
371
+ paddlex/inference/models/doc_vlm/predictor.py,sha256=fsJRW9DmWgCE2v4AuAz_5l7MxqViEQc2pVBCqxCikyQ,7151
372
+ paddlex/inference/models/doc_vlm/result.py,sha256=l1dTYhbuAHx6EsXvslLseWEj48NIBc7L3s4BxnonYS8,760
373
+ paddlex/inference/models/doc_vlm/modeling/__init__.py,sha256=IYWAXHgXxdKYA75Qz8nRfRVcELFj81Gcfs4RpObfMto,683
374
+ paddlex/inference/models/doc_vlm/modeling/qwen2_vl.py,sha256=DA-Vlaj0lpLdBVgvZvgKpKcSElR-NUwLrmv1QlJQjE4,105663
375
+ paddlex/inference/models/doc_vlm/processors/__init__.py,sha256=w6UmyuN7UJwumAnCEc99UiFS7w9fh_olEmmgqY18RTc,673
376
+ paddlex/inference/models/doc_vlm/processors/common.py,sha256=xUOdcQRwYJA328Ff23kFxznWJVtoRxPkOwuAwmjoxwg,11651
377
+ paddlex/inference/models/doc_vlm/processors/qwen2_vl.py,sha256=gi3DS3fvJRzgYIYAYF5KWrAAOQ2nkynG2RmECbWy7Bo,31011
378
+ paddlex/inference/models/face_feature/__init__.py,sha256=7bctvoJnxoOsp2FzTisub1M8M0WL97_y7524vHOg6FA,654
379
+ paddlex/inference/models/face_feature/predictor.py,sha256=mRd2VoWFAH7wVT3-z8JBsdA7GaHO1h0xvVpCLavgj5I,2828
380
+ paddlex/inference/models/formula_recognition/__init__.py,sha256=JxjoRLv_6dZtM--Acg4lTpG-XKBKSeQkApQlVNubB9Y,653
381
+ paddlex/inference/models/formula_recognition/predictor.py,sha256=Wslm5_YHTS-RS9QFLvmuaqWnckA79AyInIgvZdz1dW4,7210
382
+ paddlex/inference/models/formula_recognition/processors.py,sha256=2IBv0uRbviOrmatqnx69vhc20iq3GxmVukGPvMKk4K8,37144
383
+ paddlex/inference/models/formula_recognition/result.py,sha256=wiOCkYL9-EGSkIUDZL9yB3wXkjEFRfdeFTT5TSavYv8,15068
384
+ paddlex/inference/models/image_classification/__init__.py,sha256=-dzTrk-2RlpLeziUvQCt42WFaydfukBODqmik1t3DQc,647
385
+ paddlex/inference/models/image_classification/predictor.py,sha256=uZ9xuhg2ElGIdh8cG57K9VnXqX65Paa_7mUG3GfUfqo,6383
386
+ paddlex/inference/models/image_classification/processors.py,sha256=DBUjdK5RNkCZQ1DgrUT--GPUqUZU0vip2PbvRw67l68,2884
387
+ paddlex/inference/models/image_classification/result.py,sha256=6XSRPx3HVuuMwsUQRX0nKsojSs4nTXTdvusQVTUTgkY,3501
388
+ paddlex/inference/models/image_feature/__init__.py,sha256=yd0A7GuW_JCurnJIfqE6doBz437ApSiLEtwjXDDNzsk,655
389
+ paddlex/inference/models/image_feature/predictor.py,sha256=3eujK5vOH0tLorvb7M_YbL8iUDuq_k6huHIYmnDFwA0,5459
390
+ paddlex/inference/models/image_feature/processors.py,sha256=tuMCRIFqvt1UGbQ4MGmPioJ6igFTPrEa35zjMJqjAkc,1112
391
+ paddlex/inference/models/image_feature/result.py,sha256=-LrF-NEwbthimk_5ORvU184uOM7BYV08-ZlFBL1IE_U,1111
392
+ paddlex/inference/models/image_multilabel_classification/__init__.py,sha256=uYUa5EDODdPwx25vP3CixQJK7FXTkRVJWWv6M2-w41U,649
393
+ paddlex/inference/models/image_multilabel_classification/predictor.py,sha256=HdSrEQUYUB87sR1g58bRq9WT_3LkjX3pAVlHdZe7nOc,3824
394
+ paddlex/inference/models/image_multilabel_classification/processors.py,sha256=LNUHtkdJt6qhDpg31QjHKWqyFpq7xtVLGQHUwJ0ejAw,3588
395
+ paddlex/inference/models/image_multilabel_classification/result.py,sha256=bxddGcj4i-wNS_OS-9lUQ6nL6EwZpxYeE7OniZO9CaU,3485
396
+ paddlex/inference/models/image_unwarping/__init__.py,sha256=JFYHFPiP98CiU5-16qXdMqqG5g28Duqc4wfREV02X0A,647
397
+ paddlex/inference/models/image_unwarping/predictor.py,sha256=Gf_aGGjKhG45LGecFIWZDN3ME8b6DLFMNEql8JoPPuo,3761
398
+ paddlex/inference/models/image_unwarping/processors.py,sha256=PLA0z73jV0IDnKp4e-58baHQyPKJrVri3Y4v6voG6q4,3313
399
+ paddlex/inference/models/image_unwarping/result.py,sha256=eYVv4OQsS0Vwo3JsUObliSTbXkzh0ywshfAJcaMebNc,1523
400
+ paddlex/inference/models/instance_segmentation/__init__.py,sha256=vX2etEORTiXdHpYONUpaAlu6-mgiCNnFmPVURycip64,654
401
+ paddlex/inference/models/instance_segmentation/predictor.py,sha256=NjgpgdHSahdifxq0SH3of4fQIxEavtByrw5gNv8sPU0,7999
402
+ paddlex/inference/models/instance_segmentation/processors.py,sha256=PgGuCQcBY_RS_G458qeBl4E9ThztuWnFXrG2OwagZZ4,3503
403
+ paddlex/inference/models/instance_segmentation/result.py,sha256=X6crfsSnItUkSDzdQnNQdQijE5rncR2OWmx2Sajfr-E,5544
404
+ paddlex/inference/models/keypoint_detection/__init__.py,sha256=Jc3KuTEwW3sR9wipO7_Q5EbWP7C9fLA54hXWDr2Gql4,646
405
+ paddlex/inference/models/keypoint_detection/predictor.py,sha256=kpWQr-uofpn6BsdW-ith11NVG4oz4BJg1rsZBpooNxA,6172
406
+ paddlex/inference/models/keypoint_detection/processors.py,sha256=TCgl9fF1DfgwrRfSxpeD0KWacQsvTx8t7yJW-1odJTk,14057
407
+ paddlex/inference/models/keypoint_detection/result.py,sha256=QIL716d-phVajnbyOwo24mDYT2TgqqhZfb6kVBuF0jQ,5816
408
+ paddlex/inference/models/m_3d_bev_detection/__init__.py,sha256=6QNv9b86co6xByjrFVB4XW0Gaq_6_6a-G6cnEqyZubM,651
409
+ paddlex/inference/models/m_3d_bev_detection/predictor.py,sha256=6C1ZFs2LQ4kdXY5K5LFdCVAZ-jtfwLKKudZU3pvaUwA,10679
410
+ paddlex/inference/models/m_3d_bev_detection/processors.py,sha256=7-8gP0AxINOK5b3VM7WVXGZsUFYEbf8P5u5OyVKl7J8,36986
411
+ paddlex/inference/models/m_3d_bev_detection/result.py,sha256=SxQ3pRNgytUpBIwnb2b14H7mWwBjQH39tFa3f3KiQlE,2352
412
+ paddlex/inference/models/m_3d_bev_detection/visualizer_3d.py,sha256=eMInqwMsEbQLzENmQuMIdZWcyhzyB5W8jkxc_tmr4Ck,5931
413
+ paddlex/inference/models/multilingual_speech_recognition/__init__.py,sha256=iBNcCWOBCE0EdEjhntIMQFEZ00GtUAok8u-z0n5Dy0Q,650
414
+ paddlex/inference/models/multilingual_speech_recognition/predictor.py,sha256=cAdNZF9lfcAwnXz8B_3QEJ68Ym2FjREzRfBnf3Gl3OA,4805
415
+ paddlex/inference/models/multilingual_speech_recognition/processors.py,sha256=UcqkKl3Fzg4LfRYToCL6H1U1eubqk2mpVWal_ww3OFY,69834
416
+ paddlex/inference/models/multilingual_speech_recognition/result.py,sha256=QrlcWrYIK9Iznr8M3bd4zVzwsCa-k1ijv57RDlb9gjI,761
417
+ paddlex/inference/models/object_detection/__init__.py,sha256=0WydRdG37hGdALUiBE3t_Y5uhT74GuzV3IDXcD75eTk,646
418
+ paddlex/inference/models/object_detection/predictor.py,sha256=evQ5YYGX0uJVmWDt53iG5ZDMWIaIx1WDvPF19YaHCAM,13219
419
+ paddlex/inference/models/object_detection/processors.py,sha256=4BBnJkaAyJJsgTXK2Cj4fRARgNaacg20V1RHdjZXqkg,30679
420
+ paddlex/inference/models/object_detection/result.py,sha256=B6dXFoqxVaV2ovkr0Hj4ACXY1Fcn6QN6W55ps0dliyM,4077
421
+ paddlex/inference/models/object_detection/utils.py,sha256=i4CQP54dTqUJWHLjAdVxaS0NanVK8HnkUuI4yf4SSF0,1841
422
+ paddlex/inference/models/open_vocabulary_detection/__init__.py,sha256=_AXgoWGKTe2oN7FwcZMkCC8baN_-ESu2LaKqVGuj1-M,648
423
+ paddlex/inference/models/open_vocabulary_detection/predictor.py,sha256=d5VbuK_mc6QKZq9NkE5OmX0SFZCb--sX1ONFJPIiXaY,6081
424
+ paddlex/inference/models/open_vocabulary_detection/processors/__init__.py,sha256=OOP9FbItTE8D4K3uOpzZbPv-pYVlQaiQXvtEpSoL_kM,776
425
+ paddlex/inference/models/open_vocabulary_detection/processors/common.py,sha256=-aVkdcidEqwHBeq_rXY3u2hBhXHbeg18UqYHVqkwOkg,3735
426
+ paddlex/inference/models/open_vocabulary_detection/processors/groundingdino_processors.py,sha256=PTde1ji_W85046H83a3gu5O5d0AhmihjXJEmXebkrns,16853
427
+ paddlex/inference/models/open_vocabulary_detection/processors/yoloworld_processors.py,sha256=cWVwX1Yrzy6Org9W9A-xdIZgm-Dwv7X2k-ffJDdwNyY,6372
428
+ paddlex/inference/models/open_vocabulary_segmentation/__init__.py,sha256=0WD9dkkVPIyrdvPLFk0GFOtLcRO8hf1WY8WO_eI1Lig,648
429
+ paddlex/inference/models/open_vocabulary_segmentation/predictor.py,sha256=EnKLTyA8y77vcIsJi1cGGlfcWaxUz5W6DCPCLQhrtDA,3944
430
+ paddlex/inference/models/open_vocabulary_segmentation/processors/__init__.py,sha256=igzbSrV8yh8ZFVpYagqdy5bFdABG8M55ejv2a0vIAlM,650
431
+ paddlex/inference/models/open_vocabulary_segmentation/processors/sam_processer.py,sha256=ArAwXdWLKF1E-lY8OP3-G3EdA2Y1SvCkUNWnARhqAyE,8046
432
+ paddlex/inference/models/open_vocabulary_segmentation/results/__init__.py,sha256=FWhqvqMWZM-z6sc7fZa1Xx8hPptFnDTKzEjd8idrgoE,647
433
+ paddlex/inference/models/open_vocabulary_segmentation/results/sam_result.py,sha256=gyQTXTCSYaCs0B2tWeLkwHSN-n5zY7EAYkwN0X31zqw,4929
434
+ paddlex/inference/models/semantic_segmentation/__init__.py,sha256=F-9o29B2YiKU_EfAp-mW-m5u4sMak76aH8X_ieIl5Z0,646
435
+ paddlex/inference/models/semantic_segmentation/predictor.py,sha256=GBjyppJUIx-7MRAfqmLev8b2MI_nqT1BSX84dZZ6AF4,5403
436
+ paddlex/inference/models/semantic_segmentation/processors.py,sha256=ZlGmbR-68Ul45zfY5WfiGu0gTF0YVILOvnSBcANqlYI,4279
437
+ paddlex/inference/models/semantic_segmentation/result.py,sha256=O1tp5qbG61JdN6UNa3npKq8Irltp3PbVzFnGrgw_Fvw,2442
438
+ paddlex/inference/models/table_structure_recognition/__init__.py,sha256=j_TRDubOHdlyQLQ_oTxLIfeSx4QD4JivxpwBb4SGfKI,648
439
+ paddlex/inference/models/table_structure_recognition/predictor.py,sha256=rtSGUhPt2yKczrVh-PDW_9bv6yB57ZH67SJJBsSZBKw,5891
440
+ paddlex/inference/models/table_structure_recognition/processors.py,sha256=fDEaWz81yFfdZx9fFqH2ystVhKl_TMy9cGzYGLoj8w8,7952
441
+ paddlex/inference/models/table_structure_recognition/result.py,sha256=DZgX3fRUI11qFI3SaTOAOtFGMu2N3iWuDL4wVCCQ5Bs,2439
442
+ paddlex/inference/models/text_detection/__init__.py,sha256=lttOr1-tNqPUMZ_dMEc6v8ds6n-jTuSeeHNca-0c5cI,650
443
+ paddlex/inference/models/text_detection/predictor.py,sha256=XtuJKbz8cgEvGp409QXM4U2BtRT4mU5U1vii9P1TJps,6186
444
+ paddlex/inference/models/text_detection/processors.py,sha256=-P5rin28cKuebhNLUpzMnvLo9x_hYG0cfTwygu_ksbs,16988
445
+ paddlex/inference/models/text_detection/result.py,sha256=X1NH9A7y_r43fTns3Ctwcs4oupTcLTrUEsuzzR38uOs,1872
446
+ paddlex/inference/models/text_recognition/__init__.py,sha256=oljAcj8MBt4t_fa03kvDAzXJIJSKIAKtB7B0I90G4aU,650
447
+ paddlex/inference/models/text_recognition/predictor.py,sha256=am7PG17yDxHDfGvRxvr9XRie8npXe9v08h7npk6fNok,3386
448
+ paddlex/inference/models/text_recognition/processors.py,sha256=hvnnY96ENYwaDeLXPmA3LSFTx37kDZrwNllag4fdQS0,8174
449
+ paddlex/inference/models/text_recognition/result.py,sha256=sYDHUJEMemDHc48J4DR3wm_go4IOCbKH0qyU1jFSV-0,2633
450
+ paddlex/inference/models/ts_anomaly_detection/__init__.py,sha256=4gvhfI6Z4QZpKsBLyHjTt0UBJ381EW7JfjuIYQBXe1E,647
451
+ paddlex/inference/models/ts_anomaly_detection/predictor.py,sha256=FjNtWgEPWvgjWzVP5RE3EjS0tbEALLdnm1fPBYY6ujs,5233
452
+ paddlex/inference/models/ts_anomaly_detection/processors.py,sha256=U9HwTL7ZS8iLyJXbCgNrZfI8JLRKp4bsBV-9PEhJkIc,3803
453
+ paddlex/inference/models/ts_anomaly_detection/result.py,sha256=uz3rLCjPfPatzToQFl_GbBGpxNS5IAUhf9MzoFJfYv4,2436
454
+ paddlex/inference/models/ts_classification/__init__.py,sha256=9u7HSqrKE0xmSLQcpu-WdyxnE-wZlNvkVaGhFzK3eys,648
455
+ paddlex/inference/models/ts_classification/predictor.py,sha256=q2JRG_dDHHAf35wIJIlDDymc--wGSDNMlX3ZZo5gBbg,4797
456
+ paddlex/inference/models/ts_classification/processors.py,sha256=nBtWQUQXmDizxyFMd_62CFCyOdJETaVBxC6LgNksINs,4729
457
+ paddlex/inference/models/ts_classification/result.py,sha256=V-N_oTDvMsaB43ft6pTPqkLq9k94U-ASowsdoBHqaGg,2627
458
+ paddlex/inference/models/ts_forecasting/__init__.py,sha256=DKYqJGbKqlUbkD1TcIgwb2pQLJpKDHAz5XLtEaq22-M,647
459
+ paddlex/inference/models/ts_forecasting/predictor.py,sha256=k5_0Rw1st5FGO-jrp-3qkeu6J3ybeoPnUXD8O3qfgH8,5853
460
+ paddlex/inference/models/ts_forecasting/processors.py,sha256=kUq3JDLmheSvcsq2jh1v67bhmbWu4p3_konrhylKFu8,5862
461
+ paddlex/inference/models/ts_forecasting/result.py,sha256=IXXepSeQVpm6m3shYM0nnnrl3YdPBhVQqDvMFEDbQWY,2942
462
+ paddlex/inference/models/video_classification/__init__.py,sha256=U7LldafigbDPiTPjXU9v2rfnmSshmG02ibE2l0efe2M,652
463
+ paddlex/inference/models/video_classification/predictor.py,sha256=LpDCLjjnsFOrss8s5eZx8-HCjuI3r1FHFHHoittNWUw,4504
464
+ paddlex/inference/models/video_classification/processors.py,sha256=vvAxEBLHYnn7pmz_OxnDHZQEGrCTGu_Ej41DWl76Xr0,14206
465
+ paddlex/inference/models/video_classification/result.py,sha256=BPD3qhNIbyEIYXDSneDQQWO2v2FmIxwF2Dd1ZPwSdMI,3911
466
+ paddlex/inference/models/video_detection/__init__.py,sha256=RMejdlh-qxQnL0eECfhMDdcX4SIDzw5ruPeZ9oO_T84,651
467
+ paddlex/inference/models/video_detection/predictor.py,sha256=u7BXV-yKVnEkZG5d9EQ9fr81thCIIkHyObAl1GEuAzE,4447
468
+ paddlex/inference/models/video_detection/processors.py,sha256=oIcElrELn7TUgEOoZ3evXRjsR8_A2r7hhiLZVwYt_48,15575
469
+ paddlex/inference/models/video_detection/result.py,sha256=tFPxNzdsKKhPHO0xxMJIxZYlnBDvafkeSzyLdDJd0jE,4247
470
+ paddlex/inference/pipelines/__init__.py,sha256=1z3NGtiUHVBFORlhAIFsrR4JvjtIbjRUQGZyxlD5zo0,9076
471
+ paddlex/inference/pipelines/base.py,sha256=LkHlqgTpMisZni2FBoa0wCtUKl4U7HG5JlnedocZSbo,5363
472
+ paddlex/inference/pipelines/anomaly_detection/__init__.py,sha256=ZXwsw5NJSbdtj4BHGfFm_SgVfbgUGSTABtnVHplWLSo,657
473
+ paddlex/inference/pipelines/anomaly_detection/pipeline.py,sha256=zPdMU7HMpguKaKzsPxt-qQgA8Kqbm5j7kBo6TxKZRUY,2845
474
+ paddlex/inference/pipelines/attribute_recognition/__init__.py,sha256=a3LuEnZYLEEGNHl5P1o2ldnPaPWqhIBC5RRCvrCIK5E,692
475
+ paddlex/inference/pipelines/attribute_recognition/pipeline.py,sha256=6uginCGnAYp3tgvhfpzdX8Il8IqhrBUNYdl7UCPGOh0,4419
476
+ paddlex/inference/pipelines/attribute_recognition/result.py,sha256=mAQIAALF1ie92yNrCVbt2_xufw_hfvIa_RSJPcHt1Kw,3557
477
+ paddlex/inference/pipelines/components/__init__.py,sha256=nXliR_FqHJcIwxlLj_9yxe2MAJkCcCceoJ1vOb3WQv8,1025
478
+ paddlex/inference/pipelines/components/faisser.py,sha256=mciIKikvh_ZzlPjjt2y-zNLWqlTY-xZa74HWKMeGlpc,12342
479
+ paddlex/inference/pipelines/components/chat_server/__init__.py,sha256=2LthhLNi8BtARKCwilAv1VFOC2lpib-WiXbAVe1w4OI,680
480
+ paddlex/inference/pipelines/components/chat_server/base.py,sha256=vRI-61XvCSNEyUAoRr9yHESYEuprgRSCFh-Jjt1ioWM,1365
481
+ paddlex/inference/pipelines/components/chat_server/openai_bot_chat.py,sha256=K80Ag7AcU7POPH9jCaVt3Ck37mMrTBIbon_3xZH4sKI,9058
482
+ paddlex/inference/pipelines/components/common/__init__.py,sha256=l93PRX5Ttw6QyMBT_4l8yPL4tprCETZ2DkEBqQqfKcw,865
483
+ paddlex/inference/pipelines/components/common/base_operator.py,sha256=CvsD1CsKvk8qJD2hM9HMV7teApYWFZBwGL1bSKughUY,1248
484
+ paddlex/inference/pipelines/components/common/base_result.py,sha256=MVg2Sjr2VkeZBVFl9CAGCIoab_o3CpGkwFJT9WGOaGQ,2175
485
+ paddlex/inference/pipelines/components/common/convert_points_and_boxes.py,sha256=k4lXZ8VKXZRH98uXami_oxRc7UMvx0N8BNou7wc096U,1703
486
+ paddlex/inference/pipelines/components/common/crop_image_regions.py,sha256=yB5xOpNbRMjaKmKLQkYF05q5POTducJbCC2DzFDz45s,20869
487
+ paddlex/inference/pipelines/components/common/seal_det_warp.py,sha256=csXqMKh_Ne1ghGQqlbBjzNA3klJsfRBUllcLD5EFPa4,32957
488
+ paddlex/inference/pipelines/components/common/sort_boxes.py,sha256=oqTZT3vCU-9KjbC9TdaTQ9ZhoZc_1ICGU8hFNAmXYJQ,2769
489
+ paddlex/inference/pipelines/components/common/warp_image.py,sha256=VrJgyyS5SKRCM-WZ-fK1JQIsD1N-fYe6I1JKDRWwU3o,1507
490
+ paddlex/inference/pipelines/components/prompt_engineering/__init__.py,sha256=C9fESl3Ffo2ZDTsWVwvJN79RDBLyozpKc1ZOAEr3dpo,722
491
+ paddlex/inference/pipelines/components/prompt_engineering/base.py,sha256=gTKgCLinDMUEmwYcgXYF1ieS5cOsqsGUxxQmtElhi0M,1272
492
+ paddlex/inference/pipelines/components/prompt_engineering/generate_ensemble_prompt.py,sha256=32T3-A5DcNbM-X1coL7eOG_I7cgOVt_TWFOezCoCFBI,5336
493
+ paddlex/inference/pipelines/components/prompt_engineering/generate_kie_prompt.py,sha256=NmnEQYevFYV9wcgtyFjmWdslLWStWnPXnhyNs7gc4P4,6137
494
+ paddlex/inference/pipelines/components/retriever/__init__.py,sha256=cMexXHUrlknx5b_ZKZIWGd3RahmihHwE-ykhAS6LCaw,718
495
+ paddlex/inference/pipelines/components/retriever/base.py,sha256=lWlpMdnyMaNF6gqZ6f27_ll2orYKblfkgRpKWZC9Xmg,7967
496
+ paddlex/inference/pipelines/components/retriever/openai_bot_retriever.py,sha256=z5DFqzgH9HKa0YsHbeUBIRqVe5gKjaYWRw7eVcdajkc,2426
497
+ paddlex/inference/pipelines/components/retriever/qianfan_bot_retriever.py,sha256=B-krytmBqILDGLQbMZKoU-K8b7YNV1co7qaPo3EuzLs,5738
498
+ paddlex/inference/pipelines/components/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
499
+ paddlex/inference/pipelines/components/utils/mixin.py,sha256=JxCJ2pqihd8wB4y5hSiGaXX_wIk4-SW2WO8S6-IZGQw,6549
500
+ paddlex/inference/pipelines/doc_preprocessor/__init__.py,sha256=XTOS7rmOkSk8Ad4ybRoEiSABeeE-FwAijlASCWSZYEg,656
501
+ paddlex/inference/pipelines/doc_preprocessor/pipeline.py,sha256=-qVki45E-H65oMwjXHQXuJTww5O1ewWAs1jHBqmwjwY,7273
502
+ paddlex/inference/pipelines/doc_preprocessor/result.py,sha256=Juemk5tqwV-D4ahdgwxDQavFuliyTtf_Hk6OQnSj4t4,4021
503
+ paddlex/inference/pipelines/doc_understanding/__init__.py,sha256=otW18h6AQw-d0sy_1bZ0W5hVjse021YhDl48CFl57cU,657
504
+ paddlex/inference/pipelines/doc_understanding/pipeline.py,sha256=K8mQbG53DA9kEQXkEYKCQY-ii5UDBi-YroMeU26xYjg,2867
505
+ paddlex/inference/pipelines/face_recognition/__init__.py,sha256=PvjBS-zaPlcbVdw4yGnVkY5mhN1_LUcKc2fbQRmnS0U,648
506
+ paddlex/inference/pipelines/face_recognition/pipeline.py,sha256=Gpklhl-VrB1DtJrcavd9Pd31V7RYswwBeKzjw2z-q_E,2399
507
+ paddlex/inference/pipelines/face_recognition/result.py,sha256=K0XS95GEq1zdU33DbopOWN4FFdh34KZBjrNJscN2eMs,1533
508
+ paddlex/inference/pipelines/formula_recognition/__init__.py,sha256=1ohbSE3gGnXwDkT9BoY47N1c9rtgf4I6sPjijLE6pVs,659
509
+ paddlex/inference/pipelines/formula_recognition/pipeline.py,sha256=GxWF6e_bIgCSEzgmscxxAoRqKM0RbbCB0pJ2M5CKrtI,13162
510
+ paddlex/inference/pipelines/formula_recognition/result.py,sha256=LHXWeSkxsLI0_4_n9B0gWhN3T5QPtNF408or9f35pgU,12093
511
+ paddlex/inference/pipelines/image_classification/__init__.py,sha256=t0NEUXKqdc60LNZRKheo_AR73QoAYKTgv_DlyoR14PA,660
512
+ paddlex/inference/pipelines/image_classification/pipeline.py,sha256=LZU4WlaufvfEs3_LM15LdAfgZslQrp5FvQ2lqnffC-4,3206
513
+ paddlex/inference/pipelines/image_multilabel_classification/__init__.py,sha256=0G1gDkzsZpfUvmZTJX4JxFqFjyMFBdPmYih88dDWwrU,670
514
+ paddlex/inference/pipelines/image_multilabel_classification/pipeline.py,sha256=HqzZq_vSbJxZmSvnhvIDQB33vH3QtMH2qaWd60zPibs,3405
515
+ paddlex/inference/pipelines/instance_segmentation/__init__.py,sha256=hq0t02zs2bcvV33hy1bDCwWmXBzyaSjK2H9CRoDDYks,661
516
+ paddlex/inference/pipelines/instance_segmentation/pipeline.py,sha256=aiG37h1ghth0E76IwfcedsLd_EIKFp6bKaWchANIGAA,3254
517
+ paddlex/inference/pipelines/keypoint_detection/__init__.py,sha256=R4TzgozUZphiJzcWLsSciP0oWD7AeIWxqz2T-WTgqz8,658
518
+ paddlex/inference/pipelines/keypoint_detection/pipeline.py,sha256=9AjDJz1v-4VgA9KfpMZCvgtVaa50-x1ppsmVZSbt2Ew,5839
519
+ paddlex/inference/pipelines/layout_parsing/__init__.py,sha256=eikh0TU4nFoO7C-dI5jzRj02G8PiIXUYu6whU5JTdjE,703
520
+ paddlex/inference/pipelines/layout_parsing/pipeline.py,sha256=bF6lraazTaAyLb2Nfhx0lMpSzwxlwAkEZvoHc9aewPM,26573
521
+ paddlex/inference/pipelines/layout_parsing/pipeline_v2.py,sha256=7nexhUPhK1YJTfvdxgdS9URDKW-PMnqw80l3EDDGOnE,34145
522
+ paddlex/inference/pipelines/layout_parsing/result.py,sha256=kyJyk9THa8kLwWtIdQcNKW9e0ZwwdATq4I1q6oDYiqY,9260
523
+ paddlex/inference/pipelines/layout_parsing/result_v2.py,sha256=_Tkb-EDLmyCUsaLf3uJkOGifkNHl_ix94rom54SWA54,20071
524
+ paddlex/inference/pipelines/layout_parsing/utils.py,sha256=Wnfoy8dc8U8DalRB1hKrRIu_bsyf5WLKQkqDo3jx-hw,91921
525
+ paddlex/inference/pipelines/m_3d_bev_detection/__init__.py,sha256=EcjBbaz4P_BKQ6b8rFdQ_JSN2tfMQAwe1_qOQmkWV-M,649
526
+ paddlex/inference/pipelines/m_3d_bev_detection/pipeline.py,sha256=0fiVirkyOUxcBklTCSyPLaVVhct6MVWGprvg7pXd8VQ,2873
527
+ paddlex/inference/pipelines/multilingual_speech_recognition/__init__.py,sha256=7QB9Wx7YCvmZInmrrgafzfQkL6C495sSro5CoH1HH2Q,670
528
+ paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py,sha256=CNjU91sLIZAadqsAz9cuEGPn1ULidp1tIw5Szhte_kg,3154
529
+ paddlex/inference/pipelines/object_detection/__init__.py,sha256=c2ZYFYRbb0J6daRAv9uwTf4nqUw1w5mG6nkgp6vTtZ4,656
530
+ paddlex/inference/pipelines/object_detection/pipeline.py,sha256=0hQ3EDLS6UtbcI17D6qWhDYaXxYrb5IBu8jwruma4Ic,4781
531
+ paddlex/inference/pipelines/ocr/__init__.py,sha256=ikqbgokLsaCuqyOet1ul-2mtNGO7d7sAXLTdAp6E0qs,644
532
+ paddlex/inference/pipelines/ocr/pipeline.py,sha256=zkN3Sw8Xq5bAVrafDSzgeXY6ZREAgNNHX4A2XbnO-iQ,17638
533
+ paddlex/inference/pipelines/ocr/result.py,sha256=JMEJ3JsRbxshjFnOsWLBRIcUlw3BPYGi-kTltYQ816Q,9847
534
+ paddlex/inference/pipelines/open_vocabulary_detection/__init__.py,sha256=aOYM8QAwEr_mL_GA4rWOs4iLpc16rye6vl3ObPNwWbI,664
535
+ paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py,sha256=CJlg8HC7P0qohRc3DD2NGw1X7o0dtNX_KN_qemdt_wE,3578
536
+ paddlex/inference/pipelines/open_vocabulary_segmentation/__init__.py,sha256=AWiP79r5eAv5i-sVCXTVmSLWeHnQwCh8GeZ1I5mB6fk,667
537
+ paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py,sha256=-x_LkNbM1SxyX343xaMwscprjZrM_f1Uch99lOQm69E,4045
538
+ paddlex/inference/pipelines/pp_chatocr/__init__.py,sha256=sGGz9xscTsDLMHyVr7XHD4aUNvfzi9VdKbcogWx-wsA,704
539
+ paddlex/inference/pipelines/pp_chatocr/pipeline_base.py,sha256=GBrXF4dkmOV3KrBZ0Dn6fJQp3pFiJzmwYICLybQdzng,3975
540
+ paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py,sha256=l-DEHXwCOY8u-EDwwsRsEhowm9ksYVrP9j7_EhW5j6Q,32635
541
+ paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py,sha256=-8uXDgA1nlWQYu73HAYh6goi2b_x9I0_ZyXSS8eEc4E,41668
542
+ paddlex/inference/pipelines/pp_shitu_v2/__init__.py,sha256=ZI-x84D1hyQ8U77a8VLsv_4faIbTstX48iD9PWnYHDQ,648
543
+ paddlex/inference/pipelines/pp_shitu_v2/pipeline.py,sha256=G3fzKKyjscJKz5iQ4jSvBjEoGCa6KuiG10WY4n2AdlM,5828
544
+ paddlex/inference/pipelines/pp_shitu_v2/result.py,sha256=3600yup0xoEL0dA_7BqljeZPgvledruh1VoLMpIH2tc,4354
545
+ paddlex/inference/pipelines/rotated_object_detection/__init__.py,sha256=0xOtCBKkj3DJQkIbO2EUekYcBf50U57LEwIC_MsM4Jc,663
546
+ paddlex/inference/pipelines/rotated_object_detection/pipeline.py,sha256=OIInlYI3CSa2wLIX1xkZf5U15tQ6lmlfRdWbqXMiY9w,3658
547
+ paddlex/inference/pipelines/seal_recognition/__init__.py,sha256=Hf4BsknzV22IeT8dG2VYBuHdKEP5rrWetaV0HxxihC4,656
548
+ paddlex/inference/pipelines/seal_recognition/pipeline.py,sha256=myfEiCP05Bt-Bv7CylVF9NcOhmo_3bLJmUujOzqDFRw,11926
549
+ paddlex/inference/pipelines/seal_recognition/result.py,sha256=yQJZejB-bufIE-PxcjNEfhLFRS8tfV-8W3nZIWlyYh8,3733
550
+ paddlex/inference/pipelines/semantic_segmentation/__init__.py,sha256=sjct9rWDAodXzT73QZreE-li9bsZBislMfGu4fVBJPQ,661
551
+ paddlex/inference/pipelines/semantic_segmentation/pipeline.py,sha256=RB_Jt12S9o1jFdvFn1mzteWyxTavRYrOrCkp37wh1zk,3648
552
+ paddlex/inference/pipelines/small_object_detection/__init__.py,sha256=3Nu17bbFqaFAZy5XYUfNr8cN4UI9Jtb71JcVOi4FXsQ,661
553
+ paddlex/inference/pipelines/small_object_detection/pipeline.py,sha256=yFDpjYUpf4gwufBhcxTYMeXE9MqN8DHr630v0cTUNtc,3636
554
+ paddlex/inference/pipelines/table_recognition/__init__.py,sha256=njpOeQCLmGcqpyqoD6vPfR4ZlOgH-n9eVZNtW01Gin0,709
555
+ paddlex/inference/pipelines/table_recognition/pipeline.py,sha256=XS0qIjvPCnETcdI5h4vty0PFdpO5N_QgbXR0G48YkUE,21112
556
+ paddlex/inference/pipelines/table_recognition/pipeline_v2.py,sha256=5Irid13j8B6I6ty5dP4Jdu_4nn5pDZEWV0lNStl92Go,36860
557
+ paddlex/inference/pipelines/table_recognition/result.py,sha256=M3PKUgfvJpxp7PRXvoD4YtKZ1dUq1kBdFeXnixCMTnk,8539
558
+ paddlex/inference/pipelines/table_recognition/table_recognition_post_processing.py,sha256=e_EBxJ8FhbVfxTMXgvKgWioYFmlL60Vy68DxON1koFo,13687
559
+ paddlex/inference/pipelines/table_recognition/table_recognition_post_processing_v2.py,sha256=D_4y09twH3n0fUuQ2Qcepo3K7MXdGcwLO7_i6s5Bewg,17203
560
+ paddlex/inference/pipelines/table_recognition/utils.py,sha256=ccE_gO0FpEnirOPgs2tZ5sUpFIecJKh4x0XHM3RMgZA,1744
561
+ paddlex/inference/pipelines/ts_anomaly_detection/__init__.py,sha256=tEqgLUUG96b-ZXSXxp6Aaw6j4j2ZCB1mSiZIA3vZccY,653
562
+ paddlex/inference/pipelines/ts_anomaly_detection/pipeline.py,sha256=mC0OQWR0rr3lHa9ICp7nSQdWFqEYf5Ts5G3sYGADUyg,2832
563
+ paddlex/inference/pipelines/ts_classification/__init__.py,sha256=BV9eJHwPYamtJvBpqOf0_Dp1BRsNI4JUyJlz8NMyPLc,646
564
+ paddlex/inference/pipelines/ts_classification/pipeline.py,sha256=XmdL0FJ83Io3w_iFT6V2EV55vwRRc3-e0p9JSQ1qhCg,2866
565
+ paddlex/inference/pipelines/ts_forecasting/__init__.py,sha256=q3PlYiv1859mFHaPXM6jy1GDtB12rbK3vqxQAUYlSAA,645
566
+ paddlex/inference/pipelines/ts_forecasting/pipeline.py,sha256=6GEBOobXGxFGQqtwKr1Q_SQbRXEuB6iHk9EVjxY8S7Y,2805
567
+ paddlex/inference/pipelines/video_classification/__init__.py,sha256=Oc-0vfKoaBRDZNJpu5138EsNG8Fp7nsmzUt5gfMyqIQ,660
568
+ paddlex/inference/pipelines/video_classification/pipeline.py,sha256=4cpDL2q8GRz249dsP2XbuKhq4TZ6JRAHs-k4tUlu4SQ,3084
569
+ paddlex/inference/pipelines/video_detection/__init__.py,sha256=5fwogRCREggvQgge-ur-bGnfKP-9xh5dUR0gkjzl1Rw,655
570
+ paddlex/inference/pipelines/video_detection/pipeline.py,sha256=mlGpvDdiLcZc4h9DVNo2o1XK6QCVwYTbR_iwDszBGoI,3372
571
+ paddlex/inference/serving/__init__.py,sha256=toJfQp9IogLuJwLzprv8lieB-EERPqU4B0FJv8ZoNec,685
572
+ paddlex/inference/serving/basic_serving/__init__.py,sha256=_NwYgeYL6HTpLWAxf7aRwRP-rBfP-Fsaff3vZe0GUkg,739
573
+ paddlex/inference/serving/basic_serving/_app.py,sha256=7KKwaeeZDEqj-623AYOw6JvtmwnDVu2Aw9zsKcrhVsU,7368
574
+ paddlex/inference/serving/basic_serving/_server.py,sha256=c_nqZFecjAIQxw2huCKzLWZ_BSO_pFh9xaUSGZ1WrTg,1484
575
+ paddlex/inference/serving/basic_serving/_pipeline_apps/__init__.py,sha256=z5_SMYmGTeBJTCwbipHBzuitWjraIEpy63y4od9Wtbg,1707
576
+ paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py,sha256=9eDaXVlXC5sEvmBGDvtE4Lv6bz0riZvT48nq7ccFCAE,2374
577
+ paddlex/inference/serving/basic_serving/_pipeline_apps/doc_preprocessor.py,sha256=dsABJvWCkY0fAAVqPsCgj5ZCM9rmpBgziZlggT_Jj_A,3641
578
+ paddlex/inference/serving/basic_serving/_pipeline_apps/doc_understanding.py,sha256=jwEE3Rlo2_F1GXD3VkmvoCmEiirvhW40JROsSpfrQq8,5618
579
+ paddlex/inference/serving/basic_serving/_pipeline_apps/face_recognition.py,sha256=h1Pc_NULak1v-kGK-2m68ZeeEUY1Jr56FgI6aePVDNI,7985
580
+ paddlex/inference/serving/basic_serving/_pipeline_apps/formula_recognition.py,sha256=t9Ee63B9JSKcvkzf2lGuF-fyMvGf3O57ZWuWPPFq690,3614
581
+ paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.py,sha256=rzQniNgVxJAwuL8AJg1EVTMTe8F7vt45GtfyVNpzLb8,2648
582
+ paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py,sha256=DDfpOzLvXRvQXBz279ybi3RDCCRGbbJait87wipq6B4,2568
583
+ paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py,sha256=LJa_GBCadv5z-3q_ypHmtX2YUx6uh-GDzlESZfUrxiQ,2606
584
+ paddlex/inference/serving/basic_serving/_pipeline_apps/instance_segmentation.py,sha256=l0gMJCWOyd-sP7pXDWXPoGdiBOYCf5cm1Nqe3yoZqhg,3032
585
+ paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py,sha256=dPzaWB1fxb729Q7dluUQWOn1jYg1Ew70L9jSkxGocck,4598
586
+ paddlex/inference/serving/basic_serving/_pipeline_apps/m_3d_bev_detection.py,sha256=67-XMeJpt38WJyWDlWz8ejdbZDsQ81WQ4Jye9z0zP-E,2553
587
+ paddlex/inference/serving/basic_serving/_pipeline_apps/multilingual_speech_recognition.py,sha256=5_r3Ze_F4N0n5L-D9EK-8jVgbtNxhbY-wOgwRwVd62c,3111
588
+ paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py,sha256=KbkK3FQsLcTlRjFxeEVh_fe-B4uznaDoCEFjzxbD4Tk,2620
589
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py,sha256=m5xEmhbV49HWVob_Xf8RfyZ56lfX-uenyso-VJgZ5fk,3839
590
+ paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py,sha256=38_lV8SgDtK6DxqYwAGgPI4ARA8x-qA7prg7rIPRz08,2641
591
+ paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py,sha256=2RBFFOYmz7yM8jUDOSTNGJGyhPb5SXVwSumjct_k46E,2868
592
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pedestrian_attribute_recognition.py,sha256=KAk8-ng09DEtmOXU3GLdjPdUmm5eYtrAWt0bvViT6ag,2787
593
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py,sha256=Jop35Lwdv3XuY8Ot5qMfCLxhdc5ibXdCkUDIaWrks2k,7497
594
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py,sha256=1Alv_SEPWqYU8Syl14L4IFtVaN93fhvLpfQt24gvL0U,8549
595
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_shituv2.py,sha256=mejMNXongcpReJPi2IfmpUpekbxX3CIP0BCCxEuAD54,7747
596
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py,sha256=m8sGvMKnpkTsin3Y1dNgDsBAbRS_ZcrJzjhWUwet-Cs,5610
597
+ paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py,sha256=3grQrKFhUuY1HVRqTDNOsi9Ss9ADPE4Uxc2qLAVUdf8,2645
598
+ paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py,sha256=AGV5TfrgaQNrTmN7b4Sca_n1QeTEx2uQ1Ft5Lu6Csec,3955
599
+ paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py,sha256=4Eut660kUrXzIMFVlJ8GiQfM_pMuR7KKV_Ihnr3w4iQ,2410
600
+ paddlex/inference/serving/basic_serving/_pipeline_apps/small_object_detection.py,sha256=I-lN4umtW4MdMOfrS7f84ME2oGNxKUO623VxcP0qIzg,2557
601
+ paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py,sha256=GtARFaFMECC5kLyhKokBPENvp1oFhdCTqafdRQjaQp8,4080
602
+ paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py,sha256=c07LbOc1xNwuMN7nuhdxvkhTl_gg8_C8m7W1rF5W7Tc,4241
603
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py,sha256=6z0kkq1kXpS7aLlCn6TvL8g1uS02SZAHkhOeuJzaB8E,2281
604
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py,sha256=luHJWk_jWVVSluCbXdc8pjsf5bBnWyoYSqh4G-1Fe_o,2289
605
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py,sha256=Uk5VHQEfrYkwPcvdXcl8x_tgXMJBxMvGVghCb-CwLLw,2273
606
+ paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recognition.py,sha256=O36USuzEuunoZtwKwLiLD3Dwb2S-UzkeDqJHX6NPOTo,2781
607
+ paddlex/inference/serving/basic_serving/_pipeline_apps/video_classification.py,sha256=O81Dqdqz_aKY_lza-Qnx5BAhdJMEURwSFBsa7WGnVMY,2743
608
+ paddlex/inference/serving/basic_serving/_pipeline_apps/video_detection.py,sha256=CW-UrSTBQZIbLvzFwWAKrH5o7-v8fVhdul-NAIARpBE,3055
609
+ paddlex/inference/serving/basic_serving/_pipeline_apps/_common/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
610
+ paddlex/inference/serving/basic_serving/_pipeline_apps/_common/common.py,sha256=vqKEa2gHdAH4asQg_BwERbQMgQmvv-kWS9WufF9hWxw,3422
611
+ paddlex/inference/serving/basic_serving/_pipeline_apps/_common/image_recognition.py,sha256=EWHNeFPwiZHt9hkC8-9mV8shKVIJH4CbS3EvQQs6RjA,1244
612
+ paddlex/inference/serving/basic_serving/_pipeline_apps/_common/ocr.py,sha256=B2vexhyMSUMy0Vvyy85ZObwTsrieplyb-LiT3lc-Hng,3578
613
+ paddlex/inference/serving/infra/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
614
+ paddlex/inference/serving/infra/config.py,sha256=-6StYn1pF_VQdCWsthZ5b86O-m31ye_KWp7j-mwc9N8,1152
615
+ paddlex/inference/serving/infra/models.py,sha256=KXxvV39dGzrbGeHDacZMGvtlcKPF4PEkjtuov0Vt9y4,1980
616
+ paddlex/inference/serving/infra/storage.py,sha256=8Pw5mhvornnF2NnwOblRX5N_FGMrCvCkz0WfmQX7bXM,5379
617
+ paddlex/inference/serving/infra/utils.py,sha256=HgpdFcU2iSxCOxgTUJHq4mxj76scyMqmIWPRO8MdrN8,8604
618
+ paddlex/inference/serving/schemas/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
619
+ paddlex/inference/serving/schemas/anomaly_detection.py,sha256=407q-QdNYiCHSjuGnbnndoFK6CXWN4Y8HfzVaIzE_8U,1189
620
+ paddlex/inference/serving/schemas/doc_preprocessor.py,sha256=rCYnssIaIpnulPGFRTE15U5zl7l6ylWzqpMJl1QEvVI,1630
621
+ paddlex/inference/serving/schemas/doc_understanding.py,sha256=urKhmbceO9TCL2_9bWSC8_buePyGSGixfryoRfESw_w,2058
622
+ paddlex/inference/serving/schemas/face_recognition.py,sha256=N6SHf5UB63yyva3y9Z2xYh1_mjJSh1bSIFDjf6be8iU,3011
623
+ paddlex/inference/serving/schemas/formula_recognition.py,sha256=q0QC3m-CMq8D5XllW4htpqoC-Yi97v_KeER-fSc8Lfw,1710
624
+ paddlex/inference/serving/schemas/human_keypoint_detection.py,sha256=C61vn-1MYsjdpKy8H78VrEJeJQMKhZMVJ2odCoxfxfY,1473
625
+ paddlex/inference/serving/schemas/image_classification.py,sha256=I_lquPPda7W7RAbDVQhhCJiXz28DYIzk2ki5CQzNO7c,1291
626
+ paddlex/inference/serving/schemas/image_multilabel_classification.py,sha256=-Id6g1RLeTE4O_RzbyboN_YhImuopm7IbBqVVE_c44w,1368
627
+ paddlex/inference/serving/schemas/instance_segmentation.py,sha256=aLPdJftqCkHVFakDWz9PKM9itBmHGuh4hrOq622mSC0,1411
628
+ paddlex/inference/serving/schemas/layout_parsing.py,sha256=o2jlLhKBheAE3GGXVm234GYcYcpcldXh_RfsfmHDoIs,2444
629
+ paddlex/inference/serving/schemas/m_3d_bev_detection.py,sha256=i9WJnV2t_aVsuxIYxp6jue_H0mhOk3PJNBIAFmr11nM,1289
630
+ paddlex/inference/serving/schemas/multilingual_speech_recognition.py,sha256=98SL_0vkAfbDdy6-G426lLolMmaf3U6-uMGDEF_aYy4,1371
631
+ paddlex/inference/serving/schemas/object_detection.py,sha256=IjPxEvK5-suGOXHeXOSo7LgIyHJZbuwvixgq1fa_KPA,1414
632
+ paddlex/inference/serving/schemas/ocr.py,sha256=D0XLhCa9uxTb7xxNATwS7NW5p2vk5Frz_ukGq0q_NUE,1827
633
+ paddlex/inference/serving/schemas/open_vocabulary_detection.py,sha256=T8WgzB9Np4AP0ifzumueUL4LwQsrPZCnCvcElOrrAHo,1399
634
+ paddlex/inference/serving/schemas/open_vocabulary_segmentation.py,sha256=9L7sZsSibZ8nyAgHgkjfm_A4T_mSZyCuOXf0EEdmUYQ,1360
635
+ paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py,sha256=p5I5Gcs3fJb2YnJdQSZElVM-ij5yd1nqr0L6R8RTEx4,1619
636
+ paddlex/inference/serving/schemas/pp_chatocrv3_doc.py,sha256=HW4dp1Y5n4Z8iyiXUbSsVYg9ZvRzJk9Mkhtgllp6SCs,4348
637
+ paddlex/inference/serving/schemas/pp_chatocrv4_doc.py,sha256=3MCG7p2RcLj95pSkCglS6pAouSRh8pG0X25Aw6CA9Tk,4544
638
+ paddlex/inference/serving/schemas/pp_shituv2.py,sha256=bD_xTuab4t4o4h7ycBVYl3nlA86bvk59aLggZ-j_KlE,3007
639
+ paddlex/inference/serving/schemas/pp_structurev3.py,sha256=cf_w1sUNHGrNCZwmudWePI9NU_hx-0I-ZkxzR4MEFjo,2749
640
+ paddlex/inference/serving/schemas/rotated_object_detection.py,sha256=LRZHlTR15onDcsXshOHqbKwyaJ5mJCZrVlm4x-h427Y,1429
641
+ paddlex/inference/serving/schemas/seal_recognition.py,sha256=KqTzP6iIOXEs1ptoBDHppnz_A_2T8rdtbbxNKCXt66Y,1965
642
+ paddlex/inference/serving/schemas/semantic_segmentation.py,sha256=QlsjszHI4MZUumBiNlxY7KacMNKEXKDH8oaS6wyEbiI,1282
643
+ paddlex/inference/serving/schemas/small_object_detection.py,sha256=dbd7B79UHqkN3slzi01ui-Q7jkUQlYfEIzFZQOYT-wU,1420
644
+ paddlex/inference/serving/schemas/table_recognition.py,sha256=AqnB6-HRhsiKUFauR8ZcZdQGDIKfqmq6h_gD4b-a9lA,2051
645
+ paddlex/inference/serving/schemas/table_recognition_v2.py,sha256=0c5WoDROYfD5_HH_WNOwoDluif1F9Bj2HMp9L3AM1UU,2159
646
+ paddlex/inference/serving/schemas/ts_anomaly_detection.py,sha256=gYHuJL4MEL8-v7PMze0T1_YTCjnEjDczb-QWUAuuf7g,1103
647
+ paddlex/inference/serving/schemas/ts_classification.py,sha256=NScw6DzaZ0kZNUIlQoQhSsE0aEZeZLQ5orBPk8nyl3U,1119
648
+ paddlex/inference/serving/schemas/ts_forecast.py,sha256=L17DUN8GF5ffaj_u__xirD2R_FB7zaSolh4PMn6KxOQ,1097
649
+ paddlex/inference/serving/schemas/vehicle_attribute_recognition.py,sha256=zQbiI-3JW0M-5ytBSMbDFww9sAftKmg2k7_qSF6CvkU,1604
650
+ paddlex/inference/serving/schemas/video_classification.py,sha256=NEuxh1VIMmXlhab4-jV_2OVhPxB58qIXOpdcZyEopP8,1259
651
+ paddlex/inference/serving/schemas/video_detection.py,sha256=U7wpB2dN-F76J-3moqomGzSL-Mqw7cFOni2_mRAFZRE,1428
652
+ paddlex/inference/serving/schemas/shared/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
653
+ paddlex/inference/serving/schemas/shared/classification.py,sha256=xza25RVSyjxZCASrvZ1Tb-LvRoiLMfhb60Aa1m3PoLY,737
654
+ paddlex/inference/serving/schemas/shared/image_segmentation.py,sha256=hkRK83EtvHdlt63CqWAQq5QFBr5wGamPYxelTLRzqmc,830
655
+ paddlex/inference/serving/schemas/shared/object_detection.py,sha256=hRraFDkMn67ovX5Y9otsMtwE9-bYYtOo45a0DPt83z4,885
656
+ paddlex/inference/serving/schemas/shared/ocr.py,sha256=UAmHt2subCJvrtGOuy43axOxjrMaVOPLm5bYSOamgEQ,847
657
+ paddlex/inference/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
658
+ paddlex/inference/utils/benchmark.py,sha256=l2ATIuPwAd1uD4rZgADbt4HKEiobeFLm3P-bIbKtD4s,12932
659
+ paddlex/inference/utils/color_map.py,sha256=mU1FdhHuyiJBn_thBkSndiMJtfkn3i3rLtPAPNPFid0,2953
660
+ paddlex/inference/utils/get_pipeline_path.py,sha256=LCjXho0ix4jgG-sJ1DyKIAFfC8Yv2cj6hBlA3eOFJIo,985
661
+ paddlex/inference/utils/hpi.py,sha256=wtGeB07Qp-I8X9N0EKMIG9oMy5IA117dvpx1tuepf-8,8938
662
+ paddlex/inference/utils/hpi_model_info_collection.json,sha256=yhtr-bIwVdDervhV4LAYpfKeiS94nGv7Cu9am4gqdoc,41859
663
+ paddlex/inference/utils/model_paths.py,sha256=uRsEO-uHEd4xKQZqNyU5T7Vp6QI6iYZ5anZMXXpmKAg,1803
664
+ paddlex/inference/utils/new_ir_blocklist.py,sha256=wdN1jiRWGo-YQvzoMOLhsqDjAcqhhkwfPBZEJ3-ldAw,880
665
+ paddlex/inference/utils/official_models.py,sha256=6FTme_a4nx6Cxl-baxdUi-NOnLCUmlBIg2hnzlwmOlE,39295
666
+ paddlex/inference/utils/pp_option.py,sha256=Pv0YbKd_xPzoI4lIAZ8P61epZ7H0dPJwWrKyLFiITpg,11059
667
+ paddlex/inference/utils/trt_blocklist.py,sha256=vaFJs6gvkMncYKTL5R6C93Nq2eYAdeBNcmJ4-abSFa0,1465
668
+ paddlex/inference/utils/trt_config.py,sha256=995uGRdKFyaU9EB4jLDiS85EjVLXmsCyL7gJIl3c8h0,12661
669
+ paddlex/inference/utils/io/__init__.py,sha256=KE8WngZIEjrOPEGeN6AEwKU-yt5nReDRWIBcmiRPM5s,939
670
+ paddlex/inference/utils/io/readers.py,sha256=rT3bj61rNLMrKIkK3VzFEHm1jWRKEH8VQgAKJ_oOOXY,14137
671
+ paddlex/inference/utils/io/style.py,sha256=0wIJQ9Gq8lgHec65TKq17W626kMHkwIqyUI1okkZOzg,11522
672
+ paddlex/inference/utils/io/tablepyxl.py,sha256=jTgpLrYbpJ20SWKNI87ZAF03xPHQJNjzGuYkbIE-KE8,5264
673
+ paddlex/inference/utils/io/writers.py,sha256=eQzWGFFf0JKvgk_UnqvdQZs1aCDGbs9MQW0EST3IoJo,12720
674
+ paddlex/modules/__init__.py,sha256=8RBCm9HPqTuG4bmygORw2i1u_8KElXsgGgpBggBReFE,3002
675
+ paddlex/modules/anomaly_detection/__init__.py,sha256=-KBaNC_byJeI2uisbbBePhif2OI4odukBI2kg2jdOzY,759
676
+ paddlex/modules/anomaly_detection/evaluator.py,sha256=tjs5kL5GYY1ciIHhtGSKNlMP5dkSnN5ab46Y1wkQ_-8,1752
677
+ paddlex/modules/anomaly_detection/exportor.py,sha256=aUnXJzLIzrdoAQ3NgPx6pOBgpeVYIP0EkqOygnC9IhQ,778
678
+ paddlex/modules/anomaly_detection/model_list.py,sha256=oZbKWDV4kNV8rkXS2gPSv0AmvTCSUonHiGNv834GO8g,630
679
+ paddlex/modules/anomaly_detection/trainer.py,sha256=A13rPYH4FiV4AO9ffwHHlTLiYkZVcdLASZ4jNlpQAkc,2797
680
+ paddlex/modules/anomaly_detection/dataset_checker/__init__.py,sha256=-CgtodAg2-8aqlo2sdJgMaMMB0dn6tHY7oAVP-WQwm4,2877
681
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/__init__.py,sha256=X7tKpOP8SC5V857urIX6C7A3I_OCi7rTgNFiro-wb1U,783
682
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=oHzquwZ-16_A__pnlEqSM-8M_gzBAJB851AiiMrPcAM,3150
683
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/check_dataset.py,sha256=jJgZ7AILeRF9smCYsOgk6JNf2rdaVmcmni2yvPYUOqw,3911
684
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=cwcDBJ_HxEhnG2j85viVBQ240gcNHo8442QE5lJizEE,8312
685
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/split_dataset.py,sha256=k8oWJZs3srA5gZeJpgBFmzj8xVzIAsy6xfgnYRNMsEg,3295
686
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
687
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=3SzTKeTPFgOYKmcNjua6Gi9CsAw9cFMC7IG-r7-uayk,2829
688
+ paddlex/modules/base/__init__.py,sha256=B8WiHLhjAy36VUV-u6AHXCznub4-68XUI4qyWDtwu3c,834
689
+ paddlex/modules/base/build_model.py,sha256=jZzZakdeB6NCyZfbprOuP6IOCNO18h_hlWiDvLUmM9w,1217
690
+ paddlex/modules/base/evaluator.py,sha256=YFuCJhHU_QHnFz0xx5ZxQR4DbHD1EH6XBlvii4oLNKw,5478
691
+ paddlex/modules/base/exportor.py,sha256=kMZaevotxpVTfdhfY5U2V3vGc0pz_wPO-UkmFL3ggsA,4652
692
+ paddlex/modules/base/trainer.py,sha256=LxEFhvDyuBMt9XvaEzC4sJifmoH5zVfZ4vExMK4-sJE,4961
693
+ paddlex/modules/base/dataset_checker/__init__.py,sha256=HyzVN0-XxQ0Ru3lX_jJvZ3q3DbETXpKo4RoJi45O5KE,682
694
+ paddlex/modules/base/dataset_checker/dataset_checker.py,sha256=8fM1IWvIqHngzhurkx0BTSpb-jeIS6hJ75B5DbHMjg4,5199
695
+ paddlex/modules/base/dataset_checker/utils.py,sha256=q_FWg-awWTaNE_nuD_jQ4mvJPaGGB66pNSen4WcuGEs,3324
696
+ paddlex/modules/base/utils/__init__.py,sha256=fovvnzWDJkOEjCTxy4zn5e1Gf0E65goCyPMahVMjuWY,609
697
+ paddlex/modules/base/utils/cinn_setting.py,sha256=wXw6oSpDBCaPzSqorhjto_ZZxmS1gMdxfksnNOGqUjM,2406
698
+ paddlex/modules/base/utils/coco_eval.py,sha256=ZoTF3hLyDVOw8FqE4d1jSzT7tjpJQkD4R12DXe8TFmA,3001
699
+ paddlex/modules/base/utils/topk_eval.py,sha256=VDmawEu-emOujFrTsGJSA9ob0IbsOgNGMoOMUa9adNo,3610
700
+ paddlex/modules/doc_vlm/__init__.py,sha256=IyrGCdr7Xb2pj6KoZAHELgB3US-IsfRfNnxS7MKHkxE,771
701
+ paddlex/modules/doc_vlm/dataset_checker.py,sha256=AUQSJJeci3gEudwmBKHAY2DTouvUk0s_JSohieu2lms,1052
702
+ paddlex/modules/doc_vlm/evaluator.py,sha256=KYwbHOSjYcQGWD1idPDxMn9ZTmzRxneoCrjVxC_65S0,1025
703
+ paddlex/modules/doc_vlm/exportor.py,sha256=qX32RkPu931VaxyAY8Uv0BX-HZGScIgkVv2lmpMqQHY,1019
704
+ paddlex/modules/doc_vlm/model_list.py,sha256=aYyUjO5fBPOCYVr4Lpi6HlMTf1QlvUU8-ez3sMIT3aY,653
705
+ paddlex/modules/doc_vlm/trainer.py,sha256=wMJnLK5Ug3-P-sj_CDICvqWSnFQC9kAVGjF_dtbNPrI,1345
706
+ paddlex/modules/face_recognition/__init__.py,sha256=cirPmSAP4s3lhIjMYpa_NnRRRRduuvIzT78EIz4bUNI,775
707
+ paddlex/modules/face_recognition/evaluator.py,sha256=xbnvMS_ZUuuK5RezHZTC9tiyoyXpYlEmv4DKhBHeZQE,1938
708
+ paddlex/modules/face_recognition/exportor.py,sha256=98Sw9yhdDQyokxx4nNua5XDSYbCH2OheI4Bb7WRYLo0,777
709
+ paddlex/modules/face_recognition/model_list.py,sha256=gwqwCZD8mngz4NQcblx8drYcuKsN6T3oSSV5VD1_gHw,654
710
+ paddlex/modules/face_recognition/trainer.py,sha256=F7tmyOUeOUtlW0LHG9iNEaNe5J3aMTyRNbw7GPdLblg,3349
711
+ paddlex/modules/face_recognition/dataset_checker/__init__.py,sha256=-AUsLe9dJ0ndjKDd_rUgv5bcf_VGSBqvV5KVAV8cLyc,2259
712
+ paddlex/modules/face_recognition/dataset_checker/dataset_src/__init__.py,sha256=RNCezGsXclcWQVBjEWX7ezxG1728ZKCmOPi2X3Z7cVI,661
713
+ paddlex/modules/face_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=pOuLRoqiDhbA-WqrZJEVy4zLqgf_FcdIIIoROz3qxAY,6458
714
+ paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
715
+ paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=mdNvYxWo1M17W3eI1sslcuHfbtiTR-MyBue-cqZbU3g,4192
716
+ paddlex/modules/formula_recognition/__init__.py,sha256=pcSvdDzb6aYvYQ6EtD8IeiWcA5B1i6UxvAVd91vwCcA,787
717
+ paddlex/modules/formula_recognition/evaluator.py,sha256=OrAylFuRL4IHF72LGQhqB8lEUF3m9SgsFT4-9joe9vQ,2788
718
+ paddlex/modules/formula_recognition/exportor.py,sha256=WbYjW3kSUHanO8PWEB_pmKHirqXJpe8ouFibXDSsOIw,780
719
+ paddlex/modules/formula_recognition/model_list.py,sha256=gBoqudL5FxCBlzh-vg5guqKHAhvL31Q9I80Q8kffbPM,707
720
+ paddlex/modules/formula_recognition/trainer.py,sha256=lbKEIiQBZjCvlFmvJnliepkf4BFPp-bHADoowvRiIbg,4630
721
+ paddlex/modules/formula_recognition/dataset_checker/__init__.py,sha256=gNsmua_EtPCt45NICbaf1DPguSyL9V54pgIjfEA1tGg,3448
722
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
723
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=8BKm_4GMcdyGg8YUAhXCHIxnq-eGnOCM4Pfo31nDcYs,5401
724
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=XNiFYuX9IQ6j_z87GEUi8f2whRrn4VAqAI8wAODvDsM,3244
725
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=4u1T7bqwfBgCI407A-DuJHkasktZVKodwkPPcS12TDA,3549
726
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
727
+ paddlex/modules/general_recognition/__init__.py,sha256=4h6ETfyLPSjiJ8XzedUYBOqaVCTO-E5_rYjipxH2AXs,779
728
+ paddlex/modules/general_recognition/evaluator.py,sha256=8jmfGUiCeMyZ1oQLlkKEGWXcNdZ9ZgVYkDSqs5UW5WU,1178
729
+ paddlex/modules/general_recognition/exportor.py,sha256=K3AMTFlH9AvBEtmUmMw6Q2bHp7R7h-CpcQi_xL-ipNQ,793
730
+ paddlex/modules/general_recognition/model_list.py,sha256=U44cV1nO54JzantxiXvIlC6FMayR4RavX1JWlfrtk_A,718
731
+ paddlex/modules/general_recognition/trainer.py,sha256=8QWw8gSA1htePeJbSvWSnZdAG8BIaH-wr8nUTuJf1DY,2315
732
+ paddlex/modules/general_recognition/dataset_checker/__init__.py,sha256=KYtNWnZGbOsPgzIUUPwgZoA2jaUuISB8GSeF19z0LkA,3320
733
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
734
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=oYBvBPR1gHSIxNA8E_nsvDeVFsQlNnFRex7W7X5V_SE,3520
735
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=FBztILCCr7StVx9g244ij8UeIVQ5L3nZ_77JcjGAM-o,3841
736
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=nEax57jJsjsCLUdwGSW6zvLJuHGcuzmdWkJpLFGG-hE,3459
737
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=8UVAXYuYD_90DcNGS4RnHD6VGZpVPJPm7wz1yEu9Gsk,3049
738
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
739
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=HL2H_swoXZMg81Ge9cB1cmAUQq5AYP-C0ooXQuWPhOA,3989
740
+ paddlex/modules/image_classification/__init__.py,sha256=KTGmo4qYKKAWWVqYKxfjzczeJn18jjiS0Zu18_-S7pI,759
741
+ paddlex/modules/image_classification/evaluator.py,sha256=h2sejx7OM9fekMcwUPkLdlIMdCtV-GkmAHnAuwErTnQ,1671
742
+ paddlex/modules/image_classification/exportor.py,sha256=qaselLfpPO_LrHxl3598UtkblGonohX-nJLVu6ErGKM,777
743
+ paddlex/modules/image_classification/model_list.py,sha256=0wSC75LdZEfs0yfqixUq4j0f-T-EPgBXoF4STFAwhBk,2739
744
+ paddlex/modules/image_classification/trainer.py,sha256=PocPdlfXcZtcN0mIIKnyVnqzLtQBFpe2_2EvwoJqMHo,3470
745
+ paddlex/modules/image_classification/dataset_checker/__init__.py,sha256=unY-5uqZd7UNnxHbdHc21PtTXD6_B2DHub7upl2678U,3176
746
+ paddlex/modules/image_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
747
+ paddlex/modules/image_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=xyNtu4GGhMNPpVFLVOknpLJhh5yAp75M0u0Rm4SPeJg,3461
748
+ paddlex/modules/image_classification/dataset_checker/dataset_src/check_dataset.py,sha256=W7NLRMDWjucKBJU7x9NsZ66YGJR4OOR9OM-BCq4VYpo,5036
749
+ paddlex/modules/image_classification/dataset_checker/dataset_src/convert_dataset.py,sha256=x26AOotf6Fj4iol8aUgIwpOyBhoT9b0OiKwnMTlkIrw,1959
750
+ paddlex/modules/image_classification/dataset_checker/dataset_src/split_dataset.py,sha256=l1JLNa86-RxX3Ugfk3_Xx6Cc5p4zShaz0jP7jDoRMRg,2789
751
+ paddlex/modules/image_classification/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
752
+ paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualizer.py,sha256=mdNvYxWo1M17W3eI1sslcuHfbtiTR-MyBue-cqZbU3g,4192
753
+ paddlex/modules/image_unwarping/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
754
+ paddlex/modules/image_unwarping/model_list.py,sha256=83RWeL82dZfj1nfgR6veqxHerNMurXi7KUF_GSX59Ik,636
755
+ paddlex/modules/instance_segmentation/__init__.py,sha256=jc6nMbJQJnKEkbV2B_D8iNBhVjZ7a23vPuI3q8NgOjk,791
756
+ paddlex/modules/instance_segmentation/evaluator.py,sha256=36rv49wg8QC3WxeXkyGGGJEhafZ3hO0Ur5eOrH42lR4,1174
757
+ paddlex/modules/instance_segmentation/exportor.py,sha256=khMYIu1X00n9jkoHDiTuU3CHa8If0Qe3NZ0iRD6og4k,786
758
+ paddlex/modules/instance_segmentation/model_list.py,sha256=ShpbY2snmkpZl1mbkjP6G-ltNlzDMBgbp4dzaL8BmwM,1076
759
+ paddlex/modules/instance_segmentation/trainer.py,sha256=drrvAbDw1U71DxXjzk2OO06svsoE-YIR42GsJ9U1e-A,1072
760
+ paddlex/modules/instance_segmentation/dataset_checker/__init__.py,sha256=NMByjD0tlhOhz7WTs6ACTcZgjy3n_akbdmto7rKa5fM,3277
761
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
762
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/analyse_dataset.py,sha256=Fxv4JU3P4YsTjQfc71SdA0M_0Dggb53ItZZZIvzAVaU,3098
763
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/check_dataset.py,sha256=35uxzst8XLPfL3z-rrM7iBSRjp_V_3jjfn3vnsEEAVE,3722
764
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/convert_dataset.py,sha256=FPlRhU77rqEPHws96G3jCp-Q9TBv2reo9WSauMOo9RE,8265
765
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/split_dataset.py,sha256=ugPOL-h-FUyw_YGdoiXaccRS82RPMHUkCkR2WpSKMkk,4409
766
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
767
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py,sha256=QMkty3QWgHaVI27Bwh8uKerMjZbuxX0tLVVfXVOUbGQ,6606
768
+ paddlex/modules/keypoint_detection/__init__.py,sha256=xU6gi2URJH9mBXEXdPIZREwKMCzY-0rT6Cn_3DLNpbM,779
769
+ paddlex/modules/keypoint_detection/evaluator.py,sha256=Q21ZIpMdxa01w2RVQmr5iuPTaKIvs7Cr4naVDRNqGn8,1464
770
+ paddlex/modules/keypoint_detection/exportor.py,sha256=cMM1kFCXz9lBTI2U0uC5FkWRjiQqymhvWHM7xd0KrtM,778
771
+ paddlex/modules/keypoint_detection/model_list.py,sha256=aUAx8RpIz-eRgoP8GulC_G3LQjcezCecm1e6fDSJffg,666
772
+ paddlex/modules/keypoint_detection/trainer.py,sha256=L6SuwrJuBarVYd-iz3agWs2ajg0pg0QgBnj2F47X_Js,1274
773
+ paddlex/modules/keypoint_detection/dataset_checker/__init__.py,sha256=0wXAtxVkimgIRVFRREICbx3aWr3hz4HAse_-i0OsSIA,1850
774
+ paddlex/modules/keypoint_detection/dataset_checker/dataset_src/__init__.py,sha256=KPhp6nt_rDlGXYuCcPuNA5U8fEe2znozo35FsyoDK30,643
775
+ paddlex/modules/keypoint_detection/dataset_checker/dataset_src/check_dataset.py,sha256=iyTpwvN7b2MJmdDwGQTFfpUQluCkdLkeqgkViWd2UdQ,3505
776
+ paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
777
+ paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=o78fUZyezA14KDKo3epBiKQ-Kaa6QIvl0S9RWx4ci04,3962
778
+ paddlex/modules/m_3d_bev_detection/__init__.py,sha256=QZcxqb_7K8nNIP9ymoOkZejjbOHhOQk-KShmEn-j8YE,783
779
+ paddlex/modules/m_3d_bev_detection/evaluator.py,sha256=VG7EBIQtFi3KYw2D6zzZJ4uckHdHQb3zR21OI7gPLLY,1604
780
+ paddlex/modules/m_3d_bev_detection/exportor.py,sha256=JUqaYfXK5OFbiqHAwHLco6yQRNQo2ZgO2FC5Svb56wA,779
781
+ paddlex/modules/m_3d_bev_detection/model_list.py,sha256=sJ-OTE82aymYKxt1CeFAcXO_pcjr0rv755cJNlbE_wA,641
782
+ paddlex/modules/m_3d_bev_detection/trainer.py,sha256=finGEesecfSBqwbJLqa-uEbHIr7Q87OTn5QI4bwz2J0,2585
783
+ paddlex/modules/m_3d_bev_detection/dataset_checker/__init__.py,sha256=vqWBaKFjOdKNp-P-ICTj4pLISGcnH_rfvLt4p3QPBaY,2936
784
+ paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/__init__.py,sha256=sJLqyXL-owy_gbtpQjEA2kceE6neSMJ0AIOylxApsLw,686
785
+ paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=VTwHbnoMqpWrRFJVqjWzz5KI9BkKYpHML3eBiLKjuzc,3720
786
+ paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/check_dataset.py,sha256=4GWk6wPfjQAlSyBGVlmAulzoakNLJBQ7VNC_OkCUgS4,3149
787
+ paddlex/modules/multilabel_classification/__init__.py,sha256=5ohdWA7uRdEjOF96iTBdQ66HOLrx_Kb9IE8gYlC_c5o,767
788
+ paddlex/modules/multilabel_classification/evaluator.py,sha256=PQYeD3pycEde4IKP5sp9dBPK6yhOYqp6NK-cGJbbUAM,1675
789
+ paddlex/modules/multilabel_classification/exportor.py,sha256=UgjzNwodoAR_OTI7fldMSwGnkonQmhAz817wNBC5Agk,779
790
+ paddlex/modules/multilabel_classification/model_list.py,sha256=ADgstt_DXLCWO8jtc4R94wkyeHi5gQVvVGAdV_7EXF4,855
791
+ paddlex/modules/multilabel_classification/trainer.py,sha256=HrXzTJwlFhRi1CV9DMCFJI6SZS6c1_tm9n0OxU5rQpk,3553
792
+ paddlex/modules/multilabel_classification/dataset_checker/__init__.py,sha256=MMhBXbNa-oU-tnnvFJrn9cXUXBjVUwo_uvHKxICXrcs,3254
793
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
794
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=Pro_Hpd4U-nHyzmZktwr4Wq3fwVNHcEET5GgYVZ6Pdk,3560
795
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/check_dataset.py,sha256=eRYbSsYYB7ngLkIVCORmrQqG5zhDxej2UJ8Ao40s-MY,5071
796
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/convert_dataset.py,sha256=ZXMxhi3iwx_e9xKdhgULP_qmrRyTP6vwlU4cNVPO6AQ,4578
797
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/split_dataset.py,sha256=l1JLNa86-RxX3Ugfk3_Xx6Cc5p4zShaz0jP7jDoRMRg,2789
798
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
799
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/visualizer.py,sha256=oIetCED-GiTQkhCphKAMqw4Mgdwze6k2j48YSfWzBtI,3840
800
+ paddlex/modules/multilingual_speech_recognition/__init__.py,sha256=2oF6pQLy2IPeOLGIlrXejD3o2NSd3fUvTAakME7QMME,775
801
+ paddlex/modules/multilingual_speech_recognition/dataset_checker.py,sha256=6dEDFf6HF1lm2i-R3fAfkHRBaf0S10BaxBsvZ0oMsNU,991
802
+ paddlex/modules/multilingual_speech_recognition/evaluator.py,sha256=-DDE0S9k1Ct-fs3Z4M1ogpN1DLWOdAv6lT9rIxHwei4,973
803
+ paddlex/modules/multilingual_speech_recognition/exportor.py,sha256=aXVrdk-zS9EZdPd32-CivlpzRELQ-i7104GKdpUKXJ8,967
804
+ paddlex/modules/multilingual_speech_recognition/model_list.py,sha256=R6faqu1SIjQAjrbam_W3EcPl465qlZTqg1HuwNlyzuA,728
805
+ paddlex/modules/multilingual_speech_recognition/trainer.py,sha256=Zv-5LbQEspcjnmtBJzRMtL2-EuOzAjZKmk9J5638dF8,1405
806
+ paddlex/modules/object_detection/__init__.py,sha256=eaYQ78PX7yX06YGjowiYNOQh-yO5GTVxThc7ys3iD2E,760
807
+ paddlex/modules/object_detection/evaluator.py,sha256=_0syEBaIvYIn-fLHulwwHC9_j803R8yHFvTATmb1NrM,1915
808
+ paddlex/modules/object_detection/exportor.py,sha256=nizJg--qIMXywaDNNcgVbFDqZpQ-naIF8V8uFjC4Kx8,773
809
+ paddlex/modules/object_detection/model_list.py,sha256=6sRu_qpUTQPcn2CTWtK3dleLmjQL0rzDl74Ik32kQ2k,2327
810
+ paddlex/modules/object_detection/trainer.py,sha256=7c_bx20pK-akmuwTgrfIeq1UlSRHM-CkgbzpRiKL89M,3870
811
+ paddlex/modules/object_detection/dataset_checker/__init__.py,sha256=Dq-3Qp70x7D5aymh0wx32ygaqdrLi7zX92nPNPPs7DE,3251
812
+ paddlex/modules/object_detection/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
813
+ paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=Fxv4JU3P4YsTjQfc71SdA0M_0Dggb53ItZZZIvzAVaU,3098
814
+ paddlex/modules/object_detection/dataset_checker/dataset_src/check_dataset.py,sha256=fsWdFyaAQJJ21-9GFUYQoOrx6cutLk2B4AHhPMiN9hE,3497
815
+ paddlex/modules/object_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=n5N-RwXkdnZ6jCeJ1nwRYMyC6b0KhE9tqRc7XdikUMo,15060
816
+ paddlex/modules/object_detection/dataset_checker/dataset_src/split_dataset.py,sha256=gDmr5gQLsNbEvAEiAnXI379kYLRnNb-Z2YHiEXltu5U,4456
817
+ paddlex/modules/object_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
818
+ paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=cgtHbrXRxjPE5X82sAm7Jtf-f6XGo-rqm4hMR6hBjrg,5552
819
+ paddlex/modules/open_vocabulary_detection/__init__.py,sha256=J96y4YydfxzaoyRgrE7-OgztkzTZZTudvpt5mGTNTUI,767
820
+ paddlex/modules/open_vocabulary_detection/dataset_checker.py,sha256=45TNPA-OyrQmQWMBWADLFTeLrG9py0wKlluqqMKonqE,1051
821
+ paddlex/modules/open_vocabulary_detection/evaluator.py,sha256=oTfoDknLong0Z6vxMPXaBppshTSi6MS__GYzo4iQkJA,1024
822
+ paddlex/modules/open_vocabulary_detection/exportor.py,sha256=jDwZAUc1y1Mf6WAe8wzTGA4WNmz4qFsQLSN2uYmPkg8,1018
823
+ paddlex/modules/open_vocabulary_detection/model_list.py,sha256=d9I0vShB2dTv6yNaS3Y-d6y_duhaalNbXQOSMeKUhHQ,658
824
+ paddlex/modules/open_vocabulary_detection/trainer.py,sha256=QKZRNdwAHIjVCEGYRFtfpQ0KSjViMEqn-tOMPgoW-dk,1456
825
+ paddlex/modules/open_vocabulary_segmentation/__init__.py,sha256=FKdtyXhJkIfEidSoiPD1mU5QYlJ34hLfZueLGZcWnKM,767
826
+ paddlex/modules/open_vocabulary_segmentation/dataset_checker.py,sha256=t1Z0MtMl8MHlSojRTzmqOHJPXwl4ipvtZIcO_nN9vGk,1057
827
+ paddlex/modules/open_vocabulary_segmentation/evaluator.py,sha256=N-EgVTA0-5WRm6dXSsJ5yIbVrOsdWlyRHKif-O15A-U,1030
828
+ paddlex/modules/open_vocabulary_segmentation/exportor.py,sha256=RLfFEuJZVapYyzOzUCw9X4c3GH2-IKJMrLvJsj6xhWA,1024
829
+ paddlex/modules/open_vocabulary_segmentation/model_list.py,sha256=7Eogc7a9Qk_NCpWTT0MActRhbCY3MSWxTAfGsJkSRbs,660
830
+ paddlex/modules/open_vocabulary_segmentation/trainer.py,sha256=hffDadHzLr64PEIR2ml88rSpkjEWhkw_WNc7AcsprIg,1462
831
+ paddlex/modules/semantic_segmentation/__init__.py,sha256=21DFXZfdTj3A7FA4hEJz-Zs3IfA9N2j7FyUaZ6BSYEE,759
832
+ paddlex/modules/semantic_segmentation/evaluator.py,sha256=kKB-B3JpR88cuPj9HEF--SOEuePGazgDpXlpJn_KfOY,1752
833
+ paddlex/modules/semantic_segmentation/exportor.py,sha256=i8AugqgI8ISUe9sGa34qS2M70Nr0f4SSvD3vVFpqxDM,1087
834
+ paddlex/modules/semantic_segmentation/model_list.py,sha256=gy8YzruYBiUfwkipKxcsdlEoKuNNtJXmm_Fgszwcbag,1065
835
+ paddlex/modules/semantic_segmentation/trainer.py,sha256=CDQ1RV7iBRxLu2yb4mPTTI9KMbWMJibGkQa3KIPR4hE,2946
836
+ paddlex/modules/semantic_segmentation/dataset_checker/__init__.py,sha256=5holJZ_yllwO7k5zSePo2pQCtQOPE1XYZFYBEvjSZWs,3334
837
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/__init__.py,sha256=X7tKpOP8SC5V857urIX6C7A3I_OCi7rTgNFiro-wb1U,783
838
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/analyse_dataset.py,sha256=r4j83eZF78qvV2-CToVV5rLeto4g2Ld2TuUx9LrjhII,2881
839
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/check_dataset.py,sha256=Svl_gmhOr5tnOwPmdEfer8zUoNgc3E8hUfThDSrCSas,3492
840
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/convert_dataset.py,sha256=5TlqhV4k95tgDO_yrhLp4S4ChUg68JBtnoCk0S6RPdY,6291
841
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/split_dataset.py,sha256=k8oWJZs3srA5gZeJpgBFmzj8xVzIAsy6xfgnYRNMsEg,3295
842
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
843
+ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/visualizer.py,sha256=KEeBlMPY0uJxw_iubH8swH1Cxuv6cGgCVdgNZU1unyY,2765
844
+ paddlex/modules/table_recognition/__init__.py,sha256=2azLY8sZyVujg5juoi1XvhOeNc5WuoDUF5qkItHkV2g,779
845
+ paddlex/modules/table_recognition/evaluator.py,sha256=5y4eZOUTvy4krtjLbEakcuwPGMU4m7t0uCUbuOIZUxI,1406
846
+ paddlex/modules/table_recognition/exportor.py,sha256=bOrkJLJbHwZ8291rcL6tWHaHh2QmlFhXdn2vmS_Brjc,779
847
+ paddlex/modules/table_recognition/model_list.py,sha256=JzrsHva1j575QhjSy6Y0FL2vbz1t2ZYhc-iVuNaPrMk,702
848
+ paddlex/modules/table_recognition/trainer.py,sha256=b4CfGjlnuAp--_19dWN-6AliKU87anpJnltnOgO-ekE,2686
849
+ paddlex/modules/table_recognition/dataset_checker/__init__.py,sha256=-XEGxOCArrJek4dVVr95jckexuvJdOgbUzlsr2gcG94,2908
850
+ paddlex/modules/table_recognition/dataset_checker/dataset_src/__init__.py,sha256=96FTutWNDvku-5ZxTw8eT-gkZuMEMbOX0z3ebaZ-sIc,727
851
+ paddlex/modules/table_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=0gwM62ljT-_6GJ9DRJRTXttODBTIgRGaEVoAKg3IXKI,1912
852
+ paddlex/modules/table_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=NE-hPQkMX5O6-tuBfhI3dn0oXAhO2kgoYGcgT9DX9Cw,3451
853
+ paddlex/modules/table_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
854
+ paddlex/modules/text_detection/__init__.py,sha256=qHvtAWmoQXhgSRNti5y4EjHCyOgkXILRAj_pVqU0lR8,775
855
+ paddlex/modules/text_detection/evaluator.py,sha256=qdUGSew7wjxv_6CIyx0xcxlGKwJUhrHVCj3SUjqM2K4,1373
856
+ paddlex/modules/text_detection/exportor.py,sha256=fkDS2RGU27lK368Wc-O-sN8YhKGtu23S-pd93i6ZYfg,775
857
+ paddlex/modules/text_detection/model_list.py,sha256=n_AkTcBSndNrJjHqpQILpvqWamLA_-G7sva7DIu-3x0,868
858
+ paddlex/modules/text_detection/trainer.py,sha256=63YE5RGSRKi8jtvbHsSRfu7qEZ-Ipadk_kXNZOhqBh0,2653
859
+ paddlex/modules/text_detection/dataset_checker/__init__.py,sha256=I7HcoFCgml8U4uO0uoIWKKJVencObFWJ_A6qD7AxR50,3159
860
+ paddlex/modules/text_detection/dataset_checker/dataset_src/__init__.py,sha256=96FTutWNDvku-5ZxTw8eT-gkZuMEMbOX0z3ebaZ-sIc,727
861
+ paddlex/modules/text_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=u8S_KrYIDLFz5pgi7Y3Wqn_-1DeSrdqrbrbMAFF-7e8,8132
862
+ paddlex/modules/text_detection/dataset_checker/dataset_src/check_dataset.py,sha256=QTSfBgHCHyC50vmQKQEwwcRHU7z2meKCh_0eGN9r9as,4309
863
+ paddlex/modules/text_detection/dataset_checker/dataset_src/split_dataset.py,sha256=Uhj46-7BsOV3r-6jXmZoMiH_JwmqMSCPaB1KtFjjjqw,4769
864
+ paddlex/modules/text_recognition/__init__.py,sha256=NZSK1WT-lLtT407BGiUIMHLoNmTRwBxrKkW69KsiHgw,775
865
+ paddlex/modules/text_recognition/evaluator.py,sha256=_F8NCK_70hoTMdkF6ApiO6NCefX12KYKjrmV6MXFVJ8,2286
866
+ paddlex/modules/text_recognition/exportor.py,sha256=FO-0PMhoO5ZqLjjYWG2XywrxdW98vnDq1r5TMyXOe8g,777
867
+ paddlex/modules/text_recognition/model_list.py,sha256=vkIAZtP_458vCq4P4DXe_RCfvXqasK5LNhtJbOp-UMA,1175
868
+ paddlex/modules/text_recognition/trainer.py,sha256=if77U014_hqvbK7VrzlP5LA3WZ0M3nuscpHlqYheQtc,4091
869
+ paddlex/modules/text_recognition/dataset_checker/__init__.py,sha256=Psu2rjBm3EYp57pli6-CB-2QZQwMnU5fhZ-muls__iE,3777
870
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
871
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=pZR48Zq3Q5P2V3ImdyxzDUy5P7hBxsG1-JrjJNecJXA,5693
872
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=ZMqG1LkeMnzDU_oSmG515ydBZqbS8rfdGEU9dh-Eq9k,4577
873
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=MdXpA2tHueA_w2ZQ9my8x4xuI-NdOQdM-kKSzjYMmoA,3573
874
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
875
+ paddlex/modules/ts_anomaly_detection/__init__.py,sha256=L8Nc-uH2IG0EYEW5tPedTRbXzbcyrAGxZtI4FmB27rM,764
876
+ paddlex/modules/ts_anomaly_detection/evaluator.py,sha256=EXB9UcKGhifE1Hb1CTlthT8GCOD5tjhnqUh1P4mUwHg,2281
877
+ paddlex/modules/ts_anomaly_detection/exportor.py,sha256=MC8kOv4Nr8FthT2iUkjTBRY_JtA3bBPTv9nvO_2cQZY,1422
878
+ paddlex/modules/ts_anomaly_detection/model_list.py,sha256=3mUjWIqpxNr_-BgD_bKAwFlwVbeKJ6o9hI0IP57Kd8Y,726
879
+ paddlex/modules/ts_anomaly_detection/trainer.py,sha256=p9auPFk6fztMv5J-D6ZlaOD9CiCh6R9saYgNEcLrFXo,4826
880
+ paddlex/modules/ts_anomaly_detection/dataset_checker/__init__.py,sha256=EArJ1yFk4vStapWb_T7iz97KUzIQuOhks0HSxRNIy7I,3292
881
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
882
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=tgNHULPQxvOBM6ke1npcwHBiZd83pnGKYelTHUhKhPI,717
883
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/check_dataset.py,sha256=0ga6CkFwuJLOkYidngLXlhmfVcL99KOIvrC7AwwBCvk,2302
884
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=N0Ju-yqeuGYfs80t39zcoUK-coNvd6Ow9kzJfzAddt0,2666
885
+ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/split_dataset.py,sha256=JLmONID9VxSMojKzLDOwsCCHxqTQ4Hl1rcbgXmUWdb4,2133
886
+ paddlex/modules/ts_classification/__init__.py,sha256=avWAVCpd_KCqW9mEKjzl8ns81gaduWjLgXZBamnbaMo,768
887
+ paddlex/modules/ts_classification/evaluator.py,sha256=KMnfmxn-GMfUZKoB-mn446-LlsjLGKGERcu-IcEuB2Q,2211
888
+ paddlex/modules/ts_classification/exportor.py,sha256=r_udQangw_nFfSsOroz70QTXjZW8e89hk_lbMj-Ng8o,1423
889
+ paddlex/modules/ts_classification/model_list.py,sha256=ncShFgm5mX8zGXoV1Mr9ZVtYaQxdmHC-7mqheM1lPDQ,644
890
+ paddlex/modules/ts_classification/trainer.py,sha256=BqF9VQFw8H8BYwWkyNQxa4MaHJZJKK12M5IAwM1qZI8,4588
891
+ paddlex/modules/ts_classification/dataset_checker/__init__.py,sha256=b0Vbe6JujEY985HO2si44FPVsN_2NhRSRk5ID3jfpPo,3291
892
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
893
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=fY1AbJ3WKUF8PvCvfkw7HmrCVhyfwW5rXTsEYH0MGHU,2929
894
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/check_dataset.py,sha256=0ga6CkFwuJLOkYidngLXlhmfVcL99KOIvrC7AwwBCvk,2302
895
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/convert_dataset.py,sha256=8lV9_e4Vvw2ijBlEm5s80Bm_UFPFlVyxpu19vjRlWqg,2689
896
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/split_dataset.py,sha256=oj-VQ4Ktwjc9vpat6NM3sK887iyPwt_HLNyV9HziW0g,3314
897
+ paddlex/modules/ts_forecast/__init__.py,sha256=IdQqvY2rYepVut_DMPUlUQizyxGeXE1OS85190g4IKc,764
898
+ paddlex/modules/ts_forecast/evaluator.py,sha256=AZE5VC12EBrWXQ8nav0adKtoTlgWVNYB9cpzMpZeXj4,2201
899
+ paddlex/modules/ts_forecast/exportor.py,sha256=vtIvOfugI0WsIahZyrJ9DmJ7TENSgSUKSfceS2WJa8M,1422
900
+ paddlex/modules/ts_forecast/model_list.py,sha256=l92EzjDRry06YeO4eH-8aBGBSsrHsksDbuZsu1XbTw8,734
901
+ paddlex/modules/ts_forecast/trainer.py,sha256=UPAdjUQwesynx34LW51cGIBzPIKeQXwqK3sp5beSvzk,4630
902
+ paddlex/modules/ts_forecast/dataset_checker/__init__.py,sha256=_ERBjyPz43Txwra7ZF8BEUL_NOtGZIqhE6zPLiOMUOE,3281
903
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
904
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/analyse_dataset.py,sha256=tgNHULPQxvOBM6ke1npcwHBiZd83pnGKYelTHUhKhPI,717
905
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/check_dataset.py,sha256=0ga6CkFwuJLOkYidngLXlhmfVcL99KOIvrC7AwwBCvk,2302
906
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/convert_dataset.py,sha256=kAnqThstkcn0Wn_4xvGkFH-JGufRTKrTcJmd3FFG6H8,2688
907
+ paddlex/modules/ts_forecast/dataset_checker/dataset_src/split_dataset.py,sha256=JLmONID9VxSMojKzLDOwsCCHxqTQ4Hl1rcbgXmUWdb4,2133
908
+ paddlex/modules/video_classification/__init__.py,sha256=bjDrjcHU2isDJUDi4GKLXFp0aP9HQg1czW4h6RlWmvg,779
909
+ paddlex/modules/video_classification/evaluator.py,sha256=_cTs7_qNVRHZwWYJhVzOOodztIDWx1bDPPmWyGw1xEk,1642
910
+ paddlex/modules/video_classification/exportor.py,sha256=V8Lgt3JPmSOsGfouN2RlthyFzYyIBXvwWOeV9yQ4hIE,782
911
+ paddlex/modules/video_classification/model_list.py,sha256=oc4cq9Hweb-3lRw--NJMuIvO_D9CbTTv1RHTRFjhzYs,738
912
+ paddlex/modules/video_classification/trainer.py,sha256=Ci0ciVIhJHFEBVCdHfFZcRDHkvj4NRxS8ZSpuMI5q88,3686
913
+ paddlex/modules/video_classification/dataset_checker/__init__.py,sha256=dCBRqSn53BtjgKBkR-1i4LTzHInPIHl_kKAAP3qtXgQ,2842
914
+ paddlex/modules/video_classification/dataset_checker/dataset_src/__init__.py,sha256=96FTutWNDvku-5ZxTw8eT-gkZuMEMbOX0z3ebaZ-sIc,727
915
+ paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=Kw9jBEn6510NsG2FOYM1DqXJntnfBKO17o67hD83194,3462
916
+ paddlex/modules/video_classification/dataset_checker/dataset_src/check_dataset.py,sha256=kRsO7itR0UmTfDAy08nCI_t0xoUc_T_8QoDO4fPBiD8,4491
917
+ paddlex/modules/video_classification/dataset_checker/dataset_src/split_dataset.py,sha256=a7xE1gC5Lwzmxa_8N64UabOKl18FiRyL5hNE8uwUCCI,2886
918
+ paddlex/modules/video_detection/__init__.py,sha256=BQqsxvL85NaOClwvOIq_681btrsnkx9MeqZogsSjci0,779
919
+ paddlex/modules/video_detection/evaluator.py,sha256=kjQbp_WOWmCfasP-cw23uNWwy-lyGUKnl06gUlgnxyw,1502
920
+ paddlex/modules/video_detection/exportor.py,sha256=cZaTEwyScv_FP0wjEKcnsBdtcoVSrVRHff-wk9F6MU0,782
921
+ paddlex/modules/video_detection/model_list.py,sha256=pRzjeiRpi9LcBqUZ0B54UOU3FpZAxTNSkWwdlhOLlEg,628
922
+ paddlex/modules/video_detection/trainer.py,sha256=ORwQauyZnp0mBTBMMMthcDlD9HFUS_yzYkUa9qL68wc,3382
923
+ paddlex/modules/video_detection/dataset_checker/__init__.py,sha256=c5jNtdwElm97vpXNMMqAQTXyZh80kkOFg4PQgf1WOLk,2567
924
+ paddlex/modules/video_detection/dataset_checker/dataset_src/__init__.py,sha256=sJLqyXL-owy_gbtpQjEA2kceE6neSMJ0AIOylxApsLw,686
925
+ paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=PIeAD38D_tgDSY12Q574iLdl6cBI_qhLPhvU-rUdqD8,3776
926
+ paddlex/modules/video_detection/dataset_checker/dataset_src/check_dataset.py,sha256=_rZDkMwn73J2oxzdWkh_cj6MUrWo7ziNYL49DdC5hW4,5316
927
+ paddlex/ops/__init__.py,sha256=zbvlpsahNWWc4-AIeXxBxbyk1A3jkiNeDXg-QyVwY7Q,4611
928
+ paddlex/ops/setup.py,sha256=k7bXqdmK02lHKgq6c8dtMw8copz53lHSh7waH-Hyvew,1336
929
+ paddlex/ops/iou3d_nms/iou3d_cpu.cpp,sha256=AUhprzEQqdSqFWl5fhJ1jGKjE8WPh6RQksXzFDHIU7g,8415
930
+ paddlex/ops/iou3d_nms/iou3d_cpu.h,sha256=n47pTnTFyeb_A4gZaACHTkkaM4zcwvxJhvv1Vd6bJ-U,912
931
+ paddlex/ops/iou3d_nms/iou3d_nms.cpp,sha256=TMQlVxGRMaGRDaIMIHieAvCOonjMLN1mYvVc_kx8pm4,7631
932
+ paddlex/ops/iou3d_nms/iou3d_nms.h,sha256=khxhiebRzjWY3YQ8ORW0A9oCArTQyiA2sjDc73EgLkA,1317
933
+ paddlex/ops/iou3d_nms/iou3d_nms_api.cpp,sha256=mYkqYRO3giMTzR-kmpf2hU3KYPtD2POR-O542xLJlEg,3902
934
+ paddlex/ops/iou3d_nms/iou3d_nms_kernel.cu,sha256=YDsiFiYgkQMjoBsQPaNO2Hvdk-m7p8pbVHuCB1LYIXM,17401
935
+ paddlex/ops/voxel/voxelize_op.cc,sha256=bal88fmCVVPljBrhJ1RYc9aeht8KCH2awg3qwW9jRPA,7889
936
+ paddlex/ops/voxel/voxelize_op.cu,sha256=EC5HZhW65Va7g8LDui36PCk8xm8YTjBUfmd4-lLRcEQ,14158
937
+ paddlex/repo_apis/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
938
+ paddlex/repo_apis/Paddle3D_api/__init__.py,sha256=CNgSV4Wm-BEMayCnlyFCkqwfbHVqQee8sRQ1lyXqtcI,737
939
+ paddlex/repo_apis/Paddle3D_api/pp3d_config.py,sha256=H4XXkN4Rl12ehrazfZl8HW_SdPz1JazgYbXnKPa2UbI,5179
940
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/__init__.py,sha256=GjNtmTbKpQ1I1QgLMjX7wIJxRDoBnoccsx6pydhbRg4,704
941
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/config.py,sha256=JaG5K1UAifGsUJP9pJjVzAKLhWUyM4zJtd70ODI3esE,4715
942
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/model.py,sha256=mb5yVdl4Ax4-BJgAx8QVZBbV9XP0RRIrl_To_LX0Zmk,8774
943
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/register.py,sha256=qm1l6LHrtYTg6wpZc8Zl32C6n1qUxCjAoyhHna8lyDY,1871
944
+ paddlex/repo_apis/Paddle3D_api/bev_fusion/runner.py,sha256=rQja2WOxAirwdzh0fmLfKPlu5ngB7fjSrV7IYCiOCdY,3536
945
+ paddlex/repo_apis/PaddleClas_api/__init__.py,sha256=X0TVcUpJlq_AL4hfDumtv_uQNKM74Xt_9UOWetyenF8,721
946
+ paddlex/repo_apis/PaddleClas_api/cls/__init__.py,sha256=eIdSpXUxY9lbft8RKclk376Sm06SL2wBBHhTtdmICHs,722
947
+ paddlex/repo_apis/PaddleClas_api/cls/config.py,sha256=xFKyckV1XwrmJBKRFOaqgw5B2ygVaju-z1A-ayNxqsE,20377
948
+ paddlex/repo_apis/PaddleClas_api/cls/model.py,sha256=QjdZD_wE4Ujna8dLp2pqSSzOouc5cXiM1y6JqrtMRIM,14449
949
+ paddlex/repo_apis/PaddleClas_api/cls/register.py,sha256=Hz0Dfxc6iUqbZaL3TVfZ6BaTjKy8Tp_Tgi5Qi3hwjj0,26019
950
+ paddlex/repo_apis/PaddleClas_api/cls/runner.py,sha256=1wN2169_p0G16LyQtnh3K-Jpnos1tuH6HLWuRFP_QG0,7399
951
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/__init__.py,sha256=nn1qwVV6ccGkPWWf6Xi5yQWx3hMYyYIqRzmgTK2lWJM,702
952
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/config.py,sha256=snoeE_Xr7Dg41fq7D_1qqsrLEqE05XjB5Hd5_NzF1bI,5390
953
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/model.py,sha256=XP-dlNuGTwI3TsNt26iRHaQLRMUxWxB-IKXrjmavGd0,705
954
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/register.py,sha256=FyDI5PlYdMONRg0MeNphzjixuFX5fvMhAtG2jAEw3_Y,2293
955
+ paddlex/repo_apis/PaddleClas_api/shitu_rec/runner.py,sha256=OpjNxst3f9Q0gYVyN4Qmd-1L01P_50uOiqCKTEnN4Es,1619
956
+ paddlex/repo_apis/PaddleDetection_api/__init__.py,sha256=nz0LmGflO85zJ38TadpEbwJEhvjlhbiQ3N0HZJph018,737
957
+ paddlex/repo_apis/PaddleDetection_api/config_helper.py,sha256=PaEDOES8tJNoSFUmHpk5OaTB0ab-lErGE9TbsWKUa48,9359
958
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/__init__.py,sha256=pkhp0_V6Xj03aBWPzfQFPdKqcjo03FR9_YP5cBccksE,708
959
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/config.py,sha256=X0B7XThAs4vGBq2TQroxXUwqUWYTIymsOTAi_3uF3Tk,15348
960
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/model.py,sha256=E9SBkZcYyoaTZ9bjNVJpto59mPGue2EqlYbIGKW5Ems,16348
961
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/register.py,sha256=05aUjcij59gi29JYNmbo3sHyhZjnjA6klR8KqrHT0Dw,8560
962
+ paddlex/repo_apis/PaddleDetection_api/instance_seg/runner.py,sha256=NmfFRKUr9_GTJjlJKy3qx1J6uFR0aYhAs4-vXgUOG7E,7558
963
+ paddlex/repo_apis/PaddleDetection_api/object_det/__init__.py,sha256=xMiqXOspalcXIFt1aVVWXt6xJJEmEMkiECvQ8yteDVA,745
964
+ paddlex/repo_apis/PaddleDetection_api/object_det/config.py,sha256=HQje7TFlG5QK1BcLWDfWsbh2XC_pITH0RbxXfrq1UZI,18599
965
+ paddlex/repo_apis/PaddleDetection_api/object_det/model.py,sha256=Rr9y3lvPdJdLOaVlI_hGoyonEv6BBBIATDZNnrclqlw,17600
966
+ paddlex/repo_apis/PaddleDetection_api/object_det/official_categories.py,sha256=UxOMsaUH6-xzGGidZLj4o_Tb5k1DEr-A9c3dMRxUAD8,8229
967
+ paddlex/repo_apis/PaddleDetection_api/object_det/register.py,sha256=dc5N9QauQpS798GfxbDiYjhpRwz9Bz5RPK898L3v_Q8,34393
968
+ paddlex/repo_apis/PaddleDetection_api/object_det/runner.py,sha256=YS5zviBk2b8juCxQhdohF7xkohZqvhNK8K7Y5dEGhOs,7542
969
+ paddlex/repo_apis/PaddleNLP_api/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
970
+ paddlex/repo_apis/PaddleOCR_api/__init__.py,sha256=qzAJeQjKkW4ErZcQKYyld04eHDvMOntuK90y_2Kmsh0,783
971
+ paddlex/repo_apis/PaddleOCR_api/config_utils.py,sha256=fGh_tFyUH2hsdmJxNekBP0GkZO63jlePjOMLMpAlD-s,1982
972
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
973
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/config.py,sha256=jrsXxY898jjeAtnriiUoWwzHFtm9bFH3HW1pmU3EKFA,19173
974
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/model.py,sha256=B0BQi4MWY34xLzYr0sqiZ5zhqW1dQSD2o3T9fqvzCs8,14375
975
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/register.py,sha256=r53s4MDlVZWg8cFNdv3tK8zwXyN03Kuq5FhWmLVtzjY,2211
976
+ paddlex/repo_apis/PaddleOCR_api/formula_rec/runner.py,sha256=rywtQoaRUUUlzMLB2JHmOS9QEgJqOsuCcOgzVGl1Tj8,8302
977
+ paddlex/repo_apis/PaddleOCR_api/table_rec/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
978
+ paddlex/repo_apis/PaddleOCR_api/table_rec/config.py,sha256=_P3wEEBtoURUqhSSqCLy_yJz85YiTSuEvkW4btmJd0E,2335
979
+ paddlex/repo_apis/PaddleOCR_api/table_rec/model.py,sha256=V_A7NR88ESJrDlZDfGCOlaqBuomqLj1lRSHvG5hrGiE,4422
980
+ paddlex/repo_apis/PaddleOCR_api/table_rec/register.py,sha256=hk4TlGOUDM9NjN-F4S2_Yjgbp9Ei3NsgP6KXI9R-wXY,2139
981
+ paddlex/repo_apis/PaddleOCR_api/table_rec/runner.py,sha256=EMsZUm8qHnAOEcD8Xb2kdSyFr-Fbe0eQrICluLac-98,1937
982
+ paddlex/repo_apis/PaddleOCR_api/text_det/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
983
+ paddlex/repo_apis/PaddleOCR_api/text_det/config.py,sha256=CZpTUuwQRZTrp48BVNUhaSvH0-4Q3fffAdE8Eqgz8NM,2157
984
+ paddlex/repo_apis/PaddleOCR_api/text_det/model.py,sha256=PkZ7IL1LXWOa3ojAsEtACnl2B7e9v0xIFXgjei58AvU,2564
985
+ paddlex/repo_apis/PaddleOCR_api/text_det/register.py,sha256=9lBE5jKN3nEkxUyIkmiMyIhBH1wII_Bcbyjsu6TSmRg,2784
986
+ paddlex/repo_apis/PaddleOCR_api/text_det/runner.py,sha256=SLJAoIa_PcXqoApxiqf1csNz6XGRzL_oe1xexpC4eA8,2004
987
+ paddlex/repo_apis/PaddleOCR_api/text_rec/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
988
+ paddlex/repo_apis/PaddleOCR_api/text_rec/config.py,sha256=7eRgEgCy-UyiJZT8znYOO35bIbyunZQOxs0zvcKgzBg,19335
989
+ paddlex/repo_apis/PaddleOCR_api/text_rec/model.py,sha256=XcWTrnV_bBVGSxlnsZ71KiHjOUEywu-QcmZvN34dHlg,14369
990
+ paddlex/repo_apis/PaddleOCR_api/text_rec/register.py,sha256=o8uwHNwWNjyJhs_GrQFO_JoLzjMHZ81cyOXa4FlFnlo,5924
991
+ paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py,sha256=9LhVfYFTOvoNVf5zHZWfcCGof0ZU7Np-ZFeWDWfxgNc,8296
992
+ paddlex/repo_apis/PaddleSeg_api/__init__.py,sha256=DpeE4i2hFC3AFtngLAIYb6yxJKJ1yxL_YLaC234zEGI,637
993
+ paddlex/repo_apis/PaddleSeg_api/base_seg_config.py,sha256=_ryWxmTRtOeCbY2l3Hmd10aTn4PPlJ-dlCkkkmYrhZ0,4634
994
+ paddlex/repo_apis/PaddleSeg_api/seg/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
995
+ paddlex/repo_apis/PaddleSeg_api/seg/config.py,sha256=PmVVmqj6Cuhv1HMCJCzVjVG5EjjIa6Dza-L_lQjA7i0,6261
996
+ paddlex/repo_apis/PaddleSeg_api/seg/model.py,sha256=_INrbcgb8E0qMgzaHBNphzXQMD8_G48lBVRI_NIWS3s,19273
997
+ paddlex/repo_apis/PaddleSeg_api/seg/register.py,sha256=Yr--CZpsKwCwcnTfnq1q6EAEUpa_Wrum11YP7XlPhpA,7762
998
+ paddlex/repo_apis/PaddleSeg_api/seg/runner.py,sha256=Q6X32v6ZRkH26BPJ5BfeW37PH5K6SKiOCseaNdrCYAA,8775
999
+ paddlex/repo_apis/PaddleTS_api/__init__.py,sha256=c66y2HfMbBzp_xSkwA3LZ06NkRVW0PhuF-OdZJ6Zp6k,726
1000
+ paddlex/repo_apis/PaddleTS_api/ts_ad/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1001
+ paddlex/repo_apis/PaddleTS_api/ts_ad/config.py,sha256=Kchokn58VIM4s4zi5XDM4esgj7hwHo_02UuphlPBuvs,2802
1002
+ paddlex/repo_apis/PaddleTS_api/ts_ad/register.py,sha256=QZKCJJ5a4pbVtBDYkJA2mTm7Y8LGJrteIsHeK5M7qaQ,4998
1003
+ paddlex/repo_apis/PaddleTS_api/ts_ad/runner.py,sha256=fa9a35y2cyt0dOA6UNXrBk4GNVAol-NazEBGzWt51LY,5383
1004
+ paddlex/repo_apis/PaddleTS_api/ts_base/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
1005
+ paddlex/repo_apis/PaddleTS_api/ts_base/config.py,sha256=xZnBPDKuDJcCW28nzkOeIuPJ736KoW58vpuXo3sonMk,8028
1006
+ paddlex/repo_apis/PaddleTS_api/ts_base/model.py,sha256=UUnmICkPnWl38Z-9HcZ6wRnyGCDeLnIX9lPQh3OrkrQ,10449
1007
+ paddlex/repo_apis/PaddleTS_api/ts_base/runner.py,sha256=AWWHQx-qrlIJjsguEDJ4GPgiFG-DireoP-X4A2SwhgE,5309
1008
+ paddlex/repo_apis/PaddleTS_api/ts_cls/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1009
+ paddlex/repo_apis/PaddleTS_api/ts_cls/config.py,sha256=1xfjbuwXjzlEH18vDglIkUUIRwpqLtNdM7nV2Em8gdQ,2343
1010
+ paddlex/repo_apis/PaddleTS_api/ts_cls/register.py,sha256=X1RrnYkriKmZeB6s6DKUK2OerIj4cfrqTnIRgOjYwnU,1992
1011
+ paddlex/repo_apis/PaddleTS_api/ts_cls/runner.py,sha256=Ygv2oO0ihGcwNdFpDn7Tq6vXObkNF0yp4VEDApUsRAg,5306
1012
+ paddlex/repo_apis/PaddleTS_api/ts_fc/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1013
+ paddlex/repo_apis/PaddleTS_api/ts_fc/config.py,sha256=7HU3Am7UGcTkSeRBCJHtWrXpN1_5BF8VY93eutPpjHY,4336
1014
+ paddlex/repo_apis/PaddleTS_api/ts_fc/register.py,sha256=Q-mfHPumMT-hpOsVozHy2oTQ0X1pGbq670m76LDO6DU,6323
1015
+ paddlex/repo_apis/PaddleVideo_api/__init__.py,sha256=ltAKRzWHMZbUcvYGzAvEr68X3ZDwA4fSJC8GszfqElI,737
1016
+ paddlex/repo_apis/PaddleVideo_api/config_utils.py,sha256=F-dV79B2qOCphwADu6A_1BflYbJajPpiZn_7drkHyRM,1734
1017
+ paddlex/repo_apis/PaddleVideo_api/video_cls/__init__.py,sha256=dukU3_7HpN_3CsTH33PwQckmknpg7XUE6s2hz4_-tIk,737
1018
+ paddlex/repo_apis/PaddleVideo_api/video_cls/config.py,sha256=UMGkt3pqtI0-RcHULxIL2X_l4-0Ckao0Tpmp12JmGwU,18037
1019
+ paddlex/repo_apis/PaddleVideo_api/video_cls/model.py,sha256=99XPqKrtOgm0nfTcYdMlx_RWOv9KKgxwJIXS2wtBZjU,13982
1020
+ paddlex/repo_apis/PaddleVideo_api/video_cls/register.py,sha256=NPQJ6nHg6gB0OH8L1ca-8NIQliQW1RIiAhqpkpMdfwM,2331
1021
+ paddlex/repo_apis/PaddleVideo_api/video_cls/runner.py,sha256=ZcVuYLb1afnaV-DmyE5ufSPH6KszbEbYWh9LCRw7k6s,6787
1022
+ paddlex/repo_apis/PaddleVideo_api/video_det/__init__.py,sha256=KYHXWC1Rv2I_jrBnEnD9t1p6sbfOuRD1aLV-VAj8eJw,737
1023
+ paddlex/repo_apis/PaddleVideo_api/video_det/config.py,sha256=QZAL9jNIcUQ0opw2IpcoRgc1Wv2O8IzsN8thgmlAzsk,18076
1024
+ paddlex/repo_apis/PaddleVideo_api/video_det/model.py,sha256=WQam4k51zSjp_737Fum8gVLsddkV0XTHaz2DhyBzoF8,11905
1025
+ paddlex/repo_apis/PaddleVideo_api/video_det/register.py,sha256=EuRXQjbY9H16MWaw-vR3b9IQXwfb7psX1PPmOqyYKFE,1473
1026
+ paddlex/repo_apis/PaddleVideo_api/video_det/runner.py,sha256=tN0cd0Vn_NJvYy5kjnbT4xmC65RZIsycYtUpj6EokA4,6660
1027
+ paddlex/repo_apis/base/__init__.py,sha256=s2il5LQ3eNlh9JRjznDojDRMYz2AbUTDEYzEIdiPiLI,817
1028
+ paddlex/repo_apis/base/config.py,sha256=wX1C-4rWLHKKPS7C-lEnqO_19btF2vsoj8K699NtzyQ,6902
1029
+ paddlex/repo_apis/base/model.py,sha256=OXI2XIodMMtcRL6cF2F8WY1S0Ph5Kz6LBYHsJXn77LQ,21329
1030
+ paddlex/repo_apis/base/register.py,sha256=McsvpydlDjz08XTabLSyS-sbXQl7RnEOL3-1nG4KWFw,4176
1031
+ paddlex/repo_apis/base/runner.py,sha256=YsK3bG3MyHgsXhI7QrAeDZP_tJE_c2mVZljofN4tUI4,13891
1032
+ paddlex/repo_apis/base/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
1033
+ paddlex/repo_apis/base/utils/arg.py,sha256=5ys3bQQM8SerntsUyjs9a2kJFh_q8iUDvKNvl0buc8o,1826
1034
+ paddlex/repo_apis/base/utils/subprocess.py,sha256=_okQOuvvanAwDn-i8uPWb0RWwRK2No6EM1eRsPSY-Ss,3199
1035
+ paddlex/repo_manager/__init__.py,sha256=ZlHiGf_IbfSKhM91bgO0AilkIKdUs-twStzXeMyez4M,763
1036
+ paddlex/repo_manager/core.py,sha256=yEFx9ipKlUkfBaw2RFiI0O9MuhhLS3HU9BdNZXFhnSY,8130
1037
+ paddlex/repo_manager/meta.py,sha256=st1E5UKMOUi6HZeTZ0kEUbo6kSBbmBtErBTyRzrcQdI,5593
1038
+ paddlex/repo_manager/repo.py,sha256=7OEp2mP74IvXoIpVQ0nzwGqfd7_oF-08I4viEKW5-f8,16001
1039
+ paddlex/repo_manager/utils.py,sha256=H33cKaFjU4Un6a9-gwzfznNdKVTLmLp9wEloog18AP0,4803
1040
+ paddlex/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
1041
+ paddlex/utils/cache.py,sha256=xcdPyZKcL6SQvtz0Sk66FpQWhjLW7QqSdU44ocme0zE,4778
1042
+ paddlex/utils/config.py,sha256=mMP-WHMBB98hW-paFSc8vDnR7h87UpAe6X34W6ggIlQ,6255
1043
+ paddlex/utils/custom_device_list.py,sha256=Tfnb5qjNaBArEPCGyQjZ0uxgeGZu_NEws7HCaCaz7vY,6590
1044
+ paddlex/utils/deps.py,sha256=_EuXVuuQZO9fAA69K4OgsPQ_lVonEcJ81-oCgVCwJqg,7904
1045
+ paddlex/utils/device.py,sha256=HUYX4Wll4udd7w807O50uxVtKpc0ATBzlxlbzCv47ME,6522
1046
+ paddlex/utils/download.py,sha256=CC7TTOaOFXfcWCAg6CRJ-ECMIF9QVuvWFCOe39X2dhM,6402
1047
+ paddlex/utils/env.py,sha256=CiblbBtIHDS7v2ETkKw1OKUNNLxrPEbjx7pGw1_2qiQ,1512
1048
+ paddlex/utils/file_interface.py,sha256=KfMl_NQIpRGxBL9bRd54OK60RkSesDBQFeMftdDlVt8,6523
1049
+ paddlex/utils/flags.py,sha256=kzLtoJMy6EUbWBOMZd4gHnGaETZ69VEZNioDMD9oa5g,2606
1050
+ paddlex/utils/func_register.py,sha256=XEMaJ_ttfLp8Tos3vb1HH5cdsQX7uGiZ77W0t9tWHuE,1355
1051
+ paddlex/utils/install.py,sha256=C8GMNv7YLoTi6MdOl1B1ojlsWOQFxX8piuIO-5Hkg8c,2507
1052
+ paddlex/utils/interactive_get_pipeline.py,sha256=J0RIY_gry2J9s_c1-vF5oN49gDzjLnxtJhtLJMp1u7I,1916
1053
+ paddlex/utils/lazy_loader.py,sha256=6TrRlNUtDWKrw-I50D-_GdoflRZWQljULnGGBCq12BE,2341
1054
+ paddlex/utils/logging.py,sha256=up6qyU-pgjISPTInsm5P5vnr45-4n3xK97r1Ad6nTKA,4847
1055
+ paddlex/utils/misc.py,sha256=EMrvqQh2KWSkm6EHUU67DT6q4PkOD64jR1UOhRxjcd8,5863
1056
+ paddlex/utils/pipeline_arguments.py,sha256=h3MEAK8cBGf3LBA3m6NFDJov87M2Ad7tJAKzYduWsso,23708
1057
+ paddlex/utils/result_saver.py,sha256=slcYMg1ImdX58106DRq8DhLa8XqxQnnPZvxJhtcv5WM,1980
1058
+ paddlex/utils/subclass_register.py,sha256=93cqmNtGHkqJqvXQDCoaVmoVjppG10ZPBJgipko3_9I,3386
1059
+ paddlex/utils/errors/__init__.py,sha256=1ooQ6m7PWkmniQbq4xVMVubjBKlMbZzoIvoPlKBoBgI,664
1060
+ paddlex/utils/errors/dataset_checker.py,sha256=hnLeqMyMLuQQVWhHsfakpcZAN4Tu2ULaqtlQ9BzC1pI,2200
1061
+ paddlex/utils/errors/others.py,sha256=5RwDvxq4_K4UHMFRldrbwoDMnW8mW2KATinIwac7v-4,4303
1062
+ paddlex/utils/fonts/__init__.py,sha256=DwjVheCBjlK5wusqxp7Dx_BJE-5UfMW6K1WKhomknCk,2206
1063
+ paddlex-3.0.0rc1.dist-info/licenses/LICENSE,sha256=rMw2yBesXt5HPQVzLhSvwRy25V71kZvIJrZT9jEWUEM,11325
1064
+ paddlex-3.0.0rc1.dist-info/METADATA,sha256=U8xpl7Xnnlqufhq63dVZn2tZsabTXXAS-IHtmZ1geG0,79457
1065
+ paddlex-3.0.0rc1.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
1066
+ paddlex-3.0.0rc1.dist-info/entry_points.txt,sha256=rTKXuuCwUUNjzEG9fG9JF1JFAHAD05PksWevGuRxYoM,59
1067
+ paddlex-3.0.0rc1.dist-info/top_level.txt,sha256=KWSxMIrEchP3dxsAjzSRR-jmnjW0YGHECxG9OA5YB_g,8
1068
+ paddlex-3.0.0rc1.dist-info/RECORD,,