paddlex 3.0.0b2__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 (1211) hide show
  1. paddlex/.version +1 -1
  2. paddlex/__init__.py +17 -33
  3. paddlex/__main__.py +4 -5
  4. paddlex/configs/modules/3d_bev_detection/BEVFusion.yaml +38 -0
  5. paddlex/configs/modules/doc_vlm/PP-DocBee-2B.yaml +14 -0
  6. paddlex/configs/modules/doc_vlm/PP-DocBee-7B.yaml +14 -0
  7. paddlex/configs/modules/face_feature/MobileFaceNet.yaml +41 -0
  8. paddlex/configs/modules/face_feature/ResNet50_face.yaml +41 -0
  9. paddlex/configs/modules/formula_recognition/LaTeX_OCR_rec.yaml +40 -0
  10. paddlex/configs/modules/formula_recognition/PP-FormulaNet-L.yaml +40 -0
  11. paddlex/configs/modules/formula_recognition/PP-FormulaNet-S.yaml +40 -0
  12. paddlex/configs/modules/formula_recognition/UniMERNet.yaml +40 -0
  13. paddlex/configs/modules/image_classification/CLIP_vit_base_patch16_224.yaml +41 -0
  14. paddlex/configs/modules/image_classification/CLIP_vit_large_patch14_224.yaml +41 -0
  15. paddlex/configs/modules/image_classification/ConvNeXt_large_384.yaml +41 -0
  16. paddlex/configs/modules/keypoint_detection/PP-TinyPose_128x96.yaml +40 -0
  17. paddlex/configs/modules/keypoint_detection/PP-TinyPose_256x192.yaml +40 -0
  18. paddlex/configs/modules/layout_detection/PP-DocLayout-L.yaml +40 -0
  19. paddlex/configs/modules/layout_detection/PP-DocLayout-M.yaml +40 -0
  20. paddlex/configs/modules/layout_detection/PP-DocLayout-S.yaml +40 -0
  21. paddlex/configs/modules/multilingual_speech_recognition/whisper_base.yaml +12 -0
  22. paddlex/configs/modules/multilingual_speech_recognition/whisper_large.yaml +12 -0
  23. paddlex/configs/modules/multilingual_speech_recognition/whisper_medium.yaml +12 -0
  24. paddlex/configs/modules/multilingual_speech_recognition/whisper_small.yaml +12 -0
  25. paddlex/configs/modules/multilingual_speech_recognition/whisper_tiny.yaml +12 -0
  26. paddlex/configs/modules/object_detection/Co-DINO-R50.yaml +40 -0
  27. paddlex/configs/modules/object_detection/Co-DINO-Swin-L.yaml +40 -0
  28. paddlex/configs/modules/object_detection/Co-Deformable-DETR-R50.yaml +40 -0
  29. paddlex/configs/modules/object_detection/Co-Deformable-DETR-Swin-T.yaml +40 -0
  30. paddlex/configs/modules/object_detection/YOLOX-X.yaml +40 -0
  31. paddlex/configs/modules/open_vocabulary_detection/GroundingDINO-T.yaml +13 -0
  32. paddlex/configs/modules/open_vocabulary_detection/YOLO-Worldv2-L.yaml +13 -0
  33. paddlex/configs/modules/open_vocabulary_segmentation/SAM-H_box.yaml +17 -0
  34. paddlex/configs/modules/open_vocabulary_segmentation/SAM-H_point.yaml +15 -0
  35. paddlex/configs/modules/rotated_object_detection/PP-YOLOE-R-L.yaml +40 -0
  36. paddlex/configs/modules/semantic_segmentation/MaskFormer_small.yaml +42 -0
  37. paddlex/configs/modules/semantic_segmentation/MaskFormer_tiny.yaml +42 -0
  38. paddlex/configs/modules/semantic_segmentation/SeaFormer_base.yaml +40 -0
  39. paddlex/configs/modules/semantic_segmentation/SeaFormer_large.yaml +40 -0
  40. paddlex/configs/modules/semantic_segmentation/SeaFormer_small.yaml +40 -0
  41. paddlex/configs/modules/semantic_segmentation/SeaFormer_tiny.yaml +40 -0
  42. paddlex/configs/modules/table_cells_detection/RT-DETR-L_wired_table_cell_det.yaml +40 -0
  43. paddlex/configs/modules/table_cells_detection/RT-DETR-L_wireless_table_cell_det.yaml +40 -0
  44. paddlex/configs/modules/table_classification/PP-LCNet_x1_0_table_cls.yaml +41 -0
  45. paddlex/configs/modules/table_structure_recognition/SLANeXt_wired.yaml +39 -0
  46. paddlex/configs/modules/table_structure_recognition/SLANeXt_wireless.yaml +39 -0
  47. paddlex/configs/modules/text_detection/PP-OCRv3_mobile_det.yaml +40 -0
  48. paddlex/configs/modules/text_detection/PP-OCRv3_server_det.yaml +40 -0
  49. paddlex/configs/modules/text_recognition/PP-OCRv3_mobile_rec.yaml +39 -0
  50. paddlex/configs/modules/text_recognition/PP-OCRv4_server_rec_doc.yaml +39 -0
  51. paddlex/configs/modules/text_recognition/arabic_PP-OCRv3_mobile_rec.yaml +39 -0
  52. paddlex/configs/modules/text_recognition/chinese_cht_PP-OCRv3_mobile_rec.yaml +39 -0
  53. paddlex/configs/modules/text_recognition/cyrillic_PP-OCRv3_mobile_rec.yaml +39 -0
  54. paddlex/configs/modules/text_recognition/devanagari_PP-OCRv3_mobile_rec.yaml +39 -0
  55. paddlex/configs/modules/text_recognition/en_PP-OCRv3_mobile_rec.yaml +39 -0
  56. paddlex/configs/modules/text_recognition/en_PP-OCRv4_mobile_rec.yaml +39 -0
  57. paddlex/configs/modules/text_recognition/japan_PP-OCRv3_mobile_rec.yaml +39 -0
  58. paddlex/configs/modules/text_recognition/ka_PP-OCRv3_mobile_rec.yaml +39 -0
  59. paddlex/configs/modules/text_recognition/korean_PP-OCRv3_mobile_rec.yaml +39 -0
  60. paddlex/configs/modules/text_recognition/latin_PP-OCRv3_mobile_rec.yaml +39 -0
  61. paddlex/configs/modules/text_recognition/ta_PP-OCRv3_mobile_rec.yaml +39 -0
  62. paddlex/configs/modules/text_recognition/te_PP-OCRv3_mobile_rec.yaml +39 -0
  63. paddlex/configs/modules/textline_orientation/PP-LCNet_x0_25_textline_ori.yaml +41 -0
  64. paddlex/configs/modules/video_classification/PP-TSM-R50_8frames_uniform.yaml +42 -0
  65. paddlex/configs/modules/video_classification/PP-TSMv2-LCNetV2_16frames_uniform.yaml +42 -0
  66. paddlex/configs/modules/video_classification/PP-TSMv2-LCNetV2_8frames_uniform.yaml +42 -0
  67. paddlex/configs/modules/video_detection/YOWO.yaml +40 -0
  68. paddlex/configs/pipelines/3d_bev_detection.yaml +9 -0
  69. paddlex/configs/pipelines/OCR.yaml +44 -0
  70. paddlex/configs/pipelines/PP-ChatOCRv3-doc.yaml +149 -0
  71. paddlex/configs/pipelines/PP-ChatOCRv4-doc.yaml +184 -0
  72. paddlex/configs/pipelines/PP-ShiTuV2.yaml +18 -0
  73. paddlex/configs/pipelines/PP-StructureV3.yaml +226 -0
  74. paddlex/configs/pipelines/anomaly_detection.yaml +8 -0
  75. paddlex/configs/pipelines/doc_preprocessor.yaml +15 -0
  76. paddlex/configs/pipelines/doc_understanding.yaml +9 -0
  77. paddlex/configs/pipelines/face_recognition.yaml +18 -0
  78. paddlex/configs/pipelines/formula_recognition.yaml +39 -0
  79. paddlex/configs/pipelines/human_keypoint_detection.yaml +17 -0
  80. paddlex/configs/pipelines/image_classification.yaml +10 -0
  81. paddlex/configs/pipelines/image_multilabel_classification.yaml +9 -0
  82. paddlex/configs/pipelines/instance_segmentation.yaml +10 -0
  83. paddlex/configs/pipelines/layout_parsing.yaml +101 -0
  84. paddlex/configs/pipelines/multilingual_speech_recognition.yaml +9 -0
  85. paddlex/configs/pipelines/object_detection.yaml +10 -0
  86. paddlex/configs/pipelines/open_vocabulary_detection.yaml +12 -0
  87. paddlex/configs/pipelines/open_vocabulary_segmentation.yaml +13 -0
  88. paddlex/configs/pipelines/pedestrian_attribute_recognition.yaml +15 -0
  89. paddlex/configs/pipelines/rotated_object_detection.yaml +10 -0
  90. paddlex/configs/pipelines/seal_recognition.yaml +51 -0
  91. paddlex/configs/pipelines/semantic_segmentation.yaml +10 -0
  92. paddlex/configs/pipelines/small_object_detection.yaml +10 -0
  93. paddlex/configs/pipelines/table_recognition.yaml +56 -0
  94. paddlex/configs/pipelines/table_recognition_v2.yaml +76 -0
  95. paddlex/configs/pipelines/ts_anomaly_detection.yaml +8 -0
  96. paddlex/configs/pipelines/ts_classification.yaml +8 -0
  97. paddlex/configs/pipelines/ts_forecast.yaml +8 -0
  98. paddlex/configs/pipelines/vehicle_attribute_recognition.yaml +15 -0
  99. paddlex/configs/pipelines/video_classification.yaml +9 -0
  100. paddlex/configs/pipelines/video_detection.yaml +10 -0
  101. paddlex/constants.py +17 -0
  102. paddlex/engine.py +8 -6
  103. paddlex/hpip_links.html +31 -0
  104. paddlex/inference/__init__.py +4 -2
  105. paddlex/inference/common/__init__.py +13 -0
  106. paddlex/inference/common/batch_sampler/__init__.py +21 -0
  107. paddlex/inference/common/batch_sampler/audio_batch_sampler.py +83 -0
  108. paddlex/inference/common/batch_sampler/base_batch_sampler.py +94 -0
  109. paddlex/inference/common/batch_sampler/det_3d_batch_sampler.py +144 -0
  110. paddlex/inference/common/batch_sampler/doc_vlm_batch_sampler.py +64 -0
  111. paddlex/inference/common/batch_sampler/image_batch_sampler.py +112 -0
  112. paddlex/inference/common/batch_sampler/ts_batch_sampler.py +109 -0
  113. paddlex/inference/common/batch_sampler/video_batch_sampler.py +74 -0
  114. paddlex/inference/common/reader/__init__.py +19 -0
  115. paddlex/inference/common/reader/audio_reader.py +46 -0
  116. paddlex/inference/common/reader/det_3d_reader.py +241 -0
  117. paddlex/inference/common/reader/image_reader.py +73 -0
  118. paddlex/inference/common/reader/ts_reader.py +46 -0
  119. paddlex/inference/common/reader/video_reader.py +42 -0
  120. paddlex/inference/common/result/__init__.py +29 -0
  121. paddlex/inference/common/result/base_cv_result.py +41 -0
  122. paddlex/inference/common/result/base_result.py +72 -0
  123. paddlex/inference/common/result/base_ts_result.py +41 -0
  124. paddlex/inference/common/result/base_video_result.py +36 -0
  125. paddlex/inference/common/result/mixin.py +702 -0
  126. paddlex/inference/models/__init__.py +55 -75
  127. paddlex/inference/models/anomaly_detection/__init__.py +15 -0
  128. paddlex/inference/models/anomaly_detection/predictor.py +135 -0
  129. paddlex/inference/models/anomaly_detection/processors.py +53 -0
  130. paddlex/inference/models/anomaly_detection/result.py +71 -0
  131. paddlex/inference/models/base/__init__.py +2 -3
  132. paddlex/inference/models/base/predictor/__init__.py +15 -0
  133. paddlex/inference/models/base/predictor/base_predictor.py +420 -0
  134. paddlex/inference/models/common/__init__.py +26 -0
  135. paddlex/inference/models/common/static_infer.py +850 -0
  136. paddlex/inference/models/common/tokenizer/__init__.py +19 -0
  137. paddlex/inference/models/common/tokenizer/bert_tokenizer.py +655 -0
  138. paddlex/inference/models/common/tokenizer/clip_tokenizer.py +609 -0
  139. paddlex/inference/models/common/tokenizer/gpt_tokenizer.py +453 -0
  140. paddlex/inference/models/common/tokenizer/qwen2_tokenizer.py +432 -0
  141. paddlex/inference/models/common/tokenizer/tokenizer_utils.py +2149 -0
  142. paddlex/inference/models/common/tokenizer/tokenizer_utils_base.py +3720 -0
  143. paddlex/inference/models/common/tokenizer/utils.py +66 -0
  144. paddlex/inference/models/common/tokenizer/vocab.py +647 -0
  145. paddlex/inference/models/common/ts/__init__.py +15 -0
  146. paddlex/inference/models/common/ts/funcs.py +540 -0
  147. paddlex/inference/models/common/ts/processors.py +322 -0
  148. paddlex/inference/models/common/vision/__init__.py +23 -0
  149. paddlex/inference/models/common/vision/funcs.py +98 -0
  150. paddlex/inference/models/common/vision/processors.py +285 -0
  151. paddlex/inference/models/common/vlm/__init__.py +13 -0
  152. paddlex/inference/models/common/vlm/activations.py +189 -0
  153. paddlex/inference/models/common/vlm/bert_padding.py +127 -0
  154. paddlex/inference/models/common/vlm/distributed.py +229 -0
  155. paddlex/inference/models/common/vlm/flash_attn_utils.py +119 -0
  156. paddlex/inference/models/common/vlm/generation/__init__.py +34 -0
  157. paddlex/inference/models/common/vlm/generation/configuration_utils.py +533 -0
  158. paddlex/inference/models/common/vlm/generation/logits_process.py +730 -0
  159. paddlex/inference/models/common/vlm/generation/stopping_criteria.py +106 -0
  160. paddlex/inference/models/common/vlm/generation/utils.py +2162 -0
  161. paddlex/inference/models/common/vlm/transformers/__init__.py +16 -0
  162. paddlex/inference/models/common/vlm/transformers/configuration_utils.py +1037 -0
  163. paddlex/inference/models/common/vlm/transformers/conversion_utils.py +408 -0
  164. paddlex/inference/models/common/vlm/transformers/model_outputs.py +1612 -0
  165. paddlex/inference/models/common/vlm/transformers/model_utils.py +2038 -0
  166. paddlex/inference/models/common/vlm/transformers/utils.py +178 -0
  167. paddlex/inference/models/common/vlm/utils.py +109 -0
  168. paddlex/inference/models/doc_vlm/__init__.py +15 -0
  169. paddlex/inference/models/doc_vlm/modeling/__init__.py +15 -0
  170. paddlex/inference/models/doc_vlm/modeling/qwen2_vl.py +2600 -0
  171. paddlex/inference/models/doc_vlm/predictor.py +198 -0
  172. paddlex/inference/models/doc_vlm/processors/__init__.py +15 -0
  173. paddlex/inference/models/doc_vlm/processors/common.py +372 -0
  174. paddlex/inference/models/doc_vlm/processors/qwen2_vl.py +698 -0
  175. paddlex/inference/models/doc_vlm/result.py +21 -0
  176. paddlex/inference/models/face_feature/__init__.py +15 -0
  177. paddlex/inference/models/face_feature/predictor.py +66 -0
  178. paddlex/inference/models/formula_recognition/__init__.py +15 -0
  179. paddlex/inference/models/formula_recognition/predictor.py +187 -0
  180. paddlex/inference/models/formula_recognition/processors.py +1002 -0
  181. paddlex/inference/models/formula_recognition/result.py +410 -0
  182. paddlex/inference/models/image_classification/__init__.py +15 -0
  183. paddlex/inference/models/image_classification/predictor.py +172 -0
  184. paddlex/inference/models/image_classification/processors.py +89 -0
  185. paddlex/inference/models/image_classification/result.py +93 -0
  186. paddlex/inference/models/image_feature/__init__.py +15 -0
  187. paddlex/inference/models/image_feature/predictor.py +146 -0
  188. paddlex/inference/models/image_feature/processors.py +32 -0
  189. paddlex/inference/models/image_feature/result.py +32 -0
  190. paddlex/inference/models/image_multilabel_classification/__init__.py +15 -0
  191. paddlex/inference/models/image_multilabel_classification/predictor.py +95 -0
  192. paddlex/inference/models/image_multilabel_classification/processors.py +89 -0
  193. paddlex/inference/models/image_multilabel_classification/result.py +96 -0
  194. paddlex/inference/models/image_unwarping/__init__.py +15 -0
  195. paddlex/inference/models/image_unwarping/predictor.py +97 -0
  196. paddlex/inference/models/image_unwarping/processors.py +92 -0
  197. paddlex/inference/models/image_unwarping/result.py +47 -0
  198. paddlex/inference/models/instance_segmentation/__init__.py +15 -0
  199. paddlex/inference/models/instance_segmentation/predictor.py +202 -0
  200. paddlex/inference/models/instance_segmentation/processors.py +102 -0
  201. paddlex/inference/models/instance_segmentation/result.py +162 -0
  202. paddlex/inference/models/keypoint_detection/__init__.py +15 -0
  203. paddlex/inference/models/keypoint_detection/predictor.py +187 -0
  204. paddlex/inference/models/keypoint_detection/processors.py +367 -0
  205. paddlex/inference/models/keypoint_detection/result.py +197 -0
  206. paddlex/inference/models/m_3d_bev_detection/__init__.py +15 -0
  207. paddlex/inference/models/m_3d_bev_detection/predictor.py +303 -0
  208. paddlex/inference/models/m_3d_bev_detection/processors.py +990 -0
  209. paddlex/inference/models/m_3d_bev_detection/result.py +68 -0
  210. paddlex/inference/models/m_3d_bev_detection/visualizer_3d.py +169 -0
  211. paddlex/inference/models/multilingual_speech_recognition/__init__.py +15 -0
  212. paddlex/inference/models/multilingual_speech_recognition/predictor.py +137 -0
  213. paddlex/inference/models/multilingual_speech_recognition/processors.py +1933 -0
  214. paddlex/inference/models/multilingual_speech_recognition/result.py +21 -0
  215. paddlex/inference/models/object_detection/__init__.py +15 -0
  216. paddlex/inference/models/object_detection/predictor.py +342 -0
  217. paddlex/inference/models/object_detection/processors.py +860 -0
  218. paddlex/inference/models/object_detection/result.py +114 -0
  219. paddlex/inference/models/object_detection/utils.py +68 -0
  220. paddlex/inference/models/open_vocabulary_detection/__init__.py +15 -0
  221. paddlex/inference/models/open_vocabulary_detection/predictor.py +172 -0
  222. paddlex/inference/models/open_vocabulary_detection/processors/__init__.py +16 -0
  223. paddlex/inference/models/open_vocabulary_detection/processors/common.py +114 -0
  224. paddlex/inference/models/open_vocabulary_detection/processors/groundingdino_processors.py +496 -0
  225. paddlex/inference/models/open_vocabulary_detection/processors/yoloworld_processors.py +209 -0
  226. paddlex/inference/models/open_vocabulary_segmentation/__init__.py +15 -0
  227. paddlex/inference/models/open_vocabulary_segmentation/predictor.py +113 -0
  228. paddlex/inference/models/open_vocabulary_segmentation/processors/__init__.py +15 -0
  229. paddlex/inference/models/open_vocabulary_segmentation/processors/sam_processer.py +249 -0
  230. paddlex/inference/models/open_vocabulary_segmentation/results/__init__.py +15 -0
  231. paddlex/inference/models/open_vocabulary_segmentation/results/sam_result.py +149 -0
  232. paddlex/inference/models/semantic_segmentation/__init__.py +15 -0
  233. paddlex/inference/models/semantic_segmentation/predictor.py +158 -0
  234. paddlex/inference/models/semantic_segmentation/processors.py +117 -0
  235. paddlex/inference/models/semantic_segmentation/result.py +73 -0
  236. paddlex/inference/models/table_structure_recognition/__init__.py +15 -0
  237. paddlex/inference/models/table_structure_recognition/predictor.py +161 -0
  238. paddlex/inference/models/table_structure_recognition/processors.py +229 -0
  239. paddlex/inference/models/table_structure_recognition/result.py +73 -0
  240. paddlex/inference/models/text_detection/__init__.py +15 -0
  241. paddlex/inference/models/text_detection/predictor.py +183 -0
  242. paddlex/inference/models/text_detection/processors.py +504 -0
  243. paddlex/inference/models/text_detection/result.py +56 -0
  244. paddlex/inference/models/text_recognition/__init__.py +15 -0
  245. paddlex/inference/models/text_recognition/predictor.py +98 -0
  246. paddlex/inference/models/text_recognition/processors.py +245 -0
  247. paddlex/inference/models/text_recognition/result.py +76 -0
  248. paddlex/inference/models/ts_anomaly_detection/__init__.py +15 -0
  249. paddlex/inference/models/ts_anomaly_detection/predictor.py +141 -0
  250. paddlex/inference/models/ts_anomaly_detection/processors.py +98 -0
  251. paddlex/inference/models/ts_anomaly_detection/result.py +83 -0
  252. paddlex/inference/models/ts_classification/__init__.py +15 -0
  253. paddlex/inference/models/ts_classification/predictor.py +122 -0
  254. paddlex/inference/models/ts_classification/processors.py +122 -0
  255. paddlex/inference/models/ts_classification/result.py +87 -0
  256. paddlex/inference/models/ts_forecasting/__init__.py +15 -0
  257. paddlex/inference/models/ts_forecasting/predictor.py +154 -0
  258. paddlex/inference/models/ts_forecasting/processors.py +158 -0
  259. paddlex/inference/models/ts_forecasting/result.py +96 -0
  260. paddlex/inference/models/video_classification/__init__.py +15 -0
  261. paddlex/inference/models/video_classification/predictor.py +141 -0
  262. paddlex/inference/models/video_classification/processors.py +409 -0
  263. paddlex/inference/models/video_classification/result.py +96 -0
  264. paddlex/inference/models/video_detection/__init__.py +15 -0
  265. paddlex/inference/models/video_detection/predictor.py +129 -0
  266. paddlex/inference/models/video_detection/processors.py +463 -0
  267. paddlex/inference/models/video_detection/result.py +109 -0
  268. paddlex/inference/pipelines/__init__.py +186 -78
  269. paddlex/inference/pipelines/anomaly_detection/__init__.py +15 -0
  270. paddlex/inference/pipelines/anomaly_detection/pipeline.py +72 -0
  271. paddlex/inference/pipelines/attribute_recognition/__init__.py +15 -0
  272. paddlex/inference/pipelines/attribute_recognition/pipeline.py +110 -0
  273. paddlex/inference/pipelines/attribute_recognition/result.py +102 -0
  274. paddlex/inference/pipelines/base.py +125 -59
  275. paddlex/inference/pipelines/components/__init__.py +29 -0
  276. paddlex/inference/pipelines/components/chat_server/__init__.py +16 -0
  277. paddlex/inference/pipelines/components/chat_server/base.py +39 -0
  278. paddlex/inference/pipelines/components/chat_server/openai_bot_chat.py +236 -0
  279. paddlex/inference/pipelines/components/common/__init__.py +19 -0
  280. paddlex/inference/pipelines/components/common/base_operator.py +37 -0
  281. paddlex/inference/pipelines/components/common/base_result.py +66 -0
  282. paddlex/inference/pipelines/components/common/convert_points_and_boxes.py +45 -0
  283. paddlex/inference/pipelines/components/common/crop_image_regions.py +556 -0
  284. paddlex/inference/pipelines/components/common/seal_det_warp.py +972 -0
  285. paddlex/inference/pipelines/components/common/sort_boxes.py +85 -0
  286. paddlex/inference/pipelines/components/common/warp_image.py +50 -0
  287. paddlex/inference/pipelines/components/faisser.py +357 -0
  288. paddlex/inference/pipelines/components/prompt_engineering/__init__.py +16 -0
  289. paddlex/inference/pipelines/components/prompt_engineering/base.py +35 -0
  290. paddlex/inference/pipelines/components/prompt_engineering/generate_ensemble_prompt.py +128 -0
  291. paddlex/inference/pipelines/components/prompt_engineering/generate_kie_prompt.py +148 -0
  292. paddlex/inference/pipelines/components/retriever/__init__.py +16 -0
  293. paddlex/inference/pipelines/components/retriever/base.py +228 -0
  294. paddlex/inference/pipelines/components/retriever/openai_bot_retriever.py +70 -0
  295. paddlex/inference/pipelines/components/retriever/qianfan_bot_retriever.py +166 -0
  296. paddlex/inference/pipelines/components/utils/__init__.py +13 -0
  297. paddlex/inference/pipelines/components/utils/mixin.py +206 -0
  298. paddlex/inference/pipelines/doc_preprocessor/__init__.py +15 -0
  299. paddlex/inference/pipelines/doc_preprocessor/pipeline.py +183 -0
  300. paddlex/inference/pipelines/doc_preprocessor/result.py +98 -0
  301. paddlex/inference/pipelines/doc_understanding/__init__.py +15 -0
  302. paddlex/inference/pipelines/doc_understanding/pipeline.py +71 -0
  303. paddlex/inference/pipelines/face_recognition/__init__.py +15 -0
  304. paddlex/inference/pipelines/face_recognition/pipeline.py +63 -0
  305. paddlex/inference/pipelines/face_recognition/result.py +44 -0
  306. paddlex/inference/pipelines/formula_recognition/__init__.py +15 -0
  307. paddlex/inference/pipelines/formula_recognition/pipeline.py +309 -0
  308. paddlex/inference/pipelines/formula_recognition/result.py +292 -0
  309. paddlex/inference/pipelines/image_classification/__init__.py +15 -0
  310. paddlex/inference/pipelines/image_classification/pipeline.py +80 -0
  311. paddlex/inference/pipelines/image_multilabel_classification/__init__.py +15 -0
  312. paddlex/inference/pipelines/image_multilabel_classification/pipeline.py +87 -0
  313. paddlex/inference/pipelines/instance_segmentation/__init__.py +15 -0
  314. paddlex/inference/pipelines/instance_segmentation/pipeline.py +81 -0
  315. paddlex/inference/pipelines/keypoint_detection/__init__.py +15 -0
  316. paddlex/inference/pipelines/keypoint_detection/pipeline.py +148 -0
  317. paddlex/inference/pipelines/layout_parsing/__init__.py +3 -2
  318. paddlex/inference/pipelines/layout_parsing/pipeline.py +581 -0
  319. paddlex/inference/pipelines/layout_parsing/pipeline_v2.py +749 -0
  320. paddlex/inference/pipelines/layout_parsing/result.py +204 -0
  321. paddlex/inference/pipelines/layout_parsing/result_v2.py +467 -0
  322. paddlex/inference/pipelines/layout_parsing/utils.py +2384 -0
  323. paddlex/inference/pipelines/m_3d_bev_detection/__init__.py +15 -0
  324. paddlex/inference/pipelines/m_3d_bev_detection/pipeline.py +74 -0
  325. paddlex/inference/pipelines/multilingual_speech_recognition/__init__.py +15 -0
  326. paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py +78 -0
  327. paddlex/inference/pipelines/object_detection/__init__.py +15 -0
  328. paddlex/inference/pipelines/object_detection/pipeline.py +105 -0
  329. paddlex/inference/pipelines/ocr/__init__.py +15 -0
  330. paddlex/inference/pipelines/ocr/pipeline.py +406 -0
  331. paddlex/inference/pipelines/ocr/result.py +252 -0
  332. paddlex/inference/pipelines/open_vocabulary_detection/__init__.py +15 -0
  333. paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py +86 -0
  334. paddlex/inference/pipelines/open_vocabulary_segmentation/__init__.py +15 -0
  335. paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py +100 -0
  336. paddlex/inference/pipelines/pp_chatocr/__init__.py +16 -0
  337. paddlex/inference/pipelines/pp_chatocr/pipeline_base.py +111 -0
  338. paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py +784 -0
  339. paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py +995 -0
  340. paddlex/inference/pipelines/pp_shitu_v2/__init__.py +15 -0
  341. paddlex/inference/pipelines/pp_shitu_v2/pipeline.py +156 -0
  342. paddlex/inference/pipelines/pp_shitu_v2/result.py +126 -0
  343. paddlex/inference/pipelines/rotated_object_detection/__init__.py +15 -0
  344. paddlex/inference/pipelines/rotated_object_detection/pipeline.py +85 -0
  345. paddlex/inference/pipelines/seal_recognition/__init__.py +15 -0
  346. paddlex/inference/pipelines/seal_recognition/pipeline.py +279 -0
  347. paddlex/inference/pipelines/seal_recognition/result.py +89 -0
  348. paddlex/inference/pipelines/semantic_segmentation/__init__.py +15 -0
  349. paddlex/inference/pipelines/semantic_segmentation/pipeline.py +85 -0
  350. paddlex/inference/pipelines/small_object_detection/__init__.py +15 -0
  351. paddlex/inference/pipelines/small_object_detection/pipeline.py +85 -0
  352. paddlex/inference/pipelines/table_recognition/__init__.py +3 -2
  353. paddlex/inference/pipelines/table_recognition/pipeline.py +478 -0
  354. paddlex/inference/pipelines/table_recognition/pipeline_v2.py +824 -0
  355. paddlex/inference/pipelines/table_recognition/result.py +218 -0
  356. paddlex/inference/pipelines/table_recognition/table_recognition_post_processing.py +366 -0
  357. paddlex/inference/pipelines/table_recognition/table_recognition_post_processing_v2.py +484 -0
  358. paddlex/inference/pipelines/table_recognition/utils.py +24 -437
  359. paddlex/inference/pipelines/ts_anomaly_detection/__init__.py +15 -0
  360. paddlex/inference/pipelines/ts_anomaly_detection/pipeline.py +72 -0
  361. paddlex/inference/pipelines/ts_classification/__init__.py +15 -0
  362. paddlex/inference/pipelines/ts_classification/pipeline.py +72 -0
  363. paddlex/inference/pipelines/ts_forecasting/__init__.py +15 -0
  364. paddlex/inference/pipelines/ts_forecasting/pipeline.py +72 -0
  365. paddlex/inference/pipelines/video_classification/__init__.py +15 -0
  366. paddlex/inference/pipelines/video_classification/pipeline.py +79 -0
  367. paddlex/inference/pipelines/video_detection/__init__.py +15 -0
  368. paddlex/inference/pipelines/video_detection/pipeline.py +86 -0
  369. paddlex/inference/serving/__init__.py +17 -0
  370. paddlex/inference/serving/basic_serving/__init__.py +18 -0
  371. paddlex/inference/serving/basic_serving/_app.py +221 -0
  372. paddlex/inference/serving/basic_serving/_pipeline_apps/__init__.py +44 -0
  373. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/__init__.py +13 -0
  374. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/common.py +100 -0
  375. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/image_recognition.py +36 -0
  376. paddlex/inference/serving/basic_serving/_pipeline_apps/_common/ocr.py +95 -0
  377. paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py +67 -0
  378. paddlex/inference/serving/basic_serving/_pipeline_apps/doc_preprocessor.py +100 -0
  379. paddlex/inference/serving/basic_serving/_pipeline_apps/doc_understanding.py +153 -0
  380. paddlex/inference/serving/basic_serving/_pipeline_apps/face_recognition.py +226 -0
  381. paddlex/inference/serving/basic_serving/_pipeline_apps/formula_recognition.py +100 -0
  382. paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.py +81 -0
  383. paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py +69 -0
  384. paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py +73 -0
  385. paddlex/inference/serving/basic_serving/_pipeline_apps/instance_segmentation.py +87 -0
  386. paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py +118 -0
  387. paddlex/inference/serving/basic_serving/_pipeline_apps/m_3d_bev_detection.py +79 -0
  388. paddlex/inference/serving/basic_serving/_pipeline_apps/multilingual_speech_recognition.py +92 -0
  389. paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py +77 -0
  390. paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py +102 -0
  391. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py +81 -0
  392. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py +91 -0
  393. paddlex/inference/serving/basic_serving/_pipeline_apps/pedestrian_attribute_recognition.py +84 -0
  394. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py +194 -0
  395. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py +224 -0
  396. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_shituv2.py +221 -0
  397. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py +139 -0
  398. paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py +81 -0
  399. paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py +106 -0
  400. paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py +67 -0
  401. paddlex/inference/serving/basic_serving/_pipeline_apps/small_object_detection.py +72 -0
  402. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py +108 -0
  403. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py +110 -0
  404. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py +65 -0
  405. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py +64 -0
  406. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py +65 -0
  407. paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recognition.py +84 -0
  408. paddlex/inference/serving/basic_serving/_pipeline_apps/video_classification.py +76 -0
  409. paddlex/inference/serving/basic_serving/_pipeline_apps/video_detection.py +92 -0
  410. paddlex/inference/serving/basic_serving/_server.py +40 -0
  411. paddlex/inference/serving/infra/__init__.py +13 -0
  412. paddlex/inference/serving/infra/config.py +36 -0
  413. paddlex/inference/serving/infra/models.py +79 -0
  414. paddlex/inference/serving/infra/storage.py +180 -0
  415. paddlex/inference/serving/infra/utils.py +287 -0
  416. paddlex/inference/serving/schemas/__init__.py +13 -0
  417. paddlex/inference/serving/schemas/anomaly_detection.py +39 -0
  418. paddlex/inference/serving/schemas/doc_preprocessor.py +54 -0
  419. paddlex/inference/serving/schemas/doc_understanding.py +78 -0
  420. paddlex/inference/serving/schemas/face_recognition.py +124 -0
  421. paddlex/inference/serving/schemas/formula_recognition.py +56 -0
  422. paddlex/inference/serving/schemas/human_keypoint_detection.py +55 -0
  423. paddlex/inference/serving/schemas/image_classification.py +45 -0
  424. paddlex/inference/serving/schemas/image_multilabel_classification.py +47 -0
  425. paddlex/inference/serving/schemas/instance_segmentation.py +53 -0
  426. paddlex/inference/serving/schemas/layout_parsing.py +72 -0
  427. paddlex/inference/serving/schemas/m_3d_bev_detection.py +48 -0
  428. paddlex/inference/serving/schemas/multilingual_speech_recognition.py +57 -0
  429. paddlex/inference/serving/schemas/object_detection.py +52 -0
  430. paddlex/inference/serving/schemas/ocr.py +60 -0
  431. paddlex/inference/serving/schemas/open_vocabulary_detection.py +52 -0
  432. paddlex/inference/serving/schemas/open_vocabulary_segmentation.py +52 -0
  433. paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py +61 -0
  434. paddlex/inference/serving/schemas/pp_chatocrv3_doc.py +134 -0
  435. paddlex/inference/serving/schemas/pp_chatocrv4_doc.py +151 -0
  436. paddlex/inference/serving/schemas/pp_shituv2.py +124 -0
  437. paddlex/inference/serving/schemas/pp_structurev3.py +84 -0
  438. paddlex/inference/serving/schemas/rotated_object_detection.py +52 -0
  439. paddlex/inference/serving/schemas/seal_recognition.py +62 -0
  440. paddlex/inference/serving/schemas/semantic_segmentation.py +45 -0
  441. paddlex/inference/serving/schemas/shared/__init__.py +13 -0
  442. paddlex/inference/serving/schemas/shared/classification.py +23 -0
  443. paddlex/inference/serving/schemas/shared/image_segmentation.py +28 -0
  444. paddlex/inference/serving/schemas/shared/object_detection.py +24 -0
  445. paddlex/inference/serving/schemas/shared/ocr.py +25 -0
  446. paddlex/inference/serving/schemas/small_object_detection.py +52 -0
  447. paddlex/inference/serving/schemas/table_recognition.py +64 -0
  448. paddlex/inference/serving/schemas/table_recognition_v2.py +66 -0
  449. paddlex/inference/serving/schemas/ts_anomaly_detection.py +37 -0
  450. paddlex/inference/serving/schemas/ts_classification.py +38 -0
  451. paddlex/inference/serving/schemas/ts_forecast.py +37 -0
  452. paddlex/inference/serving/schemas/vehicle_attribute_recognition.py +61 -0
  453. paddlex/inference/serving/schemas/video_classification.py +44 -0
  454. paddlex/inference/serving/schemas/video_detection.py +56 -0
  455. paddlex/inference/utils/__init__.py +1 -1
  456. paddlex/inference/utils/benchmark.py +333 -168
  457. paddlex/inference/utils/color_map.py +1 -1
  458. paddlex/inference/utils/get_pipeline_path.py +3 -2
  459. paddlex/inference/utils/hpi.py +251 -0
  460. paddlex/inference/utils/hpi_model_info_collection.json +2252 -0
  461. paddlex/inference/utils/io/__init__.py +11 -8
  462. paddlex/inference/utils/io/readers.py +178 -27
  463. paddlex/inference/utils/io/style.py +21 -14
  464. paddlex/inference/utils/io/tablepyxl.py +13 -5
  465. paddlex/inference/utils/io/writers.py +92 -10
  466. paddlex/inference/utils/model_paths.py +48 -0
  467. paddlex/inference/utils/new_ir_blocklist.py +27 -0
  468. paddlex/inference/utils/official_models.py +281 -213
  469. paddlex/inference/utils/pp_option.py +168 -77
  470. paddlex/inference/utils/trt_blocklist.py +43 -0
  471. paddlex/inference/utils/trt_config.py +420 -0
  472. paddlex/model.py +39 -14
  473. paddlex/modules/__init__.py +67 -57
  474. paddlex/modules/anomaly_detection/__init__.py +2 -2
  475. paddlex/modules/anomaly_detection/dataset_checker/__init__.py +2 -3
  476. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/__init__.py +2 -2
  477. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py +6 -3
  478. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/check_dataset.py +8 -4
  479. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py +7 -4
  480. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/split_dataset.py +2 -2
  481. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  482. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/visualizer.py +7 -2
  483. paddlex/modules/anomaly_detection/evaluator.py +1 -1
  484. paddlex/modules/anomaly_detection/exportor.py +1 -1
  485. paddlex/modules/anomaly_detection/model_list.py +1 -1
  486. paddlex/modules/anomaly_detection/trainer.py +3 -4
  487. paddlex/modules/base/__init__.py +5 -5
  488. paddlex/modules/base/build_model.py +2 -3
  489. paddlex/modules/base/dataset_checker/__init__.py +2 -2
  490. paddlex/modules/base/dataset_checker/dataset_checker.py +9 -4
  491. paddlex/modules/base/dataset_checker/utils.py +1 -3
  492. paddlex/modules/base/evaluator.py +24 -8
  493. paddlex/modules/base/exportor.py +36 -12
  494. paddlex/modules/base/trainer.py +43 -10
  495. paddlex/modules/base/utils/__init__.py +13 -0
  496. paddlex/modules/base/utils/cinn_setting.py +89 -0
  497. paddlex/modules/base/utils/coco_eval.py +94 -0
  498. paddlex/modules/base/utils/topk_eval.py +118 -0
  499. paddlex/modules/doc_vlm/__init__.py +18 -0
  500. paddlex/modules/doc_vlm/dataset_checker.py +29 -0
  501. paddlex/modules/doc_vlm/evaluator.py +29 -0
  502. paddlex/modules/doc_vlm/exportor.py +29 -0
  503. paddlex/modules/doc_vlm/model_list.py +16 -0
  504. paddlex/modules/doc_vlm/trainer.py +41 -0
  505. paddlex/modules/face_recognition/__init__.py +2 -2
  506. paddlex/modules/face_recognition/dataset_checker/__init__.py +2 -2
  507. paddlex/modules/face_recognition/dataset_checker/dataset_src/__init__.py +1 -1
  508. paddlex/modules/face_recognition/dataset_checker/dataset_src/check_dataset.py +3 -5
  509. paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/__init__.py +1 -1
  510. paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  511. paddlex/modules/face_recognition/evaluator.py +1 -1
  512. paddlex/modules/face_recognition/exportor.py +1 -1
  513. paddlex/modules/face_recognition/model_list.py +1 -1
  514. paddlex/modules/face_recognition/trainer.py +2 -24
  515. paddlex/modules/formula_recognition/__init__.py +6 -1
  516. paddlex/modules/formula_recognition/dataset_checker/__init__.py +113 -0
  517. paddlex/modules/formula_recognition/dataset_checker/dataset_src/__init__.py +19 -0
  518. paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py +158 -0
  519. paddlex/modules/formula_recognition/dataset_checker/dataset_src/check_dataset.py +76 -0
  520. paddlex/modules/formula_recognition/dataset_checker/dataset_src/convert_dataset.py +95 -0
  521. paddlex/modules/formula_recognition/dataset_checker/dataset_src/split_dataset.py +80 -0
  522. paddlex/modules/formula_recognition/evaluator.py +77 -0
  523. paddlex/modules/formula_recognition/exportor.py +22 -0
  524. paddlex/modules/formula_recognition/model_list.py +4 -1
  525. paddlex/modules/formula_recognition/trainer.py +120 -0
  526. paddlex/modules/general_recognition/__init__.py +2 -2
  527. paddlex/modules/general_recognition/dataset_checker/__init__.py +2 -2
  528. paddlex/modules/general_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  529. paddlex/modules/general_recognition/dataset_checker/dataset_src/analyse_dataset.py +7 -9
  530. paddlex/modules/general_recognition/dataset_checker/dataset_src/check_dataset.py +4 -5
  531. paddlex/modules/general_recognition/dataset_checker/dataset_src/convert_dataset.py +6 -5
  532. paddlex/modules/general_recognition/dataset_checker/dataset_src/split_dataset.py +1 -1
  533. paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/__init__.py +1 -1
  534. paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  535. paddlex/modules/general_recognition/evaluator.py +1 -1
  536. paddlex/modules/general_recognition/exportor.py +1 -1
  537. paddlex/modules/general_recognition/model_list.py +1 -1
  538. paddlex/modules/general_recognition/trainer.py +1 -1
  539. paddlex/modules/image_classification/__init__.py +2 -2
  540. paddlex/modules/image_classification/dataset_checker/__init__.py +2 -2
  541. paddlex/modules/image_classification/dataset_checker/dataset_src/__init__.py +2 -2
  542. paddlex/modules/image_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  543. paddlex/modules/image_classification/dataset_checker/dataset_src/check_dataset.py +4 -3
  544. paddlex/modules/image_classification/dataset_checker/dataset_src/convert_dataset.py +4 -4
  545. paddlex/modules/image_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  546. paddlex/modules/image_classification/dataset_checker/dataset_src/utils/__init__.py +1 -1
  547. paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualizer.py +2 -5
  548. paddlex/modules/image_classification/evaluator.py +1 -1
  549. paddlex/modules/image_classification/exportor.py +1 -1
  550. paddlex/modules/image_classification/model_list.py +3 -1
  551. paddlex/modules/image_classification/trainer.py +3 -3
  552. paddlex/modules/image_unwarping/__init__.py +1 -1
  553. paddlex/modules/image_unwarping/model_list.py +1 -1
  554. paddlex/modules/instance_segmentation/__init__.py +2 -2
  555. paddlex/modules/instance_segmentation/dataset_checker/__init__.py +17 -3
  556. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/__init__.py +2 -2
  557. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/analyse_dataset.py +9 -5
  558. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/check_dataset.py +8 -5
  559. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/convert_dataset.py +8 -8
  560. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/split_dataset.py +7 -4
  561. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/__init__.py +1 -1
  562. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py +10 -8
  563. paddlex/modules/instance_segmentation/evaluator.py +1 -1
  564. paddlex/modules/instance_segmentation/exportor.py +1 -1
  565. paddlex/modules/instance_segmentation/model_list.py +1 -1
  566. paddlex/modules/instance_segmentation/trainer.py +1 -1
  567. paddlex/modules/keypoint_detection/__init__.py +18 -0
  568. paddlex/modules/keypoint_detection/dataset_checker/__init__.py +56 -0
  569. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/__init__.py +15 -0
  570. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/check_dataset.py +91 -0
  571. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/__init__.py +13 -0
  572. paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/visualizer.py +124 -0
  573. paddlex/modules/keypoint_detection/evaluator.py +41 -0
  574. paddlex/modules/keypoint_detection/exportor.py +22 -0
  575. paddlex/modules/keypoint_detection/model_list.py +16 -0
  576. paddlex/modules/keypoint_detection/trainer.py +39 -0
  577. paddlex/modules/m_3d_bev_detection/__init__.py +18 -0
  578. paddlex/modules/m_3d_bev_detection/dataset_checker/__init__.py +95 -0
  579. paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/__init__.py +17 -0
  580. paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/analyse_dataset.py +106 -0
  581. paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/check_dataset.py +101 -0
  582. paddlex/modules/m_3d_bev_detection/evaluator.py +46 -0
  583. paddlex/modules/m_3d_bev_detection/exportor.py +22 -0
  584. paddlex/modules/m_3d_bev_detection/model_list.py +18 -0
  585. paddlex/modules/m_3d_bev_detection/trainer.py +68 -0
  586. paddlex/modules/multilabel_classification/__init__.py +2 -2
  587. paddlex/modules/multilabel_classification/dataset_checker/__init__.py +2 -2
  588. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/__init__.py +2 -2
  589. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -9
  590. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/check_dataset.py +4 -3
  591. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/convert_dataset.py +10 -7
  592. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
  593. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/__init__.py +1 -1
  594. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/visualizer.py +1 -5
  595. paddlex/modules/multilabel_classification/evaluator.py +1 -1
  596. paddlex/modules/multilabel_classification/exportor.py +1 -1
  597. paddlex/modules/multilabel_classification/model_list.py +1 -1
  598. paddlex/modules/multilabel_classification/trainer.py +3 -3
  599. paddlex/modules/multilingual_speech_recognition/__init__.py +18 -0
  600. paddlex/modules/multilingual_speech_recognition/dataset_checker.py +27 -0
  601. paddlex/modules/multilingual_speech_recognition/evaluator.py +27 -0
  602. paddlex/modules/multilingual_speech_recognition/exportor.py +27 -0
  603. paddlex/modules/multilingual_speech_recognition/model_list.py +22 -0
  604. paddlex/modules/multilingual_speech_recognition/trainer.py +42 -0
  605. paddlex/modules/object_detection/__init__.py +2 -2
  606. paddlex/modules/object_detection/dataset_checker/__init__.py +2 -11
  607. paddlex/modules/object_detection/dataset_checker/dataset_src/__init__.py +2 -2
  608. paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py +10 -8
  609. paddlex/modules/object_detection/dataset_checker/dataset_src/check_dataset.py +10 -5
  610. paddlex/modules/object_detection/dataset_checker/dataset_src/convert_dataset.py +13 -8
  611. paddlex/modules/object_detection/dataset_checker/dataset_src/split_dataset.py +8 -4
  612. paddlex/modules/object_detection/dataset_checker/dataset_src/utils/__init__.py +1 -1
  613. paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py +9 -8
  614. paddlex/modules/object_detection/evaluator.py +18 -2
  615. paddlex/modules/object_detection/exportor.py +1 -1
  616. paddlex/modules/object_detection/model_list.py +11 -1
  617. paddlex/modules/object_detection/trainer.py +19 -6
  618. paddlex/modules/open_vocabulary_detection/__init__.py +18 -0
  619. paddlex/modules/open_vocabulary_detection/dataset_checker.py +29 -0
  620. paddlex/modules/open_vocabulary_detection/evaluator.py +29 -0
  621. paddlex/modules/open_vocabulary_detection/exportor.py +29 -0
  622. paddlex/modules/open_vocabulary_detection/model_list.py +16 -0
  623. paddlex/modules/open_vocabulary_detection/trainer.py +44 -0
  624. paddlex/modules/open_vocabulary_segmentation/__init__.py +18 -0
  625. paddlex/modules/open_vocabulary_segmentation/dataset_checker.py +29 -0
  626. paddlex/modules/open_vocabulary_segmentation/evaluator.py +29 -0
  627. paddlex/modules/open_vocabulary_segmentation/exportor.py +29 -0
  628. paddlex/modules/open_vocabulary_segmentation/model_list.py +19 -0
  629. paddlex/modules/open_vocabulary_segmentation/trainer.py +44 -0
  630. paddlex/modules/semantic_segmentation/__init__.py +2 -2
  631. paddlex/modules/semantic_segmentation/dataset_checker/__init__.py +17 -3
  632. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/__init__.py +2 -2
  633. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/analyse_dataset.py +6 -3
  634. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/check_dataset.py +2 -2
  635. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/convert_dataset.py +7 -4
  636. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/split_dataset.py +2 -2
  637. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/__init__.py +1 -1
  638. paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/visualizer.py +6 -2
  639. paddlex/modules/semantic_segmentation/evaluator.py +1 -1
  640. paddlex/modules/semantic_segmentation/exportor.py +10 -1
  641. paddlex/modules/semantic_segmentation/model_list.py +3 -1
  642. paddlex/modules/semantic_segmentation/trainer.py +5 -4
  643. paddlex/modules/table_recognition/__init__.py +2 -2
  644. paddlex/modules/table_recognition/dataset_checker/__init__.py +21 -6
  645. paddlex/modules/table_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  646. paddlex/modules/table_recognition/dataset_checker/dataset_src/analyse_dataset.py +3 -2
  647. paddlex/modules/table_recognition/dataset_checker/dataset_src/check_dataset.py +20 -20
  648. paddlex/modules/table_recognition/dataset_checker/dataset_src/split_dataset.py +2 -1
  649. paddlex/modules/table_recognition/evaluator.py +1 -1
  650. paddlex/modules/table_recognition/exportor.py +1 -1
  651. paddlex/modules/table_recognition/model_list.py +3 -1
  652. paddlex/modules/table_recognition/trainer.py +2 -5
  653. paddlex/modules/text_detection/__init__.py +2 -2
  654. paddlex/modules/text_detection/dataset_checker/__init__.py +20 -7
  655. paddlex/modules/text_detection/dataset_checker/dataset_src/__init__.py +2 -2
  656. paddlex/modules/text_detection/dataset_checker/dataset_src/analyse_dataset.py +12 -9
  657. paddlex/modules/text_detection/dataset_checker/dataset_src/check_dataset.py +15 -5
  658. paddlex/modules/text_detection/dataset_checker/dataset_src/split_dataset.py +3 -3
  659. paddlex/modules/text_detection/evaluator.py +1 -1
  660. paddlex/modules/text_detection/exportor.py +1 -1
  661. paddlex/modules/text_detection/model_list.py +3 -1
  662. paddlex/modules/text_detection/trainer.py +2 -5
  663. paddlex/modules/text_recognition/__init__.py +2 -2
  664. paddlex/modules/text_recognition/dataset_checker/__init__.py +20 -9
  665. paddlex/modules/text_recognition/dataset_checker/dataset_src/__init__.py +2 -2
  666. paddlex/modules/text_recognition/dataset_checker/dataset_src/analyse_dataset.py +13 -12
  667. paddlex/modules/text_recognition/dataset_checker/dataset_src/check_dataset.py +15 -8
  668. paddlex/modules/text_recognition/dataset_checker/dataset_src/convert_dataset.py +11 -10
  669. paddlex/modules/text_recognition/dataset_checker/dataset_src/split_dataset.py +1 -2
  670. paddlex/modules/text_recognition/evaluator.py +5 -4
  671. paddlex/modules/text_recognition/exportor.py +1 -4
  672. paddlex/modules/text_recognition/model_list.py +15 -1
  673. paddlex/modules/text_recognition/trainer.py +6 -6
  674. paddlex/modules/ts_anomaly_detection/__init__.py +2 -2
  675. paddlex/modules/ts_anomaly_detection/dataset_checker/__init__.py +19 -5
  676. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/__init__.py +2 -2
  677. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py +1 -9
  678. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/check_dataset.py +2 -2
  679. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/convert_dataset.py +2 -6
  680. paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/split_dataset.py +4 -4
  681. paddlex/modules/ts_anomaly_detection/evaluator.py +1 -1
  682. paddlex/modules/ts_anomaly_detection/exportor.py +2 -3
  683. paddlex/modules/ts_anomaly_detection/model_list.py +1 -1
  684. paddlex/modules/ts_anomaly_detection/trainer.py +22 -6
  685. paddlex/modules/ts_classification/__init__.py +2 -2
  686. paddlex/modules/ts_classification/dataset_checker/__init__.py +19 -5
  687. paddlex/modules/ts_classification/dataset_checker/dataset_src/__init__.py +2 -2
  688. paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py +8 -5
  689. paddlex/modules/ts_classification/dataset_checker/dataset_src/check_dataset.py +2 -2
  690. paddlex/modules/ts_classification/dataset_checker/dataset_src/convert_dataset.py +2 -6
  691. paddlex/modules/ts_classification/dataset_checker/dataset_src/split_dataset.py +4 -4
  692. paddlex/modules/ts_classification/evaluator.py +1 -1
  693. paddlex/modules/ts_classification/exportor.py +2 -3
  694. paddlex/modules/ts_classification/model_list.py +1 -1
  695. paddlex/modules/ts_classification/trainer.py +21 -5
  696. paddlex/modules/ts_forecast/__init__.py +2 -2
  697. paddlex/modules/ts_forecast/dataset_checker/__init__.py +19 -5
  698. paddlex/modules/ts_forecast/dataset_checker/dataset_src/__init__.py +2 -2
  699. paddlex/modules/ts_forecast/dataset_checker/dataset_src/analyse_dataset.py +1 -9
  700. paddlex/modules/ts_forecast/dataset_checker/dataset_src/check_dataset.py +2 -2
  701. paddlex/modules/ts_forecast/dataset_checker/dataset_src/convert_dataset.py +2 -6
  702. paddlex/modules/ts_forecast/dataset_checker/dataset_src/split_dataset.py +4 -4
  703. paddlex/modules/ts_forecast/evaluator.py +1 -1
  704. paddlex/modules/ts_forecast/exportor.py +2 -3
  705. paddlex/modules/ts_forecast/model_list.py +1 -1
  706. paddlex/modules/ts_forecast/trainer.py +21 -5
  707. paddlex/modules/video_classification/__init__.py +18 -0
  708. paddlex/modules/video_classification/dataset_checker/__init__.py +93 -0
  709. paddlex/modules/video_classification/dataset_checker/dataset_src/__init__.py +18 -0
  710. paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset.py +93 -0
  711. paddlex/modules/video_classification/dataset_checker/dataset_src/check_dataset.py +120 -0
  712. paddlex/modules/video_classification/dataset_checker/dataset_src/split_dataset.py +82 -0
  713. paddlex/modules/video_classification/evaluator.py +44 -0
  714. paddlex/modules/video_classification/exportor.py +22 -0
  715. paddlex/modules/video_classification/model_list.py +19 -0
  716. paddlex/modules/video_classification/trainer.py +88 -0
  717. paddlex/modules/video_detection/__init__.py +18 -0
  718. paddlex/modules/video_detection/dataset_checker/__init__.py +86 -0
  719. paddlex/modules/video_detection/dataset_checker/dataset_src/__init__.py +17 -0
  720. paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py +100 -0
  721. paddlex/modules/video_detection/dataset_checker/dataset_src/check_dataset.py +132 -0
  722. paddlex/modules/video_detection/evaluator.py +42 -0
  723. paddlex/modules/video_detection/exportor.py +22 -0
  724. paddlex/modules/video_detection/model_list.py +15 -0
  725. paddlex/modules/video_detection/trainer.py +82 -0
  726. paddlex/ops/__init__.py +152 -0
  727. paddlex/ops/iou3d_nms/iou3d_cpu.cpp +266 -0
  728. paddlex/ops/iou3d_nms/iou3d_cpu.h +28 -0
  729. paddlex/ops/iou3d_nms/iou3d_nms.cpp +206 -0
  730. paddlex/ops/iou3d_nms/iou3d_nms.h +35 -0
  731. paddlex/ops/iou3d_nms/iou3d_nms_api.cpp +114 -0
  732. paddlex/ops/iou3d_nms/iou3d_nms_kernel.cu +484 -0
  733. paddlex/ops/setup.py +37 -0
  734. paddlex/ops/voxel/voxelize_op.cc +194 -0
  735. paddlex/ops/voxel/voxelize_op.cu +346 -0
  736. paddlex/paddlex_cli.py +352 -74
  737. paddlex/repo_apis/Paddle3D_api/__init__.py +17 -0
  738. paddlex/repo_apis/Paddle3D_api/bev_fusion/__init__.py +18 -0
  739. paddlex/repo_apis/Paddle3D_api/bev_fusion/config.py +118 -0
  740. paddlex/repo_apis/Paddle3D_api/bev_fusion/model.py +238 -0
  741. paddlex/repo_apis/Paddle3D_api/bev_fusion/register.py +55 -0
  742. paddlex/repo_apis/Paddle3D_api/bev_fusion/runner.py +104 -0
  743. paddlex/repo_apis/Paddle3D_api/pp3d_config.py +145 -0
  744. paddlex/repo_apis/PaddleClas_api/__init__.py +1 -1
  745. paddlex/repo_apis/PaddleClas_api/cls/__init__.py +3 -3
  746. paddlex/repo_apis/PaddleClas_api/cls/config.py +4 -3
  747. paddlex/repo_apis/PaddleClas_api/cls/model.py +9 -3
  748. paddlex/repo_apis/PaddleClas_api/cls/register.py +22 -5
  749. paddlex/repo_apis/PaddleClas_api/cls/runner.py +1 -2
  750. paddlex/repo_apis/PaddleClas_api/shitu_rec/__init__.py +2 -2
  751. paddlex/repo_apis/PaddleClas_api/shitu_rec/config.py +2 -2
  752. paddlex/repo_apis/PaddleClas_api/shitu_rec/model.py +1 -4
  753. paddlex/repo_apis/PaddleClas_api/shitu_rec/register.py +2 -2
  754. paddlex/repo_apis/PaddleClas_api/shitu_rec/runner.py +1 -6
  755. paddlex/repo_apis/PaddleDetection_api/__init__.py +2 -2
  756. paddlex/repo_apis/PaddleDetection_api/config_helper.py +3 -3
  757. paddlex/repo_apis/PaddleDetection_api/instance_seg/__init__.py +2 -2
  758. paddlex/repo_apis/PaddleDetection_api/instance_seg/config.py +10 -7
  759. paddlex/repo_apis/PaddleDetection_api/instance_seg/model.py +9 -3
  760. paddlex/repo_apis/PaddleDetection_api/instance_seg/register.py +2 -3
  761. paddlex/repo_apis/PaddleDetection_api/instance_seg/runner.py +1 -2
  762. paddlex/repo_apis/PaddleDetection_api/object_det/__init__.py +3 -3
  763. paddlex/repo_apis/PaddleDetection_api/object_det/config.py +31 -8
  764. paddlex/repo_apis/PaddleDetection_api/object_det/model.py +11 -6
  765. paddlex/repo_apis/PaddleDetection_api/object_det/official_categories.py +82 -1
  766. paddlex/repo_apis/PaddleDetection_api/object_det/register.py +184 -6
  767. paddlex/repo_apis/PaddleDetection_api/object_det/runner.py +1 -2
  768. paddlex/repo_apis/PaddleNLP_api/__init__.py +1 -1
  769. paddlex/repo_apis/PaddleOCR_api/__init__.py +4 -2
  770. paddlex/repo_apis/PaddleOCR_api/config_utils.py +1 -1
  771. paddlex/repo_apis/PaddleOCR_api/formula_rec/__init__.py +16 -0
  772. paddlex/repo_apis/PaddleOCR_api/formula_rec/config.py +571 -0
  773. paddlex/repo_apis/PaddleOCR_api/formula_rec/model.py +402 -0
  774. paddlex/repo_apis/PaddleOCR_api/formula_rec/register.py +72 -0
  775. paddlex/repo_apis/PaddleOCR_api/formula_rec/runner.py +239 -0
  776. paddlex/repo_apis/PaddleOCR_api/table_rec/__init__.py +1 -1
  777. paddlex/repo_apis/PaddleOCR_api/table_rec/config.py +1 -1
  778. paddlex/repo_apis/PaddleOCR_api/table_rec/model.py +3 -3
  779. paddlex/repo_apis/PaddleOCR_api/table_rec/register.py +20 -3
  780. paddlex/repo_apis/PaddleOCR_api/table_rec/runner.py +2 -2
  781. paddlex/repo_apis/PaddleOCR_api/text_det/__init__.py +1 -1
  782. paddlex/repo_apis/PaddleOCR_api/text_det/config.py +1 -1
  783. paddlex/repo_apis/PaddleOCR_api/text_det/model.py +3 -3
  784. paddlex/repo_apis/PaddleOCR_api/text_det/register.py +20 -3
  785. paddlex/repo_apis/PaddleOCR_api/text_det/runner.py +2 -2
  786. paddlex/repo_apis/PaddleOCR_api/text_rec/__init__.py +1 -1
  787. paddlex/repo_apis/PaddleOCR_api/text_rec/config.py +25 -3
  788. paddlex/repo_apis/PaddleOCR_api/text_rec/model.py +10 -4
  789. paddlex/repo_apis/PaddleOCR_api/text_rec/register.py +128 -10
  790. paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py +1 -2
  791. paddlex/repo_apis/PaddleSeg_api/__init__.py +1 -1
  792. paddlex/repo_apis/PaddleSeg_api/base_seg_config.py +2 -2
  793. paddlex/repo_apis/PaddleSeg_api/seg/__init__.py +1 -1
  794. paddlex/repo_apis/PaddleSeg_api/seg/config.py +12 -6
  795. paddlex/repo_apis/PaddleSeg_api/seg/model.py +15 -5
  796. paddlex/repo_apis/PaddleSeg_api/seg/register.py +22 -3
  797. paddlex/repo_apis/PaddleSeg_api/seg/runner.py +1 -2
  798. paddlex/repo_apis/PaddleTS_api/__init__.py +4 -3
  799. paddlex/repo_apis/PaddleTS_api/ts_ad/__init__.py +1 -1
  800. paddlex/repo_apis/PaddleTS_api/ts_ad/config.py +2 -3
  801. paddlex/repo_apis/PaddleTS_api/ts_ad/register.py +2 -2
  802. paddlex/repo_apis/PaddleTS_api/ts_ad/runner.py +2 -2
  803. paddlex/repo_apis/PaddleTS_api/ts_base/__init__.py +1 -1
  804. paddlex/repo_apis/PaddleTS_api/ts_base/config.py +25 -3
  805. paddlex/repo_apis/PaddleTS_api/ts_base/model.py +15 -11
  806. paddlex/repo_apis/PaddleTS_api/ts_base/runner.py +2 -2
  807. paddlex/repo_apis/PaddleTS_api/ts_cls/__init__.py +1 -1
  808. paddlex/repo_apis/PaddleTS_api/ts_cls/config.py +2 -3
  809. paddlex/repo_apis/PaddleTS_api/ts_cls/register.py +2 -2
  810. paddlex/repo_apis/PaddleTS_api/ts_cls/runner.py +2 -2
  811. paddlex/repo_apis/PaddleTS_api/ts_fc/__init__.py +1 -1
  812. paddlex/repo_apis/PaddleTS_api/ts_fc/config.py +2 -3
  813. paddlex/repo_apis/PaddleTS_api/ts_fc/register.py +1 -1
  814. paddlex/repo_apis/PaddleVideo_api/__init__.py +17 -0
  815. paddlex/repo_apis/PaddleVideo_api/config_utils.py +51 -0
  816. paddlex/repo_apis/PaddleVideo_api/video_cls/__init__.py +19 -0
  817. paddlex/repo_apis/PaddleVideo_api/video_cls/config.py +548 -0
  818. paddlex/repo_apis/PaddleVideo_api/video_cls/model.py +346 -0
  819. paddlex/repo_apis/PaddleVideo_api/video_cls/register.py +70 -0
  820. paddlex/repo_apis/PaddleVideo_api/video_cls/runner.py +204 -0
  821. paddlex/repo_apis/PaddleVideo_api/video_det/__init__.py +19 -0
  822. paddlex/repo_apis/PaddleVideo_api/video_det/config.py +549 -0
  823. paddlex/repo_apis/PaddleVideo_api/video_det/model.py +298 -0
  824. paddlex/repo_apis/PaddleVideo_api/video_det/register.py +44 -0
  825. paddlex/repo_apis/PaddleVideo_api/video_det/runner.py +199 -0
  826. paddlex/repo_apis/__init__.py +1 -1
  827. paddlex/repo_apis/base/__init__.py +4 -5
  828. paddlex/repo_apis/base/config.py +2 -3
  829. paddlex/repo_apis/base/model.py +11 -19
  830. paddlex/repo_apis/base/register.py +1 -1
  831. paddlex/repo_apis/base/runner.py +13 -13
  832. paddlex/repo_apis/base/utils/__init__.py +1 -1
  833. paddlex/repo_apis/base/utils/arg.py +1 -1
  834. paddlex/repo_apis/base/utils/subprocess.py +1 -1
  835. paddlex/repo_manager/__init__.py +2 -9
  836. paddlex/repo_manager/core.py +9 -27
  837. paddlex/repo_manager/meta.py +58 -25
  838. paddlex/repo_manager/repo.py +169 -141
  839. paddlex/repo_manager/utils.py +72 -222
  840. paddlex/utils/__init__.py +1 -1
  841. paddlex/utils/cache.py +8 -10
  842. paddlex/utils/config.py +10 -8
  843. paddlex/utils/custom_device_list.py +287 -0
  844. paddlex/utils/deps.py +249 -0
  845. paddlex/utils/device.py +125 -33
  846. paddlex/utils/download.py +4 -4
  847. paddlex/utils/env.py +54 -0
  848. paddlex/utils/errors/__init__.py +1 -1
  849. paddlex/utils/errors/dataset_checker.py +1 -1
  850. paddlex/utils/errors/others.py +2 -16
  851. paddlex/utils/file_interface.py +4 -5
  852. paddlex/utils/flags.py +22 -11
  853. paddlex/utils/fonts/__init__.py +50 -6
  854. paddlex/utils/func_register.py +1 -1
  855. paddlex/utils/install.py +87 -0
  856. paddlex/utils/interactive_get_pipeline.py +3 -3
  857. paddlex/utils/lazy_loader.py +4 -2
  858. paddlex/utils/logging.py +11 -3
  859. paddlex/utils/misc.py +5 -5
  860. paddlex/utils/pipeline_arguments.py +719 -0
  861. paddlex/utils/result_saver.py +4 -5
  862. paddlex/utils/subclass_register.py +2 -4
  863. paddlex/version.py +2 -1
  864. paddlex-3.0.0rc1.dist-info/METADATA +1174 -0
  865. paddlex-3.0.0rc1.dist-info/RECORD +1068 -0
  866. paddlex-3.0.0rc1.dist-info/WHEEL +5 -0
  867. paddlex/configs/face_recognition/MobileFaceNet.yaml +0 -44
  868. paddlex/configs/face_recognition/ResNet50_face.yaml +0 -44
  869. paddlex/configs/formula_recognition/LaTeX_OCR_rec.yaml +0 -40
  870. paddlex/configs/image_classification/CLIP_vit_base_patch16_224.yaml +0 -41
  871. paddlex/configs/image_classification/CLIP_vit_large_patch14_224.yaml +0 -41
  872. paddlex/configs/image_classification/ConvNeXt_large_384.yaml +0 -41
  873. paddlex/configs/object_detection/YOLOX-X.yaml +0 -40
  874. paddlex/configs/semantic_segmentation/SeaFormer_base.yaml +0 -40
  875. paddlex/configs/semantic_segmentation/SeaFormer_large.yaml +0 -40
  876. paddlex/configs/semantic_segmentation/SeaFormer_small.yaml +0 -40
  877. paddlex/configs/semantic_segmentation/SeaFormer_tiny.yaml +0 -40
  878. paddlex/inference/components/__init__.py +0 -18
  879. paddlex/inference/components/base.py +0 -292
  880. paddlex/inference/components/llm/__init__.py +0 -25
  881. paddlex/inference/components/llm/base.py +0 -65
  882. paddlex/inference/components/llm/erniebot.py +0 -212
  883. paddlex/inference/components/paddle_predictor/__init__.py +0 -20
  884. paddlex/inference/components/paddle_predictor/predictor.py +0 -332
  885. paddlex/inference/components/retrieval/__init__.py +0 -15
  886. paddlex/inference/components/retrieval/faiss.py +0 -359
  887. paddlex/inference/components/task_related/__init__.py +0 -33
  888. paddlex/inference/components/task_related/clas.py +0 -124
  889. paddlex/inference/components/task_related/det.py +0 -284
  890. paddlex/inference/components/task_related/instance_seg.py +0 -89
  891. paddlex/inference/components/task_related/seal_det_warp.py +0 -940
  892. paddlex/inference/components/task_related/seg.py +0 -40
  893. paddlex/inference/components/task_related/table_rec.py +0 -191
  894. paddlex/inference/components/task_related/text_det.py +0 -895
  895. paddlex/inference/components/task_related/text_rec.py +0 -353
  896. paddlex/inference/components/task_related/warp.py +0 -43
  897. paddlex/inference/components/transforms/__init__.py +0 -16
  898. paddlex/inference/components/transforms/image/__init__.py +0 -15
  899. paddlex/inference/components/transforms/image/common.py +0 -598
  900. paddlex/inference/components/transforms/image/funcs.py +0 -58
  901. paddlex/inference/components/transforms/read_data.py +0 -67
  902. paddlex/inference/components/transforms/ts/__init__.py +0 -15
  903. paddlex/inference/components/transforms/ts/common.py +0 -393
  904. paddlex/inference/components/transforms/ts/funcs.py +0 -424
  905. paddlex/inference/models/anomaly_detection.py +0 -87
  906. paddlex/inference/models/base/base_predictor.py +0 -76
  907. paddlex/inference/models/base/basic_predictor.py +0 -122
  908. paddlex/inference/models/face_recognition.py +0 -21
  909. paddlex/inference/models/formula_recognition.py +0 -55
  910. paddlex/inference/models/general_recognition.py +0 -99
  911. paddlex/inference/models/image_classification.py +0 -101
  912. paddlex/inference/models/image_unwarping.py +0 -43
  913. paddlex/inference/models/instance_segmentation.py +0 -66
  914. paddlex/inference/models/multilabel_classification.py +0 -33
  915. paddlex/inference/models/object_detection.py +0 -129
  916. paddlex/inference/models/semantic_segmentation.py +0 -86
  917. paddlex/inference/models/table_recognition.py +0 -106
  918. paddlex/inference/models/text_detection.py +0 -105
  919. paddlex/inference/models/text_recognition.py +0 -78
  920. paddlex/inference/models/ts_ad.py +0 -68
  921. paddlex/inference/models/ts_cls.py +0 -57
  922. paddlex/inference/models/ts_fc.py +0 -73
  923. paddlex/inference/pipelines/attribute_recognition.py +0 -92
  924. paddlex/inference/pipelines/face_recognition.py +0 -49
  925. paddlex/inference/pipelines/formula_recognition.py +0 -102
  926. paddlex/inference/pipelines/layout_parsing/layout_parsing.py +0 -362
  927. paddlex/inference/pipelines/ocr.py +0 -80
  928. paddlex/inference/pipelines/pp_shitu_v2.py +0 -152
  929. paddlex/inference/pipelines/ppchatocrv3/__init__.py +0 -15
  930. paddlex/inference/pipelines/ppchatocrv3/ch_prompt.yaml +0 -14
  931. paddlex/inference/pipelines/ppchatocrv3/ppchatocrv3.py +0 -717
  932. paddlex/inference/pipelines/ppchatocrv3/utils.py +0 -168
  933. paddlex/inference/pipelines/seal_recognition.py +0 -152
  934. paddlex/inference/pipelines/serving/__init__.py +0 -17
  935. paddlex/inference/pipelines/serving/_pipeline_apps/__init__.py +0 -205
  936. paddlex/inference/pipelines/serving/_pipeline_apps/anomaly_detection.py +0 -80
  937. paddlex/inference/pipelines/serving/_pipeline_apps/face_recognition.py +0 -317
  938. paddlex/inference/pipelines/serving/_pipeline_apps/formula_recognition.py +0 -119
  939. paddlex/inference/pipelines/serving/_pipeline_apps/image_classification.py +0 -101
  940. paddlex/inference/pipelines/serving/_pipeline_apps/instance_segmentation.py +0 -112
  941. paddlex/inference/pipelines/serving/_pipeline_apps/layout_parsing.py +0 -205
  942. paddlex/inference/pipelines/serving/_pipeline_apps/multi_label_image_classification.py +0 -90
  943. paddlex/inference/pipelines/serving/_pipeline_apps/object_detection.py +0 -90
  944. paddlex/inference/pipelines/serving/_pipeline_apps/ocr.py +0 -98
  945. paddlex/inference/pipelines/serving/_pipeline_apps/pedestrian_attribute_recognition.py +0 -102
  946. paddlex/inference/pipelines/serving/_pipeline_apps/pp_shitu_v2.py +0 -319
  947. paddlex/inference/pipelines/serving/_pipeline_apps/ppchatocrv3.py +0 -445
  948. paddlex/inference/pipelines/serving/_pipeline_apps/seal_recognition.py +0 -110
  949. paddlex/inference/pipelines/serving/_pipeline_apps/semantic_segmentation.py +0 -82
  950. paddlex/inference/pipelines/serving/_pipeline_apps/small_object_detection.py +0 -92
  951. paddlex/inference/pipelines/serving/_pipeline_apps/table_recognition.py +0 -110
  952. paddlex/inference/pipelines/serving/_pipeline_apps/ts_ad.py +0 -68
  953. paddlex/inference/pipelines/serving/_pipeline_apps/ts_cls.py +0 -68
  954. paddlex/inference/pipelines/serving/_pipeline_apps/ts_fc.py +0 -68
  955. paddlex/inference/pipelines/serving/_pipeline_apps/vehicle_attribute_recognition.py +0 -102
  956. paddlex/inference/pipelines/serving/app.py +0 -164
  957. paddlex/inference/pipelines/serving/models.py +0 -30
  958. paddlex/inference/pipelines/serving/server.py +0 -25
  959. paddlex/inference/pipelines/serving/storage.py +0 -161
  960. paddlex/inference/pipelines/serving/utils.py +0 -190
  961. paddlex/inference/pipelines/single_model_pipeline.py +0 -76
  962. paddlex/inference/pipelines/table_recognition/table_recognition.py +0 -193
  963. paddlex/inference/results/__init__.py +0 -31
  964. paddlex/inference/results/attribute_rec.py +0 -89
  965. paddlex/inference/results/base.py +0 -43
  966. paddlex/inference/results/chat_ocr.py +0 -158
  967. paddlex/inference/results/clas.py +0 -133
  968. paddlex/inference/results/det.py +0 -86
  969. paddlex/inference/results/face_rec.py +0 -34
  970. paddlex/inference/results/formula_rec.py +0 -363
  971. paddlex/inference/results/instance_seg.py +0 -152
  972. paddlex/inference/results/ocr.py +0 -157
  973. paddlex/inference/results/seal_rec.py +0 -50
  974. paddlex/inference/results/seg.py +0 -72
  975. paddlex/inference/results/shitu.py +0 -35
  976. paddlex/inference/results/table_rec.py +0 -109
  977. paddlex/inference/results/text_det.py +0 -33
  978. paddlex/inference/results/text_rec.py +0 -66
  979. paddlex/inference/results/ts.py +0 -37
  980. paddlex/inference/results/utils/__init__.py +0 -13
  981. paddlex/inference/results/utils/mixin.py +0 -204
  982. paddlex/inference/results/warp.py +0 -31
  983. paddlex/inference/utils/new_ir_blacklist.py +0 -22
  984. paddlex/inference/utils/process_hook.py +0 -54
  985. paddlex/pipelines/OCR.yaml +0 -8
  986. paddlex/pipelines/PP-ChatOCRv3-doc.yaml +0 -27
  987. paddlex/pipelines/PP-ShiTuV2.yaml +0 -13
  988. paddlex/pipelines/anomaly_detection.yaml +0 -7
  989. paddlex/pipelines/face_recognition.yaml +0 -13
  990. paddlex/pipelines/formula_recognition.yaml +0 -8
  991. paddlex/pipelines/image_classification.yaml +0 -7
  992. paddlex/pipelines/instance_segmentation.yaml +0 -7
  993. paddlex/pipelines/layout_parsing.yaml +0 -14
  994. paddlex/pipelines/multi_label_image_classification.yaml +0 -7
  995. paddlex/pipelines/object_detection.yaml +0 -7
  996. paddlex/pipelines/pedestrian_attribute_recognition.yaml +0 -7
  997. paddlex/pipelines/seal_recognition.yaml +0 -10
  998. paddlex/pipelines/semantic_segmentation.yaml +0 -7
  999. paddlex/pipelines/small_object_detection.yaml +0 -7
  1000. paddlex/pipelines/table_recognition.yaml +0 -12
  1001. paddlex/pipelines/ts_ad.yaml +0 -7
  1002. paddlex/pipelines/ts_cls.yaml +0 -7
  1003. paddlex/pipelines/ts_fc.yaml +0 -7
  1004. paddlex/pipelines/vehicle_attribute_recognition.yaml +0 -7
  1005. paddlex/repo_manager/requirements.txt +0 -18
  1006. paddlex/utils/fonts/PingFang-SC-Regular.ttf +0 -0
  1007. paddlex-3.0.0b2.dist-info/METADATA +0 -760
  1008. paddlex-3.0.0b2.dist-info/RECORD +0 -646
  1009. paddlex-3.0.0b2.dist-info/WHEEL +0 -5
  1010. /paddlex/configs/{doc_text_orientation → modules/doc_text_orientation}/PP-LCNet_x1_0_doc_ori.yaml +0 -0
  1011. /paddlex/configs/{face_detection → modules/face_detection}/BlazeFace-FPN-SSH.yaml +0 -0
  1012. /paddlex/configs/{face_detection → modules/face_detection}/BlazeFace.yaml +0 -0
  1013. /paddlex/configs/{face_detection → modules/face_detection}/PP-YOLOE_plus-S_face.yaml +0 -0
  1014. /paddlex/configs/{face_detection → modules/face_detection}/PicoDet_LCNet_x2_5_face.yaml +0 -0
  1015. /paddlex/configs/{human_detection → modules/human_detection}/PP-YOLOE-L_human.yaml +0 -0
  1016. /paddlex/configs/{human_detection → modules/human_detection}/PP-YOLOE-S_human.yaml +0 -0
  1017. /paddlex/configs/{anomaly_detection → modules/image_anomaly_detection}/STFPM.yaml +0 -0
  1018. /paddlex/configs/{image_classification → modules/image_classification}/ConvNeXt_base_224.yaml +0 -0
  1019. /paddlex/configs/{image_classification → modules/image_classification}/ConvNeXt_base_384.yaml +0 -0
  1020. /paddlex/configs/{image_classification → modules/image_classification}/ConvNeXt_large_224.yaml +0 -0
  1021. /paddlex/configs/{image_classification → modules/image_classification}/ConvNeXt_small.yaml +0 -0
  1022. /paddlex/configs/{image_classification → modules/image_classification}/ConvNeXt_tiny.yaml +0 -0
  1023. /paddlex/configs/{image_classification → modules/image_classification}/FasterNet-L.yaml +0 -0
  1024. /paddlex/configs/{image_classification → modules/image_classification}/FasterNet-M.yaml +0 -0
  1025. /paddlex/configs/{image_classification → modules/image_classification}/FasterNet-S.yaml +0 -0
  1026. /paddlex/configs/{image_classification → modules/image_classification}/FasterNet-T0.yaml +0 -0
  1027. /paddlex/configs/{image_classification → modules/image_classification}/FasterNet-T1.yaml +0 -0
  1028. /paddlex/configs/{image_classification → modules/image_classification}/FasterNet-T2.yaml +0 -0
  1029. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV1_x0_25.yaml +0 -0
  1030. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV1_x0_5.yaml +0 -0
  1031. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV1_x0_75.yaml +0 -0
  1032. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV1_x1_0.yaml +0 -0
  1033. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV2_x0_25.yaml +0 -0
  1034. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV2_x0_5.yaml +0 -0
  1035. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV2_x1_0.yaml +0 -0
  1036. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV2_x1_5.yaml +0 -0
  1037. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV2_x2_0.yaml +0 -0
  1038. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_large_x0_35.yaml +0 -0
  1039. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_large_x0_5.yaml +0 -0
  1040. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_large_x0_75.yaml +0 -0
  1041. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_large_x1_0.yaml +0 -0
  1042. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_large_x1_25.yaml +0 -0
  1043. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_small_x0_35.yaml +0 -0
  1044. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_small_x0_5.yaml +0 -0
  1045. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_small_x0_75.yaml +0 -0
  1046. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_small_x1_0.yaml +0 -0
  1047. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV3_small_x1_25.yaml +0 -0
  1048. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV4_conv_large.yaml +0 -0
  1049. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV4_conv_medium.yaml +0 -0
  1050. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV4_conv_small.yaml +0 -0
  1051. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV4_hybrid_large.yaml +0 -0
  1052. /paddlex/configs/{image_classification → modules/image_classification}/MobileNetV4_hybrid_medium.yaml +0 -0
  1053. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNetV2-B0.yaml +0 -0
  1054. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNetV2-B1.yaml +0 -0
  1055. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNetV2-B2.yaml +0 -0
  1056. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNetV2-B3.yaml +0 -0
  1057. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNetV2-B4.yaml +0 -0
  1058. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNetV2-B5.yaml +0 -0
  1059. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNetV2-B6.yaml +0 -0
  1060. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNet_base.yaml +0 -0
  1061. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNet_small.yaml +0 -0
  1062. /paddlex/configs/{image_classification → modules/image_classification}/PP-HGNet_tiny.yaml +0 -0
  1063. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNetV2_base.yaml +0 -0
  1064. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNetV2_large.yaml +0 -0
  1065. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNetV2_small.yaml +0 -0
  1066. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNet_x0_25.yaml +0 -0
  1067. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNet_x0_35.yaml +0 -0
  1068. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNet_x0_5.yaml +0 -0
  1069. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNet_x0_75.yaml +0 -0
  1070. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNet_x1_0.yaml +0 -0
  1071. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNet_x1_5.yaml +0 -0
  1072. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNet_x2_0.yaml +0 -0
  1073. /paddlex/configs/{image_classification → modules/image_classification}/PP-LCNet_x2_5.yaml +0 -0
  1074. /paddlex/configs/{image_classification → modules/image_classification}/ResNet101.yaml +0 -0
  1075. /paddlex/configs/{image_classification → modules/image_classification}/ResNet101_vd.yaml +0 -0
  1076. /paddlex/configs/{image_classification → modules/image_classification}/ResNet152.yaml +0 -0
  1077. /paddlex/configs/{image_classification → modules/image_classification}/ResNet152_vd.yaml +0 -0
  1078. /paddlex/configs/{image_classification → modules/image_classification}/ResNet18.yaml +0 -0
  1079. /paddlex/configs/{image_classification → modules/image_classification}/ResNet18_vd.yaml +0 -0
  1080. /paddlex/configs/{image_classification → modules/image_classification}/ResNet200_vd.yaml +0 -0
  1081. /paddlex/configs/{image_classification → modules/image_classification}/ResNet34.yaml +0 -0
  1082. /paddlex/configs/{image_classification → modules/image_classification}/ResNet34_vd.yaml +0 -0
  1083. /paddlex/configs/{image_classification → modules/image_classification}/ResNet50.yaml +0 -0
  1084. /paddlex/configs/{image_classification → modules/image_classification}/ResNet50_vd.yaml +0 -0
  1085. /paddlex/configs/{image_classification → modules/image_classification}/StarNet-S1.yaml +0 -0
  1086. /paddlex/configs/{image_classification → modules/image_classification}/StarNet-S2.yaml +0 -0
  1087. /paddlex/configs/{image_classification → modules/image_classification}/StarNet-S3.yaml +0 -0
  1088. /paddlex/configs/{image_classification → modules/image_classification}/StarNet-S4.yaml +0 -0
  1089. /paddlex/configs/{image_classification → modules/image_classification}/SwinTransformer_base_patch4_window12_384.yaml +0 -0
  1090. /paddlex/configs/{image_classification → modules/image_classification}/SwinTransformer_base_patch4_window7_224.yaml +0 -0
  1091. /paddlex/configs/{image_classification → modules/image_classification}/SwinTransformer_large_patch4_window12_384.yaml +0 -0
  1092. /paddlex/configs/{image_classification → modules/image_classification}/SwinTransformer_large_patch4_window7_224.yaml +0 -0
  1093. /paddlex/configs/{image_classification → modules/image_classification}/SwinTransformer_small_patch4_window7_224.yaml +0 -0
  1094. /paddlex/configs/{image_classification → modules/image_classification}/SwinTransformer_tiny_patch4_window7_224.yaml +0 -0
  1095. /paddlex/configs/{general_recognition → modules/image_feature}/PP-ShiTuV2_rec.yaml +0 -0
  1096. /paddlex/configs/{general_recognition → modules/image_feature}/PP-ShiTuV2_rec_CLIP_vit_base.yaml +0 -0
  1097. /paddlex/configs/{general_recognition → modules/image_feature}/PP-ShiTuV2_rec_CLIP_vit_large.yaml +0 -0
  1098. /paddlex/configs/{multilabel_classification → modules/image_multilabel_classification}/CLIP_vit_base_patch16_448_ML.yaml +0 -0
  1099. /paddlex/configs/{multilabel_classification → modules/image_multilabel_classification}/PP-HGNetV2-B0_ML.yaml +0 -0
  1100. /paddlex/configs/{multilabel_classification → modules/image_multilabel_classification}/PP-HGNetV2-B4_ML.yaml +0 -0
  1101. /paddlex/configs/{multilabel_classification → modules/image_multilabel_classification}/PP-HGNetV2-B6_ML.yaml +0 -0
  1102. /paddlex/configs/{multilabel_classification → modules/image_multilabel_classification}/PP-LCNet_x1_0_ML.yaml +0 -0
  1103. /paddlex/configs/{multilabel_classification → modules/image_multilabel_classification}/ResNet50_ML.yaml +0 -0
  1104. /paddlex/configs/{image_unwarping → modules/image_unwarping}/UVDoc.yaml +0 -0
  1105. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/Cascade-MaskRCNN-ResNet50-FPN.yaml +0 -0
  1106. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/Cascade-MaskRCNN-ResNet50-vd-SSLDv2-FPN.yaml +0 -0
  1107. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/Mask-RT-DETR-H.yaml +0 -0
  1108. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/Mask-RT-DETR-L.yaml +0 -0
  1109. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/Mask-RT-DETR-M.yaml +0 -0
  1110. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/Mask-RT-DETR-S.yaml +0 -0
  1111. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/Mask-RT-DETR-X.yaml +0 -0
  1112. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/MaskRCNN-ResNeXt101-vd-FPN.yaml +0 -0
  1113. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/MaskRCNN-ResNet101-FPN.yaml +0 -0
  1114. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/MaskRCNN-ResNet101-vd-FPN.yaml +0 -0
  1115. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/MaskRCNN-ResNet50-FPN.yaml +0 -0
  1116. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/MaskRCNN-ResNet50-vd-FPN.yaml +0 -0
  1117. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/MaskRCNN-ResNet50.yaml +0 -0
  1118. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/PP-YOLOE_seg-S.yaml +0 -0
  1119. /paddlex/configs/{instance_segmentation → modules/instance_segmentation}/SOLOv2.yaml +0 -0
  1120. /paddlex/configs/{structure_analysis → modules/layout_detection}/PicoDet-L_layout_17cls.yaml +0 -0
  1121. /paddlex/configs/{structure_analysis → modules/layout_detection}/PicoDet-L_layout_3cls.yaml +0 -0
  1122. /paddlex/configs/{structure_analysis → modules/layout_detection}/PicoDet-S_layout_17cls.yaml +0 -0
  1123. /paddlex/configs/{structure_analysis → modules/layout_detection}/PicoDet-S_layout_3cls.yaml +0 -0
  1124. /paddlex/configs/{structure_analysis → modules/layout_detection}/PicoDet_layout_1x.yaml +0 -0
  1125. /paddlex/configs/{structure_analysis → modules/layout_detection}/PicoDet_layout_1x_table.yaml +0 -0
  1126. /paddlex/configs/{structure_analysis → modules/layout_detection}/RT-DETR-H_layout_17cls.yaml +0 -0
  1127. /paddlex/configs/{structure_analysis → modules/layout_detection}/RT-DETR-H_layout_3cls.yaml +0 -0
  1128. /paddlex/configs/{mainbody_detection → modules/mainbody_detection}/PP-ShiTuV2_det.yaml +0 -0
  1129. /paddlex/configs/{object_detection → modules/object_detection}/Cascade-FasterRCNN-ResNet50-FPN.yaml +0 -0
  1130. /paddlex/configs/{object_detection → modules/object_detection}/Cascade-FasterRCNN-ResNet50-vd-SSLDv2-FPN.yaml +0 -0
  1131. /paddlex/configs/{object_detection → modules/object_detection}/CenterNet-DLA-34.yaml +0 -0
  1132. /paddlex/configs/{object_detection → modules/object_detection}/CenterNet-ResNet50.yaml +0 -0
  1133. /paddlex/configs/{object_detection → modules/object_detection}/DETR-R50.yaml +0 -0
  1134. /paddlex/configs/{object_detection → modules/object_detection}/FCOS-ResNet50.yaml +0 -0
  1135. /paddlex/configs/{object_detection → modules/object_detection}/FasterRCNN-ResNeXt101-vd-FPN.yaml +0 -0
  1136. /paddlex/configs/{object_detection → modules/object_detection}/FasterRCNN-ResNet101-FPN.yaml +0 -0
  1137. /paddlex/configs/{object_detection → modules/object_detection}/FasterRCNN-ResNet101.yaml +0 -0
  1138. /paddlex/configs/{object_detection → modules/object_detection}/FasterRCNN-ResNet34-FPN.yaml +0 -0
  1139. /paddlex/configs/{object_detection → modules/object_detection}/FasterRCNN-ResNet50-FPN.yaml +0 -0
  1140. /paddlex/configs/{object_detection → modules/object_detection}/FasterRCNN-ResNet50-vd-FPN.yaml +0 -0
  1141. /paddlex/configs/{object_detection → modules/object_detection}/FasterRCNN-ResNet50-vd-SSLDv2-FPN.yaml +0 -0
  1142. /paddlex/configs/{object_detection → modules/object_detection}/FasterRCNN-ResNet50.yaml +0 -0
  1143. /paddlex/configs/{object_detection → modules/object_detection}/FasterRCNN-Swin-Tiny-FPN.yaml +0 -0
  1144. /paddlex/configs/{object_detection → modules/object_detection}/PP-YOLOE_plus-L.yaml +0 -0
  1145. /paddlex/configs/{object_detection → modules/object_detection}/PP-YOLOE_plus-M.yaml +0 -0
  1146. /paddlex/configs/{object_detection → modules/object_detection}/PP-YOLOE_plus-S.yaml +0 -0
  1147. /paddlex/configs/{object_detection → modules/object_detection}/PP-YOLOE_plus-X.yaml +0 -0
  1148. /paddlex/configs/{object_detection → modules/object_detection}/PicoDet-L.yaml +0 -0
  1149. /paddlex/configs/{object_detection → modules/object_detection}/PicoDet-M.yaml +0 -0
  1150. /paddlex/configs/{object_detection → modules/object_detection}/PicoDet-S.yaml +0 -0
  1151. /paddlex/configs/{object_detection → modules/object_detection}/PicoDet-XS.yaml +0 -0
  1152. /paddlex/configs/{object_detection → modules/object_detection}/RT-DETR-H.yaml +0 -0
  1153. /paddlex/configs/{object_detection → modules/object_detection}/RT-DETR-L.yaml +0 -0
  1154. /paddlex/configs/{object_detection → modules/object_detection}/RT-DETR-R18.yaml +0 -0
  1155. /paddlex/configs/{object_detection → modules/object_detection}/RT-DETR-R50.yaml +0 -0
  1156. /paddlex/configs/{object_detection → modules/object_detection}/RT-DETR-X.yaml +0 -0
  1157. /paddlex/configs/{object_detection → modules/object_detection}/YOLOX-L.yaml +0 -0
  1158. /paddlex/configs/{object_detection → modules/object_detection}/YOLOX-M.yaml +0 -0
  1159. /paddlex/configs/{object_detection → modules/object_detection}/YOLOX-N.yaml +0 -0
  1160. /paddlex/configs/{object_detection → modules/object_detection}/YOLOX-S.yaml +0 -0
  1161. /paddlex/configs/{object_detection → modules/object_detection}/YOLOX-T.yaml +0 -0
  1162. /paddlex/configs/{object_detection → modules/object_detection}/YOLOv3-DarkNet53.yaml +0 -0
  1163. /paddlex/configs/{object_detection → modules/object_detection}/YOLOv3-MobileNetV3.yaml +0 -0
  1164. /paddlex/configs/{object_detection → modules/object_detection}/YOLOv3-ResNet50_vd_DCN.yaml +0 -0
  1165. /paddlex/configs/{pedestrian_attribute → modules/pedestrian_attribute_recognition}/PP-LCNet_x1_0_pedestrian_attribute.yaml +0 -0
  1166. /paddlex/configs/{text_detection_seal → modules/seal_text_detection}/PP-OCRv4_mobile_seal_det.yaml +0 -0
  1167. /paddlex/configs/{text_detection_seal → modules/seal_text_detection}/PP-OCRv4_server_seal_det.yaml +0 -0
  1168. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/Deeplabv3-R101.yaml +0 -0
  1169. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/Deeplabv3-R50.yaml +0 -0
  1170. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/Deeplabv3_Plus-R101.yaml +0 -0
  1171. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/Deeplabv3_Plus-R50.yaml +0 -0
  1172. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/OCRNet_HRNet-W18.yaml +0 -0
  1173. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/OCRNet_HRNet-W48.yaml +0 -0
  1174. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/PP-LiteSeg-B.yaml +0 -0
  1175. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/PP-LiteSeg-T.yaml +0 -0
  1176. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/SegFormer-B0.yaml +0 -0
  1177. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/SegFormer-B1.yaml +0 -0
  1178. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/SegFormer-B2.yaml +0 -0
  1179. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/SegFormer-B3.yaml +0 -0
  1180. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/SegFormer-B4.yaml +0 -0
  1181. /paddlex/configs/{semantic_segmentation → modules/semantic_segmentation}/SegFormer-B5.yaml +0 -0
  1182. /paddlex/configs/{small_object_detection → modules/small_object_detection}/PP-YOLOE_plus_SOD-L.yaml +0 -0
  1183. /paddlex/configs/{small_object_detection → modules/small_object_detection}/PP-YOLOE_plus_SOD-S.yaml +0 -0
  1184. /paddlex/configs/{small_object_detection → modules/small_object_detection}/PP-YOLOE_plus_SOD-largesize-L.yaml +0 -0
  1185. /paddlex/configs/{table_recognition → modules/table_structure_recognition}/SLANet.yaml +0 -0
  1186. /paddlex/configs/{table_recognition → modules/table_structure_recognition}/SLANet_plus.yaml +0 -0
  1187. /paddlex/configs/{text_detection → modules/text_detection}/PP-OCRv4_mobile_det.yaml +0 -0
  1188. /paddlex/configs/{text_detection → modules/text_detection}/PP-OCRv4_server_det.yaml +0 -0
  1189. /paddlex/configs/{text_recognition → modules/text_recognition}/PP-OCRv4_mobile_rec.yaml +0 -0
  1190. /paddlex/configs/{text_recognition → modules/text_recognition}/PP-OCRv4_server_rec.yaml +0 -0
  1191. /paddlex/configs/{text_recognition → modules/text_recognition}/ch_RepSVTR_rec.yaml +0 -0
  1192. /paddlex/configs/{text_recognition → modules/text_recognition}/ch_SVTRv2_rec.yaml +0 -0
  1193. /paddlex/configs/{ts_anomaly_detection → modules/ts_anomaly_detection}/AutoEncoder_ad.yaml +0 -0
  1194. /paddlex/configs/{ts_anomaly_detection → modules/ts_anomaly_detection}/DLinear_ad.yaml +0 -0
  1195. /paddlex/configs/{ts_anomaly_detection → modules/ts_anomaly_detection}/Nonstationary_ad.yaml +0 -0
  1196. /paddlex/configs/{ts_anomaly_detection → modules/ts_anomaly_detection}/PatchTST_ad.yaml +0 -0
  1197. /paddlex/configs/{ts_anomaly_detection → modules/ts_anomaly_detection}/TimesNet_ad.yaml +0 -0
  1198. /paddlex/configs/{ts_classification → modules/ts_classification}/TimesNet_cls.yaml +0 -0
  1199. /paddlex/configs/{ts_forecast → modules/ts_forecast}/DLinear.yaml +0 -0
  1200. /paddlex/configs/{ts_forecast → modules/ts_forecast}/NLinear.yaml +0 -0
  1201. /paddlex/configs/{ts_forecast → modules/ts_forecast}/Nonstationary.yaml +0 -0
  1202. /paddlex/configs/{ts_forecast → modules/ts_forecast}/PatchTST.yaml +0 -0
  1203. /paddlex/configs/{ts_forecast → modules/ts_forecast}/RLinear.yaml +0 -0
  1204. /paddlex/configs/{ts_forecast → modules/ts_forecast}/TiDE.yaml +0 -0
  1205. /paddlex/configs/{ts_forecast → modules/ts_forecast}/TimesNet.yaml +0 -0
  1206. /paddlex/configs/{vehicle_attribute → modules/vehicle_attribute_recognition}/PP-LCNet_x1_0_vehicle_attribute.yaml +0 -0
  1207. /paddlex/configs/{vehicle_detection → modules/vehicle_detection}/PP-YOLOE-L_vehicle.yaml +0 -0
  1208. /paddlex/configs/{vehicle_detection → modules/vehicle_detection}/PP-YOLOE-S_vehicle.yaml +0 -0
  1209. {paddlex-3.0.0b2.dist-info → paddlex-3.0.0rc1.dist-info}/entry_points.txt +0 -0
  1210. {paddlex-3.0.0b2.dist-info → paddlex-3.0.0rc1.dist-info/licenses}/LICENSE +0 -0
  1211. {paddlex-3.0.0b2.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,,