paddlex 3.0.0rc1__py3-none-any.whl → 3.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- paddlex/.version +1 -1
- paddlex/__init__.py +1 -1
- paddlex/configs/modules/chart_parsing/PP-Chart2Table.yaml +13 -0
- paddlex/configs/modules/doc_vlm/PP-DocBee2-3B.yaml +14 -0
- paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-L.yaml +40 -0
- paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-M.yaml +40 -0
- paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-S.yaml +40 -0
- paddlex/configs/modules/layout_detection/PP-DocBlockLayout.yaml +40 -0
- paddlex/configs/modules/layout_detection/PP-DocLayout-L.yaml +2 -2
- paddlex/configs/modules/layout_detection/PP-DocLayout-M.yaml +2 -2
- paddlex/configs/modules/layout_detection/PP-DocLayout-S.yaml +2 -2
- paddlex/configs/modules/layout_detection/PP-DocLayout_plus-L.yaml +40 -0
- paddlex/configs/modules/text_detection/PP-OCRv5_mobile_det.yaml +40 -0
- paddlex/configs/modules/text_detection/PP-OCRv5_server_det.yaml +40 -0
- paddlex/configs/modules/text_recognition/PP-OCRv5_mobile_rec.yaml +39 -0
- paddlex/configs/modules/text_recognition/PP-OCRv5_server_rec.yaml +39 -0
- paddlex/configs/modules/textline_orientation/PP-LCNet_x1_0_textline_ori.yaml +41 -0
- paddlex/configs/pipelines/OCR.yaml +7 -6
- paddlex/configs/pipelines/PP-ChatOCRv3-doc.yaml +3 -1
- paddlex/configs/pipelines/PP-ChatOCRv4-doc.yaml +91 -34
- paddlex/configs/pipelines/PP-StructureV3.yaml +72 -72
- paddlex/configs/pipelines/doc_understanding.yaml +1 -1
- paddlex/configs/pipelines/formula_recognition.yaml +2 -2
- paddlex/configs/pipelines/layout_parsing.yaml +3 -2
- paddlex/configs/pipelines/seal_recognition.yaml +1 -0
- paddlex/configs/pipelines/table_recognition.yaml +2 -1
- paddlex/configs/pipelines/table_recognition_v2.yaml +7 -1
- paddlex/hpip_links.html +20 -20
- paddlex/inference/common/batch_sampler/doc_vlm_batch_sampler.py +33 -10
- paddlex/inference/common/batch_sampler/image_batch_sampler.py +34 -25
- paddlex/inference/common/result/mixin.py +19 -12
- paddlex/inference/models/base/predictor/base_predictor.py +2 -8
- paddlex/inference/models/common/static_infer.py +11 -59
- paddlex/inference/models/common/tokenizer/__init__.py +2 -0
- paddlex/inference/models/common/tokenizer/clip_tokenizer.py +1 -1
- paddlex/inference/models/common/tokenizer/gpt_tokenizer.py +2 -2
- paddlex/inference/models/common/tokenizer/qwen2_5_tokenizer.py +112 -0
- paddlex/inference/models/common/tokenizer/qwen2_tokenizer.py +7 -1
- paddlex/inference/models/common/tokenizer/qwen_tokenizer.py +288 -0
- paddlex/inference/models/common/tokenizer/tokenizer_utils.py +13 -13
- paddlex/inference/models/common/tokenizer/tokenizer_utils_base.py +3 -3
- paddlex/inference/models/common/tokenizer/vocab.py +7 -7
- paddlex/inference/models/common/vlm/conversion_utils.py +99 -0
- paddlex/inference/models/common/vlm/fusion_ops.py +205 -0
- paddlex/inference/models/common/vlm/generation/configuration_utils.py +1 -1
- paddlex/inference/models/common/vlm/generation/logits_process.py +1 -1
- paddlex/inference/models/common/vlm/generation/utils.py +1 -1
- paddlex/inference/models/common/vlm/transformers/configuration_utils.py +3 -3
- paddlex/inference/models/common/vlm/transformers/conversion_utils.py +3 -3
- paddlex/inference/models/common/vlm/transformers/model_outputs.py +2 -2
- paddlex/inference/models/common/vlm/transformers/model_utils.py +7 -31
- paddlex/inference/models/doc_vlm/modeling/GOT_ocr_2_0.py +830 -0
- paddlex/inference/models/doc_vlm/modeling/__init__.py +2 -0
- paddlex/inference/models/doc_vlm/modeling/qwen2.py +1606 -0
- paddlex/inference/models/doc_vlm/modeling/qwen2_5_vl.py +3006 -0
- paddlex/inference/models/doc_vlm/modeling/qwen2_vl.py +0 -105
- paddlex/inference/models/doc_vlm/predictor.py +79 -24
- paddlex/inference/models/doc_vlm/processors/GOT_ocr_2_0.py +97 -0
- paddlex/inference/models/doc_vlm/processors/__init__.py +2 -0
- paddlex/inference/models/doc_vlm/processors/common.py +189 -0
- paddlex/inference/models/doc_vlm/processors/qwen2_5_vl.py +548 -0
- paddlex/inference/models/doc_vlm/processors/qwen2_vl.py +21 -176
- paddlex/inference/models/formula_recognition/predictor.py +7 -1
- paddlex/inference/models/formula_recognition/processors.py +92 -79
- paddlex/inference/models/formula_recognition/result.py +28 -27
- paddlex/inference/models/image_feature/processors.py +3 -4
- paddlex/inference/models/keypoint_detection/predictor.py +3 -0
- paddlex/inference/models/object_detection/predictor.py +2 -0
- paddlex/inference/models/object_detection/processors.py +28 -3
- paddlex/inference/models/object_detection/utils.py +2 -0
- paddlex/inference/models/table_structure_recognition/result.py +0 -10
- paddlex/inference/models/text_detection/predictor.py +8 -0
- paddlex/inference/models/text_detection/processors.py +44 -10
- paddlex/inference/models/text_detection/result.py +0 -10
- paddlex/inference/pipelines/__init__.py +9 -5
- paddlex/inference/pipelines/_parallel.py +172 -0
- paddlex/inference/pipelines/anomaly_detection/pipeline.py +16 -6
- paddlex/inference/pipelines/attribute_recognition/pipeline.py +11 -1
- paddlex/inference/pipelines/base.py +14 -4
- paddlex/inference/pipelines/components/faisser.py +1 -1
- paddlex/inference/pipelines/doc_preprocessor/pipeline.py +53 -27
- paddlex/inference/pipelines/formula_recognition/pipeline.py +120 -82
- paddlex/inference/pipelines/formula_recognition/result.py +1 -11
- paddlex/inference/pipelines/image_classification/pipeline.py +16 -6
- paddlex/inference/pipelines/image_multilabel_classification/pipeline.py +16 -6
- paddlex/inference/pipelines/instance_segmentation/pipeline.py +16 -6
- paddlex/inference/pipelines/keypoint_detection/pipeline.py +16 -6
- paddlex/inference/pipelines/layout_parsing/pipeline.py +34 -47
- paddlex/inference/pipelines/layout_parsing/pipeline_v2.py +893 -260
- paddlex/inference/pipelines/layout_parsing/result.py +4 -17
- paddlex/inference/pipelines/layout_parsing/result_v2.py +523 -245
- paddlex/inference/pipelines/layout_parsing/setting.py +87 -0
- paddlex/inference/pipelines/layout_parsing/utils.py +565 -1998
- paddlex/inference/pipelines/layout_parsing/xycut_enhanced/__init__.py +16 -0
- paddlex/inference/pipelines/layout_parsing/xycut_enhanced/utils.py +1144 -0
- paddlex/inference/pipelines/layout_parsing/xycut_enhanced/xycuts.py +563 -0
- paddlex/inference/pipelines/m_3d_bev_detection/pipeline.py +2 -2
- paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py +2 -2
- paddlex/inference/pipelines/object_detection/pipeline.py +16 -6
- paddlex/inference/pipelines/ocr/pipeline.py +127 -70
- paddlex/inference/pipelines/ocr/result.py +19 -16
- paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py +2 -2
- paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py +2 -2
- paddlex/inference/pipelines/pp_chatocr/pipeline_base.py +2 -2
- paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py +2 -5
- paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py +5 -5
- paddlex/inference/pipelines/rotated_object_detection/pipeline.py +16 -6
- paddlex/inference/pipelines/seal_recognition/pipeline.py +109 -53
- paddlex/inference/pipelines/semantic_segmentation/pipeline.py +16 -6
- paddlex/inference/pipelines/small_object_detection/pipeline.py +16 -6
- paddlex/inference/pipelines/table_recognition/pipeline.py +26 -18
- paddlex/inference/pipelines/table_recognition/pipeline_v2.py +624 -53
- paddlex/inference/pipelines/table_recognition/result.py +1 -1
- paddlex/inference/pipelines/table_recognition/table_recognition_post_processing_v2.py +9 -5
- paddlex/inference/pipelines/ts_anomaly_detection/pipeline.py +2 -2
- paddlex/inference/pipelines/ts_classification/pipeline.py +2 -2
- paddlex/inference/pipelines/ts_forecasting/pipeline.py +2 -2
- paddlex/inference/pipelines/video_classification/pipeline.py +2 -2
- paddlex/inference/pipelines/video_detection/pipeline.py +2 -2
- paddlex/inference/serving/basic_serving/_pipeline_apps/_common/common.py +5 -1
- paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py +0 -1
- paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py +0 -1
- paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py +1 -1
- paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py +6 -2
- paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py +1 -5
- paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py +4 -5
- paddlex/inference/serving/infra/utils.py +20 -22
- paddlex/inference/serving/schemas/formula_recognition.py +1 -1
- paddlex/inference/serving/schemas/layout_parsing.py +1 -2
- paddlex/inference/serving/schemas/pp_chatocrv3_doc.py +1 -2
- paddlex/inference/serving/schemas/pp_chatocrv4_doc.py +2 -2
- paddlex/inference/serving/schemas/pp_structurev3.py +10 -6
- paddlex/inference/serving/schemas/seal_recognition.py +1 -1
- paddlex/inference/serving/schemas/table_recognition.py +2 -6
- paddlex/inference/serving/schemas/table_recognition_v2.py +5 -6
- paddlex/inference/utils/hpi.py +8 -1
- paddlex/inference/utils/hpi_model_info_collection.json +81 -2
- paddlex/inference/utils/io/readers.py +12 -12
- paddlex/inference/utils/mkldnn_blocklist.py +25 -0
- paddlex/inference/utils/official_models.py +14 -0
- paddlex/inference/utils/pp_option.py +29 -8
- paddlex/model.py +2 -2
- paddlex/modules/__init__.py +1 -1
- paddlex/modules/anomaly_detection/evaluator.py +2 -2
- paddlex/modules/base/__init__.py +1 -1
- paddlex/modules/base/evaluator.py +5 -5
- paddlex/modules/base/trainer.py +1 -1
- paddlex/modules/doc_vlm/dataset_checker.py +2 -2
- paddlex/modules/doc_vlm/evaluator.py +2 -2
- paddlex/modules/doc_vlm/exportor.py +2 -2
- paddlex/modules/doc_vlm/model_list.py +1 -1
- paddlex/modules/doc_vlm/trainer.py +2 -2
- paddlex/modules/face_recognition/evaluator.py +2 -2
- paddlex/modules/formula_recognition/evaluator.py +5 -2
- paddlex/modules/formula_recognition/model_list.py +3 -0
- paddlex/modules/formula_recognition/trainer.py +3 -0
- paddlex/modules/general_recognition/evaluator.py +1 -1
- paddlex/modules/image_classification/evaluator.py +2 -2
- paddlex/modules/image_classification/model_list.py +1 -0
- paddlex/modules/instance_segmentation/evaluator.py +1 -1
- paddlex/modules/keypoint_detection/evaluator.py +1 -1
- paddlex/modules/m_3d_bev_detection/evaluator.py +2 -2
- paddlex/modules/multilabel_classification/evaluator.py +2 -2
- paddlex/modules/object_detection/dataset_checker/dataset_src/convert_dataset.py +4 -4
- paddlex/modules/object_detection/evaluator.py +2 -2
- paddlex/modules/object_detection/model_list.py +2 -0
- paddlex/modules/semantic_segmentation/evaluator.py +2 -2
- paddlex/modules/table_recognition/evaluator.py +2 -2
- paddlex/modules/text_detection/evaluator.py +2 -2
- paddlex/modules/text_detection/model_list.py +2 -0
- paddlex/modules/text_recognition/evaluator.py +2 -2
- paddlex/modules/text_recognition/model_list.py +2 -0
- paddlex/modules/ts_anomaly_detection/evaluator.py +2 -2
- paddlex/modules/ts_classification/dataset_checker/dataset_src/split_dataset.py +1 -1
- paddlex/modules/ts_classification/evaluator.py +2 -2
- paddlex/modules/ts_forecast/evaluator.py +2 -2
- paddlex/modules/video_classification/evaluator.py +2 -2
- paddlex/modules/video_detection/evaluator.py +2 -2
- paddlex/ops/__init__.py +2 -2
- paddlex/paddlex_cli.py +19 -13
- paddlex/repo_apis/Paddle3D_api/bev_fusion/model.py +2 -2
- paddlex/repo_apis/PaddleClas_api/cls/config.py +1 -1
- paddlex/repo_apis/PaddleClas_api/cls/model.py +1 -1
- paddlex/repo_apis/PaddleClas_api/cls/register.py +10 -0
- paddlex/repo_apis/PaddleClas_api/cls/runner.py +1 -1
- paddlex/repo_apis/PaddleDetection_api/instance_seg/model.py +1 -1
- paddlex/repo_apis/PaddleDetection_api/instance_seg/runner.py +1 -1
- paddlex/repo_apis/PaddleDetection_api/object_det/config.py +1 -1
- paddlex/repo_apis/PaddleDetection_api/object_det/model.py +1 -1
- paddlex/repo_apis/PaddleDetection_api/object_det/official_categories.py +25 -0
- paddlex/repo_apis/PaddleDetection_api/object_det/register.py +30 -0
- paddlex/repo_apis/PaddleDetection_api/object_det/runner.py +1 -1
- paddlex/repo_apis/PaddleOCR_api/formula_rec/config.py +3 -3
- paddlex/repo_apis/PaddleOCR_api/formula_rec/model.py +5 -9
- paddlex/repo_apis/PaddleOCR_api/formula_rec/register.py +27 -0
- paddlex/repo_apis/PaddleOCR_api/formula_rec/runner.py +1 -1
- paddlex/repo_apis/PaddleOCR_api/table_rec/model.py +1 -1
- paddlex/repo_apis/PaddleOCR_api/table_rec/runner.py +1 -1
- paddlex/repo_apis/PaddleOCR_api/text_det/model.py +1 -1
- paddlex/repo_apis/PaddleOCR_api/text_det/register.py +18 -0
- paddlex/repo_apis/PaddleOCR_api/text_det/runner.py +1 -1
- paddlex/repo_apis/PaddleOCR_api/text_rec/config.py +3 -3
- paddlex/repo_apis/PaddleOCR_api/text_rec/model.py +5 -9
- paddlex/repo_apis/PaddleOCR_api/text_rec/register.py +18 -0
- paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py +1 -1
- paddlex/repo_apis/PaddleSeg_api/seg/model.py +1 -1
- paddlex/repo_apis/PaddleSeg_api/seg/runner.py +1 -1
- paddlex/repo_apis/PaddleTS_api/ts_ad/config.py +3 -3
- paddlex/repo_apis/PaddleTS_api/ts_cls/config.py +2 -2
- paddlex/repo_apis/PaddleTS_api/ts_fc/config.py +4 -4
- paddlex/repo_apis/PaddleVideo_api/video_cls/config.py +1 -1
- paddlex/repo_apis/PaddleVideo_api/video_cls/model.py +1 -1
- paddlex/repo_apis/PaddleVideo_api/video_cls/runner.py +1 -1
- paddlex/repo_apis/PaddleVideo_api/video_det/config.py +1 -1
- paddlex/repo_apis/PaddleVideo_api/video_det/model.py +1 -1
- paddlex/repo_apis/PaddleVideo_api/video_det/runner.py +1 -1
- paddlex/repo_apis/base/config.py +1 -1
- paddlex/repo_manager/core.py +3 -3
- paddlex/repo_manager/meta.py +6 -2
- paddlex/repo_manager/repo.py +17 -16
- paddlex/utils/custom_device_list.py +26 -2
- paddlex/utils/deps.py +1 -1
- paddlex/utils/device.py +15 -8
- paddlex/utils/env.py +4 -0
- paddlex/utils/flags.py +2 -4
- paddlex/utils/fonts/__init__.py +34 -4
- paddlex/utils/misc.py +1 -1
- {paddlex-3.0.0rc1.dist-info → paddlex-3.0.1.dist-info}/METADATA +52 -56
- {paddlex-3.0.0rc1.dist-info → paddlex-3.0.1.dist-info}/RECORD +233 -206
- {paddlex-3.0.0rc1.dist-info → paddlex-3.0.1.dist-info}/WHEEL +1 -1
- {paddlex-3.0.0rc1.dist-info → paddlex-3.0.1.dist-info}/entry_points.txt +0 -0
- {paddlex-3.0.0rc1.dist-info → paddlex-3.0.1.dist-info}/licenses/LICENSE +0 -0
- {paddlex-3.0.0rc1.dist-info → paddlex-3.0.1.dist-info}/top_level.txt +0 -0
@@ -1,16 +1,18 @@
|
|
1
|
-
paddlex/.version,sha256=
|
2
|
-
paddlex/__init__.py,sha256=
|
1
|
+
paddlex/.version,sha256=BuP-SnoYhNINgcxwZcqM_Uw5TsYCxNGA3cObvU99pSE,6
|
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
|
5
5
|
paddlex/engine.py,sha256=_x772aN89DVU16NhDyvIilk4UQQcj1whHwCOPpGgw5Y,2057
|
6
|
-
paddlex/hpip_links.html,sha256=
|
7
|
-
paddlex/model.py,sha256=
|
8
|
-
paddlex/paddlex_cli.py,sha256=
|
6
|
+
paddlex/hpip_links.html,sha256=22RS570jLZsSJH2lOyQ3nkcd3Mo2VzpqwbnHa4nCngY,3891
|
7
|
+
paddlex/model.py,sha256=xhtHQGiMdgOKKcGM-FK0K_cIVRsNamlLwkia5SsgmKY,4248
|
8
|
+
paddlex/paddlex_cli.py,sha256=ZqMsAlHZqm0Qqx3HlXnysQZlvNnXuB710yIujo8_wgI,16216
|
9
9
|
paddlex/version.py,sha256=40pf-VYbXsguYRHs1v1-IRmHaNoDa1F0BgYM6bn3pF4,1692
|
10
10
|
paddlex/configs/modules/3d_bev_detection/BEVFusion.yaml,sha256=qox_QOiB2CdOAaRXU55bTVQCf_BbcM26oqHGOQZ623k,1033
|
11
|
+
paddlex/configs/modules/chart_parsing/PP-Chart2Table.yaml,sha256=snf083z359JWM8alJliaeTCfsSOV7hwkxYkFGXni5dY,319
|
11
12
|
paddlex/configs/modules/doc_text_orientation/PP-LCNet_x1_0_doc_ori.yaml,sha256=AETe_giWiq8ribioePFEhjdS39t_cTGQnvGB6Mkn4jw,1109
|
12
13
|
paddlex/configs/modules/doc_vlm/PP-DocBee-2B.yaml,sha256=qLJ2TUwx6S7nm8UFUO987JJABfK2GuCQk7mT2fjYd5k,351
|
13
14
|
paddlex/configs/modules/doc_vlm/PP-DocBee-7B.yaml,sha256=xlEKjNJV3CkkYto6Dtk9_U7UWxLfO6I_AbzVHLF3ZZo,351
|
15
|
+
paddlex/configs/modules/doc_vlm/PP-DocBee2-3B.yaml,sha256=DZJTm42g-7Mqbs3N3JQlyqTVvvODqyVBPumxjIez3CQ,378
|
14
16
|
paddlex/configs/modules/face_detection/BlazeFace-FPN-SSH.yaml,sha256=S92uHNRVm9YABasucmIlriQ00Vy7zUBcyXz9AJAGRn8,1078
|
15
17
|
paddlex/configs/modules/face_detection/BlazeFace.yaml,sha256=BMIwuscezZVmZWyNva1_Mkh_sQBH1NHRIlnwgQcAUmY,1054
|
16
18
|
paddlex/configs/modules/face_detection/PP-YOLOE_plus-S_face.yaml,sha256=kSJr8mjBNMbH4_ZcuLZk7AkH0JsRkVw4Mn5gD4SKw9k,1088
|
@@ -20,6 +22,9 @@ paddlex/configs/modules/face_feature/ResNet50_face.yaml,sha256=qGhhLwJo3blkTdLMh
|
|
20
22
|
paddlex/configs/modules/formula_recognition/LaTeX_OCR_rec.yaml,sha256=X-Z8kgZ_kM_MGsjHH_HOnylItLew0J7nEDRgwz2SFMg,1087
|
21
23
|
paddlex/configs/modules/formula_recognition/PP-FormulaNet-L.yaml,sha256=ja7E-X8lP4yIuk-_AS4PH1_R2kwpJ876wlCfF8WVfa8,1092
|
22
24
|
paddlex/configs/modules/formula_recognition/PP-FormulaNet-S.yaml,sha256=pL9pZINe-2aVoDJ5CSGOg6aiGwZAQQpjLSqNelozllc,1094
|
25
|
+
paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-L.yaml,sha256=61C8LdYabVf03zm67WwD2O7ZM4EMoYNppqNhlwwFdMA,1107
|
26
|
+
paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-M.yaml,sha256=ZpIPQEZNOyvDuvN8bg1jHPeqB-I0MgZs20hgvY3mUU4,1109
|
27
|
+
paddlex/configs/modules/formula_recognition/PP-FormulaNet_plus-S.yaml,sha256=AnyLBe4E9HM0Ols6WI6ybzMDwwDIDwVvWT1oAFbcAw8,1109
|
23
28
|
paddlex/configs/modules/formula_recognition/UniMERNet.yaml,sha256=E1OSy2fPSYyMVA5z_QDLUMhxPjDliF3f88pXUQhQlWo,1075
|
24
29
|
paddlex/configs/modules/human_detection/PP-YOLOE-L_human.yaml,sha256=NU3jFyEip_TU6aURcqV1kzYDA6dLTsos3-6BW40TeJ4,1080
|
25
30
|
paddlex/configs/modules/human_detection/PP-YOLOE-S_human.yaml,sha256=ZsNbemUP-tIBqy1KVLE2MCybtWk1V90AXIY-5k1MbTw,1080
|
@@ -131,9 +136,11 @@ paddlex/configs/modules/instance_segmentation/PP-YOLOE_seg-S.yaml,sha256=qLTRXJ1
|
|
131
136
|
paddlex/configs/modules/instance_segmentation/SOLOv2.yaml,sha256=8UHZ27HP1JL4koCsn37RQLU8AAgs6ROXNGBRwkuo780,1078
|
132
137
|
paddlex/configs/modules/keypoint_detection/PP-TinyPose_128x96.yaml,sha256=-nU2Q82TplTQFPGnQ-5NL2xKDvd5eAUawH9nAqHRtvQ,1093
|
133
138
|
paddlex/configs/modules/keypoint_detection/PP-TinyPose_256x192.yaml,sha256=bI4YYbh1gRncbqHTi0l49oV6Uhq3K1kjgSVU-o04-Ck,1096
|
134
|
-
paddlex/configs/modules/layout_detection/PP-
|
135
|
-
paddlex/configs/modules/layout_detection/PP-DocLayout-
|
136
|
-
paddlex/configs/modules/layout_detection/PP-DocLayout-
|
139
|
+
paddlex/configs/modules/layout_detection/PP-DocBlockLayout.yaml,sha256=3eb-vxluipp9Oc7Umo5P2j14Ievp0cE9evpPxs13UvI,1072
|
140
|
+
paddlex/configs/modules/layout_detection/PP-DocLayout-L.yaml,sha256=AEB-UO6Gnm4GJ1d7NcXdVgWMQlRQLKbLITTFGgacb1s,1063
|
141
|
+
paddlex/configs/modules/layout_detection/PP-DocLayout-M.yaml,sha256=NSXymrJO4g4aA3aOg4rY1riadznwu6S-d2PJFQZbW1Y,1063
|
142
|
+
paddlex/configs/modules/layout_detection/PP-DocLayout-S.yaml,sha256=ot2lj1310aGooUWUHDCCr5OHZxGGZ1KUsZg6Xy5bfFo,1063
|
143
|
+
paddlex/configs/modules/layout_detection/PP-DocLayout_plus-L.yaml,sha256=1oFBsosKzgoHroPT8ci-gyUFv7Snt3WDDFbFe6VbLZM,1078
|
137
144
|
paddlex/configs/modules/layout_detection/PicoDet-L_layout_17cls.yaml,sha256=HLuTMH0JI5rF5lCYiG_SG9hH_XGSGoaAUdv17sgAFVA,1084
|
138
145
|
paddlex/configs/modules/layout_detection/PicoDet-L_layout_3cls.yaml,sha256=bfJqMZjnzmHdhzgngZgHPCz_mZ7uZf1xTQWBnmQEzBo,1081
|
139
146
|
paddlex/configs/modules/layout_detection/PicoDet-S_layout_17cls.yaml,sha256=jm2_FSvWdIZ99RnyX6NX9zw5CtWEJ8Plxax4tycq3Ks,1084
|
@@ -231,10 +238,14 @@ paddlex/configs/modules/text_detection/PP-OCRv3_mobile_det.yaml,sha256=plyVDZGbm
|
|
231
238
|
paddlex/configs/modules/text_detection/PP-OCRv3_server_det.yaml,sha256=1YsZDgK0GC7_VmmHZZqplrIZAjDw7FmsCjX1h24RrJw,1100
|
232
239
|
paddlex/configs/modules/text_detection/PP-OCRv4_mobile_det.yaml,sha256=C6uDlATN38eBiBnIkodoXSDZ92BUm-M5NMQ8kTAETWE,1100
|
233
240
|
paddlex/configs/modules/text_detection/PP-OCRv4_server_det.yaml,sha256=omCQ-fOjyB-PX9Y-n5qITE2PwcYPol47g4YztR99lMo,1100
|
241
|
+
paddlex/configs/modules/text_detection/PP-OCRv5_mobile_det.yaml,sha256=wKV5UJ2TAtRnCVtgyqsLwRVbfcuQTCQYGuLwEudXBw0,1100
|
242
|
+
paddlex/configs/modules/text_detection/PP-OCRv5_server_det.yaml,sha256=_cS2Eaqb1IJdN0jXPqtc8wsC-gHY0BdS3oOzZfVINCI,1100
|
234
243
|
paddlex/configs/modules/text_recognition/PP-OCRv3_mobile_rec.yaml,sha256=V0DMsvY6XqQr7rzGJWm8qhvFulgm-jVCHg6l57NKyFI,1086
|
235
244
|
paddlex/configs/modules/text_recognition/PP-OCRv4_mobile_rec.yaml,sha256=fbFTMnncTxJ63GdGhCH__lEwKXOUXO7gITrUyjkr6wY,1086
|
236
245
|
paddlex/configs/modules/text_recognition/PP-OCRv4_server_rec.yaml,sha256=47DQ0sdCYGKY35NeuhpAVovbxGyc4NpDqDA_g_1koU4,1086
|
237
246
|
paddlex/configs/modules/text_recognition/PP-OCRv4_server_rec_doc.yaml,sha256=4LfFXhUxxtBxpW99Way_gUtnrd-vP1BDUD72T2D3uVI,1098
|
247
|
+
paddlex/configs/modules/text_recognition/PP-OCRv5_mobile_rec.yaml,sha256=27NRkNT686MnZhBVjhWj9R-idoLgy7m2RiuJKl0fqpU,1086
|
248
|
+
paddlex/configs/modules/text_recognition/PP-OCRv5_server_rec.yaml,sha256=hcTU0yq5WojJaRYrdkgrPPS-H1Mvy5-5GSoGvZYw39g,1086
|
238
249
|
paddlex/configs/modules/text_recognition/arabic_PP-OCRv3_mobile_rec.yaml,sha256=v6VDFbeexafeR4c74wTjXkcwEx3y1Z55kt0ZF7UAuHE,1114
|
239
250
|
paddlex/configs/modules/text_recognition/ch_RepSVTR_rec.yaml,sha256=OMj-mzZ_aqYp1NZUtD_j56wzoqai2onraMmVMyFIDJU,1071
|
240
251
|
paddlex/configs/modules/text_recognition/ch_SVTRv2_rec.yaml,sha256=6DHZpUEDIZJdvp8y27_Bdvu7zUpbpA2_2KpvbyvhgYI,1068
|
@@ -250,6 +261,7 @@ paddlex/configs/modules/text_recognition/latin_PP-OCRv3_mobile_rec.yaml,sha256=0
|
|
250
261
|
paddlex/configs/modules/text_recognition/ta_PP-OCRv3_mobile_rec.yaml,sha256=iuwr3F6JZjOHStrdmKpPHYgEjw2C-WNn0kHUwCaummc,1098
|
251
262
|
paddlex/configs/modules/text_recognition/te_PP-OCRv3_mobile_rec.yaml,sha256=RZgNy4rbU2MR_SDZan3jPwYlu453A2l7tgydPk7BbsA,1098
|
252
263
|
paddlex/configs/modules/textline_orientation/PP-LCNet_x0_25_textline_ori.yaml,sha256=PktRWgZv5HeJQ2Hkf6L7oSazs5JrGOQ3zWW2hjfR3vE,1142
|
264
|
+
paddlex/configs/modules/textline_orientation/PP-LCNet_x1_0_textline_ori.yaml,sha256=o78CcLlmZlYtHat5rJtwM-DV46yetBa9-6U4DMg4aEs,1139
|
253
265
|
paddlex/configs/modules/ts_anomaly_detection/AutoEncoder_ad.yaml,sha256=vF_iaZhMAG5qzF-MA9wqPodxI_5ywVCEkSt6Z6S76co,863
|
254
266
|
paddlex/configs/modules/ts_anomaly_detection/DLinear_ad.yaml,sha256=KfD0YhhNFhz0gdKN_JGhEQ85JcpzSr-G4DJQMPVF57M,855
|
255
267
|
paddlex/configs/modules/ts_anomaly_detection/Nonstationary_ad.yaml,sha256=uM-CmsGLkigSHKRYZBiOsXnFmJMJa4M8iItwHs_zo6o,867
|
@@ -271,32 +283,32 @@ paddlex/configs/modules/video_classification/PP-TSMv2-LCNetV2_16frames_uniform.y
|
|
271
283
|
paddlex/configs/modules/video_classification/PP-TSMv2-LCNetV2_8frames_uniform.yaml,sha256=chzzPSQSxnP72529E7pqvL3aSoX-WpbcnWynmmPimXQ,1149
|
272
284
|
paddlex/configs/modules/video_detection/YOWO.yaml,sha256=jNcjPxqfPH3rgkJ9eizaQpkS5ZlMehs3oVaBpkcrRfw,1034
|
273
285
|
paddlex/configs/pipelines/3d_bev_detection.yaml,sha256=T-BPJTF_myAhzQLxcfhDFSpnGAlAPxJKJgtbFfPiybk,162
|
274
|
-
paddlex/configs/pipelines/OCR.yaml,sha256=
|
275
|
-
paddlex/configs/pipelines/PP-ChatOCRv3-doc.yaml,sha256=
|
276
|
-
paddlex/configs/pipelines/PP-ChatOCRv4-doc.yaml,sha256=
|
286
|
+
paddlex/configs/pipelines/OCR.yaml,sha256=BJW935GPmkV0U0XVvYWKexAqME9aCKsJH5ktjiRU398,1038
|
287
|
+
paddlex/configs/pipelines/PP-ChatOCRv3-doc.yaml,sha256=HnDZbUDfLMaSyYiBaA7Psy8_xv2uFtOnNuXzhcv0Dzs,5262
|
288
|
+
paddlex/configs/pipelines/PP-ChatOCRv4-doc.yaml,sha256=6kuRT4L6CSSOnucjbR4aOKNHDMAwrqNtADfkA0QkODk,10842
|
277
289
|
paddlex/configs/pipelines/PP-ShiTuV2.yaml,sha256=01z8buwMDHix9gfiGFFPnjd3Ko_IzfDJ2zz3bi7Gn2E,338
|
278
|
-
paddlex/configs/pipelines/PP-StructureV3.yaml,sha256=
|
290
|
+
paddlex/configs/pipelines/PP-StructureV3.yaml,sha256=NfX8Rh5BNSxKqNGrtWr46MDGIbbKU0LgIqbbPIhaLtk,6188
|
279
291
|
paddlex/configs/pipelines/anomaly_detection.yaml,sha256=JBDy9Al4Jtpx-FcOk2jzrjuu3XE0_r-fqF1I6pJq28U,164
|
280
292
|
paddlex/configs/pipelines/doc_preprocessor.yaml,sha256=QLPZj5nBu9F4GZf-kKyeTduZJpmD68cg2shoxly8pV0,319
|
281
|
-
paddlex/configs/pipelines/doc_understanding.yaml,sha256=
|
293
|
+
paddlex/configs/pipelines/doc_understanding.yaml,sha256=qVt_OTEp6iMhzgO0V6lAaROPw-sqWL2VAGfqITA0jTc,160
|
282
294
|
paddlex/configs/pipelines/face_recognition.yaml,sha256=KIzhHfqwEooqCxw0Ysgfd06Oo9q33W42WmhtjaGAe4M,342
|
283
|
-
paddlex/configs/pipelines/formula_recognition.yaml,sha256=
|
295
|
+
paddlex/configs/pipelines/formula_recognition.yaml,sha256=EMTY7IZfRrC_-UPfp7XPMweDG_UJ7Yw0azT96ag-NZU,915
|
284
296
|
paddlex/configs/pipelines/human_keypoint_detection.yaml,sha256=hbqfnaMpYMf9lVXXQX5fdB-S4dggIik7nm_wRk-olrA,380
|
285
297
|
paddlex/configs/pipelines/image_classification.yaml,sha256=zTHeExJsAIpg0vHFz0xdzVSt7VsBjtju5cuu_8ESPog,192
|
286
298
|
paddlex/configs/pipelines/image_multilabel_classification.yaml,sha256=ZXoTDOpyGqGbmNr3dXsQw7eMQ2yxbQMMYt-rqvLVJW4,218
|
287
299
|
paddlex/configs/pipelines/instance_segmentation.yaml,sha256=cEhSDa5KVlO6EE-gF-CyhaYD3p1o2ChaGB9OnVHqFHU,202
|
288
|
-
paddlex/configs/pipelines/layout_parsing.yaml,sha256=
|
300
|
+
paddlex/configs/pipelines/layout_parsing.yaml,sha256=4GOuGPD54aojGGHzOTpPOw3XRoO6MkVfubbEzegXxtQ,2678
|
289
301
|
paddlex/configs/pipelines/multilingual_speech_recognition.yaml,sha256=3GMqISimyTOBxCtxelcCFL1bSvV1ZX4dcNnMHB26B9Y,214
|
290
302
|
paddlex/configs/pipelines/object_detection.yaml,sha256=P9q0qg1znAM0DzpI5S6b3Z_dX8j5UJzXOH_fJk_KVQA,201
|
291
303
|
paddlex/configs/pipelines/open_vocabulary_detection.yaml,sha256=WmgaCiMu8-lR5Bu3-mbFeuhwSgl4e3tBwvqYttqGmhg,263
|
292
304
|
paddlex/configs/pipelines/open_vocabulary_segmentation.yaml,sha256=6EjUPBmBnXVZxDE8YVDd1m3Eum1_xZnjB3ohxZVPo8A,323
|
293
305
|
paddlex/configs/pipelines/pedestrian_attribute_recognition.yaml,sha256=5HBesXcSamvlJ3-HSQ4V_Mo5htsFJoqHFWm-fzAQ2LU,368
|
294
306
|
paddlex/configs/pipelines/rotated_object_detection.yaml,sha256=Q9fubmAWilKWpTZxurILM1SZC4ZzeH2WoIeJeL2t-G8,208
|
295
|
-
paddlex/configs/pipelines/seal_recognition.yaml,sha256=
|
307
|
+
paddlex/configs/pipelines/seal_recognition.yaml,sha256=JaaP7NaxidAcQMz00hsBWrdUMqqMj_ggMBpRlgsquzU,1299
|
296
308
|
paddlex/configs/pipelines/semantic_segmentation.yaml,sha256=dTR-utVCQJ-YX52eAEQbn0wutCQkME0oLZ2wBKdTcWo,203
|
297
309
|
paddlex/configs/pipelines/small_object_detection.yaml,sha256=t_dF50ZzFcfPEFvtrFXU2f_sameKotvUs104mxoiSh8,209
|
298
|
-
paddlex/configs/pipelines/table_recognition.yaml,sha256=
|
299
|
-
paddlex/configs/pipelines/table_recognition_v2.yaml,sha256=
|
310
|
+
paddlex/configs/pipelines/table_recognition.yaml,sha256=BlrntfQBBHTkKK_2KExyKsCj2Hrzj4gyv7jOUPUN6-o,1349
|
311
|
+
paddlex/configs/pipelines/table_recognition_v2.yaml,sha256=eudhiAef7Q5MrcPqVXDKhbUGtxRLLPDDrbrYTrjQ9KA,2028
|
300
312
|
paddlex/configs/pipelines/ts_anomaly_detection.yaml,sha256=3dvsXd8og6aomhgZU1f3pGcbWB1uVDIWQJ7B-qjCac8,177
|
301
313
|
paddlex/configs/pipelines/ts_classification.yaml,sha256=V_WuRgvgzs5dEmDa73geOZZPA89ru-SOATzLPACRfOE,171
|
302
314
|
paddlex/configs/pipelines/ts_forecast.yaml,sha256=LM1zY2RC9jtdP295fjdl1MaB2XyJqt__Gy5SKw279sg,148
|
@@ -309,8 +321,8 @@ paddlex/inference/common/batch_sampler/__init__.py,sha256=LdTd0bNRnmj-gkJTjRvVw_
|
|
309
321
|
paddlex/inference/common/batch_sampler/audio_batch_sampler.py,sha256=5Z6mQ-ikBSwZVJzW5uA7kZVsO9gDLya8rog5vdZskdw,2611
|
310
322
|
paddlex/inference/common/batch_sampler/base_batch_sampler.py,sha256=F_nT55mXlI5NcSwyOZ_Ze_6S-BfDoY6uDwdPBPSTx1M,2744
|
311
323
|
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=
|
313
|
-
paddlex/inference/common/batch_sampler/image_batch_sampler.py,sha256
|
324
|
+
paddlex/inference/common/batch_sampler/doc_vlm_batch_sampler.py,sha256=y8wnsIPln42q08Lu_daZuXIbk_qh3Bdg0qaaZLELdqM,2928
|
325
|
+
paddlex/inference/common/batch_sampler/image_batch_sampler.py,sha256=7n1aqIYBLUPxb5YlvYIC2FFn5J7-L4YcHKpBtal8hvg,4350
|
314
326
|
paddlex/inference/common/batch_sampler/ts_batch_sampler.py,sha256=beYmo3uN0iI2v4yyFx0KYyXiMgcVNXxVc2MoweSg5mw,3863
|
315
327
|
paddlex/inference/common/batch_sampler/video_batch_sampler.py,sha256=CBApNWjdyLqGr-0UG2GW3GHW5IPZKZTiqUh4H6jTgRY,2740
|
316
328
|
paddlex/inference/common/reader/__init__.py,sha256=8k1-TUD_1LT47RRykhMQg_AszWjjOrtA4ozTpFIaJhI,792
|
@@ -324,7 +336,7 @@ paddlex/inference/common/result/base_cv_result.py,sha256=pK0wJcBGmjARC-FpimcxoRS
|
|
324
336
|
paddlex/inference/common/result/base_result.py,sha256=MQajOAGk_HF_UNExMxzRkaXbEUy49bftYIL-zWQvkl0,2432
|
325
337
|
paddlex/inference/common/result/base_ts_result.py,sha256=pb7ld9OCb61LQYy02wvYppZgFMzspasy3DGaUBQmmIg,1411
|
326
338
|
paddlex/inference/common/result/base_video_result.py,sha256=yT36itBPBc-6KRAwImZjR4TmY0_T0Cic25uZW-1oVWY,1177
|
327
|
-
paddlex/inference/common/result/mixin.py,sha256=
|
339
|
+
paddlex/inference/common/result/mixin.py,sha256=dgUGVano672o3kkt8EuJGmyOEoA8mLC5WHD3OFvXN-I,26615
|
328
340
|
paddlex/inference/models/__init__.py,sha256=FszFkx_E5qXfdOAE3VRq05nbieWSmlBEHXzdUo2jmU8,3271
|
329
341
|
paddlex/inference/models/anomaly_detection/__init__.py,sha256=5sWWsKp9B07ntVA3l_1iMdypwwSlWcvko6W89lLEdXU,646
|
330
342
|
paddlex/inference/models/anomaly_detection/predictor.py,sha256=rKfu3H_Kpq1K7oy5-bzO3Ic4DAmzjALs2vPl-m3z4gQ,4823
|
@@ -332,18 +344,20 @@ paddlex/inference/models/anomaly_detection/processors.py,sha256=OhPoGXkF5Wr1AFSe
|
|
332
344
|
paddlex/inference/models/anomaly_detection/result.py,sha256=vEqBIw9cOgBZzBuoniao4AztdSkiAuqMJEGHQevMz4M,2368
|
333
345
|
paddlex/inference/models/base/__init__.py,sha256=XmfOH2Zt6T28bilPm9aHPy88zlthnpz8zufxQuHU2nI,647
|
334
346
|
paddlex/inference/models/base/predictor/__init__.py,sha256=euD01o3s0Zg9VlzA5spCak2TElkU4RFiSUxCEiatH8Y,652
|
335
|
-
paddlex/inference/models/base/predictor/base_predictor.py,sha256=
|
347
|
+
paddlex/inference/models/base/predictor/base_predictor.py,sha256=GZXWaOjLk0AAp7PKdbeTbNBGi0oTjqES2lkVLvJEeqg,14728
|
336
348
|
paddlex/inference/models/common/__init__.py,sha256=3lMwinLaX3HHXCFUcppc8uV_5P-XGv0Nf5aWvZYcbqw,926
|
337
|
-
paddlex/inference/models/common/static_infer.py,sha256=
|
338
|
-
paddlex/inference/models/common/tokenizer/__init__.py,sha256=
|
349
|
+
paddlex/inference/models/common/static_infer.py,sha256=6sm5w_mDkdSo2UfWoNTBfSrx4UsCAprxHarrXrqXB2E,33719
|
350
|
+
paddlex/inference/models/common/tokenizer/__init__.py,sha256=WyNKDrT6xhWwHmgVVaWYig_TV2xOQIVUHdsmkKjLjs4,940
|
339
351
|
paddlex/inference/models/common/tokenizer/bert_tokenizer.py,sha256=xPEENMCnZq-0ofMA5Ylxu9qcFybIc6fEOXqEue3ogDU,25274
|
340
|
-
paddlex/inference/models/common/tokenizer/clip_tokenizer.py,sha256=
|
341
|
-
paddlex/inference/models/common/tokenizer/gpt_tokenizer.py,sha256=
|
342
|
-
paddlex/inference/models/common/tokenizer/
|
343
|
-
paddlex/inference/models/common/tokenizer/
|
344
|
-
paddlex/inference/models/common/tokenizer/
|
352
|
+
paddlex/inference/models/common/tokenizer/clip_tokenizer.py,sha256=g9YU0PmxppCoIi9mub_3AQDBt8kzrBblKrDig5UDTZE,22426
|
353
|
+
paddlex/inference/models/common/tokenizer/gpt_tokenizer.py,sha256=Pd6Lsvz3chjSLua_8Hi8WTnO1huiFA-07TRTaO5mIFo,15661
|
354
|
+
paddlex/inference/models/common/tokenizer/qwen2_5_tokenizer.py,sha256=NFMt24ioXP8h0WpFqyVkNbvbK3oUywbNf7a192mpDyk,4486
|
355
|
+
paddlex/inference/models/common/tokenizer/qwen2_tokenizer.py,sha256=zVVYO9VNgK0Qyvi1_3RmlZuQzdsd-8gUYjW8o6mIoJA,16942
|
356
|
+
paddlex/inference/models/common/tokenizer/qwen_tokenizer.py,sha256=YM7rRmLq-xjb0tRo3PxV0lEx5bQMgMLI8_9MAB6mi0I,9886
|
357
|
+
paddlex/inference/models/common/tokenizer/tokenizer_utils.py,sha256=DqlzW9mLjpDvF3Vd6pobcbbwSl3AEC1YjM5nQXJXSWk,85580
|
358
|
+
paddlex/inference/models/common/tokenizer/tokenizer_utils_base.py,sha256=dUkbI6MK2qVdbELUM4Vb5i7lI5rOKAV1QnHjSUGE4lc,163634
|
345
359
|
paddlex/inference/models/common/tokenizer/utils.py,sha256=xZgYmYWB0Ecl6Ej0AgrnfgETD0jW-xjZfjq91lPs5js,2425
|
346
|
-
paddlex/inference/models/common/tokenizer/vocab.py,sha256=
|
360
|
+
paddlex/inference/models/common/tokenizer/vocab.py,sha256=rtrhKqxXHQSnmJC_SeiLf1v2Vhg4YvufM_jPf9VAc0c,25129
|
347
361
|
paddlex/inference/models/common/ts/__init__.py,sha256=A6i6FhzY9lRnoJH_JPH5nNHmaVI5qOZaQhbxueVkZKc,636
|
348
362
|
paddlex/inference/models/common/ts/funcs.py,sha256=Xl0VijMMO9RY4S4W4Xrs4lCmwiPZb2lpA8xyenvKlao,18144
|
349
363
|
paddlex/inference/models/common/ts/processors.py,sha256=lcouD6Zbhf28jJ6eySfJGmYt_Sn_He-uTEc4lI8f8Z0,11004
|
@@ -353,41 +367,48 @@ paddlex/inference/models/common/vision/processors.py,sha256=iT-oVtN9jz24MySo9jYl
|
|
353
367
|
paddlex/inference/models/common/vlm/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
354
368
|
paddlex/inference/models/common/vlm/activations.py,sha256=wob-fu7nHFas_9TILbFHJZampnVy_smQZJhN_RZSf0A,6345
|
355
369
|
paddlex/inference/models/common/vlm/bert_padding.py,sha256=aCM0GUyNblcBmU54VG8hHOcWzeuBypHLBlDHJlXGUy8,4827
|
370
|
+
paddlex/inference/models/common/vlm/conversion_utils.py,sha256=CQ9yL7zrElzPbvUbOR-80uYuJKWVqoBrqnV89KP0ye4,3727
|
356
371
|
paddlex/inference/models/common/vlm/distributed.py,sha256=qZ5Lxa2ybZKL33G47PBbPvhNesP8PHBENkrOtB1tH-0,8013
|
357
372
|
paddlex/inference/models/common/vlm/flash_attn_utils.py,sha256=FaaYGoLjebMVy1nXyd0djYuOUnmmh41pB82Pdo7RluU,4073
|
373
|
+
paddlex/inference/models/common/vlm/fusion_ops.py,sha256=Qkd5M0FY66nk9HOMjwtjLHR4Q7Z3FqzWPFaGW_Grr8I,7043
|
358
374
|
paddlex/inference/models/common/vlm/utils.py,sha256=34z4X-T60Ic8ExqeBdP_q0jHHOqK1TI6QXgxR-cZ424,3777
|
359
375
|
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=
|
361
|
-
paddlex/inference/models/common/vlm/generation/logits_process.py,sha256=
|
376
|
+
paddlex/inference/models/common/vlm/generation/configuration_utils.py,sha256=kp64AD52WxH8vO20R_yWtoYCLSq4LALQ4heWiNviJjY,24893
|
377
|
+
paddlex/inference/models/common/vlm/generation/logits_process.py,sha256=SUZHsN_0Rzkv5-vPlSAzbFPDcxKUCKvTSq7L74Uyfpk,29575
|
362
378
|
paddlex/inference/models/common/vlm/generation/stopping_criteria.py,sha256=vWHy-HoYjFHFyaT-WmjT7pVzcOoyew3nAJ6hnJrAwTk,3720
|
363
|
-
paddlex/inference/models/common/vlm/generation/utils.py,sha256=
|
379
|
+
paddlex/inference/models/common/vlm/generation/utils.py,sha256=qzD_cwN-xN3YbFqv-XuMcCr6sXDNy4EhaBIJs8gb1o8,85130
|
364
380
|
paddlex/inference/models/common/vlm/transformers/__init__.py,sha256=PL-6UTfCxiiBCzeIMV3N9pESIgMICrmUDNab4LJ9Qx8,701
|
365
|
-
paddlex/inference/models/common/vlm/transformers/configuration_utils.py,sha256=
|
366
|
-
paddlex/inference/models/common/vlm/transformers/conversion_utils.py,sha256=
|
367
|
-
paddlex/inference/models/common/vlm/transformers/model_outputs.py,sha256=
|
368
|
-
paddlex/inference/models/common/vlm/transformers/model_utils.py,sha256=
|
381
|
+
paddlex/inference/models/common/vlm/transformers/configuration_utils.py,sha256=w8X_6IrDb_aJ-AKoInKOnOm3_HZauI_yd6pevRq4rIY,45699
|
382
|
+
paddlex/inference/models/common/vlm/transformers/conversion_utils.py,sha256=T3Kvqo9pUqIipAKQaCLYovz5dXiNcgomNP2Zm-fZQiw,14425
|
383
|
+
paddlex/inference/models/common/vlm/transformers/model_outputs.py,sha256=liCNRBio5VN_zcSwhvOdSTx-7WBsi5VRHycFMfsf-nY,84290
|
384
|
+
paddlex/inference/models/common/vlm/transformers/model_utils.py,sha256=zGvW-ZSXd51OOe6T-kCIM4Gp_2w8RzDhM78z9aU_JOE,85818
|
369
385
|
paddlex/inference/models/common/vlm/transformers/utils.py,sha256=EqBUBKoYWJ9R6e3qt-Vp9-BDEq5gkbN3Ymy5JAX-e0g,5886
|
370
386
|
paddlex/inference/models/doc_vlm/__init__.py,sha256=oXFqFKX0vWQRuri3wb72aNCZIEv0daDOTOK1Ysl1W8E,649
|
371
|
-
paddlex/inference/models/doc_vlm/predictor.py,sha256=
|
387
|
+
paddlex/inference/models/doc_vlm/predictor.py,sha256=zicjxZw4IT728uScQxsprPKAayu7H436Uh7eFS518nc,9350
|
372
388
|
paddlex/inference/models/doc_vlm/result.py,sha256=l1dTYhbuAHx6EsXvslLseWEj48NIBc7L3s4BxnonYS8,760
|
373
|
-
paddlex/inference/models/doc_vlm/modeling/
|
374
|
-
paddlex/inference/models/doc_vlm/modeling/
|
375
|
-
paddlex/inference/models/doc_vlm/
|
376
|
-
paddlex/inference/models/doc_vlm/
|
377
|
-
paddlex/inference/models/doc_vlm/
|
389
|
+
paddlex/inference/models/doc_vlm/modeling/GOT_ocr_2_0.py,sha256=RsTpMGl5YIfEegxhqJxkVWMbORz9jXkgeWpfrmheAq8,29970
|
390
|
+
paddlex/inference/models/doc_vlm/modeling/__init__.py,sha256=_-aNqY5UEdxyQ7cIGgpd23F2v55WPY0-6EqHRPHcgKw,774
|
391
|
+
paddlex/inference/models/doc_vlm/modeling/qwen2.py,sha256=4vEwlalDFm78fH27xjS0Ab1PpY3yO0UO6dYCJnFcCYU,62211
|
392
|
+
paddlex/inference/models/doc_vlm/modeling/qwen2_5_vl.py,sha256=QuaX0PLulhAyDmSfmbX8aigXS1NDsBvV3RFoySsQWPA,128026
|
393
|
+
paddlex/inference/models/doc_vlm/modeling/qwen2_vl.py,sha256=FR_oncXHo43JqWGLmRy5IvSAkDwwRk83fBwklLvdQhQ,101164
|
394
|
+
paddlex/inference/models/doc_vlm/processors/GOT_ocr_2_0.py,sha256=RU3abpLXXH6jcSnCidfXZoNEnAzwglKk4LANNPhIEN8,3389
|
395
|
+
paddlex/inference/models/doc_vlm/processors/__init__.py,sha256=P0j7WwNi3lNO24MUdEr9afplmQk1zcEJLd5XyFCikZo,809
|
396
|
+
paddlex/inference/models/doc_vlm/processors/common.py,sha256=H2A7SSGqow4nMeUy6NgUfRM4gJxYev5JN41_B5w7l8g,17839
|
397
|
+
paddlex/inference/models/doc_vlm/processors/qwen2_5_vl.py,sha256=hv2cwvzRdHPAgdf7ZfY8yuR8YV5XS8AOm1wnq3lFtis,25341
|
398
|
+
paddlex/inference/models/doc_vlm/processors/qwen2_vl.py,sha256=cPyj_32xytsTdvQi9epGPGKEXRQTk9g7nnLuEkHid_w,25742
|
378
399
|
paddlex/inference/models/face_feature/__init__.py,sha256=7bctvoJnxoOsp2FzTisub1M8M0WL97_y7524vHOg6FA,654
|
379
400
|
paddlex/inference/models/face_feature/predictor.py,sha256=mRd2VoWFAH7wVT3-z8JBsdA7GaHO1h0xvVpCLavgj5I,2828
|
380
401
|
paddlex/inference/models/formula_recognition/__init__.py,sha256=JxjoRLv_6dZtM--Acg4lTpG-XKBKSeQkApQlVNubB9Y,653
|
381
|
-
paddlex/inference/models/formula_recognition/predictor.py,sha256=
|
382
|
-
paddlex/inference/models/formula_recognition/processors.py,sha256=
|
383
|
-
paddlex/inference/models/formula_recognition/result.py,sha256=
|
402
|
+
paddlex/inference/models/formula_recognition/predictor.py,sha256=RLi-9uThQ0jTSnJ2ZC-Ia4eqNWuXX__xrluufny3PPY,7353
|
403
|
+
paddlex/inference/models/formula_recognition/processors.py,sha256=6UzKReVez09LSL3QAZMJxq2TcImuRdI80L-KacNeYFY,37287
|
404
|
+
paddlex/inference/models/formula_recognition/result.py,sha256=lyPeOKOiNq_D04BG2ZwMiyJz2mtwocmTvXBEU7MPGac,14951
|
384
405
|
paddlex/inference/models/image_classification/__init__.py,sha256=-dzTrk-2RlpLeziUvQCt42WFaydfukBODqmik1t3DQc,647
|
385
406
|
paddlex/inference/models/image_classification/predictor.py,sha256=uZ9xuhg2ElGIdh8cG57K9VnXqX65Paa_7mUG3GfUfqo,6383
|
386
407
|
paddlex/inference/models/image_classification/processors.py,sha256=DBUjdK5RNkCZQ1DgrUT--GPUqUZU0vip2PbvRw67l68,2884
|
387
408
|
paddlex/inference/models/image_classification/result.py,sha256=6XSRPx3HVuuMwsUQRX0nKsojSs4nTXTdvusQVTUTgkY,3501
|
388
409
|
paddlex/inference/models/image_feature/__init__.py,sha256=yd0A7GuW_JCurnJIfqE6doBz437ApSiLEtwjXDDNzsk,655
|
389
410
|
paddlex/inference/models/image_feature/predictor.py,sha256=3eujK5vOH0tLorvb7M_YbL8iUDuq_k6huHIYmnDFwA0,5459
|
390
|
-
paddlex/inference/models/image_feature/processors.py,sha256=
|
411
|
+
paddlex/inference/models/image_feature/processors.py,sha256=vDUTdQd7Pebh_B5BRtxTYg0XTU6CErx3kNpKWWKh5ZI,1034
|
391
412
|
paddlex/inference/models/image_feature/result.py,sha256=-LrF-NEwbthimk_5ORvU184uOM7BYV08-ZlFBL1IE_U,1111
|
392
413
|
paddlex/inference/models/image_multilabel_classification/__init__.py,sha256=uYUa5EDODdPwx25vP3CixQJK7FXTkRVJWWv6M2-w41U,649
|
393
414
|
paddlex/inference/models/image_multilabel_classification/predictor.py,sha256=HdSrEQUYUB87sR1g58bRq9WT_3LkjX3pAVlHdZe7nOc,3824
|
@@ -402,7 +423,7 @@ paddlex/inference/models/instance_segmentation/predictor.py,sha256=NjgpgdHSahdif
|
|
402
423
|
paddlex/inference/models/instance_segmentation/processors.py,sha256=PgGuCQcBY_RS_G458qeBl4E9ThztuWnFXrG2OwagZZ4,3503
|
403
424
|
paddlex/inference/models/instance_segmentation/result.py,sha256=X6crfsSnItUkSDzdQnNQdQijE5rncR2OWmx2Sajfr-E,5544
|
404
425
|
paddlex/inference/models/keypoint_detection/__init__.py,sha256=Jc3KuTEwW3sR9wipO7_Q5EbWP7C9fLA54hXWDr2Gql4,646
|
405
|
-
paddlex/inference/models/keypoint_detection/predictor.py,sha256=
|
426
|
+
paddlex/inference/models/keypoint_detection/predictor.py,sha256=NilvIo7o0rAJs2HaRsUw-fMbWD6m851Cslt-BRAG7d8,6239
|
406
427
|
paddlex/inference/models/keypoint_detection/processors.py,sha256=TCgl9fF1DfgwrRfSxpeD0KWacQsvTx8t7yJW-1odJTk,14057
|
407
428
|
paddlex/inference/models/keypoint_detection/result.py,sha256=QIL716d-phVajnbyOwo24mDYT2TgqqhZfb6kVBuF0jQ,5816
|
408
429
|
paddlex/inference/models/m_3d_bev_detection/__init__.py,sha256=6QNv9b86co6xByjrFVB4XW0Gaq_6_6a-G6cnEqyZubM,651
|
@@ -415,10 +436,10 @@ paddlex/inference/models/multilingual_speech_recognition/predictor.py,sha256=cAd
|
|
415
436
|
paddlex/inference/models/multilingual_speech_recognition/processors.py,sha256=UcqkKl3Fzg4LfRYToCL6H1U1eubqk2mpVWal_ww3OFY,69834
|
416
437
|
paddlex/inference/models/multilingual_speech_recognition/result.py,sha256=QrlcWrYIK9Iznr8M3bd4zVzwsCa-k1ijv57RDlb9gjI,761
|
417
438
|
paddlex/inference/models/object_detection/__init__.py,sha256=0WydRdG37hGdALUiBE3t_Y5uhT74GuzV3IDXcD75eTk,646
|
418
|
-
paddlex/inference/models/object_detection/predictor.py,sha256=
|
419
|
-
paddlex/inference/models/object_detection/processors.py,sha256=
|
439
|
+
paddlex/inference/models/object_detection/predictor.py,sha256=7PzC-QbV1m8RfHHlNhAxoot_Or1ANli5G3_-SlrOBl4,13287
|
440
|
+
paddlex/inference/models/object_detection/processors.py,sha256=5e47YqJ0MAf7rhKfvRlgRzG11ppfIBp4rDut1pCQ8VI,31764
|
420
441
|
paddlex/inference/models/object_detection/result.py,sha256=B6dXFoqxVaV2ovkr0Hj4ACXY1Fcn6QN6W55ps0dliyM,4077
|
421
|
-
paddlex/inference/models/object_detection/utils.py,sha256=
|
442
|
+
paddlex/inference/models/object_detection/utils.py,sha256=A11qOJcP2KP0f-JImKBxaSQcjgz1fBkox0YeRIuhItk,1893
|
422
443
|
paddlex/inference/models/open_vocabulary_detection/__init__.py,sha256=_AXgoWGKTe2oN7FwcZMkCC8baN_-ESu2LaKqVGuj1-M,648
|
423
444
|
paddlex/inference/models/open_vocabulary_detection/predictor.py,sha256=d5VbuK_mc6QKZq9NkE5OmX0SFZCb--sX1ONFJPIiXaY,6081
|
424
445
|
paddlex/inference/models/open_vocabulary_detection/processors/__init__.py,sha256=OOP9FbItTE8D4K3uOpzZbPv-pYVlQaiQXvtEpSoL_kM,776
|
@@ -438,11 +459,11 @@ paddlex/inference/models/semantic_segmentation/result.py,sha256=O1tp5qbG61JdN6UN
|
|
438
459
|
paddlex/inference/models/table_structure_recognition/__init__.py,sha256=j_TRDubOHdlyQLQ_oTxLIfeSx4QD4JivxpwBb4SGfKI,648
|
439
460
|
paddlex/inference/models/table_structure_recognition/predictor.py,sha256=rtSGUhPt2yKczrVh-PDW_9bv6yB57ZH67SJJBsSZBKw,5891
|
440
461
|
paddlex/inference/models/table_structure_recognition/processors.py,sha256=fDEaWz81yFfdZx9fFqH2ystVhKl_TMy9cGzYGLoj8w8,7952
|
441
|
-
paddlex/inference/models/table_structure_recognition/result.py,sha256=
|
462
|
+
paddlex/inference/models/table_structure_recognition/result.py,sha256=P6Vvdq3-SihRFyKislTG8dublal6EajzI-bqUt7Lgmg,2134
|
442
463
|
paddlex/inference/models/text_detection/__init__.py,sha256=lttOr1-tNqPUMZ_dMEc6v8ds6n-jTuSeeHNca-0c5cI,650
|
443
|
-
paddlex/inference/models/text_detection/predictor.py,sha256=
|
444
|
-
paddlex/inference/models/text_detection/processors.py,sha256
|
445
|
-
paddlex/inference/models/text_detection/result.py,sha256=
|
464
|
+
paddlex/inference/models/text_detection/predictor.py,sha256=yQl7ksiYZ9_N_rmHHj7XY_DrlTr52ZsYL6tm66a2Reg,6516
|
465
|
+
paddlex/inference/models/text_detection/processors.py,sha256=IovuIBdQfpZwJktztlXzDaSahSKAPV2EomdOsjfAWk8,18124
|
466
|
+
paddlex/inference/models/text_detection/result.py,sha256=uhhPCdIvRLU-7aC_yma0SmXZ2Rlga3_XHaZmpwgkeYs,1567
|
446
467
|
paddlex/inference/models/text_recognition/__init__.py,sha256=oljAcj8MBt4t_fa03kvDAzXJIJSKIAKtB7B0I90G4aU,650
|
447
468
|
paddlex/inference/models/text_recognition/predictor.py,sha256=am7PG17yDxHDfGvRxvr9XRie8npXe9v08h7npk6fNok,3386
|
448
469
|
paddlex/inference/models/text_recognition/processors.py,sha256=hvnnY96ENYwaDeLXPmA3LSFTx37kDZrwNllag4fdQS0,8174
|
@@ -467,15 +488,16 @@ paddlex/inference/models/video_detection/__init__.py,sha256=RMejdlh-qxQnL0eECfhM
|
|
467
488
|
paddlex/inference/models/video_detection/predictor.py,sha256=u7BXV-yKVnEkZG5d9EQ9fr81thCIIkHyObAl1GEuAzE,4447
|
468
489
|
paddlex/inference/models/video_detection/processors.py,sha256=oIcElrELn7TUgEOoZ3evXRjsR8_A2r7hhiLZVwYt_48,15575
|
469
490
|
paddlex/inference/models/video_detection/result.py,sha256=tFPxNzdsKKhPHO0xxMJIxZYlnBDvafkeSzyLdDJd0jE,4247
|
470
|
-
paddlex/inference/pipelines/__init__.py,sha256=
|
471
|
-
paddlex/inference/pipelines/
|
491
|
+
paddlex/inference/pipelines/__init__.py,sha256=jNvVpm7q-V0wScsJ49kOZn5sAcjhf5LlZUXH_tVrKNo,9230
|
492
|
+
paddlex/inference/pipelines/_parallel.py,sha256=tnkK96d5LZcgngTdqY2fFvZwfO9tcs0xWeCH4Uh4qmM,5994
|
493
|
+
paddlex/inference/pipelines/base.py,sha256=ZHSnDL9iTGOyUQobZjuLJR2kyhNuvkZN_pKH8rGEiA8,5787
|
472
494
|
paddlex/inference/pipelines/anomaly_detection/__init__.py,sha256=ZXwsw5NJSbdtj4BHGfFm_SgVfbgUGSTABtnVHplWLSo,657
|
473
|
-
paddlex/inference/pipelines/anomaly_detection/pipeline.py,sha256=
|
495
|
+
paddlex/inference/pipelines/anomaly_detection/pipeline.py,sha256=au3chST6c7Kavn4Y5Hyoch6X7b_9y_pPrNv7rT7AYoA,3207
|
474
496
|
paddlex/inference/pipelines/attribute_recognition/__init__.py,sha256=a3LuEnZYLEEGNHl5P1o2ldnPaPWqhIBC5RRCvrCIK5E,692
|
475
|
-
paddlex/inference/pipelines/attribute_recognition/pipeline.py,sha256=
|
497
|
+
paddlex/inference/pipelines/attribute_recognition/pipeline.py,sha256=JHoN0q12Od87v80E6rTIR52jjyanZD4XYKzKA6l5f9E,4740
|
476
498
|
paddlex/inference/pipelines/attribute_recognition/result.py,sha256=mAQIAALF1ie92yNrCVbt2_xufw_hfvIa_RSJPcHt1Kw,3557
|
477
499
|
paddlex/inference/pipelines/components/__init__.py,sha256=nXliR_FqHJcIwxlLj_9yxe2MAJkCcCceoJ1vOb3WQv8,1025
|
478
|
-
paddlex/inference/pipelines/components/faisser.py,sha256=
|
500
|
+
paddlex/inference/pipelines/components/faisser.py,sha256=qtPqcA-Rz6hm4kaaiNzC9S4YsODyX29nl1og8M3kUCM,12343
|
479
501
|
paddlex/inference/pipelines/components/chat_server/__init__.py,sha256=2LthhLNi8BtARKCwilAv1VFOC2lpib-WiXbAVe1w4OI,680
|
480
502
|
paddlex/inference/pipelines/components/chat_server/base.py,sha256=vRI-61XvCSNEyUAoRr9yHESYEuprgRSCFh-Jjt1ioWM,1365
|
481
503
|
paddlex/inference/pipelines/components/chat_server/openai_bot_chat.py,sha256=K80Ag7AcU7POPH9jCaVt3Ck37mMrTBIbon_3xZH4sKI,9058
|
@@ -498,7 +520,7 @@ paddlex/inference/pipelines/components/retriever/qianfan_bot_retriever.py,sha256
|
|
498
520
|
paddlex/inference/pipelines/components/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
499
521
|
paddlex/inference/pipelines/components/utils/mixin.py,sha256=JxCJ2pqihd8wB4y5hSiGaXX_wIk4-SW2WO8S6-IZGQw,6549
|
500
522
|
paddlex/inference/pipelines/doc_preprocessor/__init__.py,sha256=XTOS7rmOkSk8Ad4ybRoEiSABeeE-FwAijlASCWSZYEg,656
|
501
|
-
paddlex/inference/pipelines/doc_preprocessor/pipeline.py,sha256
|
523
|
+
paddlex/inference/pipelines/doc_preprocessor/pipeline.py,sha256=drd6zngUTKpkrZvwMf_kxLZO7_d27eOchr_BcKfPObU,8251
|
502
524
|
paddlex/inference/pipelines/doc_preprocessor/result.py,sha256=Juemk5tqwV-D4ahdgwxDQavFuliyTtf_Hk6OQnSj4t4,4021
|
503
525
|
paddlex/inference/pipelines/doc_understanding/__init__.py,sha256=otW18h6AQw-d0sy_1bZ0W5hVjse021YhDl48CFl57cU,657
|
504
526
|
paddlex/inference/pipelines/doc_understanding/pipeline.py,sha256=K8mQbG53DA9kEQXkEYKCQY-ii5UDBi-YroMeU26xYjg,2867
|
@@ -506,68 +528,72 @@ paddlex/inference/pipelines/face_recognition/__init__.py,sha256=PvjBS-zaPlcbVdw4
|
|
506
528
|
paddlex/inference/pipelines/face_recognition/pipeline.py,sha256=Gpklhl-VrB1DtJrcavd9Pd31V7RYswwBeKzjw2z-q_E,2399
|
507
529
|
paddlex/inference/pipelines/face_recognition/result.py,sha256=K0XS95GEq1zdU33DbopOWN4FFdh34KZBjrNJscN2eMs,1533
|
508
530
|
paddlex/inference/pipelines/formula_recognition/__init__.py,sha256=1ohbSE3gGnXwDkT9BoY47N1c9rtgf4I6sPjijLE6pVs,659
|
509
|
-
paddlex/inference/pipelines/formula_recognition/pipeline.py,sha256=
|
510
|
-
paddlex/inference/pipelines/formula_recognition/result.py,sha256=
|
531
|
+
paddlex/inference/pipelines/formula_recognition/pipeline.py,sha256=uTy7WVnIOCueEiq14QBeZYrGUYFq9bztu3ZKe8mQLjU,15020
|
532
|
+
paddlex/inference/pipelines/formula_recognition/result.py,sha256=QYa2TPTYat4bSJ-0E6cPs4MULdn_ZOoyDdWGEcecBcM,11800
|
511
533
|
paddlex/inference/pipelines/image_classification/__init__.py,sha256=t0NEUXKqdc60LNZRKheo_AR73QoAYKTgv_DlyoR14PA,660
|
512
|
-
paddlex/inference/pipelines/image_classification/pipeline.py,sha256=
|
534
|
+
paddlex/inference/pipelines/image_classification/pipeline.py,sha256=ll-wbXl9oCua1BbDnFDpBYbBC7JWRWN6KxAh3mlxZSU,3577
|
513
535
|
paddlex/inference/pipelines/image_multilabel_classification/__init__.py,sha256=0G1gDkzsZpfUvmZTJX4JxFqFjyMFBdPmYih88dDWwrU,670
|
514
|
-
paddlex/inference/pipelines/image_multilabel_classification/pipeline.py,sha256=
|
536
|
+
paddlex/inference/pipelines/image_multilabel_classification/pipeline.py,sha256=NZhDqOp5-KM9jCrL460jXwIj58R5Mvd9BX8G8UkbWLo,3800
|
515
537
|
paddlex/inference/pipelines/instance_segmentation/__init__.py,sha256=hq0t02zs2bcvV33hy1bDCwWmXBzyaSjK2H9CRoDDYks,661
|
516
|
-
paddlex/inference/pipelines/instance_segmentation/pipeline.py,sha256=
|
538
|
+
paddlex/inference/pipelines/instance_segmentation/pipeline.py,sha256=37YMJhzejHo24t3AAcn8QQyalLmhDfDPCpd2bqvzBAM,3628
|
517
539
|
paddlex/inference/pipelines/keypoint_detection/__init__.py,sha256=R4TzgozUZphiJzcWLsSciP0oWD7AeIWxqz2T-WTgqz8,658
|
518
|
-
paddlex/inference/pipelines/keypoint_detection/pipeline.py,sha256=
|
540
|
+
paddlex/inference/pipelines/keypoint_detection/pipeline.py,sha256=bhjn1rBJRIV0xIX8J3mlJ1F8xE7i7rjE4AmAv2x1T0w,6202
|
519
541
|
paddlex/inference/pipelines/layout_parsing/__init__.py,sha256=eikh0TU4nFoO7C-dI5jzRj02G8PiIXUYu6whU5JTdjE,703
|
520
|
-
paddlex/inference/pipelines/layout_parsing/pipeline.py,sha256=
|
521
|
-
paddlex/inference/pipelines/layout_parsing/pipeline_v2.py,sha256=
|
522
|
-
paddlex/inference/pipelines/layout_parsing/result.py,sha256=
|
523
|
-
paddlex/inference/pipelines/layout_parsing/result_v2.py,sha256=
|
524
|
-
paddlex/inference/pipelines/layout_parsing/
|
542
|
+
paddlex/inference/pipelines/layout_parsing/pipeline.py,sha256=Qmqtf0Et30CFnNxNDtGiMGSYGxNhUezSZKIsyAloTiA,25847
|
543
|
+
paddlex/inference/pipelines/layout_parsing/pipeline_v2.py,sha256=VOVtS8Txo2ucgRKjhHfNHM8tbHkEpuPIgh3JE4xprHw,62609
|
544
|
+
paddlex/inference/pipelines/layout_parsing/result.py,sha256=R6wHENrYfrAbJfwZ-bi-_ha4EaU4hzsRNuwqKiH9Mhc,8688
|
545
|
+
paddlex/inference/pipelines/layout_parsing/result_v2.py,sha256=A5TtEyWmEOVEDh2qgR6Yd0pQJtZ5EaIPKkdJff1IHLI,28783
|
546
|
+
paddlex/inference/pipelines/layout_parsing/setting.py,sha256=sRVofeM2bADiEYsCJunVawgMgtFdQoxDhv4U4yCSegs,2392
|
547
|
+
paddlex/inference/pipelines/layout_parsing/utils.py,sha256=ahh4d8WpOmk5rdrzzbG0nzp9AfM6fq9HkpTTtejkd9c,35097
|
548
|
+
paddlex/inference/pipelines/layout_parsing/xycut_enhanced/__init__.py,sha256=VG_OmZclRXlQrnMEm7Ovu4Va31zWaQ1S1Tbqr-_-dvQ,653
|
549
|
+
paddlex/inference/pipelines/layout_parsing/xycut_enhanced/utils.py,sha256=LRIfAboYnLkEuT94wYDGwFOEaWpSiWcUX5SVD_32bvo,43469
|
550
|
+
paddlex/inference/pipelines/layout_parsing/xycut_enhanced/xycuts.py,sha256=CQy-Bscvi3mFFedrIQn2WWHt3mJwaxR-4ImyBRbHMT4,22165
|
525
551
|
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
|
552
|
+
paddlex/inference/pipelines/m_3d_bev_detection/pipeline.py,sha256=-i0H4n75tY9qZwhA_0rdxcJQhnpRLforCJYqLbFFMQM,2892
|
527
553
|
paddlex/inference/pipelines/multilingual_speech_recognition/__init__.py,sha256=7QB9Wx7YCvmZInmrrgafzfQkL6C495sSro5CoH1HH2Q,670
|
528
|
-
paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py,sha256=
|
554
|
+
paddlex/inference/pipelines/multilingual_speech_recognition/pipeline.py,sha256=XBFfLFVHqSdews5RkIMy-7vSJrphAk4Er7kT-wLZE14,3173
|
529
555
|
paddlex/inference/pipelines/object_detection/__init__.py,sha256=c2ZYFYRbb0J6daRAv9uwTf4nqUw1w5mG6nkgp6vTtZ4,656
|
530
|
-
paddlex/inference/pipelines/object_detection/pipeline.py,sha256=
|
556
|
+
paddlex/inference/pipelines/object_detection/pipeline.py,sha256=FpXmt4UoUS-10cZQUfmrJDEwQd5Unzb7GhTbD1j9wBI,5140
|
531
557
|
paddlex/inference/pipelines/ocr/__init__.py,sha256=ikqbgokLsaCuqyOet1ul-2mtNGO7d7sAXLTdAp6E0qs,644
|
532
|
-
paddlex/inference/pipelines/ocr/pipeline.py,sha256=
|
533
|
-
paddlex/inference/pipelines/ocr/result.py,sha256=
|
558
|
+
paddlex/inference/pipelines/ocr/pipeline.py,sha256=0BmvkcYIr3YJoYFycpEkA35Rdz9UZi6TJqYcwTIaL1Y,20178
|
559
|
+
paddlex/inference/pipelines/ocr/result.py,sha256=1xP7RAS3IfdIBvD1IjpsgvrrDEhzTibQoQJkSAxGw8U,9993
|
534
560
|
paddlex/inference/pipelines/open_vocabulary_detection/__init__.py,sha256=aOYM8QAwEr_mL_GA4rWOs4iLpc16rye6vl3ObPNwWbI,664
|
535
|
-
paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py,sha256=
|
561
|
+
paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py,sha256=u7qV-1KuT1nyD-hSyJ0bWNcnhfaBh7H9UYS8AZb38jk,3597
|
536
562
|
paddlex/inference/pipelines/open_vocabulary_segmentation/__init__.py,sha256=AWiP79r5eAv5i-sVCXTVmSLWeHnQwCh8GeZ1I5mB6fk,667
|
537
|
-
paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py,sha256
|
563
|
+
paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py,sha256=HO9pGGRr_jv8x8qNEii_b_s2Q254ETxnrH-a-HLWsXA,4064
|
538
564
|
paddlex/inference/pipelines/pp_chatocr/__init__.py,sha256=sGGz9xscTsDLMHyVr7XHD4aUNvfzi9VdKbcogWx-wsA,704
|
539
|
-
paddlex/inference/pipelines/pp_chatocr/pipeline_base.py,sha256=
|
540
|
-
paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py,sha256=
|
541
|
-
paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py,sha256
|
565
|
+
paddlex/inference/pipelines/pp_chatocr/pipeline_base.py,sha256=DvUu01oKY9KU3oIpTCbF-Sai6bRuvxqpZpBHe8gAuOE,3994
|
566
|
+
paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py,sha256=m4C4O0xLrjBMFcRlOTzXkEwP4iHjaPtLyu5EKA2-ZxA,32500
|
567
|
+
paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py,sha256=HvyqLaI7oNY6MfiTFd1fGm1Ad8KDbjB60JTG63sDh6s,41756
|
542
568
|
paddlex/inference/pipelines/pp_shitu_v2/__init__.py,sha256=ZI-x84D1hyQ8U77a8VLsv_4faIbTstX48iD9PWnYHDQ,648
|
543
569
|
paddlex/inference/pipelines/pp_shitu_v2/pipeline.py,sha256=G3fzKKyjscJKz5iQ4jSvBjEoGCa6KuiG10WY4n2AdlM,5828
|
544
570
|
paddlex/inference/pipelines/pp_shitu_v2/result.py,sha256=3600yup0xoEL0dA_7BqljeZPgvledruh1VoLMpIH2tc,4354
|
545
571
|
paddlex/inference/pipelines/rotated_object_detection/__init__.py,sha256=0xOtCBKkj3DJQkIbO2EUekYcBf50U57LEwIC_MsM4Jc,663
|
546
|
-
paddlex/inference/pipelines/rotated_object_detection/pipeline.py,sha256=
|
572
|
+
paddlex/inference/pipelines/rotated_object_detection/pipeline.py,sha256=DwU6h4uFOX7nOtySfxzn5t6rwE80uiGIHyvmPFe2G88,4038
|
547
573
|
paddlex/inference/pipelines/seal_recognition/__init__.py,sha256=Hf4BsknzV22IeT8dG2VYBuHdKEP5rrWetaV0HxxihC4,656
|
548
|
-
paddlex/inference/pipelines/seal_recognition/pipeline.py,sha256=
|
574
|
+
paddlex/inference/pipelines/seal_recognition/pipeline.py,sha256=Y2Slw2NTL85zbOCn4DZSikkXAZklETeK_eGeBT4oRrM,14152
|
549
575
|
paddlex/inference/pipelines/seal_recognition/result.py,sha256=yQJZejB-bufIE-PxcjNEfhLFRS8tfV-8W3nZIWlyYh8,3733
|
550
576
|
paddlex/inference/pipelines/semantic_segmentation/__init__.py,sha256=sjct9rWDAodXzT73QZreE-li9bsZBislMfGu4fVBJPQ,661
|
551
|
-
paddlex/inference/pipelines/semantic_segmentation/pipeline.py,sha256=
|
577
|
+
paddlex/inference/pipelines/semantic_segmentation/pipeline.py,sha256=BkICHvJsLDR2GQAkgQsjsB_sxEiOFH0KthtNn3_Cr5o,4022
|
552
578
|
paddlex/inference/pipelines/small_object_detection/__init__.py,sha256=3Nu17bbFqaFAZy5XYUfNr8cN4UI9Jtb71JcVOi4FXsQ,661
|
553
|
-
paddlex/inference/pipelines/small_object_detection/pipeline.py,sha256=
|
579
|
+
paddlex/inference/pipelines/small_object_detection/pipeline.py,sha256=GCddl7l-rKSlRnHq1hL56F46SHGJT4jFuR-hFva4FaA,4010
|
554
580
|
paddlex/inference/pipelines/table_recognition/__init__.py,sha256=njpOeQCLmGcqpyqoD6vPfR4ZlOgH-n9eVZNtW01Gin0,709
|
555
|
-
paddlex/inference/pipelines/table_recognition/pipeline.py,sha256=
|
556
|
-
paddlex/inference/pipelines/table_recognition/pipeline_v2.py,sha256=
|
557
|
-
paddlex/inference/pipelines/table_recognition/result.py,sha256=
|
581
|
+
paddlex/inference/pipelines/table_recognition/pipeline.py,sha256=GBqU2y05TOlTsl_-shyP1R1Fo7IyYrk6HrwcqWxrjJY,21392
|
582
|
+
paddlex/inference/pipelines/table_recognition/pipeline_v2.py,sha256=YSvZPIj-3hv1LCWBsE6P_ifQhtxgcwmaAx-6nrQ6LQ0,61616
|
583
|
+
paddlex/inference/pipelines/table_recognition/result.py,sha256=W8-RtrfVPLzu5ci61vu3dU9KjIPEpN7_2WQtbdM1LME,8551
|
558
584
|
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=
|
585
|
+
paddlex/inference/pipelines/table_recognition/table_recognition_post_processing_v2.py,sha256=1LnMrLe58kb5dpm2qHw6VtxoHweBNiWdrgNYA15BpAA,17491
|
560
586
|
paddlex/inference/pipelines/table_recognition/utils.py,sha256=ccE_gO0FpEnirOPgs2tZ5sUpFIecJKh4x0XHM3RMgZA,1744
|
561
587
|
paddlex/inference/pipelines/ts_anomaly_detection/__init__.py,sha256=tEqgLUUG96b-ZXSXxp6Aaw6j4j2ZCB1mSiZIA3vZccY,653
|
562
|
-
paddlex/inference/pipelines/ts_anomaly_detection/pipeline.py,sha256=
|
588
|
+
paddlex/inference/pipelines/ts_anomaly_detection/pipeline.py,sha256=RKm0I7n2Fbcftk7HvKfugCkLUM6XKauXLBYVwSZKAro,2851
|
563
589
|
paddlex/inference/pipelines/ts_classification/__init__.py,sha256=BV9eJHwPYamtJvBpqOf0_Dp1BRsNI4JUyJlz8NMyPLc,646
|
564
|
-
paddlex/inference/pipelines/ts_classification/pipeline.py,sha256=
|
590
|
+
paddlex/inference/pipelines/ts_classification/pipeline.py,sha256=ucS8PIMC_EfZv7iJyWI8hdJPFXEsP2JxU5BPDStM5ik,2885
|
565
591
|
paddlex/inference/pipelines/ts_forecasting/__init__.py,sha256=q3PlYiv1859mFHaPXM6jy1GDtB12rbK3vqxQAUYlSAA,645
|
566
|
-
paddlex/inference/pipelines/ts_forecasting/pipeline.py,sha256=
|
592
|
+
paddlex/inference/pipelines/ts_forecasting/pipeline.py,sha256=nq26i48RsAloH7nSu0OacEhDlmZQ3iJFlHuVH7eKdig,2824
|
567
593
|
paddlex/inference/pipelines/video_classification/__init__.py,sha256=Oc-0vfKoaBRDZNJpu5138EsNG8Fp7nsmzUt5gfMyqIQ,660
|
568
|
-
paddlex/inference/pipelines/video_classification/pipeline.py,sha256=
|
594
|
+
paddlex/inference/pipelines/video_classification/pipeline.py,sha256=vd0GqiE8ztliRMPxru7s9jw8hx0e5LhMhBgvjimMQYY,3103
|
569
595
|
paddlex/inference/pipelines/video_detection/__init__.py,sha256=5fwogRCREggvQgge-ur-bGnfKP-9xh5dUR0gkjzl1Rw,655
|
570
|
-
paddlex/inference/pipelines/video_detection/pipeline.py,sha256=
|
596
|
+
paddlex/inference/pipelines/video_detection/pipeline.py,sha256=k-QJZl2t-J2oboDfeWZ812P8TqVM1T3Lb4KsRV9xHrQ,3391
|
571
597
|
paddlex/inference/serving/__init__.py,sha256=toJfQp9IogLuJwLzprv8lieB-EERPqU4B0FJv8ZoNec,685
|
572
598
|
paddlex/inference/serving/basic_serving/__init__.py,sha256=_NwYgeYL6HTpLWAxf7aRwRP-rBfP-Fsaff3vZe0GUkg,739
|
573
599
|
paddlex/inference/serving/basic_serving/_app.py,sha256=7KKwaeeZDEqj-623AYOw6JvtmwnDVu2Aw9zsKcrhVsU,7368
|
@@ -582,7 +608,7 @@ paddlex/inference/serving/basic_serving/_pipeline_apps/human_keypoint_detection.
|
|
582
608
|
paddlex/inference/serving/basic_serving/_pipeline_apps/image_classification.py,sha256=DDfpOzLvXRvQXBz279ybi3RDCCRGbbJait87wipq6B4,2568
|
583
609
|
paddlex/inference/serving/basic_serving/_pipeline_apps/image_multilabel_classification.py,sha256=LJa_GBCadv5z-3q_ypHmtX2YUx6uh-GDzlESZfUrxiQ,2606
|
584
610
|
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=
|
611
|
+
paddlex/inference/serving/basic_serving/_pipeline_apps/layout_parsing.py,sha256=_AXb70cyXepfFsq6yEUnOSLa2A0WGNABCQftGReFOw4,4547
|
586
612
|
paddlex/inference/serving/basic_serving/_pipeline_apps/m_3d_bev_detection.py,sha256=67-XMeJpt38WJyWDlWz8ejdbZDsQ81WQ4Jye9z0zP-E,2553
|
587
613
|
paddlex/inference/serving/basic_serving/_pipeline_apps/multilingual_speech_recognition.py,sha256=5_r3Ze_F4N0n5L-D9EK-8jVgbtNxhbY-wOgwRwVd62c,3111
|
588
614
|
paddlex/inference/serving/basic_serving/_pipeline_apps/object_detection.py,sha256=KbkK3FQsLcTlRjFxeEVh_fe-B4uznaDoCEFjzxbD4Tk,2620
|
@@ -590,16 +616,16 @@ paddlex/inference/serving/basic_serving/_pipeline_apps/ocr.py,sha256=m5xEmhbV49H
|
|
590
616
|
paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_detection.py,sha256=38_lV8SgDtK6DxqYwAGgPI4ARA8x-qA7prg7rIPRz08,2641
|
591
617
|
paddlex/inference/serving/basic_serving/_pipeline_apps/open_vocabulary_segmentation.py,sha256=2RBFFOYmz7yM8jUDOSTNGJGyhPb5SXVwSumjct_k46E,2868
|
592
618
|
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=
|
594
|
-
paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py,sha256=
|
619
|
+
paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv3_doc.py,sha256=4zfZ_zYpMZWn6EA0NaFpfCgyKSfQfeFRaH6TdkoQ1Hw,7446
|
620
|
+
paddlex/inference/serving/basic_serving/_pipeline_apps/pp_chatocrv4_doc.py,sha256=iJQjCR-XRHWe_-kwr_vNkShCUwJss_eqY1mx_ZFVdU0,8567
|
595
621
|
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=
|
622
|
+
paddlex/inference/serving/basic_serving/_pipeline_apps/pp_structurev3.py,sha256=CtwEBKsGWv4pKnlL46pD-OuOMwYuTr-QviT7jl18lqI,5952
|
597
623
|
paddlex/inference/serving/basic_serving/_pipeline_apps/rotated_object_detection.py,sha256=3grQrKFhUuY1HVRqTDNOsi9Ss9ADPE4Uxc2qLAVUdf8,2645
|
598
624
|
paddlex/inference/serving/basic_serving/_pipeline_apps/seal_recognition.py,sha256=AGV5TfrgaQNrTmN7b4Sca_n1QeTEx2uQ1Ft5Lu6Csec,3955
|
599
625
|
paddlex/inference/serving/basic_serving/_pipeline_apps/semantic_segmentation.py,sha256=4Eut660kUrXzIMFVlJ8GiQfM_pMuR7KKV_Ihnr3w4iQ,2410
|
600
626
|
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=
|
602
|
-
paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py,sha256=
|
627
|
+
paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition.py,sha256=y0KuqMkFQeOnVxA0ERsyl9IiXM4LGp2bLMTqEEl9b-k,3866
|
628
|
+
paddlex/inference/serving/basic_serving/_pipeline_apps/table_recognition_v2.py,sha256=iLeF-4mJu-I4C5-XDsBcaPg-CeU1uKkdzRu4Z90W8DI,4287
|
603
629
|
paddlex/inference/serving/basic_serving/_pipeline_apps/ts_anomaly_detection.py,sha256=6z0kkq1kXpS7aLlCn6TvL8g1uS02SZAHkhOeuJzaB8E,2281
|
604
630
|
paddlex/inference/serving/basic_serving/_pipeline_apps/ts_classification.py,sha256=luHJWk_jWVVSluCbXdc8pjsf5bBnWyoYSqh4G-1Fe_o,2289
|
605
631
|
paddlex/inference/serving/basic_serving/_pipeline_apps/ts_forecast.py,sha256=Uk5VHQEfrYkwPcvdXcl8x_tgXMJBxMvGVghCb-CwLLw,2273
|
@@ -607,25 +633,25 @@ paddlex/inference/serving/basic_serving/_pipeline_apps/vehicle_attribute_recogni
|
|
607
633
|
paddlex/inference/serving/basic_serving/_pipeline_apps/video_classification.py,sha256=O81Dqdqz_aKY_lza-Qnx5BAhdJMEURwSFBsa7WGnVMY,2743
|
608
634
|
paddlex/inference/serving/basic_serving/_pipeline_apps/video_detection.py,sha256=CW-UrSTBQZIbLvzFwWAKrH5o7-v8fVhdul-NAIARpBE,3055
|
609
635
|
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=
|
636
|
+
paddlex/inference/serving/basic_serving/_pipeline_apps/_common/common.py,sha256=41bSImqd5aaPViY5Z3ix4ervK8dg0jcN0cRLdfRRC8g,3534
|
611
637
|
paddlex/inference/serving/basic_serving/_pipeline_apps/_common/image_recognition.py,sha256=EWHNeFPwiZHt9hkC8-9mV8shKVIJH4CbS3EvQQs6RjA,1244
|
612
638
|
paddlex/inference/serving/basic_serving/_pipeline_apps/_common/ocr.py,sha256=B2vexhyMSUMy0Vvyy85ZObwTsrieplyb-LiT3lc-Hng,3578
|
613
639
|
paddlex/inference/serving/infra/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
614
640
|
paddlex/inference/serving/infra/config.py,sha256=-6StYn1pF_VQdCWsthZ5b86O-m31ye_KWp7j-mwc9N8,1152
|
615
641
|
paddlex/inference/serving/infra/models.py,sha256=KXxvV39dGzrbGeHDacZMGvtlcKPF4PEkjtuov0Vt9y4,1980
|
616
642
|
paddlex/inference/serving/infra/storage.py,sha256=8Pw5mhvornnF2NnwOblRX5N_FGMrCvCkz0WfmQX7bXM,5379
|
617
|
-
paddlex/inference/serving/infra/utils.py,sha256=
|
643
|
+
paddlex/inference/serving/infra/utils.py,sha256=8Vz3xYVcoZ_QEJAHlhGEakfojqvvZuHEi0tCBfgklIY,8457
|
618
644
|
paddlex/inference/serving/schemas/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
619
645
|
paddlex/inference/serving/schemas/anomaly_detection.py,sha256=407q-QdNYiCHSjuGnbnndoFK6CXWN4Y8HfzVaIzE_8U,1189
|
620
646
|
paddlex/inference/serving/schemas/doc_preprocessor.py,sha256=rCYnssIaIpnulPGFRTE15U5zl7l6ylWzqpMJl1QEvVI,1630
|
621
647
|
paddlex/inference/serving/schemas/doc_understanding.py,sha256=urKhmbceO9TCL2_9bWSC8_buePyGSGixfryoRfESw_w,2058
|
622
648
|
paddlex/inference/serving/schemas/face_recognition.py,sha256=N6SHf5UB63yyva3y9Z2xYh1_mjJSh1bSIFDjf6be8iU,3011
|
623
|
-
paddlex/inference/serving/schemas/formula_recognition.py,sha256=
|
649
|
+
paddlex/inference/serving/schemas/formula_recognition.py,sha256=wf9ya-85l9a8p2jk0pugMFdLdikqWjT4n5GUl-fbkjw,1723
|
624
650
|
paddlex/inference/serving/schemas/human_keypoint_detection.py,sha256=C61vn-1MYsjdpKy8H78VrEJeJQMKhZMVJ2odCoxfxfY,1473
|
625
651
|
paddlex/inference/serving/schemas/image_classification.py,sha256=I_lquPPda7W7RAbDVQhhCJiXz28DYIzk2ki5CQzNO7c,1291
|
626
652
|
paddlex/inference/serving/schemas/image_multilabel_classification.py,sha256=-Id6g1RLeTE4O_RzbyboN_YhImuopm7IbBqVVE_c44w,1368
|
627
653
|
paddlex/inference/serving/schemas/instance_segmentation.py,sha256=aLPdJftqCkHVFakDWz9PKM9itBmHGuh4hrOq622mSC0,1411
|
628
|
-
paddlex/inference/serving/schemas/layout_parsing.py,sha256=
|
654
|
+
paddlex/inference/serving/schemas/layout_parsing.py,sha256=CF0nLt0fHfBPAeYGwBBESRvQKQ0htPqvc6NQ7EyMEmI,2416
|
629
655
|
paddlex/inference/serving/schemas/m_3d_bev_detection.py,sha256=i9WJnV2t_aVsuxIYxp6jue_H0mhOk3PJNBIAFmr11nM,1289
|
630
656
|
paddlex/inference/serving/schemas/multilingual_speech_recognition.py,sha256=98SL_0vkAfbDdy6-G426lLolMmaf3U6-uMGDEF_aYy4,1371
|
631
657
|
paddlex/inference/serving/schemas/object_detection.py,sha256=IjPxEvK5-suGOXHeXOSo7LgIyHJZbuwvixgq1fa_KPA,1414
|
@@ -633,16 +659,16 @@ paddlex/inference/serving/schemas/ocr.py,sha256=D0XLhCa9uxTb7xxNATwS7NW5p2vk5Frz
|
|
633
659
|
paddlex/inference/serving/schemas/open_vocabulary_detection.py,sha256=T8WgzB9Np4AP0ifzumueUL4LwQsrPZCnCvcElOrrAHo,1399
|
634
660
|
paddlex/inference/serving/schemas/open_vocabulary_segmentation.py,sha256=9L7sZsSibZ8nyAgHgkjfm_A4T_mSZyCuOXf0EEdmUYQ,1360
|
635
661
|
paddlex/inference/serving/schemas/pedestrian_attribute_recognition.py,sha256=p5I5Gcs3fJb2YnJdQSZElVM-ij5yd1nqr0L6R8RTEx4,1619
|
636
|
-
paddlex/inference/serving/schemas/pp_chatocrv3_doc.py,sha256=
|
637
|
-
paddlex/inference/serving/schemas/pp_chatocrv4_doc.py,sha256=
|
662
|
+
paddlex/inference/serving/schemas/pp_chatocrv3_doc.py,sha256=Sj2gC3Tkfc8w9XyET4Sr7NwZbF4wLB2h6mrlODMdYK4,4320
|
663
|
+
paddlex/inference/serving/schemas/pp_chatocrv4_doc.py,sha256=6c5fRGN2Z541x5nwdkzv1L5kUPBMPv0b1WrS-uNdIhY,4566
|
638
664
|
paddlex/inference/serving/schemas/pp_shituv2.py,sha256=bD_xTuab4t4o4h7ycBVYl3nlA86bvk59aLggZ-j_KlE,3007
|
639
|
-
paddlex/inference/serving/schemas/pp_structurev3.py,sha256=
|
665
|
+
paddlex/inference/serving/schemas/pp_structurev3.py,sha256=hAkGogT1dDoXo9SDRL5mNiu2Hw64VvPzcUMMzG_nQ_Y,2963
|
640
666
|
paddlex/inference/serving/schemas/rotated_object_detection.py,sha256=LRZHlTR15onDcsXshOHqbKwyaJ5mJCZrVlm4x-h427Y,1429
|
641
|
-
paddlex/inference/serving/schemas/seal_recognition.py,sha256=
|
667
|
+
paddlex/inference/serving/schemas/seal_recognition.py,sha256=rNzFjzUhnXCx-4Cu8dN0KLHs60Jp87eFnWmeAAvKhwU,1978
|
642
668
|
paddlex/inference/serving/schemas/semantic_segmentation.py,sha256=QlsjszHI4MZUumBiNlxY7KacMNKEXKDH8oaS6wyEbiI,1282
|
643
669
|
paddlex/inference/serving/schemas/small_object_detection.py,sha256=dbd7B79UHqkN3slzi01ui-Q7jkUQlYfEIzFZQOYT-wU,1420
|
644
|
-
paddlex/inference/serving/schemas/table_recognition.py,sha256=
|
645
|
-
paddlex/inference/serving/schemas/table_recognition_v2.py,sha256=
|
670
|
+
paddlex/inference/serving/schemas/table_recognition.py,sha256=VEsNYaaWq16ZcOwma3A906lcgWXQnAXMa1ottGMOUZc,1838
|
671
|
+
paddlex/inference/serving/schemas/table_recognition_v2.py,sha256=UPnumlbEz1bSZMyDK9vl8UmUeKhqkg-ZYozwlsxK1kU,2070
|
646
672
|
paddlex/inference/serving/schemas/ts_anomaly_detection.py,sha256=gYHuJL4MEL8-v7PMze0T1_YTCjnEjDczb-QWUAuuf7g,1103
|
647
673
|
paddlex/inference/serving/schemas/ts_classification.py,sha256=NScw6DzaZ0kZNUIlQoQhSsE0aEZeZLQ5orBPk8nyl3U,1119
|
648
674
|
paddlex/inference/serving/schemas/ts_forecast.py,sha256=L17DUN8GF5ffaj_u__xirD2R_FB7zaSolh4PMn6KxOQ,1097
|
@@ -658,22 +684,23 @@ paddlex/inference/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJ
|
|
658
684
|
paddlex/inference/utils/benchmark.py,sha256=l2ATIuPwAd1uD4rZgADbt4HKEiobeFLm3P-bIbKtD4s,12932
|
659
685
|
paddlex/inference/utils/color_map.py,sha256=mU1FdhHuyiJBn_thBkSndiMJtfkn3i3rLtPAPNPFid0,2953
|
660
686
|
paddlex/inference/utils/get_pipeline_path.py,sha256=LCjXho0ix4jgG-sJ1DyKIAFfC8Yv2cj6hBlA3eOFJIo,985
|
661
|
-
paddlex/inference/utils/hpi.py,sha256=
|
662
|
-
paddlex/inference/utils/hpi_model_info_collection.json,sha256=
|
687
|
+
paddlex/inference/utils/hpi.py,sha256=09dJXUiU9vHb-0gHISIQHVlnSMOzktm9xjDDavDYOQY,9252
|
688
|
+
paddlex/inference/utils/hpi_model_info_collection.json,sha256=cHWQQWEBSe5-z29QeLbscVAJ6ixkL7ZZ9iPz5gZk8xE,43321
|
689
|
+
paddlex/inference/utils/mkldnn_blocklist.py,sha256=1dkuIvUYq9ykUNzuJi5S0vcMfxbcAPQWYMGBE7v9t8w,846
|
663
690
|
paddlex/inference/utils/model_paths.py,sha256=uRsEO-uHEd4xKQZqNyU5T7Vp6QI6iYZ5anZMXXpmKAg,1803
|
664
691
|
paddlex/inference/utils/new_ir_blocklist.py,sha256=wdN1jiRWGo-YQvzoMOLhsqDjAcqhhkwfPBZEJ3-ldAw,880
|
665
|
-
paddlex/inference/utils/official_models.py,sha256=
|
666
|
-
paddlex/inference/utils/pp_option.py,sha256=
|
692
|
+
paddlex/inference/utils/official_models.py,sha256=wr-R2OUDV40bwYtfBoukllIjb0nS3CVT0yxRZOFhFeU,41069
|
693
|
+
paddlex/inference/utils/pp_option.py,sha256=asA2yAry-YBixJsW0-f3cp2Avs6CZqHn7KYZHrf-Uqg,11850
|
667
694
|
paddlex/inference/utils/trt_blocklist.py,sha256=vaFJs6gvkMncYKTL5R6C93Nq2eYAdeBNcmJ4-abSFa0,1465
|
668
695
|
paddlex/inference/utils/trt_config.py,sha256=995uGRdKFyaU9EB4jLDiS85EjVLXmsCyL7gJIl3c8h0,12661
|
669
696
|
paddlex/inference/utils/io/__init__.py,sha256=KE8WngZIEjrOPEGeN6AEwKU-yt5nReDRWIBcmiRPM5s,939
|
670
|
-
paddlex/inference/utils/io/readers.py,sha256=
|
697
|
+
paddlex/inference/utils/io/readers.py,sha256=5Xj0tSo6HW8ZPMetwSyFgMkr5JG1pH86XLLLWX1exGE,14112
|
671
698
|
paddlex/inference/utils/io/style.py,sha256=0wIJQ9Gq8lgHec65TKq17W626kMHkwIqyUI1okkZOzg,11522
|
672
699
|
paddlex/inference/utils/io/tablepyxl.py,sha256=jTgpLrYbpJ20SWKNI87ZAF03xPHQJNjzGuYkbIE-KE8,5264
|
673
700
|
paddlex/inference/utils/io/writers.py,sha256=eQzWGFFf0JKvgk_UnqvdQZs1aCDGbs9MQW0EST3IoJo,12720
|
674
|
-
paddlex/modules/__init__.py,sha256=
|
701
|
+
paddlex/modules/__init__.py,sha256=Ow5J6NKjMeOmR64EaJmX3PPRyhle9HlebXOHP-ZSFiw,3002
|
675
702
|
paddlex/modules/anomaly_detection/__init__.py,sha256=-KBaNC_byJeI2uisbbBePhif2OI4odukBI2kg2jdOzY,759
|
676
|
-
paddlex/modules/anomaly_detection/evaluator.py,sha256=
|
703
|
+
paddlex/modules/anomaly_detection/evaluator.py,sha256=HM45C8XxQ6FFuCRTJaw922RIZJ-qJHfN2xoCO7yx3z8,1754
|
677
704
|
paddlex/modules/anomaly_detection/exportor.py,sha256=aUnXJzLIzrdoAQ3NgPx6pOBgpeVYIP0EkqOygnC9IhQ,778
|
678
705
|
paddlex/modules/anomaly_detection/model_list.py,sha256=oZbKWDV4kNV8rkXS2gPSv0AmvTCSUonHiGNv834GO8g,630
|
679
706
|
paddlex/modules/anomaly_detection/trainer.py,sha256=A13rPYH4FiV4AO9ffwHHlTLiYkZVcdLASZ4jNlpQAkc,2797
|
@@ -685,11 +712,11 @@ paddlex/modules/anomaly_detection/dataset_checker/dataset_src/convert_dataset.py
|
|
685
712
|
paddlex/modules/anomaly_detection/dataset_checker/dataset_src/split_dataset.py,sha256=k8oWJZs3srA5gZeJpgBFmzj8xVzIAsy6xfgnYRNMsEg,3295
|
686
713
|
paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
687
714
|
paddlex/modules/anomaly_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=3SzTKeTPFgOYKmcNjua6Gi9CsAw9cFMC7IG-r7-uayk,2829
|
688
|
-
paddlex/modules/base/__init__.py,sha256=
|
715
|
+
paddlex/modules/base/__init__.py,sha256=2OR1bRWirjy4Tj6lIexbrX17u8YLGa-Xvw1rakDtBi4,834
|
689
716
|
paddlex/modules/base/build_model.py,sha256=jZzZakdeB6NCyZfbprOuP6IOCNO18h_hlWiDvLUmM9w,1217
|
690
|
-
paddlex/modules/base/evaluator.py,sha256=
|
717
|
+
paddlex/modules/base/evaluator.py,sha256=O1psRBQaUP1J6spQWcujt-iIbTPwG8jzPMZIcI4Ryvs,5480
|
691
718
|
paddlex/modules/base/exportor.py,sha256=kMZaevotxpVTfdhfY5U2V3vGc0pz_wPO-UkmFL3ggsA,4652
|
692
|
-
paddlex/modules/base/trainer.py,sha256=
|
719
|
+
paddlex/modules/base/trainer.py,sha256=WDWgZjCrMThIRGjEJ9jqsoGs673clSVPPHYzdYHtGHg,4961
|
693
720
|
paddlex/modules/base/dataset_checker/__init__.py,sha256=HyzVN0-XxQ0Ru3lX_jJvZ3q3DbETXpKo4RoJi45O5KE,682
|
694
721
|
paddlex/modules/base/dataset_checker/dataset_checker.py,sha256=8fM1IWvIqHngzhurkx0BTSpb-jeIS6hJ75B5DbHMjg4,5199
|
695
722
|
paddlex/modules/base/dataset_checker/utils.py,sha256=q_FWg-awWTaNE_nuD_jQ4mvJPaGGB66pNSen4WcuGEs,3324
|
@@ -698,13 +725,13 @@ paddlex/modules/base/utils/cinn_setting.py,sha256=wXw6oSpDBCaPzSqorhjto_ZZxmS1gM
|
|
698
725
|
paddlex/modules/base/utils/coco_eval.py,sha256=ZoTF3hLyDVOw8FqE4d1jSzT7tjpJQkD4R12DXe8TFmA,3001
|
699
726
|
paddlex/modules/base/utils/topk_eval.py,sha256=VDmawEu-emOujFrTsGJSA9ob0IbsOgNGMoOMUa9adNo,3610
|
700
727
|
paddlex/modules/doc_vlm/__init__.py,sha256=IyrGCdr7Xb2pj6KoZAHELgB3US-IsfRfNnxS7MKHkxE,771
|
701
|
-
paddlex/modules/doc_vlm/dataset_checker.py,sha256=
|
702
|
-
paddlex/modules/doc_vlm/evaluator.py,sha256=
|
703
|
-
paddlex/modules/doc_vlm/exportor.py,sha256=
|
704
|
-
paddlex/modules/doc_vlm/model_list.py,sha256=
|
705
|
-
paddlex/modules/doc_vlm/trainer.py,sha256=
|
728
|
+
paddlex/modules/doc_vlm/dataset_checker.py,sha256=bYsGlLKAF_6gLVivuk0UYqJJ9dpG29Hyf31pxUhkxkU,1050
|
729
|
+
paddlex/modules/doc_vlm/evaluator.py,sha256=PJviR5RT-ZbTqeyloYDCWgs6rjHuqSZ8tTDYodozZzM,1023
|
730
|
+
paddlex/modules/doc_vlm/exportor.py,sha256=2RAPnW-ia3DbxUH9kTPOQjJNInhdQbueWaX3mLqZWcE,1017
|
731
|
+
paddlex/modules/doc_vlm/model_list.py,sha256=nqUD5sSowyKmN03tMMv2HzHwjr0siOx9zMNj4C-LzhM,688
|
732
|
+
paddlex/modules/doc_vlm/trainer.py,sha256=fd5n7kO1z5s5ExViswE4scB2Dg7Qn39ouOsxnFV_3gM,1343
|
706
733
|
paddlex/modules/face_recognition/__init__.py,sha256=cirPmSAP4s3lhIjMYpa_NnRRRRduuvIzT78EIz4bUNI,775
|
707
|
-
paddlex/modules/face_recognition/evaluator.py,sha256=
|
734
|
+
paddlex/modules/face_recognition/evaluator.py,sha256=q5uMUbgOqEejQLSKgFAdC-UuKJxEUVLLmFFU_jI6otI,1940
|
708
735
|
paddlex/modules/face_recognition/exportor.py,sha256=98Sw9yhdDQyokxx4nNua5XDSYbCH2OheI4Bb7WRYLo0,777
|
709
736
|
paddlex/modules/face_recognition/model_list.py,sha256=gwqwCZD8mngz4NQcblx8drYcuKsN6T3oSSV5VD1_gHw,654
|
710
737
|
paddlex/modules/face_recognition/trainer.py,sha256=F7tmyOUeOUtlW0LHG9iNEaNe5J3aMTyRNbw7GPdLblg,3349
|
@@ -714,10 +741,10 @@ paddlex/modules/face_recognition/dataset_checker/dataset_src/check_dataset.py,sh
|
|
714
741
|
paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
715
742
|
paddlex/modules/face_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=mdNvYxWo1M17W3eI1sslcuHfbtiTR-MyBue-cqZbU3g,4192
|
716
743
|
paddlex/modules/formula_recognition/__init__.py,sha256=pcSvdDzb6aYvYQ6EtD8IeiWcA5B1i6UxvAVd91vwCcA,787
|
717
|
-
paddlex/modules/formula_recognition/evaluator.py,sha256=
|
744
|
+
paddlex/modules/formula_recognition/evaluator.py,sha256=2DKs82uO07DtCZZ6GixBGAa1kSo4nZsgviZ7aKzOBRM,2898
|
718
745
|
paddlex/modules/formula_recognition/exportor.py,sha256=WbYjW3kSUHanO8PWEB_pmKHirqXJpe8ouFibXDSsOIw,780
|
719
|
-
paddlex/modules/formula_recognition/model_list.py,sha256=
|
720
|
-
paddlex/modules/formula_recognition/trainer.py,sha256=
|
746
|
+
paddlex/modules/formula_recognition/model_list.py,sha256=bk6ylR5DfXDVnkKQzz1iFTh-EGNaQqazjg4T_nNYQas,791
|
747
|
+
paddlex/modules/formula_recognition/trainer.py,sha256=JyVHmGhv3h2A7pT1H90B9zHt73Nu9kswPtQp8VJx2lM,4738
|
721
748
|
paddlex/modules/formula_recognition/dataset_checker/__init__.py,sha256=gNsmua_EtPCt45NICbaf1DPguSyL9V54pgIjfEA1tGg,3448
|
722
749
|
paddlex/modules/formula_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
|
723
750
|
paddlex/modules/formula_recognition/dataset_checker/dataset_src/analyse_dataset.py,sha256=8BKm_4GMcdyGg8YUAhXCHIxnq-eGnOCM4Pfo31nDcYs,5401
|
@@ -725,7 +752,7 @@ paddlex/modules/formula_recognition/dataset_checker/dataset_src/check_dataset.py
|
|
725
752
|
paddlex/modules/formula_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=4u1T7bqwfBgCI407A-DuJHkasktZVKodwkPPcS12TDA,3549
|
726
753
|
paddlex/modules/formula_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
|
727
754
|
paddlex/modules/general_recognition/__init__.py,sha256=4h6ETfyLPSjiJ8XzedUYBOqaVCTO-E5_rYjipxH2AXs,779
|
728
|
-
paddlex/modules/general_recognition/evaluator.py,sha256=
|
755
|
+
paddlex/modules/general_recognition/evaluator.py,sha256=1cbt4szDTN2-LmdR1uGbaVFZ50KguqCNuCZQBpG_DsY,1179
|
729
756
|
paddlex/modules/general_recognition/exportor.py,sha256=K3AMTFlH9AvBEtmUmMw6Q2bHp7R7h-CpcQi_xL-ipNQ,793
|
730
757
|
paddlex/modules/general_recognition/model_list.py,sha256=U44cV1nO54JzantxiXvIlC6FMayR4RavX1JWlfrtk_A,718
|
731
758
|
paddlex/modules/general_recognition/trainer.py,sha256=8QWw8gSA1htePeJbSvWSnZdAG8BIaH-wr8nUTuJf1DY,2315
|
@@ -738,9 +765,9 @@ paddlex/modules/general_recognition/dataset_checker/dataset_src/split_dataset.py
|
|
738
765
|
paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
739
766
|
paddlex/modules/general_recognition/dataset_checker/dataset_src/utils/visualizer.py,sha256=HL2H_swoXZMg81Ge9cB1cmAUQq5AYP-C0ooXQuWPhOA,3989
|
740
767
|
paddlex/modules/image_classification/__init__.py,sha256=KTGmo4qYKKAWWVqYKxfjzczeJn18jjiS0Zu18_-S7pI,759
|
741
|
-
paddlex/modules/image_classification/evaluator.py,sha256=
|
768
|
+
paddlex/modules/image_classification/evaluator.py,sha256=Ap23zMreohRnzAPVdljypm9S-OG-HNIIV3Ad2lMNmoc,1673
|
742
769
|
paddlex/modules/image_classification/exportor.py,sha256=qaselLfpPO_LrHxl3598UtkblGonohX-nJLVu6ErGKM,777
|
743
|
-
paddlex/modules/image_classification/model_list.py,sha256=
|
770
|
+
paddlex/modules/image_classification/model_list.py,sha256=S173j3JjJ2CCneMHbMaIzft9q2sMr_e84YVjqO4pFNE,2773
|
744
771
|
paddlex/modules/image_classification/trainer.py,sha256=PocPdlfXcZtcN0mIIKnyVnqzLtQBFpe2_2EvwoJqMHo,3470
|
745
772
|
paddlex/modules/image_classification/dataset_checker/__init__.py,sha256=unY-5uqZd7UNnxHbdHc21PtTXD6_B2DHub7upl2678U,3176
|
746
773
|
paddlex/modules/image_classification/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
|
@@ -753,7 +780,7 @@ paddlex/modules/image_classification/dataset_checker/dataset_src/utils/visualize
|
|
753
780
|
paddlex/modules/image_unwarping/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
754
781
|
paddlex/modules/image_unwarping/model_list.py,sha256=83RWeL82dZfj1nfgR6veqxHerNMurXi7KUF_GSX59Ik,636
|
755
782
|
paddlex/modules/instance_segmentation/__init__.py,sha256=jc6nMbJQJnKEkbV2B_D8iNBhVjZ7a23vPuI3q8NgOjk,791
|
756
|
-
paddlex/modules/instance_segmentation/evaluator.py,sha256=
|
783
|
+
paddlex/modules/instance_segmentation/evaluator.py,sha256=chacmiESmRcBKp9dZJCTBuQQWgm2entQXoEObCKd9pM,1175
|
757
784
|
paddlex/modules/instance_segmentation/exportor.py,sha256=khMYIu1X00n9jkoHDiTuU3CHa8If0Qe3NZ0iRD6og4k,786
|
758
785
|
paddlex/modules/instance_segmentation/model_list.py,sha256=ShpbY2snmkpZl1mbkjP6G-ltNlzDMBgbp4dzaL8BmwM,1076
|
759
786
|
paddlex/modules/instance_segmentation/trainer.py,sha256=drrvAbDw1U71DxXjzk2OO06svsoE-YIR42GsJ9U1e-A,1072
|
@@ -766,7 +793,7 @@ paddlex/modules/instance_segmentation/dataset_checker/dataset_src/split_dataset.
|
|
766
793
|
paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
767
794
|
paddlex/modules/instance_segmentation/dataset_checker/dataset_src/utils/visualizer.py,sha256=QMkty3QWgHaVI27Bwh8uKerMjZbuxX0tLVVfXVOUbGQ,6606
|
768
795
|
paddlex/modules/keypoint_detection/__init__.py,sha256=xU6gi2URJH9mBXEXdPIZREwKMCzY-0rT6Cn_3DLNpbM,779
|
769
|
-
paddlex/modules/keypoint_detection/evaluator.py,sha256=
|
796
|
+
paddlex/modules/keypoint_detection/evaluator.py,sha256=vBqBqM7gPP7_jiHJbSX4YonN1GKfVYxxma5O8oDkO3g,1465
|
770
797
|
paddlex/modules/keypoint_detection/exportor.py,sha256=cMM1kFCXz9lBTI2U0uC5FkWRjiQqymhvWHM7xd0KrtM,778
|
771
798
|
paddlex/modules/keypoint_detection/model_list.py,sha256=aUAx8RpIz-eRgoP8GulC_G3LQjcezCecm1e6fDSJffg,666
|
772
799
|
paddlex/modules/keypoint_detection/trainer.py,sha256=L6SuwrJuBarVYd-iz3agWs2ajg0pg0QgBnj2F47X_Js,1274
|
@@ -776,7 +803,7 @@ paddlex/modules/keypoint_detection/dataset_checker/dataset_src/check_dataset.py,
|
|
776
803
|
paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
777
804
|
paddlex/modules/keypoint_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=o78fUZyezA14KDKo3epBiKQ-Kaa6QIvl0S9RWx4ci04,3962
|
778
805
|
paddlex/modules/m_3d_bev_detection/__init__.py,sha256=QZcxqb_7K8nNIP9ymoOkZejjbOHhOQk-KShmEn-j8YE,783
|
779
|
-
paddlex/modules/m_3d_bev_detection/evaluator.py,sha256=
|
806
|
+
paddlex/modules/m_3d_bev_detection/evaluator.py,sha256=t-u3ugaFJZc3iYHDfBvfHcQ_PfrKKBliiac2QP4_jI0,1606
|
780
807
|
paddlex/modules/m_3d_bev_detection/exportor.py,sha256=JUqaYfXK5OFbiqHAwHLco6yQRNQo2ZgO2FC5Svb56wA,779
|
781
808
|
paddlex/modules/m_3d_bev_detection/model_list.py,sha256=sJ-OTE82aymYKxt1CeFAcXO_pcjr0rv755cJNlbE_wA,641
|
782
809
|
paddlex/modules/m_3d_bev_detection/trainer.py,sha256=finGEesecfSBqwbJLqa-uEbHIr7Q87OTn5QI4bwz2J0,2585
|
@@ -785,7 +812,7 @@ paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/__init__.py,sha25
|
|
785
812
|
paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=VTwHbnoMqpWrRFJVqjWzz5KI9BkKYpHML3eBiLKjuzc,3720
|
786
813
|
paddlex/modules/m_3d_bev_detection/dataset_checker/dataset_src/check_dataset.py,sha256=4GWk6wPfjQAlSyBGVlmAulzoakNLJBQ7VNC_OkCUgS4,3149
|
787
814
|
paddlex/modules/multilabel_classification/__init__.py,sha256=5ohdWA7uRdEjOF96iTBdQ66HOLrx_Kb9IE8gYlC_c5o,767
|
788
|
-
paddlex/modules/multilabel_classification/evaluator.py,sha256=
|
815
|
+
paddlex/modules/multilabel_classification/evaluator.py,sha256=w85sLQ-3fshDrhFu1giw-2SBQpxzahNkbjYgF7xpXsc,1677
|
789
816
|
paddlex/modules/multilabel_classification/exportor.py,sha256=UgjzNwodoAR_OTI7fldMSwGnkonQmhAz817wNBC5Agk,779
|
790
817
|
paddlex/modules/multilabel_classification/model_list.py,sha256=ADgstt_DXLCWO8jtc4R94wkyeHi5gQVvVGAdV_7EXF4,855
|
791
818
|
paddlex/modules/multilabel_classification/trainer.py,sha256=HrXzTJwlFhRi1CV9DMCFJI6SZS6c1_tm9n0OxU5rQpk,3553
|
@@ -804,15 +831,15 @@ paddlex/modules/multilingual_speech_recognition/exportor.py,sha256=aXVrdk-zS9EZd
|
|
804
831
|
paddlex/modules/multilingual_speech_recognition/model_list.py,sha256=R6faqu1SIjQAjrbam_W3EcPl465qlZTqg1HuwNlyzuA,728
|
805
832
|
paddlex/modules/multilingual_speech_recognition/trainer.py,sha256=Zv-5LbQEspcjnmtBJzRMtL2-EuOzAjZKmk9J5638dF8,1405
|
806
833
|
paddlex/modules/object_detection/__init__.py,sha256=eaYQ78PX7yX06YGjowiYNOQh-yO5GTVxThc7ys3iD2E,760
|
807
|
-
paddlex/modules/object_detection/evaluator.py,sha256=
|
834
|
+
paddlex/modules/object_detection/evaluator.py,sha256=0sisy-MEpvjVO6APV2Q_hDMJGa1ASpTKsUxE8zTsOto,1917
|
808
835
|
paddlex/modules/object_detection/exportor.py,sha256=nizJg--qIMXywaDNNcgVbFDqZpQ-naIF8V8uFjC4Kx8,773
|
809
|
-
paddlex/modules/object_detection/model_list.py,sha256=
|
836
|
+
paddlex/modules/object_detection/model_list.py,sha256=_jCPiQiQy99msVMkUQXjck-ucFdSzsP9dfIq-2UoVkc,2379
|
810
837
|
paddlex/modules/object_detection/trainer.py,sha256=7c_bx20pK-akmuwTgrfIeq1UlSRHM-CkgbzpRiKL89M,3870
|
811
838
|
paddlex/modules/object_detection/dataset_checker/__init__.py,sha256=Dq-3Qp70x7D5aymh0wx32ygaqdrLi7zX92nPNPPs7DE,3251
|
812
839
|
paddlex/modules/object_detection/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
|
813
840
|
paddlex/modules/object_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=Fxv4JU3P4YsTjQfc71SdA0M_0Dggb53ItZZZIvzAVaU,3098
|
814
841
|
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=
|
842
|
+
paddlex/modules/object_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=7uwlx1gzzXCAiSAYNSv0upyuLoiu5n2Drrt-HSk-1xo,15061
|
816
843
|
paddlex/modules/object_detection/dataset_checker/dataset_src/split_dataset.py,sha256=gDmr5gQLsNbEvAEiAnXI379kYLRnNb-Z2YHiEXltu5U,4456
|
817
844
|
paddlex/modules/object_detection/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
818
845
|
paddlex/modules/object_detection/dataset_checker/dataset_src/utils/visualizer.py,sha256=cgtHbrXRxjPE5X82sAm7Jtf-f6XGo-rqm4hMR6hBjrg,5552
|
@@ -829,7 +856,7 @@ paddlex/modules/open_vocabulary_segmentation/exportor.py,sha256=RLfFEuJZVapYyzOz
|
|
829
856
|
paddlex/modules/open_vocabulary_segmentation/model_list.py,sha256=7Eogc7a9Qk_NCpWTT0MActRhbCY3MSWxTAfGsJkSRbs,660
|
830
857
|
paddlex/modules/open_vocabulary_segmentation/trainer.py,sha256=hffDadHzLr64PEIR2ml88rSpkjEWhkw_WNc7AcsprIg,1462
|
831
858
|
paddlex/modules/semantic_segmentation/__init__.py,sha256=21DFXZfdTj3A7FA4hEJz-Zs3IfA9N2j7FyUaZ6BSYEE,759
|
832
|
-
paddlex/modules/semantic_segmentation/evaluator.py,sha256=
|
859
|
+
paddlex/modules/semantic_segmentation/evaluator.py,sha256=7G-BvANJNaYNPIKiC0m80mmIJ-mHU7FSRYiNmtmZIPo,1754
|
833
860
|
paddlex/modules/semantic_segmentation/exportor.py,sha256=i8AugqgI8ISUe9sGa34qS2M70Nr0f4SSvD3vVFpqxDM,1087
|
834
861
|
paddlex/modules/semantic_segmentation/model_list.py,sha256=gy8YzruYBiUfwkipKxcsdlEoKuNNtJXmm_Fgszwcbag,1065
|
835
862
|
paddlex/modules/semantic_segmentation/trainer.py,sha256=CDQ1RV7iBRxLu2yb4mPTTI9KMbWMJibGkQa3KIPR4hE,2946
|
@@ -842,7 +869,7 @@ paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/split_dataset.
|
|
842
869
|
paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
843
870
|
paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/utils/visualizer.py,sha256=KEeBlMPY0uJxw_iubH8swH1Cxuv6cGgCVdgNZU1unyY,2765
|
844
871
|
paddlex/modules/table_recognition/__init__.py,sha256=2azLY8sZyVujg5juoi1XvhOeNc5WuoDUF5qkItHkV2g,779
|
845
|
-
paddlex/modules/table_recognition/evaluator.py,sha256=
|
872
|
+
paddlex/modules/table_recognition/evaluator.py,sha256=gRZK7UbGBN2P7pGQSv4BPFux51nG_h3BTq5WYsZmQek,1408
|
846
873
|
paddlex/modules/table_recognition/exportor.py,sha256=bOrkJLJbHwZ8291rcL6tWHaHh2QmlFhXdn2vmS_Brjc,779
|
847
874
|
paddlex/modules/table_recognition/model_list.py,sha256=JzrsHva1j575QhjSy6Y0FL2vbz1t2ZYhc-iVuNaPrMk,702
|
848
875
|
paddlex/modules/table_recognition/trainer.py,sha256=b4CfGjlnuAp--_19dWN-6AliKU87anpJnltnOgO-ekE,2686
|
@@ -852,9 +879,9 @@ paddlex/modules/table_recognition/dataset_checker/dataset_src/analyse_dataset.py
|
|
852
879
|
paddlex/modules/table_recognition/dataset_checker/dataset_src/check_dataset.py,sha256=NE-hPQkMX5O6-tuBfhI3dn0oXAhO2kgoYGcgT9DX9Cw,3451
|
853
880
|
paddlex/modules/table_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
|
854
881
|
paddlex/modules/text_detection/__init__.py,sha256=qHvtAWmoQXhgSRNti5y4EjHCyOgkXILRAj_pVqU0lR8,775
|
855
|
-
paddlex/modules/text_detection/evaluator.py,sha256=
|
882
|
+
paddlex/modules/text_detection/evaluator.py,sha256=WUj7KSgcQ1GkeUGDgHck-elUFFDoJxhd8ZQMM4k4r5k,1375
|
856
883
|
paddlex/modules/text_detection/exportor.py,sha256=fkDS2RGU27lK368Wc-O-sN8YhKGtu23S-pd93i6ZYfg,775
|
857
|
-
paddlex/modules/text_detection/model_list.py,sha256=
|
884
|
+
paddlex/modules/text_detection/model_list.py,sha256=d7x4jcqzzRm15nkA7xfH9CiZGgNAZl0mi_o0yjHfT68,922
|
858
885
|
paddlex/modules/text_detection/trainer.py,sha256=63YE5RGSRKi8jtvbHsSRfu7qEZ-Ipadk_kXNZOhqBh0,2653
|
859
886
|
paddlex/modules/text_detection/dataset_checker/__init__.py,sha256=I7HcoFCgml8U4uO0uoIWKKJVencObFWJ_A6qD7AxR50,3159
|
860
887
|
paddlex/modules/text_detection/dataset_checker/dataset_src/__init__.py,sha256=96FTutWNDvku-5ZxTw8eT-gkZuMEMbOX0z3ebaZ-sIc,727
|
@@ -862,9 +889,9 @@ paddlex/modules/text_detection/dataset_checker/dataset_src/analyse_dataset.py,sh
|
|
862
889
|
paddlex/modules/text_detection/dataset_checker/dataset_src/check_dataset.py,sha256=QTSfBgHCHyC50vmQKQEwwcRHU7z2meKCh_0eGN9r9as,4309
|
863
890
|
paddlex/modules/text_detection/dataset_checker/dataset_src/split_dataset.py,sha256=Uhj46-7BsOV3r-6jXmZoMiH_JwmqMSCPaB1KtFjjjqw,4769
|
864
891
|
paddlex/modules/text_recognition/__init__.py,sha256=NZSK1WT-lLtT407BGiUIMHLoNmTRwBxrKkW69KsiHgw,775
|
865
|
-
paddlex/modules/text_recognition/evaluator.py,sha256=
|
892
|
+
paddlex/modules/text_recognition/evaluator.py,sha256=xlreNiqba9yTzz7zjvwdShTchr-idgh3W1gyvhRkMWE,2288
|
866
893
|
paddlex/modules/text_recognition/exportor.py,sha256=FO-0PMhoO5ZqLjjYWG2XywrxdW98vnDq1r5TMyXOe8g,777
|
867
|
-
paddlex/modules/text_recognition/model_list.py,sha256=
|
894
|
+
paddlex/modules/text_recognition/model_list.py,sha256=KD_jdQ5T5DAR1yUXBVZ77oIKbbJ3HwIVtw0dJziGi7Q,1229
|
868
895
|
paddlex/modules/text_recognition/trainer.py,sha256=if77U014_hqvbK7VrzlP5LA3WZ0M3nuscpHlqYheQtc,4091
|
869
896
|
paddlex/modules/text_recognition/dataset_checker/__init__.py,sha256=Psu2rjBm3EYp57pli6-CB-2QZQwMnU5fhZ-muls__iE,3777
|
870
897
|
paddlex/modules/text_recognition/dataset_checker/dataset_src/__init__.py,sha256=Ux6-95Jmi_b9qnEjGrhEE0mWaTbkiQMwJMcN1JflGCQ,764
|
@@ -873,7 +900,7 @@ paddlex/modules/text_recognition/dataset_checker/dataset_src/check_dataset.py,sh
|
|
873
900
|
paddlex/modules/text_recognition/dataset_checker/dataset_src/convert_dataset.py,sha256=MdXpA2tHueA_w2ZQ9my8x4xuI-NdOQdM-kKSzjYMmoA,3573
|
874
901
|
paddlex/modules/text_recognition/dataset_checker/dataset_src/split_dataset.py,sha256=SyMeHixLOS3e1ljrQ6gfplb-l3L5x3CcVXs0BPSbZH4,2789
|
875
902
|
paddlex/modules/ts_anomaly_detection/__init__.py,sha256=L8Nc-uH2IG0EYEW5tPedTRbXzbcyrAGxZtI4FmB27rM,764
|
876
|
-
paddlex/modules/ts_anomaly_detection/evaluator.py,sha256=
|
903
|
+
paddlex/modules/ts_anomaly_detection/evaluator.py,sha256=ymxXeKyDbQhqes8o7b7CkvWd8lfi0KopP02M4I8D9vI,2283
|
877
904
|
paddlex/modules/ts_anomaly_detection/exportor.py,sha256=MC8kOv4Nr8FthT2iUkjTBRY_JtA3bBPTv9nvO_2cQZY,1422
|
878
905
|
paddlex/modules/ts_anomaly_detection/model_list.py,sha256=3mUjWIqpxNr_-BgD_bKAwFlwVbeKJ6o9hI0IP57Kd8Y,726
|
879
906
|
paddlex/modules/ts_anomaly_detection/trainer.py,sha256=p9auPFk6fztMv5J-D6ZlaOD9CiCh6R9saYgNEcLrFXo,4826
|
@@ -884,7 +911,7 @@ paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/check_dataset.p
|
|
884
911
|
paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/convert_dataset.py,sha256=N0Ju-yqeuGYfs80t39zcoUK-coNvd6Ow9kzJfzAddt0,2666
|
885
912
|
paddlex/modules/ts_anomaly_detection/dataset_checker/dataset_src/split_dataset.py,sha256=JLmONID9VxSMojKzLDOwsCCHxqTQ4Hl1rcbgXmUWdb4,2133
|
886
913
|
paddlex/modules/ts_classification/__init__.py,sha256=avWAVCpd_KCqW9mEKjzl8ns81gaduWjLgXZBamnbaMo,768
|
887
|
-
paddlex/modules/ts_classification/evaluator.py,sha256=
|
914
|
+
paddlex/modules/ts_classification/evaluator.py,sha256=7_OjW2oFU5_GkxXl5cao-yXO9YmbSwZ586fNy3NVl7s,2213
|
888
915
|
paddlex/modules/ts_classification/exportor.py,sha256=r_udQangw_nFfSsOroz70QTXjZW8e89hk_lbMj-Ng8o,1423
|
889
916
|
paddlex/modules/ts_classification/model_list.py,sha256=ncShFgm5mX8zGXoV1Mr9ZVtYaQxdmHC-7mqheM1lPDQ,644
|
890
917
|
paddlex/modules/ts_classification/trainer.py,sha256=BqF9VQFw8H8BYwWkyNQxa4MaHJZJKK12M5IAwM1qZI8,4588
|
@@ -893,9 +920,9 @@ paddlex/modules/ts_classification/dataset_checker/dataset_src/__init__.py,sha256
|
|
893
920
|
paddlex/modules/ts_classification/dataset_checker/dataset_src/analyse_dataset.py,sha256=fY1AbJ3WKUF8PvCvfkw7HmrCVhyfwW5rXTsEYH0MGHU,2929
|
894
921
|
paddlex/modules/ts_classification/dataset_checker/dataset_src/check_dataset.py,sha256=0ga6CkFwuJLOkYidngLXlhmfVcL99KOIvrC7AwwBCvk,2302
|
895
922
|
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=
|
923
|
+
paddlex/modules/ts_classification/dataset_checker/dataset_src/split_dataset.py,sha256=QlorUATL9UYybLpohJeD_1qXEDTVf89j7Ugbi0AMoxk,3314
|
897
924
|
paddlex/modules/ts_forecast/__init__.py,sha256=IdQqvY2rYepVut_DMPUlUQizyxGeXE1OS85190g4IKc,764
|
898
|
-
paddlex/modules/ts_forecast/evaluator.py,sha256=
|
925
|
+
paddlex/modules/ts_forecast/evaluator.py,sha256=NAhz3JAYOCialMilmEVqqJWDtMvVSdJPH44cx-KLzfM,2203
|
899
926
|
paddlex/modules/ts_forecast/exportor.py,sha256=vtIvOfugI0WsIahZyrJ9DmJ7TENSgSUKSfceS2WJa8M,1422
|
900
927
|
paddlex/modules/ts_forecast/model_list.py,sha256=l92EzjDRry06YeO4eH-8aBGBSsrHsksDbuZsu1XbTw8,734
|
901
928
|
paddlex/modules/ts_forecast/trainer.py,sha256=UPAdjUQwesynx34LW51cGIBzPIKeQXwqK3sp5beSvzk,4630
|
@@ -906,7 +933,7 @@ paddlex/modules/ts_forecast/dataset_checker/dataset_src/check_dataset.py,sha256=
|
|
906
933
|
paddlex/modules/ts_forecast/dataset_checker/dataset_src/convert_dataset.py,sha256=kAnqThstkcn0Wn_4xvGkFH-JGufRTKrTcJmd3FFG6H8,2688
|
907
934
|
paddlex/modules/ts_forecast/dataset_checker/dataset_src/split_dataset.py,sha256=JLmONID9VxSMojKzLDOwsCCHxqTQ4Hl1rcbgXmUWdb4,2133
|
908
935
|
paddlex/modules/video_classification/__init__.py,sha256=bjDrjcHU2isDJUDi4GKLXFp0aP9HQg1czW4h6RlWmvg,779
|
909
|
-
paddlex/modules/video_classification/evaluator.py,sha256=
|
936
|
+
paddlex/modules/video_classification/evaluator.py,sha256=vKP0oAVekWNIP7j0XKbx_nbzCPmGPPrUYkp4yQIusIQ,1644
|
910
937
|
paddlex/modules/video_classification/exportor.py,sha256=V8Lgt3JPmSOsGfouN2RlthyFzYyIBXvwWOeV9yQ4hIE,782
|
911
938
|
paddlex/modules/video_classification/model_list.py,sha256=oc4cq9Hweb-3lRw--NJMuIvO_D9CbTTv1RHTRFjhzYs,738
|
912
939
|
paddlex/modules/video_classification/trainer.py,sha256=Ci0ciVIhJHFEBVCdHfFZcRDHkvj4NRxS8ZSpuMI5q88,3686
|
@@ -916,7 +943,7 @@ paddlex/modules/video_classification/dataset_checker/dataset_src/analyse_dataset
|
|
916
943
|
paddlex/modules/video_classification/dataset_checker/dataset_src/check_dataset.py,sha256=kRsO7itR0UmTfDAy08nCI_t0xoUc_T_8QoDO4fPBiD8,4491
|
917
944
|
paddlex/modules/video_classification/dataset_checker/dataset_src/split_dataset.py,sha256=a7xE1gC5Lwzmxa_8N64UabOKl18FiRyL5hNE8uwUCCI,2886
|
918
945
|
paddlex/modules/video_detection/__init__.py,sha256=BQqsxvL85NaOClwvOIq_681btrsnkx9MeqZogsSjci0,779
|
919
|
-
paddlex/modules/video_detection/evaluator.py,sha256=
|
946
|
+
paddlex/modules/video_detection/evaluator.py,sha256=75EFN_MYprm_-9urSMnr73Xs_tCUL2zqcV3Brz1IClI,1504
|
920
947
|
paddlex/modules/video_detection/exportor.py,sha256=cZaTEwyScv_FP0wjEKcnsBdtcoVSrVRHff-wk9F6MU0,782
|
921
948
|
paddlex/modules/video_detection/model_list.py,sha256=pRzjeiRpi9LcBqUZ0B54UOU3FpZAxTNSkWwdlhOLlEg,628
|
922
949
|
paddlex/modules/video_detection/trainer.py,sha256=ORwQauyZnp0mBTBMMMthcDlD9HFUS_yzYkUa9qL68wc,3382
|
@@ -924,7 +951,7 @@ paddlex/modules/video_detection/dataset_checker/__init__.py,sha256=c5jNtdwElm97v
|
|
924
951
|
paddlex/modules/video_detection/dataset_checker/dataset_src/__init__.py,sha256=sJLqyXL-owy_gbtpQjEA2kceE6neSMJ0AIOylxApsLw,686
|
925
952
|
paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=PIeAD38D_tgDSY12Q574iLdl6cBI_qhLPhvU-rUdqD8,3776
|
926
953
|
paddlex/modules/video_detection/dataset_checker/dataset_src/check_dataset.py,sha256=_rZDkMwn73J2oxzdWkh_cj6MUrWo7ziNYL49DdC5hW4,5316
|
927
|
-
paddlex/ops/__init__.py,sha256=
|
954
|
+
paddlex/ops/__init__.py,sha256=NmH2yABtmleYUAkzI4-d3i5MKemyF0mIU7QW-MxEyvU,4607
|
928
955
|
paddlex/ops/setup.py,sha256=k7bXqdmK02lHKgq6c8dtMw8copz53lHSh7waH-Hyvew,1336
|
929
956
|
paddlex/ops/iou3d_nms/iou3d_cpu.cpp,sha256=AUhprzEQqdSqFWl5fhJ1jGKjE8WPh6RQksXzFDHIU7g,8415
|
930
957
|
paddlex/ops/iou3d_nms/iou3d_cpu.h,sha256=n47pTnTFyeb_A4gZaACHTkkaM4zcwvxJhvv1Vd6bJ-U,912
|
@@ -939,15 +966,15 @@ paddlex/repo_apis/Paddle3D_api/__init__.py,sha256=CNgSV4Wm-BEMayCnlyFCkqwfbHVqQe
|
|
939
966
|
paddlex/repo_apis/Paddle3D_api/pp3d_config.py,sha256=H4XXkN4Rl12ehrazfZl8HW_SdPz1JazgYbXnKPa2UbI,5179
|
940
967
|
paddlex/repo_apis/Paddle3D_api/bev_fusion/__init__.py,sha256=GjNtmTbKpQ1I1QgLMjX7wIJxRDoBnoccsx6pydhbRg4,704
|
941
968
|
paddlex/repo_apis/Paddle3D_api/bev_fusion/config.py,sha256=JaG5K1UAifGsUJP9pJjVzAKLhWUyM4zJtd70ODI3esE,4715
|
942
|
-
paddlex/repo_apis/Paddle3D_api/bev_fusion/model.py,sha256=
|
969
|
+
paddlex/repo_apis/Paddle3D_api/bev_fusion/model.py,sha256=UnXJurDNLIHtNduO1IGfGAumy4YKidAC19mr2ix7Qho,8774
|
943
970
|
paddlex/repo_apis/Paddle3D_api/bev_fusion/register.py,sha256=qm1l6LHrtYTg6wpZc8Zl32C6n1qUxCjAoyhHna8lyDY,1871
|
944
971
|
paddlex/repo_apis/Paddle3D_api/bev_fusion/runner.py,sha256=rQja2WOxAirwdzh0fmLfKPlu5ngB7fjSrV7IYCiOCdY,3536
|
945
972
|
paddlex/repo_apis/PaddleClas_api/__init__.py,sha256=X0TVcUpJlq_AL4hfDumtv_uQNKM74Xt_9UOWetyenF8,721
|
946
973
|
paddlex/repo_apis/PaddleClas_api/cls/__init__.py,sha256=eIdSpXUxY9lbft8RKclk376Sm06SL2wBBHhTtdmICHs,722
|
947
|
-
paddlex/repo_apis/PaddleClas_api/cls/config.py,sha256=
|
948
|
-
paddlex/repo_apis/PaddleClas_api/cls/model.py,sha256=
|
949
|
-
paddlex/repo_apis/PaddleClas_api/cls/register.py,sha256=
|
950
|
-
paddlex/repo_apis/PaddleClas_api/cls/runner.py,sha256=
|
974
|
+
paddlex/repo_apis/PaddleClas_api/cls/config.py,sha256=D9SMOEq-UH57lD0Ru3Uc0RNmm7Xa9JAmJ13HB59AFoo,20376
|
975
|
+
paddlex/repo_apis/PaddleClas_api/cls/model.py,sha256=6t2pNFzAW4_a7ASKNPdqUwf-ssXrbXFjB_pVDOjqm3c,14450
|
976
|
+
paddlex/repo_apis/PaddleClas_api/cls/register.py,sha256=yrSuh3N_aNYxve1xopeU-lagqej9uC1Tu2FQb36X-8Q,26355
|
977
|
+
paddlex/repo_apis/PaddleClas_api/cls/runner.py,sha256=ZNEZ51pzte3GCLL5oHKtFEaov-TwecuiWJmJ8doUwbI,7400
|
951
978
|
paddlex/repo_apis/PaddleClas_api/shitu_rec/__init__.py,sha256=nn1qwVV6ccGkPWWf6Xi5yQWx3hMYyYIqRzmgTK2lWJM,702
|
952
979
|
paddlex/repo_apis/PaddleClas_api/shitu_rec/config.py,sha256=snoeE_Xr7Dg41fq7D_1qqsrLEqE05XjB5Hd5_NzF1bI,5390
|
953
980
|
paddlex/repo_apis/PaddleClas_api/shitu_rec/model.py,sha256=XP-dlNuGTwI3TsNt26iRHaQLRMUxWxB-IKXrjmavGd0,705
|
@@ -957,48 +984,48 @@ paddlex/repo_apis/PaddleDetection_api/__init__.py,sha256=nz0LmGflO85zJ38TadpEbwJ
|
|
957
984
|
paddlex/repo_apis/PaddleDetection_api/config_helper.py,sha256=PaEDOES8tJNoSFUmHpk5OaTB0ab-lErGE9TbsWKUa48,9359
|
958
985
|
paddlex/repo_apis/PaddleDetection_api/instance_seg/__init__.py,sha256=pkhp0_V6Xj03aBWPzfQFPdKqcjo03FR9_YP5cBccksE,708
|
959
986
|
paddlex/repo_apis/PaddleDetection_api/instance_seg/config.py,sha256=X0B7XThAs4vGBq2TQroxXUwqUWYTIymsOTAi_3uF3Tk,15348
|
960
|
-
paddlex/repo_apis/PaddleDetection_api/instance_seg/model.py,sha256=
|
987
|
+
paddlex/repo_apis/PaddleDetection_api/instance_seg/model.py,sha256=WJ4fkOn5qgqZWQu-jUOmqa3u-BhCJzBj26cPJxS5qJE,16349
|
961
988
|
paddlex/repo_apis/PaddleDetection_api/instance_seg/register.py,sha256=05aUjcij59gi29JYNmbo3sHyhZjnjA6klR8KqrHT0Dw,8560
|
962
|
-
paddlex/repo_apis/PaddleDetection_api/instance_seg/runner.py,sha256=
|
989
|
+
paddlex/repo_apis/PaddleDetection_api/instance_seg/runner.py,sha256=eRGSPSu9_J8vrOoVkRM4-CYQ7-_qZC0msS33SBWEZNg,7559
|
963
990
|
paddlex/repo_apis/PaddleDetection_api/object_det/__init__.py,sha256=xMiqXOspalcXIFt1aVVWXt6xJJEmEMkiECvQ8yteDVA,745
|
964
|
-
paddlex/repo_apis/PaddleDetection_api/object_det/config.py,sha256=
|
965
|
-
paddlex/repo_apis/PaddleDetection_api/object_det/model.py,sha256=
|
966
|
-
paddlex/repo_apis/PaddleDetection_api/object_det/official_categories.py,sha256=
|
967
|
-
paddlex/repo_apis/PaddleDetection_api/object_det/register.py,sha256=
|
968
|
-
paddlex/repo_apis/PaddleDetection_api/object_det/runner.py,sha256=
|
991
|
+
paddlex/repo_apis/PaddleDetection_api/object_det/config.py,sha256=YLSKAUJODaTNB7DIgQP6TPsP0HwNBOFrp2NGAl-KksY,18598
|
992
|
+
paddlex/repo_apis/PaddleDetection_api/object_det/model.py,sha256=MDY31r7lBmctFeSDE3eyEQNnEYyRISiOGeB2v5x1_LU,17601
|
993
|
+
paddlex/repo_apis/PaddleDetection_api/object_det/official_categories.py,sha256=3GjBjO2R5CA4ni9Mz7R2u0UjI_wFvtPg3UPYCSfhk_M,9132
|
994
|
+
paddlex/repo_apis/PaddleDetection_api/object_det/register.py,sha256=9EgLJKqzJJOo1YE4Oclnl5b4a-R-69_aR4YjTD-vFQI,35351
|
995
|
+
paddlex/repo_apis/PaddleDetection_api/object_det/runner.py,sha256=8VGt2EG40PTatYLrKa4KJvpJSTPfpJ01JMItVOpxQCI,7543
|
969
996
|
paddlex/repo_apis/PaddleNLP_api/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
970
997
|
paddlex/repo_apis/PaddleOCR_api/__init__.py,sha256=qzAJeQjKkW4ErZcQKYyld04eHDvMOntuK90y_2Kmsh0,783
|
971
998
|
paddlex/repo_apis/PaddleOCR_api/config_utils.py,sha256=fGh_tFyUH2hsdmJxNekBP0GkZO63jlePjOMLMpAlD-s,1982
|
972
999
|
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=
|
974
|
-
paddlex/repo_apis/PaddleOCR_api/formula_rec/model.py,sha256=
|
975
|
-
paddlex/repo_apis/PaddleOCR_api/formula_rec/register.py,sha256=
|
976
|
-
paddlex/repo_apis/PaddleOCR_api/formula_rec/runner.py,sha256=
|
1000
|
+
paddlex/repo_apis/PaddleOCR_api/formula_rec/config.py,sha256=CmxVY-nhO58f9V-xfIvMD_B8C0GUouQgDOpblp9-P2k,19176
|
1001
|
+
paddlex/repo_apis/PaddleOCR_api/formula_rec/model.py,sha256=JtcvEezQnGdZh5efJg2aTBp_4HXqbKWOFhZyeTzCC4Q,14220
|
1002
|
+
paddlex/repo_apis/PaddleOCR_api/formula_rec/register.py,sha256=3ukG8xGVf-rSkNtWx3sYQPYO-5A49iSjH21VUl5iXUs,3021
|
1003
|
+
paddlex/repo_apis/PaddleOCR_api/formula_rec/runner.py,sha256=yY4gyS1jqYpWVQSVuZ93TOd5bPkyoKw_rQaItMAUlvw,8303
|
977
1004
|
paddlex/repo_apis/PaddleOCR_api/table_rec/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
|
978
1005
|
paddlex/repo_apis/PaddleOCR_api/table_rec/config.py,sha256=_P3wEEBtoURUqhSSqCLy_yJz85YiTSuEvkW4btmJd0E,2335
|
979
|
-
paddlex/repo_apis/PaddleOCR_api/table_rec/model.py,sha256=
|
1006
|
+
paddlex/repo_apis/PaddleOCR_api/table_rec/model.py,sha256=iuz4-Bz4PxggrjE_dY2iqZAXIwCQYs4WILVYQrSeerE,4423
|
980
1007
|
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=
|
1008
|
+
paddlex/repo_apis/PaddleOCR_api/table_rec/runner.py,sha256=U00oZuPjQNvTQPg9ZnaOVeR2-vGGSE2n0UF6OWgb7tU,1938
|
982
1009
|
paddlex/repo_apis/PaddleOCR_api/text_det/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
|
983
1010
|
paddlex/repo_apis/PaddleOCR_api/text_det/config.py,sha256=CZpTUuwQRZTrp48BVNUhaSvH0-4Q3fffAdE8Eqgz8NM,2157
|
984
|
-
paddlex/repo_apis/PaddleOCR_api/text_det/model.py,sha256=
|
985
|
-
paddlex/repo_apis/PaddleOCR_api/text_det/register.py,sha256=
|
986
|
-
paddlex/repo_apis/PaddleOCR_api/text_det/runner.py,sha256=
|
1011
|
+
paddlex/repo_apis/PaddleOCR_api/text_det/model.py,sha256=iCyRnSPBWvfTsHqtPCam9QTSBmLo6pjmK3smzjEn8KU,2565
|
1012
|
+
paddlex/repo_apis/PaddleOCR_api/text_det/register.py,sha256=d2fdSfyhWRYj26qn1q3MW7mZSsH_JDbgJx8sASCzbJY,3296
|
1013
|
+
paddlex/repo_apis/PaddleOCR_api/text_det/runner.py,sha256=eyQWbTiA8J2vojVSqILyvIIJh2T6qgPGXWh4lc62gc8,2005
|
987
1014
|
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=
|
989
|
-
paddlex/repo_apis/PaddleOCR_api/text_rec/model.py,sha256=
|
990
|
-
paddlex/repo_apis/PaddleOCR_api/text_rec/register.py,sha256=
|
991
|
-
paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py,sha256=
|
1015
|
+
paddlex/repo_apis/PaddleOCR_api/text_rec/config.py,sha256=LLk6Pr7MPOQIOSC15sUkdNRJ7PN1Dom_sn8iEJEs7C4,19338
|
1016
|
+
paddlex/repo_apis/PaddleOCR_api/text_rec/model.py,sha256=sXlVD-p-pRFd2auCzpqV2PJO3rFOSBiCCXruRqhIBrA,14214
|
1017
|
+
paddlex/repo_apis/PaddleOCR_api/text_rec/register.py,sha256=GTysrnCjbJ1hKOOXvofKi_nbN5JRiVkcrIPo01FF__A,6436
|
1018
|
+
paddlex/repo_apis/PaddleOCR_api/text_rec/runner.py,sha256=n7irgiPmLRQCa-m0RT9GCiH2hsjTs_vKHM6fZPosd6Q,8297
|
992
1019
|
paddlex/repo_apis/PaddleSeg_api/__init__.py,sha256=DpeE4i2hFC3AFtngLAIYb6yxJKJ1yxL_YLaC234zEGI,637
|
993
1020
|
paddlex/repo_apis/PaddleSeg_api/base_seg_config.py,sha256=_ryWxmTRtOeCbY2l3Hmd10aTn4PPlJ-dlCkkkmYrhZ0,4634
|
994
1021
|
paddlex/repo_apis/PaddleSeg_api/seg/__init__.py,sha256=_-25ho8_rO0uQjBBONjJzf8cxCQPX99IZi-c2fFYOwo,634
|
995
1022
|
paddlex/repo_apis/PaddleSeg_api/seg/config.py,sha256=PmVVmqj6Cuhv1HMCJCzVjVG5EjjIa6Dza-L_lQjA7i0,6261
|
996
|
-
paddlex/repo_apis/PaddleSeg_api/seg/model.py,sha256=
|
1023
|
+
paddlex/repo_apis/PaddleSeg_api/seg/model.py,sha256=hR6X6MuOILdSxgywpMDriNzFK0thgDf4efkp5v1dS9s,19274
|
997
1024
|
paddlex/repo_apis/PaddleSeg_api/seg/register.py,sha256=Yr--CZpsKwCwcnTfnq1q6EAEUpa_Wrum11YP7XlPhpA,7762
|
998
|
-
paddlex/repo_apis/PaddleSeg_api/seg/runner.py,sha256=
|
1025
|
+
paddlex/repo_apis/PaddleSeg_api/seg/runner.py,sha256=eF2UOuwZAHUjfJBrwZp4mBhJ0hhZDOf_dYoEBhr-bEs,8776
|
999
1026
|
paddlex/repo_apis/PaddleTS_api/__init__.py,sha256=c66y2HfMbBzp_xSkwA3LZ06NkRVW0PhuF-OdZJ6Zp6k,726
|
1000
1027
|
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=
|
1028
|
+
paddlex/repo_apis/PaddleTS_api/ts_ad/config.py,sha256=QRjvM2q1BcpS39_e0SFX2atUESDboHikiPEMBPR9np0,2802
|
1002
1029
|
paddlex/repo_apis/PaddleTS_api/ts_ad/register.py,sha256=QZKCJJ5a4pbVtBDYkJA2mTm7Y8LGJrteIsHeK5M7qaQ,4998
|
1003
1030
|
paddlex/repo_apis/PaddleTS_api/ts_ad/runner.py,sha256=fa9a35y2cyt0dOA6UNXrBk4GNVAol-NazEBGzWt51LY,5383
|
1004
1031
|
paddlex/repo_apis/PaddleTS_api/ts_base/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
@@ -1006,26 +1033,26 @@ paddlex/repo_apis/PaddleTS_api/ts_base/config.py,sha256=xZnBPDKuDJcCW28nzkOeIuPJ
|
|
1006
1033
|
paddlex/repo_apis/PaddleTS_api/ts_base/model.py,sha256=UUnmICkPnWl38Z-9HcZ6wRnyGCDeLnIX9lPQh3OrkrQ,10449
|
1007
1034
|
paddlex/repo_apis/PaddleTS_api/ts_base/runner.py,sha256=AWWHQx-qrlIJjsguEDJ4GPgiFG-DireoP-X4A2SwhgE,5309
|
1008
1035
|
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=
|
1036
|
+
paddlex/repo_apis/PaddleTS_api/ts_cls/config.py,sha256=yfVg3nJOI_CEpJK4aUs6IgGlVgW_mMg6MEdDCnqOwtg,2343
|
1010
1037
|
paddlex/repo_apis/PaddleTS_api/ts_cls/register.py,sha256=X1RrnYkriKmZeB6s6DKUK2OerIj4cfrqTnIRgOjYwnU,1992
|
1011
1038
|
paddlex/repo_apis/PaddleTS_api/ts_cls/runner.py,sha256=Ygv2oO0ihGcwNdFpDn7Tq6vXObkNF0yp4VEDApUsRAg,5306
|
1012
1039
|
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=
|
1040
|
+
paddlex/repo_apis/PaddleTS_api/ts_fc/config.py,sha256=cb7BaF52G2g9Fw5YVeytXrDam-8QaV4tKtCd7FmZEag,4336
|
1014
1041
|
paddlex/repo_apis/PaddleTS_api/ts_fc/register.py,sha256=Q-mfHPumMT-hpOsVozHy2oTQ0X1pGbq670m76LDO6DU,6323
|
1015
1042
|
paddlex/repo_apis/PaddleVideo_api/__init__.py,sha256=ltAKRzWHMZbUcvYGzAvEr68X3ZDwA4fSJC8GszfqElI,737
|
1016
1043
|
paddlex/repo_apis/PaddleVideo_api/config_utils.py,sha256=F-dV79B2qOCphwADu6A_1BflYbJajPpiZn_7drkHyRM,1734
|
1017
1044
|
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=
|
1019
|
-
paddlex/repo_apis/PaddleVideo_api/video_cls/model.py,sha256=
|
1045
|
+
paddlex/repo_apis/PaddleVideo_api/video_cls/config.py,sha256=NEyk7QXKgHs3IXrKzYZuamleWfxbHSmYH0ifZLJUvEk,18036
|
1046
|
+
paddlex/repo_apis/PaddleVideo_api/video_cls/model.py,sha256=o5piktHmsIYjTc5dP0azeNmbzOK6atuk0U3nNqUzu2g,13983
|
1020
1047
|
paddlex/repo_apis/PaddleVideo_api/video_cls/register.py,sha256=NPQJ6nHg6gB0OH8L1ca-8NIQliQW1RIiAhqpkpMdfwM,2331
|
1021
|
-
paddlex/repo_apis/PaddleVideo_api/video_cls/runner.py,sha256=
|
1048
|
+
paddlex/repo_apis/PaddleVideo_api/video_cls/runner.py,sha256=paQvrVHg4Uvbgv48_vljUwh8CZDxw9NnAUtfXjE65RE,6788
|
1022
1049
|
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=
|
1024
|
-
paddlex/repo_apis/PaddleVideo_api/video_det/model.py,sha256=
|
1050
|
+
paddlex/repo_apis/PaddleVideo_api/video_det/config.py,sha256=arZf9Wb8hq2QuAgAr2hIseNweDubA2JM9Qrgchkf3Us,18075
|
1051
|
+
paddlex/repo_apis/PaddleVideo_api/video_det/model.py,sha256=GJBcEcDAGYxWHNVNTghGy-OkIWur8RH5fsGgaQw55Wc,11906
|
1025
1052
|
paddlex/repo_apis/PaddleVideo_api/video_det/register.py,sha256=EuRXQjbY9H16MWaw-vR3b9IQXwfb7psX1PPmOqyYKFE,1473
|
1026
|
-
paddlex/repo_apis/PaddleVideo_api/video_det/runner.py,sha256=
|
1053
|
+
paddlex/repo_apis/PaddleVideo_api/video_det/runner.py,sha256=taT730ZYVioJSI-EiEEei8DPvUsw3YDmW3FsrljXCYk,6661
|
1027
1054
|
paddlex/repo_apis/base/__init__.py,sha256=s2il5LQ3eNlh9JRjznDojDRMYz2AbUTDEYzEIdiPiLI,817
|
1028
|
-
paddlex/repo_apis/base/config.py,sha256=
|
1055
|
+
paddlex/repo_apis/base/config.py,sha256=Cv7gRIgVcL3WEaoUcJXFbuv9i1JNgDEyq4xDhSvEdsc,6903
|
1029
1056
|
paddlex/repo_apis/base/model.py,sha256=OXI2XIodMMtcRL6cF2F8WY1S0Ph5Kz6LBYHsJXn77LQ,21329
|
1030
1057
|
paddlex/repo_apis/base/register.py,sha256=McsvpydlDjz08XTabLSyS-sbXQl7RnEOL3-1nG4KWFw,4176
|
1031
1058
|
paddlex/repo_apis/base/runner.py,sha256=YsK3bG3MyHgsXhI7QrAeDZP_tJE_c2mVZljofN4tUI4,13891
|
@@ -1033,36 +1060,36 @@ paddlex/repo_apis/base/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__
|
|
1033
1060
|
paddlex/repo_apis/base/utils/arg.py,sha256=5ys3bQQM8SerntsUyjs9a2kJFh_q8iUDvKNvl0buc8o,1826
|
1034
1061
|
paddlex/repo_apis/base/utils/subprocess.py,sha256=_okQOuvvanAwDn-i8uPWb0RWwRK2No6EM1eRsPSY-Ss,3199
|
1035
1062
|
paddlex/repo_manager/__init__.py,sha256=ZlHiGf_IbfSKhM91bgO0AilkIKdUs-twStzXeMyez4M,763
|
1036
|
-
paddlex/repo_manager/core.py,sha256=
|
1037
|
-
paddlex/repo_manager/meta.py,sha256=
|
1038
|
-
paddlex/repo_manager/repo.py,sha256=
|
1063
|
+
paddlex/repo_manager/core.py,sha256=D5CggbjpJpgmSaMIdfF8z6LDJeM2G1J0JTdY3_6JMkY,8160
|
1064
|
+
paddlex/repo_manager/meta.py,sha256=T0wCiItQCphSmow-sjxAoAniTs-6zZj5yqIRGOIQzFg,5695
|
1065
|
+
paddlex/repo_manager/repo.py,sha256=dOp3YeUYz3GTNrKX9X5b1zcIlnfMvgXg7QJslBoOy6g,16016
|
1039
1066
|
paddlex/repo_manager/utils.py,sha256=H33cKaFjU4Un6a9-gwzfznNdKVTLmLp9wEloog18AP0,4803
|
1040
1067
|
paddlex/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
1041
1068
|
paddlex/utils/cache.py,sha256=xcdPyZKcL6SQvtz0Sk66FpQWhjLW7QqSdU44ocme0zE,4778
|
1042
1069
|
paddlex/utils/config.py,sha256=mMP-WHMBB98hW-paFSc8vDnR7h87UpAe6X34W6ggIlQ,6255
|
1043
|
-
paddlex/utils/custom_device_list.py,sha256=
|
1044
|
-
paddlex/utils/deps.py,sha256=
|
1045
|
-
paddlex/utils/device.py,sha256=
|
1070
|
+
paddlex/utils/custom_device_list.py,sha256=_9t81bfHijsjpk23_anibl8r484iYdhENsdETg0obj0,7216
|
1071
|
+
paddlex/utils/deps.py,sha256=E5kj9QBp-r-fJDPLMhdSCg1JPv-w_ZatwUS5Mn458Uk,7907
|
1072
|
+
paddlex/utils/device.py,sha256=C2zqlezNS84TtnAu_PL6j69bdNWFv9JtE6UYKVoAEJY,6653
|
1046
1073
|
paddlex/utils/download.py,sha256=CC7TTOaOFXfcWCAg6CRJ-ECMIF9QVuvWFCOe39X2dhM,6402
|
1047
|
-
paddlex/utils/env.py,sha256=
|
1074
|
+
paddlex/utils/env.py,sha256=dVOm9yQgXOGd4xFOFAmBHcKMDXCq-cuv3VDilGv-iHk,1617
|
1048
1075
|
paddlex/utils/file_interface.py,sha256=KfMl_NQIpRGxBL9bRd54OK60RkSesDBQFeMftdDlVt8,6523
|
1049
|
-
paddlex/utils/flags.py,sha256=
|
1076
|
+
paddlex/utils/flags.py,sha256=QAVfMX4W6H5HDrzcj9OghqJkOtN4PuJZtVedbOxAklw,2533
|
1050
1077
|
paddlex/utils/func_register.py,sha256=XEMaJ_ttfLp8Tos3vb1HH5cdsQX7uGiZ77W0t9tWHuE,1355
|
1051
1078
|
paddlex/utils/install.py,sha256=C8GMNv7YLoTi6MdOl1B1ojlsWOQFxX8piuIO-5Hkg8c,2507
|
1052
1079
|
paddlex/utils/interactive_get_pipeline.py,sha256=J0RIY_gry2J9s_c1-vF5oN49gDzjLnxtJhtLJMp1u7I,1916
|
1053
1080
|
paddlex/utils/lazy_loader.py,sha256=6TrRlNUtDWKrw-I50D-_GdoflRZWQljULnGGBCq12BE,2341
|
1054
1081
|
paddlex/utils/logging.py,sha256=up6qyU-pgjISPTInsm5P5vnr45-4n3xK97r1Ad6nTKA,4847
|
1055
|
-
paddlex/utils/misc.py,sha256=
|
1082
|
+
paddlex/utils/misc.py,sha256=XzpCR5MF270dHVtllyrieBQ3RPAxh_sWsDY8Hqu_Tpc,5864
|
1056
1083
|
paddlex/utils/pipeline_arguments.py,sha256=h3MEAK8cBGf3LBA3m6NFDJov87M2Ad7tJAKzYduWsso,23708
|
1057
1084
|
paddlex/utils/result_saver.py,sha256=slcYMg1ImdX58106DRq8DhLa8XqxQnnPZvxJhtcv5WM,1980
|
1058
1085
|
paddlex/utils/subclass_register.py,sha256=93cqmNtGHkqJqvXQDCoaVmoVjppG10ZPBJgipko3_9I,3386
|
1059
1086
|
paddlex/utils/errors/__init__.py,sha256=1ooQ6m7PWkmniQbq4xVMVubjBKlMbZzoIvoPlKBoBgI,664
|
1060
1087
|
paddlex/utils/errors/dataset_checker.py,sha256=hnLeqMyMLuQQVWhHsfakpcZAN4Tu2ULaqtlQ9BzC1pI,2200
|
1061
1088
|
paddlex/utils/errors/others.py,sha256=5RwDvxq4_K4UHMFRldrbwoDMnW8mW2KATinIwac7v-4,4303
|
1062
|
-
paddlex/utils/fonts/__init__.py,sha256=
|
1063
|
-
paddlex-3.0.
|
1064
|
-
paddlex-3.0.
|
1065
|
-
paddlex-3.0.
|
1066
|
-
paddlex-3.0.
|
1067
|
-
paddlex-3.0.
|
1068
|
-
paddlex-3.0.
|
1089
|
+
paddlex/utils/fonts/__init__.py,sha256=o47S4aK6ZKt5pfCc1_paMMig4fcSwgWX4m1BN4ybQ2Q,3297
|
1090
|
+
paddlex-3.0.1.dist-info/licenses/LICENSE,sha256=rMw2yBesXt5HPQVzLhSvwRy25V71kZvIJrZT9jEWUEM,11325
|
1091
|
+
paddlex-3.0.1.dist-info/METADATA,sha256=BZEvH0q9ITdUy0Qev6YaX67KprJVTTVynSJMNNhex8k,72398
|
1092
|
+
paddlex-3.0.1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
1093
|
+
paddlex-3.0.1.dist-info/entry_points.txt,sha256=rTKXuuCwUUNjzEG9fG9JF1JFAHAD05PksWevGuRxYoM,59
|
1094
|
+
paddlex-3.0.1.dist-info/top_level.txt,sha256=KWSxMIrEchP3dxsAjzSRR-jmnjW0YGHECxG9OA5YB_g,8
|
1095
|
+
paddlex-3.0.1.dist-info/RECORD,,
|