paddlex 3.0.2__py3-none-any.whl → 3.1.0__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 (134) hide show
  1. paddlex/.version +1 -1
  2. paddlex/configs/modules/text_recognition/eslav_PP-OCRv5_mobile_rec.yaml +39 -0
  3. paddlex/configs/modules/text_recognition/korean_PP-OCRv5_mobile_rec.yaml +39 -0
  4. paddlex/configs/modules/text_recognition/latin_PP-OCRv5_mobile_rec.yaml +39 -0
  5. paddlex/configs/pipelines/PP-DocTranslation.yaml +261 -0
  6. paddlex/inference/common/batch_sampler/__init__.py +1 -0
  7. paddlex/inference/common/batch_sampler/markdown_batch_sampler.py +116 -0
  8. paddlex/inference/common/result/base_cv_result.py +2 -3
  9. paddlex/inference/common/result/mixin.py +3 -1
  10. paddlex/inference/models/base/predictor/base_predictor.py +2 -0
  11. paddlex/inference/models/common/static_infer.py +2 -0
  12. paddlex/inference/models/common/vlm/generation/utils.py +2 -2
  13. paddlex/inference/models/formula_recognition/result.py +2 -2
  14. paddlex/inference/models/image_classification/result.py +3 -5
  15. paddlex/inference/models/image_multilabel_classification/result.py +2 -2
  16. paddlex/inference/models/object_detection/result.py +2 -2
  17. paddlex/inference/models/open_vocabulary_detection/processors/groundingdino_processors.py +3 -0
  18. paddlex/inference/models/text_recognition/predictor.py +51 -1
  19. paddlex/inference/models/text_recognition/result.py +5 -2
  20. paddlex/inference/models/video_classification/result.py +3 -3
  21. paddlex/inference/models/video_detection/result.py +2 -4
  22. paddlex/inference/pipelines/__init__.py +1 -0
  23. paddlex/inference/pipelines/attribute_recognition/result.py +2 -2
  24. paddlex/inference/pipelines/components/prompt_engineering/__init__.py +1 -0
  25. paddlex/inference/pipelines/components/prompt_engineering/generate_translate_prompt.py +179 -0
  26. paddlex/inference/pipelines/doc_preprocessor/result.py +2 -2
  27. paddlex/inference/pipelines/formula_recognition/result.py +2 -2
  28. paddlex/inference/pipelines/layout_parsing/pipeline_v2.py +2 -0
  29. paddlex/inference/pipelines/layout_parsing/result_v2.py +11 -4
  30. paddlex/inference/pipelines/ocr/pipeline.py +2 -0
  31. paddlex/inference/pipelines/ocr/result.py +11 -7
  32. paddlex/inference/pipelines/pp_doctranslation/__init__.py +15 -0
  33. paddlex/inference/pipelines/pp_doctranslation/pipeline.py +523 -0
  34. paddlex/inference/pipelines/pp_doctranslation/result.py +39 -0
  35. paddlex/inference/pipelines/pp_doctranslation/utils.py +260 -0
  36. paddlex/inference/pipelines/pp_shitu_v2/result.py +2 -2
  37. paddlex/inference/serving/basic_serving/_app.py +1 -0
  38. paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py +4 -2
  39. paddlex/inference/serving/basic_serving/_pipeline_apps/doc_preprocessor.py +5 -1
  40. paddlex/inference/serving/basic_serving/_pipeline_apps/face_recognition.py +4 -2
  41. paddlex/inference/serving/basic_serving/_pipeline_apps/formula_recognition.py +4 -2
  42. paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.py +4 -2
  43. paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py +4 -2
  44. paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py +4 -2
  45. paddlex/inference/serving/basic_serving/_pipeline_apps/instance_segmentation.py +4 -2
  46. paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py +4 -2
  47. paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py +4 -2
  48. paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py +4 -2
  49. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py +4 -2
  50. paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py +4 -2
  51. paddlex/inference/serving/basic_serving/_pipeline_apps/pedestrian_attribute_recognition.py +4 -2
  52. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py +14 -24
  53. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py +16 -26
  54. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_doctranslation.py +203 -0
  55. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_shituv2.py +4 -2
  56. paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py +4 -2
  57. paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py +4 -2
  58. paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py +4 -2
  59. paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py +4 -2
  60. paddlex/inference/serving/basic_serving/_pipeline_apps/small_object_detection.py +4 -2
  61. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py +4 -2
  62. paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py +4 -2
  63. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py +4 -2
  64. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py +4 -2
  65. paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py +4 -2
  66. paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recognition.py +4 -2
  67. paddlex/inference/serving/infra/utils.py +22 -17
  68. paddlex/inference/serving/schemas/anomaly_detection.py +1 -0
  69. paddlex/inference/serving/schemas/doc_preprocessor.py +1 -0
  70. paddlex/inference/serving/schemas/face_recognition.py +1 -0
  71. paddlex/inference/serving/schemas/formula_recognition.py +1 -0
  72. paddlex/inference/serving/schemas/human_keypoint_detection.py +1 -0
  73. paddlex/inference/serving/schemas/image_classification.py +1 -0
  74. paddlex/inference/serving/schemas/image_multilabel_classification.py +1 -0
  75. paddlex/inference/serving/schemas/instance_segmentation.py +1 -0
  76. paddlex/inference/serving/schemas/layout_parsing.py +1 -0
  77. paddlex/inference/serving/schemas/object_detection.py +1 -0
  78. paddlex/inference/serving/schemas/ocr.py +1 -0
  79. paddlex/inference/serving/schemas/open_vocabulary_detection.py +1 -0
  80. paddlex/inference/serving/schemas/open_vocabulary_segmentation.py +1 -0
  81. paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py +1 -0
  82. paddlex/inference/serving/schemas/pp_chatocrv3_doc.py +5 -4
  83. paddlex/inference/serving/schemas/pp_chatocrv4_doc.py +6 -5
  84. paddlex/inference/serving/schemas/pp_doctranslation.py +115 -0
  85. paddlex/inference/serving/schemas/pp_shituv2.py +1 -0
  86. paddlex/inference/serving/schemas/pp_structurev3.py +2 -9
  87. paddlex/inference/serving/schemas/rotated_object_detection.py +1 -0
  88. paddlex/inference/serving/schemas/seal_recognition.py +1 -0
  89. paddlex/inference/serving/schemas/semantic_segmentation.py +1 -0
  90. paddlex/inference/serving/schemas/shared/ocr.py +8 -1
  91. paddlex/inference/serving/schemas/small_object_detection.py +1 -0
  92. paddlex/inference/serving/schemas/table_recognition.py +1 -0
  93. paddlex/inference/serving/schemas/table_recognition_v2.py +1 -0
  94. paddlex/inference/serving/schemas/ts_anomaly_detection.py +1 -0
  95. paddlex/inference/serving/schemas/ts_classification.py +1 -0
  96. paddlex/inference/serving/schemas/ts_forecast.py +1 -0
  97. paddlex/inference/serving/schemas/vehicle_attribute_recognition.py +1 -0
  98. paddlex/inference/utils/hpi.py +42 -14
  99. paddlex/inference/utils/hpi_model_info_collection.json +0 -2
  100. paddlex/inference/utils/io/__init__.py +1 -0
  101. paddlex/inference/utils/io/readers.py +46 -0
  102. paddlex/inference/utils/io/writers.py +2 -0
  103. paddlex/inference/utils/official_models.py +7 -0
  104. paddlex/inference/utils/pp_option.py +34 -18
  105. paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py +2 -2
  106. paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py +3 -3
  107. paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  108. paddlex/modules/general_recognition/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  109. paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py +3 -3
  110. paddlex/modules/image_classification/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  111. paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualizer.py +3 -3
  112. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  113. paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py +2 -2
  114. paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  115. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  116. paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/visualizer.py +2 -2
  117. paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  118. paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py +2 -2
  119. paddlex/modules/text_recognition/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  120. paddlex/modules/text_recognition/model_list.py +3 -0
  121. paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  122. paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  123. paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py +2 -2
  124. paddlex/repo_apis/PaddleOCR_api/text_rec/register.py +27 -0
  125. paddlex/repo_manager/meta.py +3 -3
  126. paddlex/utils/device.py +4 -1
  127. paddlex/utils/download.py +10 -7
  128. paddlex/utils/{fonts/__init__.py → fonts.py} +45 -26
  129. {paddlex-3.0.2.dist-info → paddlex-3.1.0.dist-info}/METADATA +25 -1
  130. {paddlex-3.0.2.dist-info → paddlex-3.1.0.dist-info}/RECORD +134 -122
  131. {paddlex-3.0.2.dist-info → paddlex-3.1.0.dist-info}/LICENSE +0 -0
  132. {paddlex-3.0.2.dist-info → paddlex-3.1.0.dist-info}/WHEEL +0 -0
  133. {paddlex-3.0.2.dist-info → paddlex-3.1.0.dist-info}/entry_points.txt +0 -0
  134. {paddlex-3.0.2.dist-info → paddlex-3.1.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- paddlex/.version,sha256=P8C_jX3b_nfrQHTAsD1lZ9eHSiXqQUSq3qZob81fb-s,6
1
+ paddlex/.version,sha256=svRNO24p-LG3PqRzXwBq_8TRmOH9nH1Q5zYVmx72NsY,6
2
2
  paddlex/__init__.py,sha256=gfGHiM_wthbQaWWyZ_Xwb7VwA4YxhJa_E7vsxbD7tVc,1703
3
3
  paddlex/__main__.py,sha256=9HXLNHbXfczSIc0uYKqD1cHpsjs86xLmiVoy0cB_aiI,1290
4
4
  paddlex/constants.py,sha256=s7As1cvezO0hsuKzkRo1XX5gTIc6Srx0mZqpR6v4H04,680
@@ -254,10 +254,13 @@ paddlex/configs/modules/text_recognition/cyrillic_PP-OCRv3_mobile_rec.yaml,sha25
254
254
  paddlex/configs/modules/text_recognition/devanagari_PP-OCRv3_mobile_rec.yaml,sha256=VqvQuijRHV7_KwzIMDndau0zSjABLL13gYrkXjXt6B0,1130
255
255
  paddlex/configs/modules/text_recognition/en_PP-OCRv3_mobile_rec.yaml,sha256=GKnLFZymAJvJjqkxDgRQxx5GkXicg6AYKTGbXpyZfec,1098
256
256
  paddlex/configs/modules/text_recognition/en_PP-OCRv4_mobile_rec.yaml,sha256=j6vryUgV3n7yVtRoFeLk_iOdBSfRNMa1renR3jMADPw,1098
257
+ paddlex/configs/modules/text_recognition/eslav_PP-OCRv5_mobile_rec.yaml,sha256=qe2JY893mzcSqgbx46_kbEwGTNv0Ummj8EoDhxsObvo,1104
257
258
  paddlex/configs/modules/text_recognition/japan_PP-OCRv3_mobile_rec.yaml,sha256=AfnM7QJq0bwJigFqvG7jQBeeNPYvtQ8aGWL59D4IZgE,1110
258
259
  paddlex/configs/modules/text_recognition/ka_PP-OCRv3_mobile_rec.yaml,sha256=edFWnY1Ie_SR8uA1igDm5hdzlC8pdI_GYBg-H4a3IZ8,1098
259
260
  paddlex/configs/modules/text_recognition/korean_PP-OCRv3_mobile_rec.yaml,sha256=Hfh9U3cnCNgNLfvo5CEe2aZ88iRJkzE4DvBMFCU2XlQ,1114
261
+ paddlex/configs/modules/text_recognition/korean_PP-OCRv5_mobile_rec.yaml,sha256=MxCSRAJI4lnwwmb-qLA4lgW3QNE-y6NZf1MEu3VFCi4,1114
260
262
  paddlex/configs/modules/text_recognition/latin_PP-OCRv3_mobile_rec.yaml,sha256=0w226g-Wyk1-L47-fqAeyZ0eQBhTq-oxxzSTpQUJzSg,1110
263
+ paddlex/configs/modules/text_recognition/latin_PP-OCRv5_mobile_rec.yaml,sha256=zO8OZjY_29XdEIAeC6VE5Idrn2sK6sM0iqYBYGoG-BI,1110
261
264
  paddlex/configs/modules/text_recognition/ta_PP-OCRv3_mobile_rec.yaml,sha256=iuwr3F6JZjOHStrdmKpPHYgEjw2C-WNn0kHUwCaummc,1098
262
265
  paddlex/configs/modules/text_recognition/te_PP-OCRv3_mobile_rec.yaml,sha256=RZgNy4rbU2MR_SDZan3jPwYlu453A2l7tgydPk7BbsA,1098
263
266
  paddlex/configs/modules/textline_orientation/PP-LCNet_x0_25_textline_ori.yaml,sha256=PktRWgZv5HeJQ2Hkf6L7oSazs5JrGOQ3zWW2hjfR3vE,1142
@@ -286,6 +289,7 @@ paddlex/configs/pipelines/3d_bev_detection.yaml,sha256=T-BPJTF_myAhzQLxcfhDFSpnG
286
289
  paddlex/configs/pipelines/OCR.yaml,sha256=BJW935GPmkV0U0XVvYWKexAqME9aCKsJH5ktjiRU398,1038
287
290
  paddlex/configs/pipelines/PP-ChatOCRv3-doc.yaml,sha256=HnDZbUDfLMaSyYiBaA7Psy8_xv2uFtOnNuXzhcv0Dzs,5262
288
291
  paddlex/configs/pipelines/PP-ChatOCRv4-doc.yaml,sha256=6kuRT4L6CSSOnucjbR4aOKNHDMAwrqNtADfkA0QkODk,10842
292
+ paddlex/configs/pipelines/PP-DocTranslation.yaml,sha256=5JwUPVP8DI4_MaKXI9jL3t96FaMC8wlkOvDaZWO4WHs,9083
289
293
  paddlex/configs/pipelines/PP-ShiTuV2.yaml,sha256=01z8buwMDHix9gfiGFFPnjd3Ko_IzfDJ2zz3bi7Gn2E,338
290
294
  paddlex/configs/pipelines/PP-StructureV3.yaml,sha256=NfX8Rh5BNSxKqNGrtWr46MDGIbbKU0LgIqbbPIhaLtk,6188
291
295
  paddlex/configs/pipelines/anomaly_detection.yaml,sha256=JBDy9Al4Jtpx-FcOk2jzrjuu3XE0_r-fqF1I6pJq28U,164
@@ -317,12 +321,13 @@ paddlex/configs/pipelines/video_classification.yaml,sha256=OQEmOPi0CyEHmubj6UiOP
317
321
  paddlex/configs/pipelines/video_detection.yaml,sha256=YnBJ507XcKQtEzVDuy_QhCjt4iytQB8O0gh_NJ6NxE8,200
318
322
  paddlex/inference/__init__.py,sha256=UfPHnv9zOQROhT7HFy_QLSmV3I7kLha4EhB7RntI-QA,820
319
323
  paddlex/inference/common/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
320
- paddlex/inference/common/batch_sampler/__init__.py,sha256=LdTd0bNRnmj-gkJTjRvVw_pFaK2S7pzMNFo5BZiTM2g,963
324
+ paddlex/inference/common/batch_sampler/__init__.py,sha256=iPsByGj_0b9booh1_kY1RgcQckM99P5qyfp3AFh8Eqc,1020
321
325
  paddlex/inference/common/batch_sampler/audio_batch_sampler.py,sha256=5Z6mQ-ikBSwZVJzW5uA7kZVsO9gDLya8rog5vdZskdw,2611
322
326
  paddlex/inference/common/batch_sampler/base_batch_sampler.py,sha256=F_nT55mXlI5NcSwyOZ_Ze_6S-BfDoY6uDwdPBPSTx1M,2744
323
327
  paddlex/inference/common/batch_sampler/det_3d_batch_sampler.py,sha256=gUnTqNpRHYqqVCjmEbB4BHSU_f3rBwxF_jSxCtjXn-4,5353
324
328
  paddlex/inference/common/batch_sampler/doc_vlm_batch_sampler.py,sha256=y8wnsIPln42q08Lu_daZuXIbk_qh3Bdg0qaaZLELdqM,2928
325
329
  paddlex/inference/common/batch_sampler/image_batch_sampler.py,sha256=7n1aqIYBLUPxb5YlvYIC2FFn5J7-L4YcHKpBtal8hvg,4350
330
+ paddlex/inference/common/batch_sampler/markdown_batch_sampler.py,sha256=_G3PIVYRNXAvXkG5xHwM1D0mr459CG6mZ-7ycLid3Pk,4294
326
331
  paddlex/inference/common/batch_sampler/ts_batch_sampler.py,sha256=beYmo3uN0iI2v4yyFx0KYyXiMgcVNXxVc2MoweSg5mw,3863
327
332
  paddlex/inference/common/batch_sampler/video_batch_sampler.py,sha256=CBApNWjdyLqGr-0UG2GW3GHW5IPZKZTiqUh4H6jTgRY,2740
328
333
  paddlex/inference/common/reader/__init__.py,sha256=8k1-TUD_1LT47RRykhMQg_AszWjjOrtA4ozTpFIaJhI,792
@@ -332,11 +337,11 @@ paddlex/inference/common/reader/image_reader.py,sha256=EuuN-RAxRBnc7tmFKY4SjISDJ
332
337
  paddlex/inference/common/reader/ts_reader.py,sha256=NgPqaSgWx81zeS8JF-yDRg-yF_KcgZO8FZj4yFI6sjc,1589
333
338
  paddlex/inference/common/reader/video_reader.py,sha256=ClKpdf_-mPZVezZMKVzF7Uoua9VMaNZBJ0tu9GNOoGY,1433
334
339
  paddlex/inference/common/result/__init__.py,sha256=Kaosq38ysFyenrDmiPlDoFlxYXJVGgca4UaORt9_WYc,937
335
- paddlex/inference/common/result/base_cv_result.py,sha256=pK0wJcBGmjARC-FpimcxoRSi3wSCetdB12mtTw9EmCE,1321
340
+ paddlex/inference/common/result/base_cv_result.py,sha256=iRW6Cz7Wm3kBNqBNHJderRlyZYDWX6bkqrfj-yY60tg,1301
336
341
  paddlex/inference/common/result/base_result.py,sha256=MQajOAGk_HF_UNExMxzRkaXbEUy49bftYIL-zWQvkl0,2432
337
342
  paddlex/inference/common/result/base_ts_result.py,sha256=pb7ld9OCb61LQYy02wvYppZgFMzspasy3DGaUBQmmIg,1411
338
343
  paddlex/inference/common/result/base_video_result.py,sha256=yT36itBPBc-6KRAwImZjR4TmY0_T0Cic25uZW-1oVWY,1177
339
- paddlex/inference/common/result/mixin.py,sha256=dgUGVano672o3kkt8EuJGmyOEoA8mLC5WHD3OFvXN-I,26615
344
+ paddlex/inference/common/result/mixin.py,sha256=rQjhVd-B_ycoez9rNwO7ISVwuUfqXJr5yKoS1QeyE5I,26668
340
345
  paddlex/inference/models/__init__.py,sha256=FszFkx_E5qXfdOAE3VRq05nbieWSmlBEHXzdUo2jmU8,3271
341
346
  paddlex/inference/models/anomaly_detection/__init__.py,sha256=5sWWsKp9B07ntVA3l_1iMdypwwSlWcvko6W89lLEdXU,646
342
347
  paddlex/inference/models/anomaly_detection/predictor.py,sha256=rKfu3H_Kpq1K7oy5-bzO3Ic4DAmzjALs2vPl-m3z4gQ,4823
@@ -344,9 +349,9 @@ paddlex/inference/models/anomaly_detection/processors.py,sha256=OhPoGXkF5Wr1AFSe
344
349
  paddlex/inference/models/anomaly_detection/result.py,sha256=vEqBIw9cOgBZzBuoniao4AztdSkiAuqMJEGHQevMz4M,2368
345
350
  paddlex/inference/models/base/__init__.py,sha256=XmfOH2Zt6T28bilPm9aHPy88zlthnpz8zufxQuHU2nI,647
346
351
  paddlex/inference/models/base/predictor/__init__.py,sha256=euD01o3s0Zg9VlzA5spCak2TElkU4RFiSUxCEiatH8Y,652
347
- paddlex/inference/models/base/predictor/base_predictor.py,sha256=GZXWaOjLk0AAp7PKdbeTbNBGi0oTjqES2lkVLvJEeqg,14728
352
+ paddlex/inference/models/base/predictor/base_predictor.py,sha256=DWfmZDFgZkEUbdXBujFHQxL5bRgFFLkMvH3JxJHSdzc,14880
348
353
  paddlex/inference/models/common/__init__.py,sha256=3lMwinLaX3HHXCFUcppc8uV_5P-XGv0Nf5aWvZYcbqw,926
349
- paddlex/inference/models/common/static_infer.py,sha256=Kas7xfx_rKEqWKMPHGMJRJOd-yddrYsjl--CmlMAX9k,33945
354
+ paddlex/inference/models/common/static_infer.py,sha256=JwCnWYNqjWC3zc27E9KwAm5ZvlfITASY5Zpm-P-MFk8,34019
350
355
  paddlex/inference/models/common/tokenizer/__init__.py,sha256=WyNKDrT6xhWwHmgVVaWYig_TV2xOQIVUHdsmkKjLjs4,940
351
356
  paddlex/inference/models/common/tokenizer/bert_tokenizer.py,sha256=xPEENMCnZq-0ofMA5Ylxu9qcFybIc6fEOXqEue3ogDU,25274
352
357
  paddlex/inference/models/common/tokenizer/clip_tokenizer.py,sha256=g9YU0PmxppCoIi9mub_3AQDBt8kzrBblKrDig5UDTZE,22426
@@ -376,7 +381,7 @@ paddlex/inference/models/common/vlm/generation/__init__.py,sha256=ZutyBjZTAWL6cn
376
381
  paddlex/inference/models/common/vlm/generation/configuration_utils.py,sha256=kp64AD52WxH8vO20R_yWtoYCLSq4LALQ4heWiNviJjY,24893
377
382
  paddlex/inference/models/common/vlm/generation/logits_process.py,sha256=SUZHsN_0Rzkv5-vPlSAzbFPDcxKUCKvTSq7L74Uyfpk,29575
378
383
  paddlex/inference/models/common/vlm/generation/stopping_criteria.py,sha256=vWHy-HoYjFHFyaT-WmjT7pVzcOoyew3nAJ6hnJrAwTk,3720
379
- paddlex/inference/models/common/vlm/generation/utils.py,sha256=qzD_cwN-xN3YbFqv-XuMcCr6sXDNy4EhaBIJs8gb1o8,85130
384
+ paddlex/inference/models/common/vlm/generation/utils.py,sha256=mbXZCMLeABbwn6OhPisFHFCpMsFHKrOgHOWyQ9xH0dE,85136
380
385
  paddlex/inference/models/common/vlm/transformers/__init__.py,sha256=PL-6UTfCxiiBCzeIMV3N9pESIgMICrmUDNab4LJ9Qx8,701
381
386
  paddlex/inference/models/common/vlm/transformers/configuration_utils.py,sha256=w8X_6IrDb_aJ-AKoInKOnOm3_HZauI_yd6pevRq4rIY,45699
382
387
  paddlex/inference/models/common/vlm/transformers/conversion_utils.py,sha256=T3Kvqo9pUqIipAKQaCLYovz5dXiNcgomNP2Zm-fZQiw,14425
@@ -401,11 +406,11 @@ paddlex/inference/models/face_feature/predictor.py,sha256=mRd2VoWFAH7wVT3-z8JBsd
401
406
  paddlex/inference/models/formula_recognition/__init__.py,sha256=JxjoRLv_6dZtM--Acg4lTpG-XKBKSeQkApQlVNubB9Y,653
402
407
  paddlex/inference/models/formula_recognition/predictor.py,sha256=v538BM-DTLDI6qcNfgk__wNK5k5RJzM8cDK86gci5mY,7359
403
408
  paddlex/inference/models/formula_recognition/processors.py,sha256=LADB9fpHxAvdsmGZFs8j1SnPX3WKFvdoEoaGjkkrPdI,37285
404
- paddlex/inference/models/formula_recognition/result.py,sha256=lyPeOKOiNq_D04BG2ZwMiyJz2mtwocmTvXBEU7MPGac,14951
409
+ paddlex/inference/models/formula_recognition/result.py,sha256=ubv6KZlT_rnW2DCWCWS0sUPYOOzr7T9JE73gtbt0MIQ,14936
405
410
  paddlex/inference/models/image_classification/__init__.py,sha256=-dzTrk-2RlpLeziUvQCt42WFaydfukBODqmik1t3DQc,647
406
411
  paddlex/inference/models/image_classification/predictor.py,sha256=uZ9xuhg2ElGIdh8cG57K9VnXqX65Paa_7mUG3GfUfqo,6383
407
412
  paddlex/inference/models/image_classification/processors.py,sha256=DBUjdK5RNkCZQ1DgrUT--GPUqUZU0vip2PbvRw67l68,2884
408
- paddlex/inference/models/image_classification/result.py,sha256=6XSRPx3HVuuMwsUQRX0nKsojSs4nTXTdvusQVTUTgkY,3501
413
+ paddlex/inference/models/image_classification/result.py,sha256=8-2TiUhN-8T8L8-1Fjn78IQqO7LqzDb8ym9BjPmCcNI,3451
409
414
  paddlex/inference/models/image_feature/__init__.py,sha256=yd0A7GuW_JCurnJIfqE6doBz437ApSiLEtwjXDDNzsk,655
410
415
  paddlex/inference/models/image_feature/predictor.py,sha256=3eujK5vOH0tLorvb7M_YbL8iUDuq_k6huHIYmnDFwA0,5459
411
416
  paddlex/inference/models/image_feature/processors.py,sha256=vDUTdQd7Pebh_B5BRtxTYg0XTU6CErx3kNpKWWKh5ZI,1034
@@ -413,7 +418,7 @@ paddlex/inference/models/image_feature/result.py,sha256=-LrF-NEwbthimk_5ORvU184u
413
418
  paddlex/inference/models/image_multilabel_classification/__init__.py,sha256=uYUa5EDODdPwx25vP3CixQJK7FXTkRVJWWv6M2-w41U,649
414
419
  paddlex/inference/models/image_multilabel_classification/predictor.py,sha256=HdSrEQUYUB87sR1g58bRq9WT_3LkjX3pAVlHdZe7nOc,3824
415
420
  paddlex/inference/models/image_multilabel_classification/processors.py,sha256=LNUHtkdJt6qhDpg31QjHKWqyFpq7xtVLGQHUwJ0ejAw,3588
416
- paddlex/inference/models/image_multilabel_classification/result.py,sha256=bxddGcj4i-wNS_OS-9lUQ6nL6EwZpxYeE7OniZO9CaU,3485
421
+ paddlex/inference/models/image_multilabel_classification/result.py,sha256=L-ovTJTin8QNR49UpgwVKvgZv1pIdlb7TWi-Jfx-68k,3470
417
422
  paddlex/inference/models/image_unwarping/__init__.py,sha256=JFYHFPiP98CiU5-16qXdMqqG5g28Duqc4wfREV02X0A,647
418
423
  paddlex/inference/models/image_unwarping/predictor.py,sha256=Gf_aGGjKhG45LGecFIWZDN3ME8b6DLFMNEql8JoPPuo,3761
419
424
  paddlex/inference/models/image_unwarping/processors.py,sha256=PLA0z73jV0IDnKp4e-58baHQyPKJrVri3Y4v6voG6q4,3313
@@ -438,13 +443,13 @@ paddlex/inference/models/multilingual_speech_recognition/result.py,sha256=QrlcWr
438
443
  paddlex/inference/models/object_detection/__init__.py,sha256=0WydRdG37hGdALUiBE3t_Y5uhT74GuzV3IDXcD75eTk,646
439
444
  paddlex/inference/models/object_detection/predictor.py,sha256=7PzC-QbV1m8RfHHlNhAxoot_Or1ANli5G3_-SlrOBl4,13287
440
445
  paddlex/inference/models/object_detection/processors.py,sha256=5e47YqJ0MAf7rhKfvRlgRzG11ppfIBp4rDut1pCQ8VI,31764
441
- paddlex/inference/models/object_detection/result.py,sha256=B6dXFoqxVaV2ovkr0Hj4ACXY1Fcn6QN6W55ps0dliyM,4077
446
+ paddlex/inference/models/object_detection/result.py,sha256=HrrH8MuZyGhVyqL8nyuINIUzV-2YwKd-42m8hQtKG34,4062
442
447
  paddlex/inference/models/object_detection/utils.py,sha256=A11qOJcP2KP0f-JImKBxaSQcjgz1fBkox0YeRIuhItk,1893
443
448
  paddlex/inference/models/open_vocabulary_detection/__init__.py,sha256=_AXgoWGKTe2oN7FwcZMkCC8baN_-ESu2LaKqVGuj1-M,648
444
449
  paddlex/inference/models/open_vocabulary_detection/predictor.py,sha256=d5VbuK_mc6QKZq9NkE5OmX0SFZCb--sX1ONFJPIiXaY,6081
445
450
  paddlex/inference/models/open_vocabulary_detection/processors/__init__.py,sha256=OOP9FbItTE8D4K3uOpzZbPv-pYVlQaiQXvtEpSoL_kM,776
446
451
  paddlex/inference/models/open_vocabulary_detection/processors/common.py,sha256=-aVkdcidEqwHBeq_rXY3u2hBhXHbeg18UqYHVqkwOkg,3735
447
- paddlex/inference/models/open_vocabulary_detection/processors/groundingdino_processors.py,sha256=PTde1ji_W85046H83a3gu5O5d0AhmihjXJEmXebkrns,16853
452
+ paddlex/inference/models/open_vocabulary_detection/processors/groundingdino_processors.py,sha256=td1OIp-HMjOy5yZshgK6N0t4xcoKHLJuiFQUhvts-mc,16983
448
453
  paddlex/inference/models/open_vocabulary_detection/processors/yoloworld_processors.py,sha256=cWVwX1Yrzy6Org9W9A-xdIZgm-Dwv7X2k-ffJDdwNyY,6372
449
454
  paddlex/inference/models/open_vocabulary_segmentation/__init__.py,sha256=0WD9dkkVPIyrdvPLFk0GFOtLcRO8hf1WY8WO_eI1Lig,648
450
455
  paddlex/inference/models/open_vocabulary_segmentation/predictor.py,sha256=EnKLTyA8y77vcIsJi1cGGlfcWaxUz5W6DCPCLQhrtDA,3944
@@ -465,9 +470,9 @@ paddlex/inference/models/text_detection/predictor.py,sha256=yQl7ksiYZ9_N_rmHHj7X
465
470
  paddlex/inference/models/text_detection/processors.py,sha256=IovuIBdQfpZwJktztlXzDaSahSKAPV2EomdOsjfAWk8,18124
466
471
  paddlex/inference/models/text_detection/result.py,sha256=uhhPCdIvRLU-7aC_yma0SmXZ2Rlga3_XHaZmpwgkeYs,1567
467
472
  paddlex/inference/models/text_recognition/__init__.py,sha256=oljAcj8MBt4t_fa03kvDAzXJIJSKIAKtB7B0I90G4aU,650
468
- paddlex/inference/models/text_recognition/predictor.py,sha256=am7PG17yDxHDfGvRxvr9XRie8npXe9v08h7npk6fNok,3386
473
+ paddlex/inference/models/text_recognition/predictor.py,sha256=t7aNJvKG3zwo0sGe_VNMr6UNLiCoriiaOno1ubrwmLs,4737
469
474
  paddlex/inference/models/text_recognition/processors.py,sha256=hvnnY96ENYwaDeLXPmA3LSFTx37kDZrwNllag4fdQS0,8174
470
- paddlex/inference/models/text_recognition/result.py,sha256=udHBMz9v1MDN-xWAZu_xBS_M294utlY8dLg4sgGYNBM,2645
475
+ paddlex/inference/models/text_recognition/result.py,sha256=8ESVAKENMoMsWjyRzc-1tt4jM78os8ioQfPij9WEHxQ,2768
471
476
  paddlex/inference/models/ts_anomaly_detection/__init__.py,sha256=4gvhfI6Z4QZpKsBLyHjTt0UBJ381EW7JfjuIYQBXe1E,647
472
477
  paddlex/inference/models/ts_anomaly_detection/predictor.py,sha256=FjNtWgEPWvgjWzVP5RE3EjS0tbEALLdnm1fPBYY6ujs,5233
473
478
  paddlex/inference/models/ts_anomaly_detection/processors.py,sha256=U9HwTL7ZS8iLyJXbCgNrZfI8JLRKp4bsBV-9PEhJkIc,3803
@@ -483,19 +488,19 @@ paddlex/inference/models/ts_forecasting/result.py,sha256=IXXepSeQVpm6m3shYM0nnnr
483
488
  paddlex/inference/models/video_classification/__init__.py,sha256=U7LldafigbDPiTPjXU9v2rfnmSshmG02ibE2l0efe2M,652
484
489
  paddlex/inference/models/video_classification/predictor.py,sha256=LpDCLjjnsFOrss8s5eZx8-HCjuI3r1FHFHHoittNWUw,4504
485
490
  paddlex/inference/models/video_classification/processors.py,sha256=vvAxEBLHYnn7pmz_OxnDHZQEGrCTGu_Ej41DWl76Xr0,14206
486
- paddlex/inference/models/video_classification/result.py,sha256=BPD3qhNIbyEIYXDSneDQQWO2v2FmIxwF2Dd1ZPwSdMI,3911
491
+ paddlex/inference/models/video_classification/result.py,sha256=bPmfQT2b8ORK-jhaqQa3eRBLPa6EcmDrmAPpI12IZK8,3891
487
492
  paddlex/inference/models/video_detection/__init__.py,sha256=RMejdlh-qxQnL0eECfhMDdcX4SIDzw5ruPeZ9oO_T84,651
488
493
  paddlex/inference/models/video_detection/predictor.py,sha256=u7BXV-yKVnEkZG5d9EQ9fr81thCIIkHyObAl1GEuAzE,4447
489
494
  paddlex/inference/models/video_detection/processors.py,sha256=oIcElrELn7TUgEOoZ3evXRjsR8_A2r7hhiLZVwYt_48,15575
490
- paddlex/inference/models/video_detection/result.py,sha256=tFPxNzdsKKhPHO0xxMJIxZYlnBDvafkeSzyLdDJd0jE,4247
491
- paddlex/inference/pipelines/__init__.py,sha256=jNvVpm7q-V0wScsJ49kOZn5sAcjhf5LlZUXH_tVrKNo,9230
495
+ paddlex/inference/models/video_detection/result.py,sha256=PP-i4UNOmn7ksubhLa_hfP_WN60ONboeP3aOH6GDQLg,4202
496
+ paddlex/inference/pipelines/__init__.py,sha256=UD7DJVBDsCSjWFeYebkES3m0IJchM3CkeHDrbosZ6xY,9288
492
497
  paddlex/inference/pipelines/_parallel.py,sha256=tnkK96d5LZcgngTdqY2fFvZwfO9tcs0xWeCH4Uh4qmM,5994
493
498
  paddlex/inference/pipelines/base.py,sha256=ZHSnDL9iTGOyUQobZjuLJR2kyhNuvkZN_pKH8rGEiA8,5787
494
499
  paddlex/inference/pipelines/anomaly_detection/__init__.py,sha256=ZXwsw5NJSbdtj4BHGfFm_SgVfbgUGSTABtnVHplWLSo,657
495
500
  paddlex/inference/pipelines/anomaly_detection/pipeline.py,sha256=au3chST6c7Kavn4Y5Hyoch6X7b_9y_pPrNv7rT7AYoA,3207
496
501
  paddlex/inference/pipelines/attribute_recognition/__init__.py,sha256=a3LuEnZYLEEGNHl5P1o2ldnPaPWqhIBC5RRCvrCIK5E,692
497
502
  paddlex/inference/pipelines/attribute_recognition/pipeline.py,sha256=JHoN0q12Od87v80E6rTIR52jjyanZD4XYKzKA6l5f9E,4740
498
- paddlex/inference/pipelines/attribute_recognition/result.py,sha256=mAQIAALF1ie92yNrCVbt2_xufw_hfvIa_RSJPcHt1Kw,3557
503
+ paddlex/inference/pipelines/attribute_recognition/result.py,sha256=-zL-S1NFYfdeB6QSzmMBq2P3wfs_EeZSJQ1ezN5mOuw,3542
499
504
  paddlex/inference/pipelines/components/__init__.py,sha256=nXliR_FqHJcIwxlLj_9yxe2MAJkCcCceoJ1vOb3WQv8,1025
500
505
  paddlex/inference/pipelines/components/faisser.py,sha256=qtPqcA-Rz6hm4kaaiNzC9S4YsODyX29nl1og8M3kUCM,12343
501
506
  paddlex/inference/pipelines/components/chat_server/__init__.py,sha256=2LthhLNi8BtARKCwilAv1VFOC2lpib-WiXbAVe1w4OI,680
@@ -509,10 +514,11 @@ paddlex/inference/pipelines/components/common/crop_image_regions.py,sha256=yB5xO
509
514
  paddlex/inference/pipelines/components/common/seal_det_warp.py,sha256=csXqMKh_Ne1ghGQqlbBjzNA3klJsfRBUllcLD5EFPa4,32957
510
515
  paddlex/inference/pipelines/components/common/sort_boxes.py,sha256=oqTZT3vCU-9KjbC9TdaTQ9ZhoZc_1ICGU8hFNAmXYJQ,2769
511
516
  paddlex/inference/pipelines/components/common/warp_image.py,sha256=VrJgyyS5SKRCM-WZ-fK1JQIsD1N-fYe6I1JKDRWwU3o,1507
512
- paddlex/inference/pipelines/components/prompt_engineering/__init__.py,sha256=C9fESl3Ffo2ZDTsWVwvJN79RDBLyozpKc1ZOAEr3dpo,722
517
+ paddlex/inference/pipelines/components/prompt_engineering/__init__.py,sha256=w0J1V0CmZ7vPLHxjuMMKYUdfWw9pnUQdT2irDh3X0QI,785
513
518
  paddlex/inference/pipelines/components/prompt_engineering/base.py,sha256=gTKgCLinDMUEmwYcgXYF1ieS5cOsqsGUxxQmtElhi0M,1272
514
519
  paddlex/inference/pipelines/components/prompt_engineering/generate_ensemble_prompt.py,sha256=32T3-A5DcNbM-X1coL7eOG_I7cgOVt_TWFOezCoCFBI,5336
515
520
  paddlex/inference/pipelines/components/prompt_engineering/generate_kie_prompt.py,sha256=NmnEQYevFYV9wcgtyFjmWdslLWStWnPXnhyNs7gc4P4,6137
521
+ paddlex/inference/pipelines/components/prompt_engineering/generate_translate_prompt.py,sha256=TPGWSosN7hQAfnWpcR_PszZjRH3UthTc9a2Mmbd4L9g,7080
516
522
  paddlex/inference/pipelines/components/retriever/__init__.py,sha256=cMexXHUrlknx5b_ZKZIWGd3RahmihHwE-ykhAS6LCaw,718
517
523
  paddlex/inference/pipelines/components/retriever/base.py,sha256=lWlpMdnyMaNF6gqZ6f27_ll2orYKblfkgRpKWZC9Xmg,7967
518
524
  paddlex/inference/pipelines/components/retriever/openai_bot_retriever.py,sha256=z5DFqzgH9HKa0YsHbeUBIRqVe5gKjaYWRw7eVcdajkc,2426
@@ -521,7 +527,7 @@ paddlex/inference/pipelines/components/utils/__init__.py,sha256=lEGWWikF7G1wkk5M
521
527
  paddlex/inference/pipelines/components/utils/mixin.py,sha256=JxCJ2pqihd8wB4y5hSiGaXX_wIk4-SW2WO8S6-IZGQw,6549
522
528
  paddlex/inference/pipelines/doc_preprocessor/__init__.py,sha256=XTOS7rmOkSk8Ad4ybRoEiSABeeE-FwAijlASCWSZYEg,656
523
529
  paddlex/inference/pipelines/doc_preprocessor/pipeline.py,sha256=drd6zngUTKpkrZvwMf_kxLZO7_d27eOchr_BcKfPObU,8251
524
- paddlex/inference/pipelines/doc_preprocessor/result.py,sha256=Juemk5tqwV-D4ahdgwxDQavFuliyTtf_Hk6OQnSj4t4,4021
530
+ paddlex/inference/pipelines/doc_preprocessor/result.py,sha256=riH_8Qo1EPCwZpwxXhtDK3fRG0mxH-dR4CimybbmmDI,4006
525
531
  paddlex/inference/pipelines/doc_understanding/__init__.py,sha256=otW18h6AQw-d0sy_1bZ0W5hVjse021YhDl48CFl57cU,657
526
532
  paddlex/inference/pipelines/doc_understanding/pipeline.py,sha256=K8mQbG53DA9kEQXkEYKCQY-ii5UDBi-YroMeU26xYjg,2867
527
533
  paddlex/inference/pipelines/face_recognition/__init__.py,sha256=PvjBS-zaPlcbVdw4yGnVkY5mhN1_LUcKc2fbQRmnS0U,648
@@ -529,7 +535,7 @@ paddlex/inference/pipelines/face_recognition/pipeline.py,sha256=Gpklhl-VrB1DtJrc
529
535
  paddlex/inference/pipelines/face_recognition/result.py,sha256=K0XS95GEq1zdU33DbopOWN4FFdh34KZBjrNJscN2eMs,1533
530
536
  paddlex/inference/pipelines/formula_recognition/__init__.py,sha256=1ohbSE3gGnXwDkT9BoY47N1c9rtgf4I6sPjijLE6pVs,659
531
537
  paddlex/inference/pipelines/formula_recognition/pipeline.py,sha256=uTy7WVnIOCueEiq14QBeZYrGUYFq9bztu3ZKe8mQLjU,15020
532
- paddlex/inference/pipelines/formula_recognition/result.py,sha256=QYa2TPTYat4bSJ-0E6cPs4MULdn_ZOoyDdWGEcecBcM,11800
538
+ paddlex/inference/pipelines/formula_recognition/result.py,sha256=m1G2T5k2uWmiHLWrGGN6EmRBKB8EDtDALmFuaGbxpQM,11785
533
539
  paddlex/inference/pipelines/image_classification/__init__.py,sha256=t0NEUXKqdc60LNZRKheo_AR73QoAYKTgv_DlyoR14PA,660
534
540
  paddlex/inference/pipelines/image_classification/pipeline.py,sha256=ll-wbXl9oCua1BbDnFDpBYbBC7JWRWN6KxAh3mlxZSU,3577
535
541
  paddlex/inference/pipelines/image_multilabel_classification/__init__.py,sha256=0G1gDkzsZpfUvmZTJX4JxFqFjyMFBdPmYih88dDWwrU,670
@@ -541,9 +547,9 @@ paddlex/inference/pipelines/keypoint_detection/pipeline.py,sha256=bhjn1rBJRIV0xI
541
547
  paddlex/inference/pipelines/layout_parsing/__init__.py,sha256=eikh0TU4nFoO7C-dI5jzRj02G8PiIXUYu6whU5JTdjE,703
542
548
  paddlex/inference/pipelines/layout_parsing/layout_objects.py,sha256=Qo9qu780UPX99BkPwpSkB-ccN0fCMe-VXSgdWCyR3Ho,31812
543
549
  paddlex/inference/pipelines/layout_parsing/pipeline.py,sha256=Qmqtf0Et30CFnNxNDtGiMGSYGxNhUezSZKIsyAloTiA,25847
544
- paddlex/inference/pipelines/layout_parsing/pipeline_v2.py,sha256=9SSs8NtgCM79YPrWIXbomROBK1IhUemZpoRWCwAUQhY,60939
550
+ paddlex/inference/pipelines/layout_parsing/pipeline_v2.py,sha256=RPeWOHGVdc3_Za6A-CLv-SUlgcvW31nG0XZBXjRMT4g,61173
545
551
  paddlex/inference/pipelines/layout_parsing/result.py,sha256=R6wHENrYfrAbJfwZ-bi-_ha4EaU4hzsRNuwqKiH9Mhc,8688
546
- paddlex/inference/pipelines/layout_parsing/result_v2.py,sha256=4-VtKZS5iIPFl9-9306KpN-Ml_JWTKGGV9t1tzBTCoE,18722
552
+ paddlex/inference/pipelines/layout_parsing/result_v2.py,sha256=1S2pRiPsgBymSQU4j_AEKCgU5fVQs0dc1YEFC9axS5s,19002
547
553
  paddlex/inference/pipelines/layout_parsing/setting.py,sha256=k3X-IRYbj1QIH9WPpn7TjogUYRYnskx__Z2kdp-iU9Y,2451
548
554
  paddlex/inference/pipelines/layout_parsing/utils.py,sha256=7jCatSn08b_ftLX0-1VKrzdQw1a4Xl3pum1i90o0L0I,27062
549
555
  paddlex/inference/pipelines/layout_parsing/xycut_enhanced/__init__.py,sha256=VG_OmZclRXlQrnMEm7Ovu4Va31zWaQ1S1Tbqr-_-dvQ,653
@@ -556,8 +562,8 @@ paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py,sha256=X
556
562
  paddlex/inference/pipelines/object_detection/__init__.py,sha256=c2ZYFYRbb0J6daRAv9uwTf4nqUw1w5mG6nkgp6vTtZ4,656
557
563
  paddlex/inference/pipelines/object_detection/pipeline.py,sha256=FpXmt4UoUS-10cZQUfmrJDEwQd5Unzb7GhTbD1j9wBI,5140
558
564
  paddlex/inference/pipelines/ocr/__init__.py,sha256=ikqbgokLsaCuqyOet1ul-2mtNGO7d7sAXLTdAp6E0qs,644
559
- paddlex/inference/pipelines/ocr/pipeline.py,sha256=0BmvkcYIr3YJoYFycpEkA35Rdz9UZi6TJqYcwTIaL1Y,20178
560
- paddlex/inference/pipelines/ocr/result.py,sha256=3e3AgdnoLqC5XaAiJb1DBWeFv0pfBOCO4ChJLf1oMU0,10013
565
+ paddlex/inference/pipelines/ocr/pipeline.py,sha256=cb9k5MrT2Be5imdWdl6QK5HNZCPxWPkNo3dYhT1hL3E,20288
566
+ paddlex/inference/pipelines/ocr/result.py,sha256=5B_S_CHmKEYJ_-3tjojWYP-e98ZW50UJUOabB10L0Mo,10164
561
567
  paddlex/inference/pipelines/open_vocabulary_detection/__init__.py,sha256=aOYM8QAwEr_mL_GA4rWOs4iLpc16rye6vl3ObPNwWbI,664
562
568
  paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py,sha256=u7qV-1KuT1nyD-hSyJ0bWNcnhfaBh7H9UYS8AZb38jk,3597
563
569
  paddlex/inference/pipelines/open_vocabulary_segmentation/__init__.py,sha256=AWiP79r5eAv5i-sVCXTVmSLWeHnQwCh8GeZ1I5mB6fk,667
@@ -566,9 +572,13 @@ paddlex/inference/pipelines/pp_chatocr/__init__.py,sha256=sGGz9xscTsDLMHyVr7XHD4
566
572
  paddlex/inference/pipelines/pp_chatocr/pipeline_base.py,sha256=DvUu01oKY9KU3oIpTCbF-Sai6bRuvxqpZpBHe8gAuOE,3994
567
573
  paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py,sha256=m4C4O0xLrjBMFcRlOTzXkEwP4iHjaPtLyu5EKA2-ZxA,32500
568
574
  paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py,sha256=suMKoHJY0vsMeqHhVS1NIMju2EqDJMB96P1Jl5bpZEM,41755
575
+ paddlex/inference/pipelines/pp_doctranslation/__init__.py,sha256=eeiso8IYEsohnhe18Cj0JAx10bsAlJP1tgDxRc0ZTL4,659
576
+ paddlex/inference/pipelines/pp_doctranslation/pipeline.py,sha256=CWLEsXIU9hgfo3vv5VXEwB_AZCTm2jKEGPk_C_3iXHQ,24402
577
+ paddlex/inference/pipelines/pp_doctranslation/result.py,sha256=rS5FAkTcPWF9LeAFw027b0GFlOC2Oo2CPqI9sZaIwUE,1454
578
+ paddlex/inference/pipelines/pp_doctranslation/utils.py,sha256=aZVlqrK-Apbjts24VJWutbPLcXCebqEXlgvAr9vCwuo,8933
569
579
  paddlex/inference/pipelines/pp_shitu_v2/__init__.py,sha256=ZI-x84D1hyQ8U77a8VLsv_4faIbTstX48iD9PWnYHDQ,648
570
580
  paddlex/inference/pipelines/pp_shitu_v2/pipeline.py,sha256=G3fzKKyjscJKz5iQ4jSvBjEoGCa6KuiG10WY4n2AdlM,5828
571
- paddlex/inference/pipelines/pp_shitu_v2/result.py,sha256=3600yup0xoEL0dA_7BqljeZPgvledruh1VoLMpIH2tc,4354
581
+ paddlex/inference/pipelines/pp_shitu_v2/result.py,sha256=7bxXqEvqb-_y6kQJn3wIH3WyEopPZOF9o9M7JGR2zHs,4339
572
582
  paddlex/inference/pipelines/rotated_object_detection/__init__.py,sha256=0xOtCBKkj3DJQkIbO2EUekYcBf50U57LEwIC_MsM4Jc,663
573
583
  paddlex/inference/pipelines/rotated_object_detection/pipeline.py,sha256=DwU6h4uFOX7nOtySfxzn5t6rwE80uiGIHyvmPFe2G88,4038
574
584
  paddlex/inference/pipelines/seal_recognition/__init__.py,sha256=Hf4BsknzV22IeT8dG2VYBuHdKEP5rrWetaV0HxxihC4,656
@@ -597,40 +607,41 @@ paddlex/inference/pipelines/video_detection/__init__.py,sha256=5fwogRCREggvQgge-
597
607
  paddlex/inference/pipelines/video_detection/pipeline.py,sha256=k-QJZl2t-J2oboDfeWZ812P8TqVM1T3Lb4KsRV9xHrQ,3391
598
608
  paddlex/inference/serving/__init__.py,sha256=toJfQp9IogLuJwLzprv8lieB-EERPqU4B0FJv8ZoNec,685
599
609
  paddlex/inference/serving/basic_serving/__init__.py,sha256=_NwYgeYL6HTpLWAxf7aRwRP-rBfP-Fsaff3vZe0GUkg,739
600
- paddlex/inference/serving/basic_serving/_app.py,sha256=xgvF7P29bDJKcoETvVoxD-ccwcX24CsfmByErrjAa4o,8598
610
+ paddlex/inference/serving/basic_serving/_app.py,sha256=30XG3-E5ay7GZQB2-6A2xY3tWV-WqC0fa0FptJaAndQ,8630
601
611
  paddlex/inference/serving/basic_serving/_server.py,sha256=c_nqZFecjAIQxw2huCKzLWZ_BSO_pFh9xaUSGZ1WrTg,1484
602
612
  paddlex/inference/serving/basic_serving/_pipeline_apps/__init__.py,sha256=z5_SMYmGTeBJTCwbipHBzuitWjraIEpy63y4od9Wtbg,1707
603
- paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py,sha256=9eDaXVlXC5sEvmBGDvtE4Lv6bz0riZvT48nq7ccFCAE,2374
604
- paddlex/inference/serving/basic_serving/_pipeline_apps/doc_preprocessor.py,sha256=dsABJvWCkY0fAAVqPsCgj5ZCM9rmpBgziZlggT_Jj_A,3641
613
+ paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py,sha256=j2JPMT_c811UO6jbsJyjRjha8DitHkA0ZKOTqTT1F68,2499
614
+ paddlex/inference/serving/basic_serving/_pipeline_apps/doc_preprocessor.py,sha256=rtWRT7ECzVxoyk4xYjrhaTCEJb7poGFAiqb-oIu9OSE,3768
605
615
  paddlex/inference/serving/basic_serving/_pipeline_apps/doc_understanding.py,sha256=jwEE3Rlo2_F1GXD3VkmvoCmEiirvhW40JROsSpfrQq8,5618
606
- paddlex/inference/serving/basic_serving/_pipeline_apps/face_recognition.py,sha256=h1Pc_NULak1v-kGK-2m68ZeeEUY1Jr56FgI6aePVDNI,7985
607
- paddlex/inference/serving/basic_serving/_pipeline_apps/formula_recognition.py,sha256=t9Ee63B9JSKcvkzf2lGuF-fyMvGf3O57ZWuWPPFq690,3614
608
- paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.py,sha256=rzQniNgVxJAwuL8AJg1EVTMTe8F7vt45GtfyVNpzLb8,2648
609
- paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py,sha256=DDfpOzLvXRvQXBz279ybi3RDCCRGbbJait87wipq6B4,2568
610
- paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py,sha256=LJa_GBCadv5z-3q_ypHmtX2YUx6uh-GDzlESZfUrxiQ,2606
611
- paddlex/inference/serving/basic_serving/_pipeline_apps/instance_segmentation.py,sha256=l0gMJCWOyd-sP7pXDWXPoGdiBOYCf5cm1Nqe3yoZqhg,3032
612
- paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py,sha256=_AXb70cyXepfFsq6yEUnOSLa2A0WGNABCQftGReFOw4,4547
616
+ paddlex/inference/serving/basic_serving/_pipeline_apps/face_recognition.py,sha256=5mkt4BC6OfXjATJHN3bdHBCbGrpvXvxeQcfwlsn-Fvc,8110
617
+ paddlex/inference/serving/basic_serving/_pipeline_apps/formula_recognition.py,sha256=Ligdz_PRyFzwVX7xGVnuHq3YAbVoMWInqPiws6XUN74,3739
618
+ paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.py,sha256=WOA-pnBxjTCLoI0JgWOTkE7RpvOqRYqzpkVpNDdWFhE,2773
619
+ paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py,sha256=R7R-an5K0EwbNn-A7NmJZfFHwEXZaVvqTzUzXqphZhc,2693
620
+ paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py,sha256=ehnrmMBDe1NOQQ1OBUeKKR2kuo0bmZGM3QzMXFnmbIc,2731
621
+ paddlex/inference/serving/basic_serving/_pipeline_apps/instance_segmentation.py,sha256=BZUHOSbmDtUkjTV-NzuF6MYRY_GHmTaW-l0E5eBTLNQ,3157
622
+ paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py,sha256=4Babbu_NVIpLQv5QKrR9VXYnm4zoj57icmKUKwIM_RY,4672
613
623
  paddlex/inference/serving/basic_serving/_pipeline_apps/m_3d_bev_detection.py,sha256=67-XMeJpt38WJyWDlWz8ejdbZDsQ81WQ4Jye9z0zP-E,2553
614
624
  paddlex/inference/serving/basic_serving/_pipeline_apps/multilingual_speech_recognition.py,sha256=5_r3Ze_F4N0n5L-D9EK-8jVgbtNxhbY-wOgwRwVd62c,3111
615
- paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py,sha256=KbkK3FQsLcTlRjFxeEVh_fe-B4uznaDoCEFjzxbD4Tk,2620
616
- paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py,sha256=m5xEmhbV49HWVob_Xf8RfyZ56lfX-uenyso-VJgZ5fk,3839
617
- paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py,sha256=38_lV8SgDtK6DxqYwAGgPI4ARA8x-qA7prg7rIPRz08,2641
618
- paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py,sha256=2RBFFOYmz7yM8jUDOSTNGJGyhPb5SXVwSumjct_k46E,2868
619
- paddlex/inference/serving/basic_serving/_pipeline_apps/pedestrian_attribute_recognition.py,sha256=KAk8-ng09DEtmOXU3GLdjPdUmm5eYtrAWt0bvViT6ag,2787
620
- paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py,sha256=4zfZ_zYpMZWn6EA0NaFpfCgyKSfQfeFRaH6TdkoQ1Hw,7446
621
- paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py,sha256=iJQjCR-XRHWe_-kwr_vNkShCUwJss_eqY1mx_ZFVdU0,8567
622
- paddlex/inference/serving/basic_serving/_pipeline_apps/pp_shituv2.py,sha256=mejMNXongcpReJPi2IfmpUpekbxX3CIP0BCCxEuAD54,7747
623
- paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py,sha256=CtwEBKsGWv4pKnlL46pD-OuOMwYuTr-QviT7jl18lqI,5952
624
- paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py,sha256=3grQrKFhUuY1HVRqTDNOsi9Ss9ADPE4Uxc2qLAVUdf8,2645
625
- paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py,sha256=AGV5TfrgaQNrTmN7b4Sca_n1QeTEx2uQ1Ft5Lu6Csec,3955
626
- paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py,sha256=4Eut660kUrXzIMFVlJ8GiQfM_pMuR7KKV_Ihnr3w4iQ,2410
627
- paddlex/inference/serving/basic_serving/_pipeline_apps/small_object_detection.py,sha256=I-lN4umtW4MdMOfrS7f84ME2oGNxKUO623VxcP0qIzg,2557
628
- paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py,sha256=y0KuqMkFQeOnVxA0ERsyl9IiXM4LGp2bLMTqEEl9b-k,3866
629
- paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py,sha256=iLeF-4mJu-I4C5-XDsBcaPg-CeU1uKkdzRu4Z90W8DI,4287
630
- paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py,sha256=6z0kkq1kXpS7aLlCn6TvL8g1uS02SZAHkhOeuJzaB8E,2281
631
- paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py,sha256=luHJWk_jWVVSluCbXdc8pjsf5bBnWyoYSqh4G-1Fe_o,2289
632
- paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py,sha256=Uk5VHQEfrYkwPcvdXcl8x_tgXMJBxMvGVghCb-CwLLw,2273
633
- paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recognition.py,sha256=O36USuzEuunoZtwKwLiLD3Dwb2S-UzkeDqJHX6NPOTo,2781
625
+ paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py,sha256=CKgGM3MaouJJ6PLpqF8XdeEz48Fo3KAK9-410gZwC1Y,2745
626
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py,sha256=aN1Pmy1SltybdPs3esr1Cj20cNvz-bFKq0JOzLbQZzU,3964
627
+ paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py,sha256=hFecJuEbVQhZLsec9qsGGQCdLy_Z4spiV-Rf5Jr-flY,2766
628
+ paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py,sha256=dC2EekhPo35F_WJifwRXVlORlhMsgafWveMbE1fAHX0,2993
629
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pedestrian_attribute_recognition.py,sha256=kohh4enA5BEAi3r9rE0n1hcc46S6BIKDh5_Z1C03WEA,2912
630
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py,sha256=eekoJxSYbzb-fDBFzMLQGnljkUsmmhPPXRdpxcwIQao,7196
631
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py,sha256=Ml2jQ8z52FcN4YQediUO64lvXi3-XSrcN47Xtxzc29M,8305
632
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_doctranslation.py,sha256=6znxEtxSzFf3k6cNtZDemZg93szmIN2OajGN52Gfn_k,8305
633
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_shituv2.py,sha256=DddvtGmgLdZAQhXlyu_Fm055LdfZqcBM62A_PLUsY8U,7872
634
+ paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py,sha256=rOsuhLpw4cLf8rsNmfu4Jq3pPd9Anlh3GmGXqakGvIw,6077
635
+ paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py,sha256=eyK83diyEffAevl9i7zcbUI140MQ16uPg7Frv3RQyVE,2770
636
+ paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py,sha256=nJYRdslOWyeBtUTx7OGYVVz2hijJ3gwD8lkr4Z_sGTE,4080
637
+ paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py,sha256=Jzx2QtAyFKslvwG95enVayGYlG-ca4gKUV7p37DPUJ8,2535
638
+ paddlex/inference/serving/basic_serving/_pipeline_apps/small_object_detection.py,sha256=ecetEaIrgp0O5sudAEWAntsQQnIa25UAYjW4gfsYwH0,2682
639
+ paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py,sha256=JVkS1L7psvRrl0SNIP845tWXYDl719narxeFnsTFrP4,3991
640
+ paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py,sha256=AxAW7dc_KfpNVEQEQgJBrRfQ7eaUTDweNB7xZmgf-pM,4412
641
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py,sha256=F6gsxdEqO6OKJF2HPEKTB1Gt_0Xq0rgMDr8QwgylD34,2406
642
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py,sha256=zp8rG5dDwCDvKjf_YRliz43YnqFtBJlrHt_gzp2EuBQ,2414
643
+ paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py,sha256=6jxpK3eePuCipNpYnXOuaVfFXzYard0bwFel2um79D0,2398
644
+ paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recognition.py,sha256=esatZuJNDDb9ZgPqIQ6PeLnIyPkP705OPZEmsv1QDNc,2906
634
645
  paddlex/inference/serving/basic_serving/_pipeline_apps/video_classification.py,sha256=O81Dqdqz_aKY_lza-Qnx5BAhdJMEURwSFBsa7WGnVMY,2743
635
646
  paddlex/inference/serving/basic_serving/_pipeline_apps/video_detection.py,sha256=CW-UrSTBQZIbLvzFwWAKrH5o7-v8fVhdul-NAIARpBE,3055
636
647
  paddlex/inference/serving/basic_serving/_pipeline_apps/_common/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
@@ -641,65 +652,66 @@ paddlex/inference/serving/infra/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTd
641
652
  paddlex/inference/serving/infra/config.py,sha256=-6StYn1pF_VQdCWsthZ5b86O-m31ye_KWp7j-mwc9N8,1152
642
653
  paddlex/inference/serving/infra/models.py,sha256=KXxvV39dGzrbGeHDacZMGvtlcKPF4PEkjtuov0Vt9y4,1980
643
654
  paddlex/inference/serving/infra/storage.py,sha256=8Pw5mhvornnF2NnwOblRX5N_FGMrCvCkz0WfmQX7bXM,5379
644
- paddlex/inference/serving/infra/utils.py,sha256=8Vz3xYVcoZ_QEJAHlhGEakfojqvvZuHEi0tCBfgklIY,8457
655
+ paddlex/inference/serving/infra/utils.py,sha256=l-VMB2U3hau30O4JE6OKYpyjXOzF2PWLbUgWwo1FK2E,8585
645
656
  paddlex/inference/serving/schemas/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
646
- paddlex/inference/serving/schemas/anomaly_detection.py,sha256=407q-QdNYiCHSjuGnbnndoFK6CXWN4Y8HfzVaIzE_8U,1189
647
- paddlex/inference/serving/schemas/doc_preprocessor.py,sha256=rCYnssIaIpnulPGFRTE15U5zl7l6ylWzqpMJl1QEvVI,1630
657
+ paddlex/inference/serving/schemas/anomaly_detection.py,sha256=20d1cFQWG4555LQ4mKeK_31T8z9ME1MHV5sBllGh2bs,1226
658
+ paddlex/inference/serving/schemas/doc_preprocessor.py,sha256=-oOtZLIHnLiIz7xgeqOPkLQFoUSG7WM_4kNBQQHM0_0,1667
648
659
  paddlex/inference/serving/schemas/doc_understanding.py,sha256=urKhmbceO9TCL2_9bWSC8_buePyGSGixfryoRfESw_w,2058
649
- paddlex/inference/serving/schemas/face_recognition.py,sha256=N6SHf5UB63yyva3y9Z2xYh1_mjJSh1bSIFDjf6be8iU,3011
650
- paddlex/inference/serving/schemas/formula_recognition.py,sha256=wf9ya-85l9a8p2jk0pugMFdLdikqWjT4n5GUl-fbkjw,1723
651
- paddlex/inference/serving/schemas/human_keypoint_detection.py,sha256=C61vn-1MYsjdpKy8H78VrEJeJQMKhZMVJ2odCoxfxfY,1473
652
- paddlex/inference/serving/schemas/image_classification.py,sha256=I_lquPPda7W7RAbDVQhhCJiXz28DYIzk2ki5CQzNO7c,1291
653
- paddlex/inference/serving/schemas/image_multilabel_classification.py,sha256=-Id6g1RLeTE4O_RzbyboN_YhImuopm7IbBqVVE_c44w,1368
654
- paddlex/inference/serving/schemas/instance_segmentation.py,sha256=aLPdJftqCkHVFakDWz9PKM9itBmHGuh4hrOq622mSC0,1411
655
- paddlex/inference/serving/schemas/layout_parsing.py,sha256=CF0nLt0fHfBPAeYGwBBESRvQKQ0htPqvc6NQ7EyMEmI,2416
660
+ paddlex/inference/serving/schemas/face_recognition.py,sha256=m6vSgDVkMJq9kOHjoUCOcZlnbGxNGpStauaH10q08po,3048
661
+ paddlex/inference/serving/schemas/formula_recognition.py,sha256=PLnl4BNl9dInmFfcJhXL98eFTXxBPCSaSnZTC3GJCZY,1760
662
+ paddlex/inference/serving/schemas/human_keypoint_detection.py,sha256=7iLzhhEQ5K2U2iGCPpivOAY8KJ-gO0R3OhIujSqx_SI,1510
663
+ paddlex/inference/serving/schemas/image_classification.py,sha256=cUgzgv9D0BiYI0YrpGXYuQpFZVLpay8-8uHbC8vNseQ,1328
664
+ paddlex/inference/serving/schemas/image_multilabel_classification.py,sha256=nSyWP11JEU82Z_6lxIM9hLrALs_VW24tP3j8_ogGz14,1405
665
+ paddlex/inference/serving/schemas/instance_segmentation.py,sha256=QVog9lcjvWXTYkKDNhvXg7zBKKRBRDe3vZ3IzziDAfM,1448
666
+ paddlex/inference/serving/schemas/layout_parsing.py,sha256=PDpD_KcswchaTTK1Ox0VzWl8K1gCS7u3IjbK-crw6qU,2453
656
667
  paddlex/inference/serving/schemas/m_3d_bev_detection.py,sha256=i9WJnV2t_aVsuxIYxp6jue_H0mhOk3PJNBIAFmr11nM,1289
657
668
  paddlex/inference/serving/schemas/multilingual_speech_recognition.py,sha256=98SL_0vkAfbDdy6-G426lLolMmaf3U6-uMGDEF_aYy4,1371
658
- paddlex/inference/serving/schemas/object_detection.py,sha256=IjPxEvK5-suGOXHeXOSo7LgIyHJZbuwvixgq1fa_KPA,1414
659
- paddlex/inference/serving/schemas/ocr.py,sha256=D0XLhCa9uxTb7xxNATwS7NW5p2vk5Frz_ukGq0q_NUE,1827
660
- paddlex/inference/serving/schemas/open_vocabulary_detection.py,sha256=T8WgzB9Np4AP0ifzumueUL4LwQsrPZCnCvcElOrrAHo,1399
661
- paddlex/inference/serving/schemas/open_vocabulary_segmentation.py,sha256=9L7sZsSibZ8nyAgHgkjfm_A4T_mSZyCuOXf0EEdmUYQ,1360
662
- paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py,sha256=p5I5Gcs3fJb2YnJdQSZElVM-ij5yd1nqr0L6R8RTEx4,1619
663
- paddlex/inference/serving/schemas/pp_chatocrv3_doc.py,sha256=Sj2gC3Tkfc8w9XyET4Sr7NwZbF4wLB2h6mrlODMdYK4,4320
664
- paddlex/inference/serving/schemas/pp_chatocrv4_doc.py,sha256=6c5fRGN2Z541x5nwdkzv1L5kUPBMPv0b1WrS-uNdIhY,4566
665
- paddlex/inference/serving/schemas/pp_shituv2.py,sha256=bD_xTuab4t4o4h7ycBVYl3nlA86bvk59aLggZ-j_KlE,3007
666
- paddlex/inference/serving/schemas/pp_structurev3.py,sha256=hAkGogT1dDoXo9SDRL5mNiu2Hw64VvPzcUMMzG_nQ_Y,2963
667
- paddlex/inference/serving/schemas/rotated_object_detection.py,sha256=LRZHlTR15onDcsXshOHqbKwyaJ5mJCZrVlm4x-h427Y,1429
668
- paddlex/inference/serving/schemas/seal_recognition.py,sha256=rNzFjzUhnXCx-4Cu8dN0KLHs60Jp87eFnWmeAAvKhwU,1978
669
- paddlex/inference/serving/schemas/semantic_segmentation.py,sha256=QlsjszHI4MZUumBiNlxY7KacMNKEXKDH8oaS6wyEbiI,1282
670
- paddlex/inference/serving/schemas/small_object_detection.py,sha256=dbd7B79UHqkN3slzi01ui-Q7jkUQlYfEIzFZQOYT-wU,1420
671
- paddlex/inference/serving/schemas/table_recognition.py,sha256=VEsNYaaWq16ZcOwma3A906lcgWXQnAXMa1ottGMOUZc,1838
672
- paddlex/inference/serving/schemas/table_recognition_v2.py,sha256=UPnumlbEz1bSZMyDK9vl8UmUeKhqkg-ZYozwlsxK1kU,2070
673
- paddlex/inference/serving/schemas/ts_anomaly_detection.py,sha256=gYHuJL4MEL8-v7PMze0T1_YTCjnEjDczb-QWUAuuf7g,1103
674
- paddlex/inference/serving/schemas/ts_classification.py,sha256=NScw6DzaZ0kZNUIlQoQhSsE0aEZeZLQ5orBPk8nyl3U,1119
675
- paddlex/inference/serving/schemas/ts_forecast.py,sha256=L17DUN8GF5ffaj_u__xirD2R_FB7zaSolh4PMn6KxOQ,1097
676
- paddlex/inference/serving/schemas/vehicle_attribute_recognition.py,sha256=zQbiI-3JW0M-5ytBSMbDFww9sAftKmg2k7_qSF6CvkU,1604
669
+ paddlex/inference/serving/schemas/object_detection.py,sha256=qOX8If_RQWgLS7_zi1VJdF2eR9fKtxl2cvqNK0VxwvI,1451
670
+ paddlex/inference/serving/schemas/ocr.py,sha256=pLl52SIk-SOk3dNoCcgdaOzOQPbvHrovzMYZYw-zQUU,1864
671
+ paddlex/inference/serving/schemas/open_vocabulary_detection.py,sha256=RzWIpU8gevdkS8a58gLzU0zFj3LIrHAknmoVatr2ncQ,1436
672
+ paddlex/inference/serving/schemas/open_vocabulary_segmentation.py,sha256=eeECjCqqtuN2oDtBkvQUuU0O_t-707xQBmUPjM5zVQc,1397
673
+ paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py,sha256=Zmq8uKVCQHb1pXprKxpjGRcvD7NJZNunYPFtld8tAew,1656
674
+ paddlex/inference/serving/schemas/pp_chatocrv3_doc.py,sha256=1Bn2nrFCBWzm51sLefg-ztW51_Ux1O83hh9emXRJirE,4316
675
+ paddlex/inference/serving/schemas/pp_chatocrv4_doc.py,sha256=P8zzk06bmyKXDEBfF0BR1biu7f17k50WvyFFrFd3BM8,4561
676
+ paddlex/inference/serving/schemas/pp_doctranslation.py,sha256=BG9X657sL7O-wmKPh_7Vk1RJATs2HeUaLr90XaI2vaU,3811
677
+ paddlex/inference/serving/schemas/pp_shituv2.py,sha256=yZyKA9cMbCSsVAjgb7KQBS2NQ16tdytOYRQwD7ZUqQU,3044
678
+ paddlex/inference/serving/schemas/pp_structurev3.py,sha256=21_BNxIIKRKc27MIXQxbvUZhrIxVy6ixCmdNt__H-hE,2876
679
+ paddlex/inference/serving/schemas/rotated_object_detection.py,sha256=2_ZkpqvhHMnUGgTrefYz3HVXjXaU8IGHP4uOUPnjGp8,1466
680
+ paddlex/inference/serving/schemas/seal_recognition.py,sha256=KiG284nelQBvtwTE-k5hzlTD5PxN2uSbhemsT3rF7Ko,2015
681
+ paddlex/inference/serving/schemas/semantic_segmentation.py,sha256=6bgYq1YPeFdVMtXfkibPJ-G7sjOGdLrHuAExZOakZKM,1319
682
+ paddlex/inference/serving/schemas/small_object_detection.py,sha256=X7V_jjd_LeHBaaW5aqCjnjjVFmxqQIfesB1suz7PByw,1457
683
+ paddlex/inference/serving/schemas/table_recognition.py,sha256=oagFeFzMq-NTpHruShiXL2Bm_cP5mdLbfzl-Tb5Sj8s,1875
684
+ paddlex/inference/serving/schemas/table_recognition_v2.py,sha256=-Wfv3g_mvp5AzubKSd8w0yb4-HNtHjs3z0tYMwHczBo,2107
685
+ paddlex/inference/serving/schemas/ts_anomaly_detection.py,sha256=yIAs4g-zc1D8Wa8wg8_XolyNgDc4liawe2FuV49HuUo,1140
686
+ paddlex/inference/serving/schemas/ts_classification.py,sha256=PL9MjcYbVqYno3l3ZVYEzNYU2Jewa4h1dooEQ9CtKMM,1156
687
+ paddlex/inference/serving/schemas/ts_forecast.py,sha256=o44yHs9A0QAQ99oNBJh-vGTLrvFGHLsQAeBLDYaFi-s,1134
688
+ paddlex/inference/serving/schemas/vehicle_attribute_recognition.py,sha256=Xz8eDwcWoTNiXxmnnQl2WbJWV-GiYVMuSzp46wQZDbw,1641
677
689
  paddlex/inference/serving/schemas/video_classification.py,sha256=NEuxh1VIMmXlhab4-jV_2OVhPxB58qIXOpdcZyEopP8,1259
678
690
  paddlex/inference/serving/schemas/video_detection.py,sha256=U7wpB2dN-F76J-3moqomGzSL-Mqw7cFOni2_mRAFZRE,1428
679
691
  paddlex/inference/serving/schemas/shared/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
680
692
  paddlex/inference/serving/schemas/shared/classification.py,sha256=xza25RVSyjxZCASrvZ1Tb-LvRoiLMfhb60Aa1m3PoLY,737
681
693
  paddlex/inference/serving/schemas/shared/image_segmentation.py,sha256=hkRK83EtvHdlt63CqWAQq5QFBr5wGamPYxelTLRzqmc,830
682
694
  paddlex/inference/serving/schemas/shared/object_detection.py,sha256=hRraFDkMn67ovX5Y9otsMtwE9-bYYtOo45a0DPt83z4,885
683
- paddlex/inference/serving/schemas/shared/ocr.py,sha256=UAmHt2subCJvrtGOuy43axOxjrMaVOPLm5bYSOamgEQ,847
695
+ paddlex/inference/serving/schemas/shared/ocr.py,sha256=AUqSGdrkpvcVSz_nt96C96ecHJ3IVlbcpkXg5kXDaxo,978
684
696
  paddlex/inference/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
685
697
  paddlex/inference/utils/benchmark.py,sha256=l2ATIuPwAd1uD4rZgADbt4HKEiobeFLm3P-bIbKtD4s,12932
686
698
  paddlex/inference/utils/color_map.py,sha256=mU1FdhHuyiJBn_thBkSndiMJtfkn3i3rLtPAPNPFid0,2953
687
699
  paddlex/inference/utils/get_pipeline_path.py,sha256=LCjXho0ix4jgG-sJ1DyKIAFfC8Yv2cj6hBlA3eOFJIo,985
688
- paddlex/inference/utils/hpi.py,sha256=Ways_Jq68cv_IqScjsy-6XEmPDlPQFtWScuywqBbjSE,9580
689
- paddlex/inference/utils/hpi_model_info_collection.json,sha256=ysbGt7uZ6QftLdY1uQiUqkjCcdR1UbiGq2Ah0CXaNaE,51795
700
+ paddlex/inference/utils/hpi.py,sha256=q5AcymBdbui9R2ExXEku4L1O3MiksSpK7gyFN5kqvEI,10514
701
+ paddlex/inference/utils/hpi_model_info_collection.json,sha256=dcbnWTTWqCcjT0NMGPYK7IEUJ07A2Id4vokP2ZaUgV0,51740
690
702
  paddlex/inference/utils/misc.py,sha256=qFrRum5-0jxue1RuLkF3KOFZdRCn3Yoh2DERb_cHfAo,812
691
703
  paddlex/inference/utils/mkldnn_blocklist.py,sha256=pYSebu-UYAU4XnTC19SVWcfsvkpxLlhbvcjCZHLkHIw,1800
692
704
  paddlex/inference/utils/model_paths.py,sha256=uRsEO-uHEd4xKQZqNyU5T7Vp6QI6iYZ5anZMXXpmKAg,1803
693
705
  paddlex/inference/utils/new_ir_blocklist.py,sha256=wdN1jiRWGo-YQvzoMOLhsqDjAcqhhkwfPBZEJ3-ldAw,880
694
- paddlex/inference/utils/official_models.py,sha256=Wn3PxkmrB6Zk2s0YAL7P9AJIRa7Axn49Ewum9VU90KE,44631
695
- paddlex/inference/utils/pp_option.py,sha256=HZeS7y5kc3exLUQlGp5jeMx1JxsXwxuGYOdOSmfJfg0,13067
706
+ paddlex/inference/utils/official_models.py,sha256=T-fVRuwAw941NIv0XUlPCHUZAwhPa4q5iCkBuPw9Gqs,45206
707
+ paddlex/inference/utils/pp_option.py,sha256=SZNUrTE3MrvtMZCo55CL5hdZ_3DfJCs5bOU_lJOBsoo,13769
696
708
  paddlex/inference/utils/trt_blocklist.py,sha256=vaFJs6gvkMncYKTL5R6C93Nq2eYAdeBNcmJ4-abSFa0,1465
697
709
  paddlex/inference/utils/trt_config.py,sha256=995uGRdKFyaU9EB4jLDiS85EjVLXmsCyL7gJIl3c8h0,12661
698
- paddlex/inference/utils/io/__init__.py,sha256=KE8WngZIEjrOPEGeN6AEwKU-yt5nReDRWIBcmiRPM5s,939
699
- paddlex/inference/utils/io/readers.py,sha256=5Xj0tSo6HW8ZPMetwSyFgMkr5JG1pH86XLLLWX1exGE,14112
710
+ paddlex/inference/utils/io/__init__.py,sha256=Ev_FQO6Ay19trZM8AVg3Zb9lbYHNCsQU74cm3II8BcQ,959
711
+ paddlex/inference/utils/io/readers.py,sha256=bhf7in5rAb_125RECmtH_UZJ5GSUNXSip67cix0zjGM,15227
700
712
  paddlex/inference/utils/io/style.py,sha256=0wIJQ9Gq8lgHec65TKq17W626kMHkwIqyUI1okkZOzg,11522
701
713
  paddlex/inference/utils/io/tablepyxl.py,sha256=jTgpLrYbpJ20SWKNI87ZAF03xPHQJNjzGuYkbIE-KE8,5264
702
- paddlex/inference/utils/io/writers.py,sha256=eQzWGFFf0JKvgk_UnqvdQZs1aCDGbs9MQW0EST3IoJo,12720
714
+ paddlex/inference/utils/io/writers.py,sha256=vNlqB299j6loW8tUId1dYFoL_5KayYJqDyVEvIpsYZ8,12750
703
715
  paddlex/modules/__init__.py,sha256=Ow5J6NKjMeOmR64EaJmX3PPRyhle9HlebXOHP-ZSFiw,3002
704
716
  paddlex/modules/anomaly_detection/__init__.py,sha256=-KBaNC_byJeI2uisbbBePhif2OI4odukBI2kg2jdOzY,759
705
717
  paddlex/modules/anomaly_detection/evaluator.py,sha256=HM45C8XxQ6FFuCRTJaw922RIZJ-qJHfN2xoCO7yx3z8,1754
@@ -710,7 +722,7 @@ paddlex/modules/anomaly_detection/dataset_checker/__init__.py,sha256=-CgtodAg2-8
710
722
  paddlex/modules/anomaly_detection/dataset_checker/dataset_src/__init__.py,sha256=X7tKpOP8SC5V857urIX6C7A3I_OCi7rTgNFiro-wb1U,783
711
723
  paddlex/modules/anomaly_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=oHzquwZ-16_A__pnlEqSM-8M_gzBAJB851AiiMrPcAM,3150
712
724
  paddlex/modules/anomaly_detection/dataset_checker/dataset_src/check_dataset.py,sha256=jJgZ7AILeRF9smCYsOgk6JNf2rdaVmcmni2yvPYUOqw,3911
713
- paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=cwcDBJ_HxEhnG2j85viVBQ240gcNHo8442QE5lJizEE,8312
725
+ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=KFKvkJX7viTBcN2m5jvER9wgvJuLdXZb5IP5nI-yx1M,8310
714
726
  paddlex/modules/anomaly_detection/dataset_checker/dataset_src/split_dataset.py,sha256=k8oWJZs3srA5gZeJpgBFmzj8xVzIAsy6xfgnYRNMsEg,3295
715
727
  paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
716
728
  paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=3SzTKeTPFgOYKmcNjua6Gi9CsAw9cFMC7IG-r7-uayk,2829
@@ -741,7 +753,7 @@ paddlex/modules/face_recognition/dataset_checker/__init__.py,sha256=-AUsLe9dJ0nd
741
753
  paddlex/modules/face_recognition/dataset_checker/dataset_src/__init__.py,sha256=RNCezGsXclcWQVBjEWX7ezxG1728ZKCmOPi2X3Z7cVI,661
742
754
  paddlex/modules/face_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=pOuLRoqiDhbA-WqrZJEVy4zLqgf_FcdIIIoROz3qxAY,6458
743
755
  paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
744
- paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=mdNvYxWo1M17W3eI1sslcuHfbtiTR-MyBue-cqZbU3g,4192
756
+ paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=RGAATU-OlWuZQ7tQAqWPUYpR7JaxwrgkRzCpDA4yTKs,4172
745
757
  paddlex/modules/formula_recognition/__init__.py,sha256=pcSvdDzb6aYvYQ6EtD8IeiWcA5B1i6UxvAVd91vwCcA,787
746
758
  paddlex/modules/formula_recognition/evaluator.py,sha256=2DKs82uO07DtCZZ6GixBGAa1kSo4nZsgviZ7aKzOBRM,2898
747
759
  paddlex/modules/formula_recognition/exportor.py,sha256=WbYjW3kSUHanO8PWEB_pmKHirqXJpe8ouFibXDSsOIw,780
@@ -749,7 +761,7 @@ paddlex/modules/formula_recognition/model_list.py,sha256=bk6ylR5DfXDVnkKQzz1iFTh
749
761
  paddlex/modules/formula_recognition/trainer.py,sha256=JyVHmGhv3h2A7pT1H90B9zHt73Nu9kswPtQp8VJx2lM,4738
750
762
  paddlex/modules/formula_recognition/dataset_checker/__init__.py,sha256=gNsmua_EtPCt45NICbaf1DPguSyL9V54pgIjfEA1tGg,3448
751
763
  paddlex/modules/formula_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
752
- paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=8BKm_4GMcdyGg8YUAhXCHIxnq-eGnOCM4Pfo31nDcYs,5401
764
+ paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=fX3c7yZQutIlcBLS0BZBSMW2Auqs_bEklBbIC1oa0X4,5386
753
765
  paddlex/modules/formula_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=XNiFYuX9IQ6j_z87GEUi8f2whRrn4VAqAI8wAODvDsM,3244
754
766
  paddlex/modules/formula_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=4u1T7bqwfBgCI407A-DuJHkasktZVKodwkPPcS12TDA,3549
755
767
  paddlex/modules/formula_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
@@ -760,12 +772,12 @@ paddlex/modules/general_recognition/model_list.py,sha256=U44cV1nO54JzantxiXvIlC6
760
772
  paddlex/modules/general_recognition/trainer.py,sha256=8QWw8gSA1htePeJbSvWSnZdAG8BIaH-wr8nUTuJf1DY,2315
761
773
  paddlex/modules/general_recognition/dataset_checker/__init__.py,sha256=KYtNWnZGbOsPgzIUUPwgZoA2jaUuISB8GSeF19z0LkA,3320
762
774
  paddlex/modules/general_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
763
- paddlex/modules/general_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=oYBvBPR1gHSIxNA8E_nsvDeVFsQlNnFRex7W7X5V_SE,3520
775
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=cC7MjYMBLbPXGUaTGeefPz4MyIQdngdI0h991Vis3BU,3505
764
776
  paddlex/modules/general_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=FBztILCCr7StVx9g244ij8UeIVQ5L3nZ_77JcjGAM-o,3841
765
777
  paddlex/modules/general_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=nEax57jJsjsCLUdwGSW6zvLJuHGcuzmdWkJpLFGG-hE,3459
766
778
  paddlex/modules/general_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=8UVAXYuYD_90DcNGS4RnHD6VGZpVPJPm7wz1yEu9Gsk,3049
767
779
  paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
768
- paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=HL2H_swoXZMg81Ge9cB1cmAUQq5AYP-C0ooXQuWPhOA,3989
780
+ paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=A_OiL8B8PW_ECFiVwPnTTCR-pFI8UOO_BFih4FXtwAo,3969
769
781
  paddlex/modules/image_classification/__init__.py,sha256=KTGmo4qYKKAWWVqYKxfjzczeJn18jjiS0Zu18_-S7pI,759
770
782
  paddlex/modules/image_classification/evaluator.py,sha256=Ap23zMreohRnzAPVdljypm9S-OG-HNIIV3Ad2lMNmoc,1673
771
783
  paddlex/modules/image_classification/exportor.py,sha256=qaselLfpPO_LrHxl3598UtkblGonohX-nJLVu6ErGKM,777
@@ -773,12 +785,12 @@ paddlex/modules/image_classification/model_list.py,sha256=S173j3JjJ2CCneMHbMaIzf
773
785
  paddlex/modules/image_classification/trainer.py,sha256=PocPdlfXcZtcN0mIIKnyVnqzLtQBFpe2_2EvwoJqMHo,3470
774
786
  paddlex/modules/image_classification/dataset_checker/__init__.py,sha256=unY-5uqZd7UNnxHbdHc21PtTXD6_B2DHub7upl2678U,3176
775
787
  paddlex/modules/image_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
776
- paddlex/modules/image_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=xyNtu4GGhMNPpVFLVOknpLJhh5yAp75M0u0Rm4SPeJg,3461
788
+ paddlex/modules/image_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=00T2TFBAESS3sP1DUMVjRab01b3k2YbQERTkeVzgn2s,3446
777
789
  paddlex/modules/image_classification/dataset_checker/dataset_src/check_dataset.py,sha256=W7NLRMDWjucKBJU7x9NsZ66YGJR4OOR9OM-BCq4VYpo,5036
778
790
  paddlex/modules/image_classification/dataset_checker/dataset_src/convert_dataset.py,sha256=x26AOotf6Fj4iol8aUgIwpOyBhoT9b0OiKwnMTlkIrw,1959
779
791
  paddlex/modules/image_classification/dataset_checker/dataset_src/split_dataset.py,sha256=l1JLNa86-RxX3Ugfk3_Xx6Cc5p4zShaz0jP7jDoRMRg,2789
780
792
  paddlex/modules/image_classification/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
781
- paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualizer.py,sha256=mdNvYxWo1M17W3eI1sslcuHfbtiTR-MyBue-cqZbU3g,4192
793
+ paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualizer.py,sha256=RGAATU-OlWuZQ7tQAqWPUYpR7JaxwrgkRzCpDA4yTKs,4172
782
794
  paddlex/modules/image_unwarping/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
783
795
  paddlex/modules/image_unwarping/model_list.py,sha256=83RWeL82dZfj1nfgR6veqxHerNMurXi7KUF_GSX59Ik,636
784
796
  paddlex/modules/instance_segmentation/__init__.py,sha256=jc6nMbJQJnKEkbV2B_D8iNBhVjZ7a23vPuI3q8NgOjk,791
@@ -788,12 +800,12 @@ paddlex/modules/instance_segmentation/model_list.py,sha256=ShpbY2snmkpZl1mbkjP6G
788
800
  paddlex/modules/instance_segmentation/trainer.py,sha256=drrvAbDw1U71DxXjzk2OO06svsoE-YIR42GsJ9U1e-A,1072
789
801
  paddlex/modules/instance_segmentation/dataset_checker/__init__.py,sha256=NMByjD0tlhOhz7WTs6ACTcZgjy3n_akbdmto7rKa5fM,3277
790
802
  paddlex/modules/instance_segmentation/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
791
- paddlex/modules/instance_segmentation/dataset_checker/dataset_src/analyse_dataset.py,sha256=Fxv4JU3P4YsTjQfc71SdA0M_0Dggb53ItZZZIvzAVaU,3098
803
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/analyse_dataset.py,sha256=avCTcAB77MJJRXQlj2KslTHtQrWRYMLmabHJBZtbB9Q,3083
792
804
  paddlex/modules/instance_segmentation/dataset_checker/dataset_src/check_dataset.py,sha256=35uxzst8XLPfL3z-rrM7iBSRjp_V_3jjfn3vnsEEAVE,3722
793
805
  paddlex/modules/instance_segmentation/dataset_checker/dataset_src/convert_dataset.py,sha256=FPlRhU77rqEPHws96G3jCp-Q9TBv2reo9WSauMOo9RE,8265
794
806
  paddlex/modules/instance_segmentation/dataset_checker/dataset_src/split_dataset.py,sha256=ugPOL-h-FUyw_YGdoiXaccRS82RPMHUkCkR2WpSKMkk,4409
795
807
  paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
796
- paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py,sha256=QMkty3QWgHaVI27Bwh8uKerMjZbuxX0tLVVfXVOUbGQ,6606
808
+ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py,sha256=ctIc8vgysBka9qLS66O84DyDVUyPtOAJSGMHvWITPr0,6591
797
809
  paddlex/modules/keypoint_detection/__init__.py,sha256=xU6gi2URJH9mBXEXdPIZREwKMCzY-0rT6Cn_3DLNpbM,779
798
810
  paddlex/modules/keypoint_detection/evaluator.py,sha256=vBqBqM7gPP7_jiHJbSX4YonN1GKfVYxxma5O8oDkO3g,1465
799
811
  paddlex/modules/keypoint_detection/exportor.py,sha256=cMM1kFCXz9lBTI2U0uC5FkWRjiQqymhvWHM7xd0KrtM,778
@@ -811,7 +823,7 @@ paddlex/modules/m_3d_bev_detection/model_list.py,sha256=sJ-OTE82aymYKxt1CeFAcXO_
811
823
  paddlex/modules/m_3d_bev_detection/trainer.py,sha256=finGEesecfSBqwbJLqa-uEbHIr7Q87OTn5QI4bwz2J0,2585
812
824
  paddlex/modules/m_3d_bev_detection/dataset_checker/__init__.py,sha256=vqWBaKFjOdKNp-P-ICTj4pLISGcnH_rfvLt4p3QPBaY,2936
813
825
  paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/__init__.py,sha256=sJLqyXL-owy_gbtpQjEA2kceE6neSMJ0AIOylxApsLw,686
814
- paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=VTwHbnoMqpWrRFJVqjWzz5KI9BkKYpHML3eBiLKjuzc,3720
826
+ paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=5f-NldrNfCPYM_fJ_DPbCGOHxq3B507GbeRBlf7hnhs,3705
815
827
  paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/check_dataset.py,sha256=4GWk6wPfjQAlSyBGVlmAulzoakNLJBQ7VNC_OkCUgS4,3149
816
828
  paddlex/modules/multilabel_classification/__init__.py,sha256=5ohdWA7uRdEjOF96iTBdQ66HOLrx_Kb9IE8gYlC_c5o,767
817
829
  paddlex/modules/multilabel_classification/evaluator.py,sha256=w85sLQ-3fshDrhFu1giw-2SBQpxzahNkbjYgF7xpXsc,1677
@@ -820,12 +832,12 @@ paddlex/modules/multilabel_classification/model_list.py,sha256=ADgstt_DXLCWO8jtc
820
832
  paddlex/modules/multilabel_classification/trainer.py,sha256=HrXzTJwlFhRi1CV9DMCFJI6SZS6c1_tm9n0OxU5rQpk,3553
821
833
  paddlex/modules/multilabel_classification/dataset_checker/__init__.py,sha256=MMhBXbNa-oU-tnnvFJrn9cXUXBjVUwo_uvHKxICXrcs,3254
822
834
  paddlex/modules/multilabel_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
823
- paddlex/modules/multilabel_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=Pro_Hpd4U-nHyzmZktwr4Wq3fwVNHcEET5GgYVZ6Pdk,3560
835
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=vQwU_nUDvINmIgFhn20e0D09Rf_UdqlFmaMzG_tf-Qc,3545
824
836
  paddlex/modules/multilabel_classification/dataset_checker/dataset_src/check_dataset.py,sha256=eRYbSsYYB7ngLkIVCORmrQqG5zhDxej2UJ8Ao40s-MY,5071
825
837
  paddlex/modules/multilabel_classification/dataset_checker/dataset_src/convert_dataset.py,sha256=ZXMxhi3iwx_e9xKdhgULP_qmrRyTP6vwlU4cNVPO6AQ,4578
826
838
  paddlex/modules/multilabel_classification/dataset_checker/dataset_src/split_dataset.py,sha256=l1JLNa86-RxX3Ugfk3_Xx6Cc5p4zShaz0jP7jDoRMRg,2789
827
839
  paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
828
- paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/visualizer.py,sha256=oIetCED-GiTQkhCphKAMqw4Mgdwze6k2j48YSfWzBtI,3840
840
+ paddlex/modules/multilabel_classification/dataset_checker/dataset_src/utils/visualizer.py,sha256=Yzb3K5h_HpREOUQsBAf06SWfhieDzBck5C9bjl2LdiE,3825
829
841
  paddlex/modules/multilingual_speech_recognition/__init__.py,sha256=2oF6pQLy2IPeOLGIlrXejD3o2NSd3fUvTAakME7QMME,775
830
842
  paddlex/modules/multilingual_speech_recognition/dataset_checker.py,sha256=6dEDFf6HF1lm2i-R3fAfkHRBaf0S10BaxBsvZ0oMsNU,991
831
843
  paddlex/modules/multilingual_speech_recognition/evaluator.py,sha256=-DDE0S9k1Ct-fs3Z4M1ogpN1DLWOdAv6lT9rIxHwei4,973
@@ -839,12 +851,12 @@ paddlex/modules/object_detection/model_list.py,sha256=_jCPiQiQy99msVMkUQXjck-ucF
839
851
  paddlex/modules/object_detection/trainer.py,sha256=7c_bx20pK-akmuwTgrfIeq1UlSRHM-CkgbzpRiKL89M,3870
840
852
  paddlex/modules/object_detection/dataset_checker/__init__.py,sha256=Dq-3Qp70x7D5aymh0wx32ygaqdrLi7zX92nPNPPs7DE,3251
841
853
  paddlex/modules/object_detection/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
842
- paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=Fxv4JU3P4YsTjQfc71SdA0M_0Dggb53ItZZZIvzAVaU,3098
854
+ paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=avCTcAB77MJJRXQlj2KslTHtQrWRYMLmabHJBZtbB9Q,3083
843
855
  paddlex/modules/object_detection/dataset_checker/dataset_src/check_dataset.py,sha256=fsWdFyaAQJJ21-9GFUYQoOrx6cutLk2B4AHhPMiN9hE,3497
844
856
  paddlex/modules/object_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=7uwlx1gzzXCAiSAYNSv0upyuLoiu5n2Drrt-HSk-1xo,15061
845
857
  paddlex/modules/object_detection/dataset_checker/dataset_src/split_dataset.py,sha256=gDmr5gQLsNbEvAEiAnXI379kYLRnNb-Z2YHiEXltu5U,4456
846
858
  paddlex/modules/object_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
847
- paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=cgtHbrXRxjPE5X82sAm7Jtf-f6XGo-rqm4hMR6hBjrg,5552
859
+ paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=Q8GZIOYQRdQ2gsH9IjE3rY6jeiZdi-s552fdab9X7Jk,5537
848
860
  paddlex/modules/open_vocabulary_detection/__init__.py,sha256=J96y4YydfxzaoyRgrE7-OgztkzTZZTudvpt5mGTNTUI,767
849
861
  paddlex/modules/open_vocabulary_detection/dataset_checker.py,sha256=45TNPA-OyrQmQWMBWADLFTeLrG9py0wKlluqqMKonqE,1051
850
862
  paddlex/modules/open_vocabulary_detection/evaluator.py,sha256=oTfoDknLong0Z6vxMPXaBppshTSi6MS__GYzo4iQkJA,1024
@@ -893,11 +905,11 @@ paddlex/modules/text_detection/dataset_checker/dataset_src/split_dataset.py,sha2
893
905
  paddlex/modules/text_recognition/__init__.py,sha256=NZSK1WT-lLtT407BGiUIMHLoNmTRwBxrKkW69KsiHgw,775
894
906
  paddlex/modules/text_recognition/evaluator.py,sha256=xlreNiqba9yTzz7zjvwdShTchr-idgh3W1gyvhRkMWE,2288
895
907
  paddlex/modules/text_recognition/exportor.py,sha256=FO-0PMhoO5ZqLjjYWG2XywrxdW98vnDq1r5TMyXOe8g,777
896
- paddlex/modules/text_recognition/model_list.py,sha256=KD_jdQ5T5DAR1yUXBVZ77oIKbbJ3HwIVtw0dJziGi7Q,1229
908
+ paddlex/modules/text_recognition/model_list.py,sha256=mAEfMcRzvk6Kt-t7kZkhn2lCc838MlyNsvsoUMQXpw4,1329
897
909
  paddlex/modules/text_recognition/trainer.py,sha256=if77U014_hqvbK7VrzlP5LA3WZ0M3nuscpHlqYheQtc,4091
898
910
  paddlex/modules/text_recognition/dataset_checker/__init__.py,sha256=Psu2rjBm3EYp57pli6-CB-2QZQwMnU5fhZ-muls__iE,3777
899
911
  paddlex/modules/text_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
900
- paddlex/modules/text_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=pZR48Zq3Q5P2V3ImdyxzDUy5P7hBxsG1-JrjJNecJXA,5693
912
+ paddlex/modules/text_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=IhuPpblRt6UI4G6hPWNzmvGYIt11nO7CKquv7xx37qs,5678
901
913
  paddlex/modules/text_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=ZMqG1LkeMnzDU_oSmG515ydBZqbS8rfdGEU9dh-Eq9k,4577
902
914
  paddlex/modules/text_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=MdXpA2tHueA_w2ZQ9my8x4xuI-NdOQdM-kKSzjYMmoA,3573
903
915
  paddlex/modules/text_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
@@ -919,7 +931,7 @@ paddlex/modules/ts_classification/model_list.py,sha256=ncShFgm5mX8zGXoV1Mr9ZVtYa
919
931
  paddlex/modules/ts_classification/trainer.py,sha256=BqF9VQFw8H8BYwWkyNQxa4MaHJZJKK12M5IAwM1qZI8,4588
920
932
  paddlex/modules/ts_classification/dataset_checker/__init__.py,sha256=b0Vbe6JujEY985HO2si44FPVsN_2NhRSRk5ID3jfpPo,3291
921
933
  paddlex/modules/ts_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
922
- paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=fY1AbJ3WKUF8PvCvfkw7HmrCVhyfwW5rXTsEYH0MGHU,2929
934
+ paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=qbPgz8c9tSYgMx-rXuwvT7SGH8Ui9CyH2-iOk0Y0xPc,2914
923
935
  paddlex/modules/ts_classification/dataset_checker/dataset_src/check_dataset.py,sha256=0ga6CkFwuJLOkYidngLXlhmfVcL99KOIvrC7AwwBCvk,2302
924
936
  paddlex/modules/ts_classification/dataset_checker/dataset_src/convert_dataset.py,sha256=8lV9_e4Vvw2ijBlEm5s80Bm_UFPFlVyxpu19vjRlWqg,2689
925
937
  paddlex/modules/ts_classification/dataset_checker/dataset_src/split_dataset.py,sha256=QlorUATL9UYybLpohJeD_1qXEDTVf89j7Ugbi0AMoxk,3314
@@ -941,7 +953,7 @@ paddlex/modules/video_classification/model_list.py,sha256=oc4cq9Hweb-3lRw--NJMuI
941
953
  paddlex/modules/video_classification/trainer.py,sha256=Ci0ciVIhJHFEBVCdHfFZcRDHkvj4NRxS8ZSpuMI5q88,3686
942
954
  paddlex/modules/video_classification/dataset_checker/__init__.py,sha256=dCBRqSn53BtjgKBkR-1i4LTzHInPIHl_kKAAP3qtXgQ,2842
943
955
  paddlex/modules/video_classification/dataset_checker/dataset_src/__init__.py,sha256=96FTutWNDvku-5ZxTw8eT-gkZuMEMbOX0z3ebaZ-sIc,727
944
- paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=Kw9jBEn6510NsG2FOYM1DqXJntnfBKO17o67hD83194,3462
956
+ paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=AjJB2So1tVNL6Q_grd1Wgvl7ssxruH5ckPaMVtf-188,3447
945
957
  paddlex/modules/video_classification/dataset_checker/dataset_src/check_dataset.py,sha256=kRsO7itR0UmTfDAy08nCI_t0xoUc_T_8QoDO4fPBiD8,4491
946
958
  paddlex/modules/video_classification/dataset_checker/dataset_src/split_dataset.py,sha256=a7xE1gC5Lwzmxa_8N64UabOKl18FiRyL5hNE8uwUCCI,2886
947
959
  paddlex/modules/video_detection/__init__.py,sha256=BQqsxvL85NaOClwvOIq_681btrsnkx9MeqZogsSjci0,779
@@ -951,7 +963,7 @@ paddlex/modules/video_detection/model_list.py,sha256=pRzjeiRpi9LcBqUZ0B54UOU3FpZ
951
963
  paddlex/modules/video_detection/trainer.py,sha256=ORwQauyZnp0mBTBMMMthcDlD9HFUS_yzYkUa9qL68wc,3382
952
964
  paddlex/modules/video_detection/dataset_checker/__init__.py,sha256=c5jNtdwElm97vpXNMMqAQTXyZh80kkOFg4PQgf1WOLk,2567
953
965
  paddlex/modules/video_detection/dataset_checker/dataset_src/__init__.py,sha256=sJLqyXL-owy_gbtpQjEA2kceE6neSMJ0AIOylxApsLw,686
954
- paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=PIeAD38D_tgDSY12Q574iLdl6cBI_qhLPhvU-rUdqD8,3776
966
+ paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=MLtpDbR1LTv4ryp85R9QIOyEK0H38MX3Hrpn_VqXt20,3761
955
967
  paddlex/modules/video_detection/dataset_checker/dataset_src/check_dataset.py,sha256=_rZDkMwn73J2oxzdWkh_cj6MUrWo7ziNYL49DdC5hW4,5316
956
968
  paddlex/ops/__init__.py,sha256=LK05L6sfbpEzTTdZA68g19QumkyDZzciPuUUFtBoScQ,4732
957
969
  paddlex/ops/setup.py,sha256=k7bXqdmK02lHKgq6c8dtMw8copz53lHSh7waH-Hyvew,1336
@@ -1016,7 +1028,7 @@ paddlex/repo_apis/PaddleOCR_api/text_det/runner.py,sha256=eyQWbTiA8J2vojVSqILyvI
1016
1028
  paddlex/repo_apis/PaddleOCR_api/text_rec/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
1017
1029
  paddlex/repo_apis/PaddleOCR_api/text_rec/config.py,sha256=LLk6Pr7MPOQIOSC15sUkdNRJ7PN1Dom_sn8iEJEs7C4,19338
1018
1030
  paddlex/repo_apis/PaddleOCR_api/text_rec/model.py,sha256=sXlVD-p-pRFd2auCzpqV2PJO3rFOSBiCCXruRqhIBrA,14214
1019
- paddlex/repo_apis/PaddleOCR_api/text_rec/register.py,sha256=GTysrnCjbJ1hKOOXvofKi_nbN5JRiVkcrIPo01FF__A,6436
1031
+ paddlex/repo_apis/PaddleOCR_api/text_rec/register.py,sha256=BXHqS9UoU_PcgYPaS0X-2iLzZUYORZLeG9vJeP8afyo,7242
1020
1032
  paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py,sha256=n7irgiPmLRQCa-m0RT9GCiH2hsjTs_vKHM6fZPosd6Q,8297
1021
1033
  paddlex/repo_apis/PaddleSeg_api/__init__.py,sha256=DpeE4i2hFC3AFtngLAIYb6yxJKJ1yxL_YLaC234zEGI,637
1022
1034
  paddlex/repo_apis/PaddleSeg_api/base_seg_config.py,sha256=_ryWxmTRtOeCbY2l3Hmd10aTn4PPlJ-dlCkkkmYrhZ0,4634
@@ -1063,7 +1075,7 @@ paddlex/repo_apis/base/utils/arg.py,sha256=5ys3bQQM8SerntsUyjs9a2kJFh_q8iUDvKNvl
1063
1075
  paddlex/repo_apis/base/utils/subprocess.py,sha256=_okQOuvvanAwDn-i8uPWb0RWwRK2No6EM1eRsPSY-Ss,3199
1064
1076
  paddlex/repo_manager/__init__.py,sha256=ZlHiGf_IbfSKhM91bgO0AilkIKdUs-twStzXeMyez4M,763
1065
1077
  paddlex/repo_manager/core.py,sha256=D5CggbjpJpgmSaMIdfF8z6LDJeM2G1J0JTdY3_6JMkY,8160
1066
- paddlex/repo_manager/meta.py,sha256=T0wCiItQCphSmow-sjxAoAniTs-6zZj5yqIRGOIQzFg,5695
1078
+ paddlex/repo_manager/meta.py,sha256=OSnTdQXujPPSFBBjEfHo32tBmj05lga8g-JWVeYjKgs,5680
1067
1079
  paddlex/repo_manager/repo.py,sha256=dOp3YeUYz3GTNrKX9X5b1zcIlnfMvgXg7QJslBoOy6g,16016
1068
1080
  paddlex/repo_manager/utils.py,sha256=H33cKaFjU4Un6a9-gwzfznNdKVTLmLp9wEloog18AP0,4803
1069
1081
  paddlex/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
@@ -1071,11 +1083,12 @@ paddlex/utils/cache.py,sha256=xcdPyZKcL6SQvtz0Sk66FpQWhjLW7QqSdU44ocme0zE,4778
1071
1083
  paddlex/utils/config.py,sha256=mMP-WHMBB98hW-paFSc8vDnR7h87UpAe6X34W6ggIlQ,6255
1072
1084
  paddlex/utils/custom_device_list.py,sha256=_9t81bfHijsjpk23_anibl8r484iYdhENsdETg0obj0,7216
1073
1085
  paddlex/utils/deps.py,sha256=HL78ZP8oX6urGDoK-KA8A0ExJvitAv7CbIAXqxzWz24,7905
1074
- paddlex/utils/device.py,sha256=fETdmBa3R_8MYnrFOuM3xjul2mhXNsJR09KXdo4ZNJA,6236
1075
- paddlex/utils/download.py,sha256=CC7TTOaOFXfcWCAg6CRJ-ECMIF9QVuvWFCOe39X2dhM,6402
1086
+ paddlex/utils/device.py,sha256=Hvzls9oRiPT-0jnKugXYBEQphAE8CjzRXtVGe6eJPzc,6316
1087
+ paddlex/utils/download.py,sha256=rOmnb8obglI9dA7F86161xPQE5qOdbzg0LqcLEVs3wE,6558
1076
1088
  paddlex/utils/env.py,sha256=dVOm9yQgXOGd4xFOFAmBHcKMDXCq-cuv3VDilGv-iHk,1617
1077
1089
  paddlex/utils/file_interface.py,sha256=KfMl_NQIpRGxBL9bRd54OK60RkSesDBQFeMftdDlVt8,6523
1078
1090
  paddlex/utils/flags.py,sha256=ieTQVpVYsR2mSmFQFfXJT2zcMR4vxGhHfevBJiJg6ik,2890
1091
+ paddlex/utils/fonts.py,sha256=UxwWZ3cYlpLztK8sgPdst8NOucdM3rrKtg9KzhECQiw,4055
1079
1092
  paddlex/utils/func_register.py,sha256=XEMaJ_ttfLp8Tos3vb1HH5cdsQX7uGiZ77W0t9tWHuE,1355
1080
1093
  paddlex/utils/install.py,sha256=C8GMNv7YLoTi6MdOl1B1ojlsWOQFxX8piuIO-5Hkg8c,2507
1081
1094
  paddlex/utils/interactive_get_pipeline.py,sha256=J0RIY_gry2J9s_c1-vF5oN49gDzjLnxtJhtLJMp1u7I,1916
@@ -1088,10 +1101,9 @@ paddlex/utils/subclass_register.py,sha256=7PQLJYP7_WnMSYR_YP_rBGeDtSQd8V71Rq-3T0
1088
1101
  paddlex/utils/errors/__init__.py,sha256=1ooQ6m7PWkmniQbq4xVMVubjBKlMbZzoIvoPlKBoBgI,664
1089
1102
  paddlex/utils/errors/dataset_checker.py,sha256=hnLeqMyMLuQQVWhHsfakpcZAN4Tu2ULaqtlQ9BzC1pI,2200
1090
1103
  paddlex/utils/errors/others.py,sha256=5RwDvxq4_K4UHMFRldrbwoDMnW8mW2KATinIwac7v-4,4303
1091
- paddlex/utils/fonts/__init__.py,sha256=o47S4aK6ZKt5pfCc1_paMMig4fcSwgWX4m1BN4ybQ2Q,3297
1092
- paddlex-3.0.2.dist-info/LICENSE,sha256=rMw2yBesXt5HPQVzLhSvwRy25V71kZvIJrZT9jEWUEM,11325
1093
- paddlex-3.0.2.dist-info/METADATA,sha256=l1M2CluJyeNTy7Njg1ELwzC7GHnPlUrPfGdUbrrvjNs,76648
1094
- paddlex-3.0.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1095
- paddlex-3.0.2.dist-info/entry_points.txt,sha256=65F9jsc5DpDHIv2DjPIVwnTf-zSokvgExdu3HKjhdfY,60
1096
- paddlex-3.0.2.dist-info/top_level.txt,sha256=KWSxMIrEchP3dxsAjzSRR-jmnjW0YGHECxG9OA5YB_g,8
1097
- paddlex-3.0.2.dist-info/RECORD,,
1104
+ paddlex-3.1.0.dist-info/LICENSE,sha256=rMw2yBesXt5HPQVzLhSvwRy25V71kZvIJrZT9jEWUEM,11325
1105
+ paddlex-3.1.0.dist-info/METADATA,sha256=F0u9bbMKAP9RBjY3mQAwLjC-OvkWLG-A8wVUydeyFwA,78066
1106
+ paddlex-3.1.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1107
+ paddlex-3.1.0.dist-info/entry_points.txt,sha256=65F9jsc5DpDHIv2DjPIVwnTf-zSokvgExdu3HKjhdfY,60
1108
+ paddlex-3.1.0.dist-info/top_level.txt,sha256=KWSxMIrEchP3dxsAjzSRR-jmnjW0YGHECxG9OA5YB_g,8
1109
+ paddlex-3.1.0.dist-info/RECORD,,