paddlex 3.0.1__py3-none-any.whl → 3.0.2__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/inference/models/common/static_infer.py +18 -14
- paddlex/inference/models/common/ts/funcs.py +19 -8
- paddlex/inference/models/formula_recognition/predictor.py +1 -1
- paddlex/inference/models/formula_recognition/processors.py +2 -2
- paddlex/inference/models/text_recognition/result.py +1 -1
- paddlex/inference/pipelines/layout_parsing/layout_objects.py +859 -0
- paddlex/inference/pipelines/layout_parsing/pipeline_v2.py +144 -205
- paddlex/inference/pipelines/layout_parsing/result_v2.py +6 -270
- paddlex/inference/pipelines/layout_parsing/setting.py +1 -0
- paddlex/inference/pipelines/layout_parsing/utils.py +108 -312
- paddlex/inference/pipelines/layout_parsing/xycut_enhanced/utils.py +302 -247
- paddlex/inference/pipelines/layout_parsing/xycut_enhanced/xycuts.py +156 -104
- paddlex/inference/pipelines/ocr/result.py +2 -2
- paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py +1 -1
- paddlex/inference/serving/basic_serving/_app.py +46 -13
- paddlex/inference/utils/hpi.py +23 -16
- paddlex/inference/utils/hpi_model_info_collection.json +627 -202
- paddlex/inference/utils/misc.py +20 -0
- paddlex/inference/utils/mkldnn_blocklist.py +36 -2
- paddlex/inference/utils/official_models.py +126 -5
- paddlex/inference/utils/pp_option.py +48 -4
- paddlex/modules/semantic_segmentation/dataset_checker/__init__.py +12 -2
- paddlex/ops/__init__.py +6 -3
- paddlex/utils/deps.py +2 -2
- paddlex/utils/device.py +4 -19
- paddlex/utils/flags.py +9 -0
- paddlex/utils/subclass_register.py +2 -2
- {paddlex-3.0.1.dist-info → paddlex-3.0.2.dist-info}/METADATA +307 -162
- {paddlex-3.0.1.dist-info → paddlex-3.0.2.dist-info}/RECORD +34 -32
- {paddlex-3.0.1.dist-info → paddlex-3.0.2.dist-info}/WHEEL +1 -1
- {paddlex-3.0.1.dist-info → paddlex-3.0.2.dist-info}/entry_points.txt +1 -0
- {paddlex-3.0.1.dist-info/licenses → paddlex-3.0.2.dist-info}/LICENSE +0 -0
- {paddlex-3.0.1.dist-info → paddlex-3.0.2.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
paddlex/.version,sha256=
|
1
|
+
paddlex/.version,sha256=P8C_jX3b_nfrQHTAsD1lZ9eHSiXqQUSq3qZob81fb-s,6
|
2
2
|
paddlex/__init__.py,sha256=gfGHiM_wthbQaWWyZ_Xwb7VwA4YxhJa_E7vsxbD7tVc,1703
|
3
3
|
paddlex/__main__.py,sha256=9HXLNHbXfczSIc0uYKqD1cHpsjs86xLmiVoy0cB_aiI,1290
|
4
4
|
paddlex/constants.py,sha256=s7As1cvezO0hsuKzkRo1XX5gTIc6Srx0mZqpR6v4H04,680
|
@@ -346,7 +346,7 @@ paddlex/inference/models/base/__init__.py,sha256=XmfOH2Zt6T28bilPm9aHPy88zlthnpz
|
|
346
346
|
paddlex/inference/models/base/predictor/__init__.py,sha256=euD01o3s0Zg9VlzA5spCak2TElkU4RFiSUxCEiatH8Y,652
|
347
347
|
paddlex/inference/models/base/predictor/base_predictor.py,sha256=GZXWaOjLk0AAp7PKdbeTbNBGi0oTjqES2lkVLvJEeqg,14728
|
348
348
|
paddlex/inference/models/common/__init__.py,sha256=3lMwinLaX3HHXCFUcppc8uV_5P-XGv0Nf5aWvZYcbqw,926
|
349
|
-
paddlex/inference/models/common/static_infer.py,sha256=
|
349
|
+
paddlex/inference/models/common/static_infer.py,sha256=Kas7xfx_rKEqWKMPHGMJRJOd-yddrYsjl--CmlMAX9k,33945
|
350
350
|
paddlex/inference/models/common/tokenizer/__init__.py,sha256=WyNKDrT6xhWwHmgVVaWYig_TV2xOQIVUHdsmkKjLjs4,940
|
351
351
|
paddlex/inference/models/common/tokenizer/bert_tokenizer.py,sha256=xPEENMCnZq-0ofMA5Ylxu9qcFybIc6fEOXqEue3ogDU,25274
|
352
352
|
paddlex/inference/models/common/tokenizer/clip_tokenizer.py,sha256=g9YU0PmxppCoIi9mub_3AQDBt8kzrBblKrDig5UDTZE,22426
|
@@ -359,7 +359,7 @@ paddlex/inference/models/common/tokenizer/tokenizer_utils_base.py,sha256=dUkbI6M
|
|
359
359
|
paddlex/inference/models/common/tokenizer/utils.py,sha256=xZgYmYWB0Ecl6Ej0AgrnfgETD0jW-xjZfjq91lPs5js,2425
|
360
360
|
paddlex/inference/models/common/tokenizer/vocab.py,sha256=rtrhKqxXHQSnmJC_SeiLf1v2Vhg4YvufM_jPf9VAc0c,25129
|
361
361
|
paddlex/inference/models/common/ts/__init__.py,sha256=A6i6FhzY9lRnoJH_JPH5nNHmaVI5qOZaQhbxueVkZKc,636
|
362
|
-
paddlex/inference/models/common/ts/funcs.py,sha256=
|
362
|
+
paddlex/inference/models/common/ts/funcs.py,sha256=zpQPMkn1P_aQppXUElX5y8tWNYR8-W2CQtRcSNws4Ug,18585
|
363
363
|
paddlex/inference/models/common/ts/processors.py,sha256=lcouD6Zbhf28jJ6eySfJGmYt_Sn_He-uTEc4lI8f8Z0,11004
|
364
364
|
paddlex/inference/models/common/vision/__init__.py,sha256=TyB2P9CvNYlv91NoV7WikGsZHnn7PQcYyMnRIMS1ULA,756
|
365
365
|
paddlex/inference/models/common/vision/funcs.py,sha256=-j0MO7xtXPAW2icTLqxMq7CJ0alvxwaYR3bIBdYjf7Y,2777
|
@@ -399,8 +399,8 @@ paddlex/inference/models/doc_vlm/processors/qwen2_vl.py,sha256=cPyj_32xytsTdvQi9
|
|
399
399
|
paddlex/inference/models/face_feature/__init__.py,sha256=7bctvoJnxoOsp2FzTisub1M8M0WL97_y7524vHOg6FA,654
|
400
400
|
paddlex/inference/models/face_feature/predictor.py,sha256=mRd2VoWFAH7wVT3-z8JBsdA7GaHO1h0xvVpCLavgj5I,2828
|
401
401
|
paddlex/inference/models/formula_recognition/__init__.py,sha256=JxjoRLv_6dZtM--Acg4lTpG-XKBKSeQkApQlVNubB9Y,653
|
402
|
-
paddlex/inference/models/formula_recognition/predictor.py,sha256=
|
403
|
-
paddlex/inference/models/formula_recognition/processors.py,sha256=
|
402
|
+
paddlex/inference/models/formula_recognition/predictor.py,sha256=v538BM-DTLDI6qcNfgk__wNK5k5RJzM8cDK86gci5mY,7359
|
403
|
+
paddlex/inference/models/formula_recognition/processors.py,sha256=LADB9fpHxAvdsmGZFs8j1SnPX3WKFvdoEoaGjkkrPdI,37285
|
404
404
|
paddlex/inference/models/formula_recognition/result.py,sha256=lyPeOKOiNq_D04BG2ZwMiyJz2mtwocmTvXBEU7MPGac,14951
|
405
405
|
paddlex/inference/models/image_classification/__init__.py,sha256=-dzTrk-2RlpLeziUvQCt42WFaydfukBODqmik1t3DQc,647
|
406
406
|
paddlex/inference/models/image_classification/predictor.py,sha256=uZ9xuhg2ElGIdh8cG57K9VnXqX65Paa_7mUG3GfUfqo,6383
|
@@ -467,7 +467,7 @@ paddlex/inference/models/text_detection/result.py,sha256=uhhPCdIvRLU-7aC_yma0SmX
|
|
467
467
|
paddlex/inference/models/text_recognition/__init__.py,sha256=oljAcj8MBt4t_fa03kvDAzXJIJSKIAKtB7B0I90G4aU,650
|
468
468
|
paddlex/inference/models/text_recognition/predictor.py,sha256=am7PG17yDxHDfGvRxvr9XRie8npXe9v08h7npk6fNok,3386
|
469
469
|
paddlex/inference/models/text_recognition/processors.py,sha256=hvnnY96ENYwaDeLXPmA3LSFTx37kDZrwNllag4fdQS0,8174
|
470
|
-
paddlex/inference/models/text_recognition/result.py,sha256=
|
470
|
+
paddlex/inference/models/text_recognition/result.py,sha256=udHBMz9v1MDN-xWAZu_xBS_M294utlY8dLg4sgGYNBM,2645
|
471
471
|
paddlex/inference/models/ts_anomaly_detection/__init__.py,sha256=4gvhfI6Z4QZpKsBLyHjTt0UBJ381EW7JfjuIYQBXe1E,647
|
472
472
|
paddlex/inference/models/ts_anomaly_detection/predictor.py,sha256=FjNtWgEPWvgjWzVP5RE3EjS0tbEALLdnm1fPBYY6ujs,5233
|
473
473
|
paddlex/inference/models/ts_anomaly_detection/processors.py,sha256=U9HwTL7ZS8iLyJXbCgNrZfI8JLRKp4bsBV-9PEhJkIc,3803
|
@@ -539,15 +539,16 @@ paddlex/inference/pipelines/instance_segmentation/pipeline.py,sha256=37YMJhzejHo
|
|
539
539
|
paddlex/inference/pipelines/keypoint_detection/__init__.py,sha256=R4TzgozUZphiJzcWLsSciP0oWD7AeIWxqz2T-WTgqz8,658
|
540
540
|
paddlex/inference/pipelines/keypoint_detection/pipeline.py,sha256=bhjn1rBJRIV0xIX8J3mlJ1F8xE7i7rjE4AmAv2x1T0w,6202
|
541
541
|
paddlex/inference/pipelines/layout_parsing/__init__.py,sha256=eikh0TU4nFoO7C-dI5jzRj02G8PiIXUYu6whU5JTdjE,703
|
542
|
+
paddlex/inference/pipelines/layout_parsing/layout_objects.py,sha256=Qo9qu780UPX99BkPwpSkB-ccN0fCMe-VXSgdWCyR3Ho,31812
|
542
543
|
paddlex/inference/pipelines/layout_parsing/pipeline.py,sha256=Qmqtf0Et30CFnNxNDtGiMGSYGxNhUezSZKIsyAloTiA,25847
|
543
|
-
paddlex/inference/pipelines/layout_parsing/pipeline_v2.py,sha256=
|
544
|
+
paddlex/inference/pipelines/layout_parsing/pipeline_v2.py,sha256=9SSs8NtgCM79YPrWIXbomROBK1IhUemZpoRWCwAUQhY,60939
|
544
545
|
paddlex/inference/pipelines/layout_parsing/result.py,sha256=R6wHENrYfrAbJfwZ-bi-_ha4EaU4hzsRNuwqKiH9Mhc,8688
|
545
|
-
paddlex/inference/pipelines/layout_parsing/result_v2.py,sha256=
|
546
|
-
paddlex/inference/pipelines/layout_parsing/setting.py,sha256=
|
547
|
-
paddlex/inference/pipelines/layout_parsing/utils.py,sha256=
|
546
|
+
paddlex/inference/pipelines/layout_parsing/result_v2.py,sha256=4-VtKZS5iIPFl9-9306KpN-Ml_JWTKGGV9t1tzBTCoE,18722
|
547
|
+
paddlex/inference/pipelines/layout_parsing/setting.py,sha256=k3X-IRYbj1QIH9WPpn7TjogUYRYnskx__Z2kdp-iU9Y,2451
|
548
|
+
paddlex/inference/pipelines/layout_parsing/utils.py,sha256=7jCatSn08b_ftLX0-1VKrzdQw1a4Xl3pum1i90o0L0I,27062
|
548
549
|
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=
|
550
|
-
paddlex/inference/pipelines/layout_parsing/xycut_enhanced/xycuts.py,sha256=
|
550
|
+
paddlex/inference/pipelines/layout_parsing/xycut_enhanced/utils.py,sha256=KZE5SIbPBHtEm3HRb0fAMxzoPkVT7TTlRJJn5IGkagY,45045
|
551
|
+
paddlex/inference/pipelines/layout_parsing/xycut_enhanced/xycuts.py,sha256=b3ZaPxIhMczEvyH_VG-XhzICNI8_kzmxlbEZjVJgUB4,24324
|
551
552
|
paddlex/inference/pipelines/m_3d_bev_detection/__init__.py,sha256=EcjBbaz4P_BKQ6b8rFdQ_JSN2tfMQAwe1_qOQmkWV-M,649
|
552
553
|
paddlex/inference/pipelines/m_3d_bev_detection/pipeline.py,sha256=-i0H4n75tY9qZwhA_0rdxcJQhnpRLforCJYqLbFFMQM,2892
|
553
554
|
paddlex/inference/pipelines/multilingual_speech_recognition/__init__.py,sha256=7QB9Wx7YCvmZInmrrgafzfQkL6C495sSro5CoH1HH2Q,670
|
@@ -556,7 +557,7 @@ paddlex/inference/pipelines/object_detection/__init__.py,sha256=c2ZYFYRbb0J6daRA
|
|
556
557
|
paddlex/inference/pipelines/object_detection/pipeline.py,sha256=FpXmt4UoUS-10cZQUfmrJDEwQd5Unzb7GhTbD1j9wBI,5140
|
557
558
|
paddlex/inference/pipelines/ocr/__init__.py,sha256=ikqbgokLsaCuqyOet1ul-2mtNGO7d7sAXLTdAp6E0qs,644
|
558
559
|
paddlex/inference/pipelines/ocr/pipeline.py,sha256=0BmvkcYIr3YJoYFycpEkA35Rdz9UZi6TJqYcwTIaL1Y,20178
|
559
|
-
paddlex/inference/pipelines/ocr/result.py,sha256=
|
560
|
+
paddlex/inference/pipelines/ocr/result.py,sha256=3e3AgdnoLqC5XaAiJb1DBWeFv0pfBOCO4ChJLf1oMU0,10013
|
560
561
|
paddlex/inference/pipelines/open_vocabulary_detection/__init__.py,sha256=aOYM8QAwEr_mL_GA4rWOs4iLpc16rye6vl3ObPNwWbI,664
|
561
562
|
paddlex/inference/pipelines/open_vocabulary_detection/pipeline.py,sha256=u7qV-1KuT1nyD-hSyJ0bWNcnhfaBh7H9UYS8AZb38jk,3597
|
562
563
|
paddlex/inference/pipelines/open_vocabulary_segmentation/__init__.py,sha256=AWiP79r5eAv5i-sVCXTVmSLWeHnQwCh8GeZ1I5mB6fk,667
|
@@ -564,7 +565,7 @@ paddlex/inference/pipelines/open_vocabulary_segmentation/pipeline.py,sha256=HO9p
|
|
564
565
|
paddlex/inference/pipelines/pp_chatocr/__init__.py,sha256=sGGz9xscTsDLMHyVr7XHD4aUNvfzi9VdKbcogWx-wsA,704
|
565
566
|
paddlex/inference/pipelines/pp_chatocr/pipeline_base.py,sha256=DvUu01oKY9KU3oIpTCbF-Sai6bRuvxqpZpBHe8gAuOE,3994
|
566
567
|
paddlex/inference/pipelines/pp_chatocr/pipeline_v3.py,sha256=m4C4O0xLrjBMFcRlOTzXkEwP4iHjaPtLyu5EKA2-ZxA,32500
|
567
|
-
paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py,sha256=
|
568
|
+
paddlex/inference/pipelines/pp_chatocr/pipeline_v4.py,sha256=suMKoHJY0vsMeqHhVS1NIMju2EqDJMB96P1Jl5bpZEM,41755
|
568
569
|
paddlex/inference/pipelines/pp_shitu_v2/__init__.py,sha256=ZI-x84D1hyQ8U77a8VLsv_4faIbTstX48iD9PWnYHDQ,648
|
569
570
|
paddlex/inference/pipelines/pp_shitu_v2/pipeline.py,sha256=G3fzKKyjscJKz5iQ4jSvBjEoGCa6KuiG10WY4n2AdlM,5828
|
570
571
|
paddlex/inference/pipelines/pp_shitu_v2/result.py,sha256=3600yup0xoEL0dA_7BqljeZPgvledruh1VoLMpIH2tc,4354
|
@@ -596,7 +597,7 @@ paddlex/inference/pipelines/video_detection/__init__.py,sha256=5fwogRCREggvQgge-
|
|
596
597
|
paddlex/inference/pipelines/video_detection/pipeline.py,sha256=k-QJZl2t-J2oboDfeWZ812P8TqVM1T3Lb4KsRV9xHrQ,3391
|
597
598
|
paddlex/inference/serving/__init__.py,sha256=toJfQp9IogLuJwLzprv8lieB-EERPqU4B0FJv8ZoNec,685
|
598
599
|
paddlex/inference/serving/basic_serving/__init__.py,sha256=_NwYgeYL6HTpLWAxf7aRwRP-rBfP-Fsaff3vZe0GUkg,739
|
599
|
-
paddlex/inference/serving/basic_serving/_app.py,sha256=
|
600
|
+
paddlex/inference/serving/basic_serving/_app.py,sha256=xgvF7P29bDJKcoETvVoxD-ccwcX24CsfmByErrjAa4o,8598
|
600
601
|
paddlex/inference/serving/basic_serving/_server.py,sha256=c_nqZFecjAIQxw2huCKzLWZ_BSO_pFh9xaUSGZ1WrTg,1484
|
601
602
|
paddlex/inference/serving/basic_serving/_pipeline_apps/__init__.py,sha256=z5_SMYmGTeBJTCwbipHBzuitWjraIEpy63y4od9Wtbg,1707
|
602
603
|
paddlex/inference/serving/basic_serving/_pipeline_apps/anomaly_detection.py,sha256=9eDaXVlXC5sEvmBGDvtE4Lv6bz0riZvT48nq7ccFCAE,2374
|
@@ -684,13 +685,14 @@ paddlex/inference/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJ
|
|
684
685
|
paddlex/inference/utils/benchmark.py,sha256=l2ATIuPwAd1uD4rZgADbt4HKEiobeFLm3P-bIbKtD4s,12932
|
685
686
|
paddlex/inference/utils/color_map.py,sha256=mU1FdhHuyiJBn_thBkSndiMJtfkn3i3rLtPAPNPFid0,2953
|
686
687
|
paddlex/inference/utils/get_pipeline_path.py,sha256=LCjXho0ix4jgG-sJ1DyKIAFfC8Yv2cj6hBlA3eOFJIo,985
|
687
|
-
paddlex/inference/utils/hpi.py,sha256=
|
688
|
-
paddlex/inference/utils/hpi_model_info_collection.json,sha256=
|
689
|
-
paddlex/inference/utils/
|
688
|
+
paddlex/inference/utils/hpi.py,sha256=Ways_Jq68cv_IqScjsy-6XEmPDlPQFtWScuywqBbjSE,9580
|
689
|
+
paddlex/inference/utils/hpi_model_info_collection.json,sha256=ysbGt7uZ6QftLdY1uQiUqkjCcdR1UbiGq2Ah0CXaNaE,51795
|
690
|
+
paddlex/inference/utils/misc.py,sha256=qFrRum5-0jxue1RuLkF3KOFZdRCn3Yoh2DERb_cHfAo,812
|
691
|
+
paddlex/inference/utils/mkldnn_blocklist.py,sha256=pYSebu-UYAU4XnTC19SVWcfsvkpxLlhbvcjCZHLkHIw,1800
|
690
692
|
paddlex/inference/utils/model_paths.py,sha256=uRsEO-uHEd4xKQZqNyU5T7Vp6QI6iYZ5anZMXXpmKAg,1803
|
691
693
|
paddlex/inference/utils/new_ir_blocklist.py,sha256=wdN1jiRWGo-YQvzoMOLhsqDjAcqhhkwfPBZEJ3-ldAw,880
|
692
|
-
paddlex/inference/utils/official_models.py,sha256=
|
693
|
-
paddlex/inference/utils/pp_option.py,sha256=
|
694
|
+
paddlex/inference/utils/official_models.py,sha256=Wn3PxkmrB6Zk2s0YAL7P9AJIRa7Axn49Ewum9VU90KE,44631
|
695
|
+
paddlex/inference/utils/pp_option.py,sha256=HZeS7y5kc3exLUQlGp5jeMx1JxsXwxuGYOdOSmfJfg0,13067
|
694
696
|
paddlex/inference/utils/trt_blocklist.py,sha256=vaFJs6gvkMncYKTL5R6C93Nq2eYAdeBNcmJ4-abSFa0,1465
|
695
697
|
paddlex/inference/utils/trt_config.py,sha256=995uGRdKFyaU9EB4jLDiS85EjVLXmsCyL7gJIl3c8h0,12661
|
696
698
|
paddlex/inference/utils/io/__init__.py,sha256=KE8WngZIEjrOPEGeN6AEwKU-yt5nReDRWIBcmiRPM5s,939
|
@@ -860,7 +862,7 @@ paddlex/modules/semantic_segmentation/evaluator.py,sha256=7G-BvANJNaYNPIKiC0m80m
|
|
860
862
|
paddlex/modules/semantic_segmentation/exportor.py,sha256=i8AugqgI8ISUe9sGa34qS2M70Nr0f4SSvD3vVFpqxDM,1087
|
861
863
|
paddlex/modules/semantic_segmentation/model_list.py,sha256=gy8YzruYBiUfwkipKxcsdlEoKuNNtJXmm_Fgszwcbag,1065
|
862
864
|
paddlex/modules/semantic_segmentation/trainer.py,sha256=CDQ1RV7iBRxLu2yb4mPTTI9KMbWMJibGkQa3KIPR4hE,2946
|
863
|
-
paddlex/modules/semantic_segmentation/dataset_checker/__init__.py,sha256=
|
865
|
+
paddlex/modules/semantic_segmentation/dataset_checker/__init__.py,sha256=msPB5kDaBlV8vrC2b1UejZP6FuJ4Q3n7ngPNidgx-F0,3977
|
864
866
|
paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/__init__.py,sha256=X7tKpOP8SC5V857urIX6C7A3I_OCi7rTgNFiro-wb1U,783
|
865
867
|
paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/analyse_dataset.py,sha256=r4j83eZF78qvV2-CToVV5rLeto4g2Ld2TuUx9LrjhII,2881
|
866
868
|
paddlex/modules/semantic_segmentation/dataset_checker/dataset_src/check_dataset.py,sha256=Svl_gmhOr5tnOwPmdEfer8zUoNgc3E8hUfThDSrCSas,3492
|
@@ -951,7 +953,7 @@ paddlex/modules/video_detection/dataset_checker/__init__.py,sha256=c5jNtdwElm97v
|
|
951
953
|
paddlex/modules/video_detection/dataset_checker/dataset_src/__init__.py,sha256=sJLqyXL-owy_gbtpQjEA2kceE6neSMJ0AIOylxApsLw,686
|
952
954
|
paddlex/modules/video_detection/dataset_checker/dataset_src/analyse_dataset.py,sha256=PIeAD38D_tgDSY12Q574iLdl6cBI_qhLPhvU-rUdqD8,3776
|
953
955
|
paddlex/modules/video_detection/dataset_checker/dataset_src/check_dataset.py,sha256=_rZDkMwn73J2oxzdWkh_cj6MUrWo7ziNYL49DdC5hW4,5316
|
954
|
-
paddlex/ops/__init__.py,sha256=
|
956
|
+
paddlex/ops/__init__.py,sha256=LK05L6sfbpEzTTdZA68g19QumkyDZzciPuUUFtBoScQ,4732
|
955
957
|
paddlex/ops/setup.py,sha256=k7bXqdmK02lHKgq6c8dtMw8copz53lHSh7waH-Hyvew,1336
|
956
958
|
paddlex/ops/iou3d_nms/iou3d_cpu.cpp,sha256=AUhprzEQqdSqFWl5fhJ1jGKjE8WPh6RQksXzFDHIU7g,8415
|
957
959
|
paddlex/ops/iou3d_nms/iou3d_cpu.h,sha256=n47pTnTFyeb_A4gZaACHTkkaM4zcwvxJhvv1Vd6bJ-U,912
|
@@ -1068,12 +1070,12 @@ paddlex/utils/__init__.py,sha256=lEGWWikF7G1wkk5M--CU2QxJaqbTdD__ML8ZJiKyVI4,609
|
|
1068
1070
|
paddlex/utils/cache.py,sha256=xcdPyZKcL6SQvtz0Sk66FpQWhjLW7QqSdU44ocme0zE,4778
|
1069
1071
|
paddlex/utils/config.py,sha256=mMP-WHMBB98hW-paFSc8vDnR7h87UpAe6X34W6ggIlQ,6255
|
1070
1072
|
paddlex/utils/custom_device_list.py,sha256=_9t81bfHijsjpk23_anibl8r484iYdhENsdETg0obj0,7216
|
1071
|
-
paddlex/utils/deps.py,sha256=
|
1072
|
-
paddlex/utils/device.py,sha256=
|
1073
|
+
paddlex/utils/deps.py,sha256=HL78ZP8oX6urGDoK-KA8A0ExJvitAv7CbIAXqxzWz24,7905
|
1074
|
+
paddlex/utils/device.py,sha256=fETdmBa3R_8MYnrFOuM3xjul2mhXNsJR09KXdo4ZNJA,6236
|
1073
1075
|
paddlex/utils/download.py,sha256=CC7TTOaOFXfcWCAg6CRJ-ECMIF9QVuvWFCOe39X2dhM,6402
|
1074
1076
|
paddlex/utils/env.py,sha256=dVOm9yQgXOGd4xFOFAmBHcKMDXCq-cuv3VDilGv-iHk,1617
|
1075
1077
|
paddlex/utils/file_interface.py,sha256=KfMl_NQIpRGxBL9bRd54OK60RkSesDBQFeMftdDlVt8,6523
|
1076
|
-
paddlex/utils/flags.py,sha256=
|
1078
|
+
paddlex/utils/flags.py,sha256=ieTQVpVYsR2mSmFQFfXJT2zcMR4vxGhHfevBJiJg6ik,2890
|
1077
1079
|
paddlex/utils/func_register.py,sha256=XEMaJ_ttfLp8Tos3vb1HH5cdsQX7uGiZ77W0t9tWHuE,1355
|
1078
1080
|
paddlex/utils/install.py,sha256=C8GMNv7YLoTi6MdOl1B1ojlsWOQFxX8piuIO-5Hkg8c,2507
|
1079
1081
|
paddlex/utils/interactive_get_pipeline.py,sha256=J0RIY_gry2J9s_c1-vF5oN49gDzjLnxtJhtLJMp1u7I,1916
|
@@ -1082,14 +1084,14 @@ paddlex/utils/logging.py,sha256=up6qyU-pgjISPTInsm5P5vnr45-4n3xK97r1Ad6nTKA,4847
|
|
1082
1084
|
paddlex/utils/misc.py,sha256=XzpCR5MF270dHVtllyrieBQ3RPAxh_sWsDY8Hqu_Tpc,5864
|
1083
1085
|
paddlex/utils/pipeline_arguments.py,sha256=h3MEAK8cBGf3LBA3m6NFDJov87M2Ad7tJAKzYduWsso,23708
|
1084
1086
|
paddlex/utils/result_saver.py,sha256=slcYMg1ImdX58106DRq8DhLa8XqxQnnPZvxJhtcv5WM,1980
|
1085
|
-
paddlex/utils/subclass_register.py,sha256=
|
1087
|
+
paddlex/utils/subclass_register.py,sha256=7PQLJYP7_WnMSYR_YP_rBGeDtSQd8V71Rq-3T0AfU38,3417
|
1086
1088
|
paddlex/utils/errors/__init__.py,sha256=1ooQ6m7PWkmniQbq4xVMVubjBKlMbZzoIvoPlKBoBgI,664
|
1087
1089
|
paddlex/utils/errors/dataset_checker.py,sha256=hnLeqMyMLuQQVWhHsfakpcZAN4Tu2ULaqtlQ9BzC1pI,2200
|
1088
1090
|
paddlex/utils/errors/others.py,sha256=5RwDvxq4_K4UHMFRldrbwoDMnW8mW2KATinIwac7v-4,4303
|
1089
1091
|
paddlex/utils/fonts/__init__.py,sha256=o47S4aK6ZKt5pfCc1_paMMig4fcSwgWX4m1BN4ybQ2Q,3297
|
1090
|
-
paddlex-3.0.
|
1091
|
-
paddlex-3.0.
|
1092
|
-
paddlex-3.0.
|
1093
|
-
paddlex-3.0.
|
1094
|
-
paddlex-3.0.
|
1095
|
-
paddlex-3.0.
|
1092
|
+
paddlex-3.0.2.dist-info/LICENSE,sha256=rMw2yBesXt5HPQVzLhSvwRy25V71kZvIJrZT9jEWUEM,11325
|
1093
|
+
paddlex-3.0.2.dist-info/METADATA,sha256=l1M2CluJyeNTy7Njg1ELwzC7GHnPlUrPfGdUbrrvjNs,76648
|
1094
|
+
paddlex-3.0.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
1095
|
+
paddlex-3.0.2.dist-info/entry_points.txt,sha256=65F9jsc5DpDHIv2DjPIVwnTf-zSokvgExdu3HKjhdfY,60
|
1096
|
+
paddlex-3.0.2.dist-info/top_level.txt,sha256=KWSxMIrEchP3dxsAjzSRR-jmnjW0YGHECxG9OA5YB_g,8
|
1097
|
+
paddlex-3.0.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|