kevin-toolbox-dev 1.4.7__py3-none-any.whl → 1.4.9__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.
- kevin_toolbox/__init__.py +2 -2
- kevin_toolbox/{developing → computer_science/algorithm}/decorator/__init__.py +2 -1
- kevin_toolbox/computer_science/algorithm/decorator/retry.py +62 -0
- kevin_toolbox/computer_science/algorithm/registration/__init__.py +1 -0
- kevin_toolbox/computer_science/algorithm/registration/serializer_for_registry_execution.py +82 -0
- kevin_toolbox/data_flow/core/cache/cache_manager_for_iterator.py +1 -1
- kevin_toolbox/data_flow/file/json_/write_json.py +2 -1
- kevin_toolbox/env_info/check_version_and_update.py +0 -1
- kevin_toolbox/env_info/variable_/env_vars_parser.py +17 -2
- kevin_toolbox/nested_dict_list/copy_.py +4 -2
- kevin_toolbox/nested_dict_list/get_nodes.py +4 -2
- kevin_toolbox/nested_dict_list/serializer/variable.py +14 -2
- kevin_toolbox/nested_dict_list/serializer/write.py +2 -0
- kevin_toolbox/nested_dict_list/traverse.py +75 -21
- kevin_toolbox/nested_dict_list/value_parser/replace_identical_with_reference.py +1 -4
- kevin_toolbox/network/__init__.py +10 -0
- kevin_toolbox/network/download_file.py +120 -0
- kevin_toolbox/network/fetch_content.py +55 -0
- kevin_toolbox/network/fetch_metadata.py +64 -0
- kevin_toolbox/network/get_response.py +50 -0
- kevin_toolbox/network/variable.py +6 -0
- kevin_toolbox/patches/for_logging/build_logger.py +1 -1
- kevin_toolbox/patches/for_matplotlib/color/convert_format.py +0 -2
- kevin_toolbox/patches/for_matplotlib/common_charts/__init__.py +45 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_bars.py +63 -22
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_confusion_matrix.py +67 -20
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_distribution.py +66 -17
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_from_record.py +21 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_lines.py +59 -19
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_scatters.py +61 -12
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_scatters_matrix.py +57 -14
- kevin_toolbox/patches/for_matplotlib/common_charts/utils/__init__.py +3 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/utils/get_output_path.py +15 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/utils/save_plot.py +12 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/utils/save_record.py +34 -0
- kevin_toolbox/patches/for_matplotlib/variable.py +20 -0
- kevin_toolbox/patches/for_numpy/linalg/softmax.py +4 -1
- kevin_toolbox_dev-1.4.9.dist-info/METADATA +75 -0
- {kevin_toolbox_dev-1.4.7.dist-info → kevin_toolbox_dev-1.4.9.dist-info}/RECORD +42 -28
- kevin_toolbox_dev-1.4.7.dist-info/METADATA +0 -69
- /kevin_toolbox/{developing → computer_science/algorithm}/decorator/restore_original_work_path.py +0 -0
- {kevin_toolbox_dev-1.4.7.dist-info → kevin_toolbox_dev-1.4.9.dist-info}/WHEEL +0 -0
- {kevin_toolbox_dev-1.4.7.dist-info → kevin_toolbox_dev-1.4.9.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
kevin_toolbox/__init__.py,sha256
|
1
|
+
kevin_toolbox/__init__.py,sha256=Zz_PMwRXXXicnPLZzuj-A3qHU3jPIQ9XsqfQexBaPGg,410
|
2
2
|
kevin_toolbox/computer_science/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
kevin_toolbox/computer_science/algorithm/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
4
4
|
kevin_toolbox/computer_science/algorithm/cache_manager/__init__.py,sha256=p2hddkZ1HfYF9-m2Hx-o9IotwQHd4QwDCePy2ADpTDA,41
|
@@ -23,6 +23,9 @@ kevin_toolbox/computer_science/algorithm/combinatorial_optimization/zero_one_kna
|
|
23
23
|
kevin_toolbox/computer_science/algorithm/combinatorial_optimization/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
kevin_toolbox/computer_science/algorithm/combinatorial_optimization/test/test_get_subset_with_largest_product.py,sha256=MVsQ1KgjwIVrXCejE6T08JOYnyXS2a9YMVBenvi6qXM,1914
|
25
25
|
kevin_toolbox/computer_science/algorithm/combinatorial_optimization/test/test_zero_one_knapsack_problem.py,sha256=4j7IBmqkUSRFFIOOMU721eIwaLEiYL2BLx6xN5mJPDQ,2078
|
26
|
+
kevin_toolbox/computer_science/algorithm/decorator/__init__.py,sha256=6FNPXWrvLd8G-EjF1rLCboMqs3qWDkcxNKmCHQQ8QjQ,92
|
27
|
+
kevin_toolbox/computer_science/algorithm/decorator/restore_original_work_path.py,sha256=HyDSMHbFsCVRrT5l3tledrGLxP7fCz4TVJ94zaPZPcM,399
|
28
|
+
kevin_toolbox/computer_science/algorithm/decorator/retry.py,sha256=rdpMzWHhrC2imG2sN0zCBwpeq0Br2Y8N4Kg0TsQPvRE,1927
|
26
29
|
kevin_toolbox/computer_science/algorithm/execution_graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
30
|
kevin_toolbox/computer_science/algorithm/execution_graph/jump_node.py,sha256=Bmtc-S154S3gYmbIB98tcwvCc_qBkZoUkE9c3IRJ1dM,3297
|
28
31
|
kevin_toolbox/computer_science/algorithm/execution_graph/random_node.py,sha256=4txbyT2h5F9JgUejAkqBWamSVQ2FlAW0FKt_i1NW5zs,3189
|
@@ -45,8 +48,9 @@ kevin_toolbox/computer_science/algorithm/parallel_and_concurrent/utils/wrapper_w
|
|
45
48
|
kevin_toolbox/computer_science/algorithm/pareto_front/__init__.py,sha256=F1uD0ZT2Ukb708_Eay96SEhaDfCq9YEheJRust33P6w,111
|
46
49
|
kevin_toolbox/computer_science/algorithm/pareto_front/get_pareto_points_idx.py,sha256=WR-_9BruqAWH0QECa40b1Iz1_k6uesBrUYrn2s9ALBM,3008
|
47
50
|
kevin_toolbox/computer_science/algorithm/pareto_front/optimum_picker.py,sha256=wnYN2s9r2g1z5wF0FvFLawRYITUJbMXbBs4TPsdvhlE,9923
|
48
|
-
kevin_toolbox/computer_science/algorithm/registration/__init__.py,sha256=
|
51
|
+
kevin_toolbox/computer_science/algorithm/registration/__init__.py,sha256=w9CHaFB1rIfIAiKrSXePwdhjN8kaRrxxdBwjJ7S2aWk,152
|
49
52
|
kevin_toolbox/computer_science/algorithm/registration/registry.py,sha256=X1I04ZO2lTE36TjvJ1tcepl7xXD0OJWCA82RDsoENvA,17734
|
53
|
+
kevin_toolbox/computer_science/algorithm/registration/serializer_for_registry_execution.py,sha256=a-bsb1JCc0rfHhz1mCua-5NWYu-lx4kPY9Ubp5MKUVU,3156
|
50
54
|
kevin_toolbox/computer_science/algorithm/scheduler/__init__.py,sha256=ENzZsNaMu6ISilTxeE3_EP_L0dNi8SI7IYdTdxic2nw,76
|
51
55
|
kevin_toolbox/computer_science/algorithm/scheduler/strategy_manager.py,sha256=yLh2GBEsedJhqvB90zEmAOdZ8IF7nn1r9lSE95BbnEQ,12194
|
52
56
|
kevin_toolbox/computer_science/algorithm/scheduler/trigger.py,sha256=YlqTX2TE44BwcQI0jfvcBCJhouhdAYuhwu2QJhuBWP0,4470
|
@@ -68,7 +72,7 @@ kevin_toolbox/dangerous/dump_into_pickle_with_executor_attached.py,sha256=oaPlXy
|
|
68
72
|
kevin_toolbox/data_flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
69
73
|
kevin_toolbox/data_flow/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
74
|
kevin_toolbox/data_flow/core/cache/__init__.py,sha256=xA92Lpp3iOdqsiDl-vA-93rLT-vLP29OInnpIWZ6Yn8,67
|
71
|
-
kevin_toolbox/data_flow/core/cache/cache_manager_for_iterator.py,sha256=
|
75
|
+
kevin_toolbox/data_flow/core/cache/cache_manager_for_iterator.py,sha256=LzhtCfAF6Xz9aM3ZCaplYDsyLSRpq_1hJjNmG2vsTlw,10111
|
72
76
|
kevin_toolbox/data_flow/core/cache/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
77
|
kevin_toolbox/data_flow/core/cache/test/test_cache_manager_for_iterator.py,sha256=OjJEEmvWtsGCPFXp2NQP2lpUGFXe9Zr2EpQSfRTDfRI,1147
|
74
78
|
kevin_toolbox/data_flow/core/reader/__init__.py,sha256=i2118MlsNSJHG5u6ZuPcN3NW2LZmYUtDO7dNEdnOncI,146
|
@@ -80,7 +84,7 @@ kevin_toolbox/data_flow/file/excel/__init__.py,sha256=5m_rmklI6n6yk4rSAEW39pxzYT
|
|
80
84
|
kevin_toolbox/data_flow/file/excel/write_excel_with_matrix.py,sha256=zrY_l0xCBpjqxm_9MoGpEXaZ4V_UwRMRgShessJ1sxA,5121
|
81
85
|
kevin_toolbox/data_flow/file/json_/__init__.py,sha256=VAt8COS2tO3PJRuhSc43i35fEOlArFM_YahdTmEBaHE,85
|
82
86
|
kevin_toolbox/data_flow/file/json_/read_json.py,sha256=RyCeNONMmvVOeX_F3kSSmED_nx4opipLe8OHJzXKZvQ,2151
|
83
|
-
kevin_toolbox/data_flow/file/json_/write_json.py,sha256=
|
87
|
+
kevin_toolbox/data_flow/file/json_/write_json.py,sha256=UYlyknBNs8t_8xHw8mJj0PBPwFp_to5j6NzaWi1Qkjw,4261
|
84
88
|
kevin_toolbox/data_flow/file/json_/converter/__init__.py,sha256=oQMgAgzELLq_f4LIIfz5E6l_E7g4lFsXqfmnJ3tPZTY,401
|
85
89
|
kevin_toolbox/data_flow/file/json_/converter/convert_dict_key_to_number.py,sha256=SuSZj_HCqKZutHAJ5AttABnGBRZplPGQhMxJBt2Wlgc,559
|
86
90
|
kevin_toolbox/data_flow/file/json_/converter/convert_ndarray_to_list.py,sha256=GALpC1MFJ4aMzs0FZIfJScYznfCP-gmhPeM8sWXGSWg,391
|
@@ -122,8 +126,6 @@ kevin_toolbox/data_flow/file/markdown/utils/save_images_in_ndl.py,sha256=F_c6FP4
|
|
122
126
|
kevin_toolbox/developing/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
123
127
|
kevin_toolbox/developing/general_matrix_multiplication.py,sha256=Ie9c8mYBYR-Bg7CjU4L1dsOxXsxnx1jz-rA7_ez7vjg,2089
|
124
128
|
kevin_toolbox/developing/test.py,sha256=6Y23SY3FJVrvZmiiXKNPKv84lhVRW-XyjNeecj9lLYA,241
|
125
|
-
kevin_toolbox/developing/decorator/__init__.py,sha256=d_P-mzZf6J5llfJyWFHfOjllOsZisFk2gbBxiI0XrpQ,66
|
126
|
-
kevin_toolbox/developing/decorator/restore_original_work_path.py,sha256=HyDSMHbFsCVRrT5l3tledrGLxP7fCz4TVJ94zaPZPcM,399
|
127
129
|
kevin_toolbox/developing/design_pattern/__init__.py,sha256=6ESz8DyhhWxOqiNr-U8lCqxes-vMc7aHel25ACl9gKE,20
|
128
130
|
kevin_toolbox/developing/design_pattern/producer_consumer/__init__.py,sha256=6yv2T3dOIHUR_QvDxZDxrmkqn8y_6rlt5WeHx-AV1Ck,28
|
129
131
|
kevin_toolbox/developing/design_pattern/producer_consumer/consumer.py,sha256=5fg-rqDfgxIQi9ilW9sNE4qW2YZK8TBHFZUKlJcJeEw,892
|
@@ -144,13 +146,13 @@ kevin_toolbox/developing/temperate/my_iterator_base.py,sha256=gLv9zdM987BHRghTfA
|
|
144
146
|
kevin_toolbox/developing/temperate/sequence_map_base.py,sha256=ha1EIMhn9lBF05s9niHLTuxhRslOx5faOk8UIjhhxUk,217
|
145
147
|
kevin_toolbox/env_info/__init__.py,sha256=8Io5RN5RcbEoMLHY4wfMa4pJxa1w0SMaXBN4v6k5CrM,134
|
146
148
|
kevin_toolbox/env_info/check_validity_and_uninstall.py,sha256=FOLeVKRqqiFnAQpx_AmIc8D3UcJigzIx58XDTJgv_qw,1676
|
147
|
-
kevin_toolbox/env_info/check_version_and_update.py,sha256=
|
149
|
+
kevin_toolbox/env_info/check_version_and_update.py,sha256=OjcfApg-szXu5Q8DKYhVJSr2fYmZHdqztZTAEMdumn4,2716
|
148
150
|
kevin_toolbox/env_info/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
149
151
|
kevin_toolbox/env_info/test/test_check_.py,sha256=wiIM_UVy_ksdq3la-pbF605Lhl5iW3a-0S_B74QzPT8,2054
|
150
152
|
kevin_toolbox/env_info/test/test_variable_.py,sha256=n9To8UNfBSNey8Xy7relXcbrf0yX8ZoZzfJctd2fHBs,1657
|
151
153
|
kevin_toolbox/env_info/test/test_version.py,sha256=xnF7RAcLSN3gpjIbVxFUV2-lmv0w7gOhdRa4XN0z0Q0,1728
|
152
154
|
kevin_toolbox/env_info/variable_/__init__.py,sha256=qFs8ZZVBjAfj6IuUujYxaEnmXk6HEbtN6GXaIkuQhoM,81
|
153
|
-
kevin_toolbox/env_info/variable_/env_vars_parser.py,sha256=
|
155
|
+
kevin_toolbox/env_info/variable_/env_vars_parser.py,sha256=VpJNXH928LQ8ZC5TdN6YHCp9eHbbEcuNPNkEUdzCW-0,4385
|
154
156
|
kevin_toolbox/env_info/version/__init__.py,sha256=PSrrvrYccfcE36IkOWG5kLQlKopfenQJ-4xilCdRULY,187
|
155
157
|
kevin_toolbox/env_info/version/compare_version.py,sha256=rAksAR1OuOE5TrfJx3h5w7w5vftpcv_oJPHWGwuX7TI,2489
|
156
158
|
kevin_toolbox/env_info/version/parse_version.py,sha256=QhYVO9hLZ8o4wdXWg5PBr0WIu5VayR-QFKQ_KyLDLgI,860
|
@@ -241,14 +243,14 @@ kevin_toolbox/math/utils/get_function_table_for_array_and_tensor.py,sha256=hZrXb
|
|
241
243
|
kevin_toolbox/math/utils/set_crop_by_box.py,sha256=NzW7M26Av097RchLUAhaO84ETLV121uxsNot_U6otLw,1775
|
242
244
|
kevin_toolbox/math/utils/split_integer_most_evenly.py,sha256=6hTWKXYx3YlotNMaw8cmecWO0A4C_Ny2kxgN9asiN9A,345
|
243
245
|
kevin_toolbox/nested_dict_list/__init__.py,sha256=ALcn1tYdBdDWUHyIQj588UfHgrAwbUcZu_bN2v-cEAc,333
|
244
|
-
kevin_toolbox/nested_dict_list/copy_.py,sha256=
|
246
|
+
kevin_toolbox/nested_dict_list/copy_.py,sha256=iS8P4JZ4SyBwZksObt2t1e4p0tXrsUu9NRtmjifjX5Q,6256
|
245
247
|
kevin_toolbox/nested_dict_list/count_leaf_node_nums.py,sha256=l67u47EvO1inoGinUqH6RZ7cHXwN0VcBQPUvSheqAvA,614
|
246
248
|
kevin_toolbox/nested_dict_list/get_hash.py,sha256=Ygadnn5dnvIeE-9t39p2EwNKNRLzomL37ZsRD5daXxo,1286
|
247
|
-
kevin_toolbox/nested_dict_list/get_nodes.py,sha256=
|
249
|
+
kevin_toolbox/nested_dict_list/get_nodes.py,sha256=3NJ2BPhNLr6hgooo-dOXLHZ6c-XjqOersLgTwTTXqbE,3831
|
248
250
|
kevin_toolbox/nested_dict_list/get_value.py,sha256=IiAqQCphyv-pAZWuQRWm0anEwxYQOkC9CttY5ZlUbSs,2389
|
249
251
|
kevin_toolbox/nested_dict_list/set_default.py,sha256=laSgGP1CbApNgFB9HZGCtxCG9fe7u1C-YOx9ZCoHJms,3460
|
250
252
|
kevin_toolbox/nested_dict_list/set_value.py,sha256=AQ4foDtKo4JxyR---of-VSxjhRWfqkv6TrnQ4EoRo3M,3711
|
251
|
-
kevin_toolbox/nested_dict_list/traverse.py,sha256=
|
253
|
+
kevin_toolbox/nested_dict_list/traverse.py,sha256=3P4mep8LNdDurxZgIEOqpB3k5chHOfQ0jQreWXjevDk,10327
|
252
254
|
kevin_toolbox/nested_dict_list/name_handler/__init__.py,sha256=P_pWq78oN6NdvWg2h6AduW_sUqbeaaVyoWWbW9kbgmU,107
|
253
255
|
kevin_toolbox/nested_dict_list/name_handler/build_name.py,sha256=VPWyjE8i8l-4Zm4tkD06Ie4J2NCsmI32ecOxZQqqmok,989
|
254
256
|
kevin_toolbox/nested_dict_list/name_handler/escape_node.py,sha256=niT9MxmsyrSZYhKXlWzdoKXVYhWRCR-kmQBkZopznpA,1163
|
@@ -257,8 +259,8 @@ kevin_toolbox/nested_dict_list/serializer/__init__.py,sha256=79dd9l-mNz0bycFKjNm
|
|
257
259
|
kevin_toolbox/nested_dict_list/serializer/enum_variable.py,sha256=RWPydtXI4adOJYGo_k5CWHSL0Odzj_bsahb24p1ranY,847
|
258
260
|
kevin_toolbox/nested_dict_list/serializer/read.py,sha256=HaEJJw7hBVNmsIs348kaIyatHP77Kr-JHEwYqRwLrso,3202
|
259
261
|
kevin_toolbox/nested_dict_list/serializer/saved_node_name_builder.py,sha256=qsD-rmDmVaKZP4owN3Wm3QY2Ksi71XlYETqw4VmIsSU,1011
|
260
|
-
kevin_toolbox/nested_dict_list/serializer/variable.py,sha256=
|
261
|
-
kevin_toolbox/nested_dict_list/serializer/write.py,sha256=
|
262
|
+
kevin_toolbox/nested_dict_list/serializer/variable.py,sha256=dDOhaj_GpIpiqKRvIrYzMejo0Oqc-Ie2x569vcl3XrA,657
|
263
|
+
kevin_toolbox/nested_dict_list/serializer/write.py,sha256=7WwnT7hO7Rvs3ut4wdS17LgMv9jQOy2Bo4_QpzEi-Dw,24122
|
262
264
|
kevin_toolbox/nested_dict_list/serializer/backends/__init__.py,sha256=8g7y-L3cmctxao616dVkGiot00FJzKNmNl_69V2bSmE,39
|
263
265
|
kevin_toolbox/nested_dict_list/serializer/backends/_json_.py,sha256=yu3604KvzU8dKyECBQ3v127dsEr-VaRz0Mm4dBJgNfc,2189
|
264
266
|
kevin_toolbox/nested_dict_list/serializer/backends/_ndl.py,sha256=3YkAq_Bqzehnw0kGxqxwtF6uUz0EV37tLI-1ROHjixY,1794
|
@@ -275,33 +277,45 @@ kevin_toolbox/nested_dict_list/value_parser/cal_relation_between_references.py,s
|
|
275
277
|
kevin_toolbox/nested_dict_list/value_parser/eval_references.py,sha256=YQyOm3awKVRusXxSNObjJ2yPf0oE4gleobOn_RN_nzU,2301
|
276
278
|
kevin_toolbox/nested_dict_list/value_parser/parse_and_eval_references.py,sha256=RQEDFFNAhQQcX9H8curwja-pI2gKZlVx4M2qeneBOhA,2370
|
277
279
|
kevin_toolbox/nested_dict_list/value_parser/parse_references.py,sha256=G470xNzrRpYlS5To8R5yV0M6nX4iE5LLMp_eV49bh3Y,2116
|
278
|
-
kevin_toolbox/nested_dict_list/value_parser/replace_identical_with_reference.py,sha256=
|
280
|
+
kevin_toolbox/nested_dict_list/value_parser/replace_identical_with_reference.py,sha256=yTOZ0-8ZKbO7bS1jCvTZyLtS8OOvaalVG0O3arJa8NY,5349
|
281
|
+
kevin_toolbox/network/__init__.py,sha256=wOY_SKvbxzIIH_OFccMw3-LVUwZQwz8BTb82ht88JHA,346
|
282
|
+
kevin_toolbox/network/download_file.py,sha256=hW6DbdKPWcVqkG8U7NK2bwwubPtmaPHp3ftfuAjMNgI,6896
|
283
|
+
kevin_toolbox/network/fetch_content.py,sha256=WjpwZ_7pyfrAAmxNyHMu3onkbucELnHKYXDBM1fSSEY,2167
|
284
|
+
kevin_toolbox/network/fetch_metadata.py,sha256=I_0fzm9A8HHFXGsdGZnvYUDd2hIPcjpacB00gEa9_HI,2742
|
285
|
+
kevin_toolbox/network/get_response.py,sha256=pNOi4IgAiXEH7QzNdyVEVo6lfIkOrurgnV1EgAbaBz8,2166
|
286
|
+
kevin_toolbox/network/variable.py,sha256=R-gKgG1PRV1MnL1ApsQXKBqDt6YbM87xNGkCf_gUUCM,237
|
279
287
|
kevin_toolbox/patches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
280
288
|
kevin_toolbox/patches/for_logging/__init__.py,sha256=xymF6mjwY4Cin7CoEwanFY5ZVk8oY0pDLqjZAGa7_Rg,39
|
281
|
-
kevin_toolbox/patches/for_logging/build_logger.py,sha256=
|
289
|
+
kevin_toolbox/patches/for_logging/build_logger.py,sha256=TpIjkz6Qr6gSLAz-xg_9LqNO0O_rfufBfy4pswDxpkg,3082
|
282
290
|
kevin_toolbox/patches/for_matplotlib/__init__.py,sha256=Pr9jXGomD3wBvtKE8p9V7rKDY4YBLAP5ayWEuBbDdk4,182
|
283
291
|
kevin_toolbox/patches/for_matplotlib/add_trajectory_2d.py,sha256=mKXRUNJiEZBcff3pAkwL_gcKGn55CLRhYCTSd3fj1Go,1837
|
284
292
|
kevin_toolbox/patches/for_matplotlib/add_trajectory_3d.py,sha256=VGlZfVY0xhUBOUzWJVPxZZNHHRvWLR0HZzhADA_cbsU,1696
|
285
293
|
kevin_toolbox/patches/for_matplotlib/arrow3d.py,sha256=JSnNMr1hU2N4FUX526I4MDr04mksDgu4VuegYFDxk1Q,1361
|
286
294
|
kevin_toolbox/patches/for_matplotlib/clear_border_of_axes.py,sha256=aQtzrw4W-DUffvwTqsA9Ez7b_vj-C58ROE_UcCKIawQ,725
|
295
|
+
kevin_toolbox/patches/for_matplotlib/variable.py,sha256=oJ0E8YEhnRMd0HmWKi3X56-m7sZ2ROlOnGOkyFTHUrU,645
|
287
296
|
kevin_toolbox/patches/for_matplotlib/color/__init__.py,sha256=5VGALqLCFsGqBWrOnFouVxkpp_DfqMIcKDLzYPdOTy8,170
|
288
297
|
kevin_toolbox/patches/for_matplotlib/color/color_format.py,sha256=ADwKfPmryxOuN691ol_2djOIkGQGJcnUAcqE3pbxGJs,205
|
289
|
-
kevin_toolbox/patches/for_matplotlib/color/convert_format.py,sha256=
|
298
|
+
kevin_toolbox/patches/for_matplotlib/color/convert_format.py,sha256=lTnKgXgCLvKPJc8L6xq_ABmTh5MeMb6vYIVj-lSkmVc,3988
|
290
299
|
kevin_toolbox/patches/for_matplotlib/color/generate_color_list.py,sha256=TZm-TkOuJbFzJ0_RklliQ9SHjMUhJvjbu7DUJGtgvw0,1993
|
291
300
|
kevin_toolbox/patches/for_matplotlib/color/get_format.py,sha256=l_vX8DUsWHNzLwveuF60TLcbQ_P7PvVt1yH_7FjElDs,312
|
292
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/__init__.py,sha256=
|
293
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/plot_bars.py,sha256=
|
294
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/plot_confusion_matrix.py,sha256=
|
295
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/plot_distribution.py,sha256=
|
296
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/
|
297
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/
|
298
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/
|
301
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/__init__.py,sha256=cxQT-iA6JdWqPqoXvw535_8_zJWZr0Mqr3Ln7oV2awo,2024
|
302
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_bars.py,sha256=7XVNnRc6o1w911XGE-ATZGX0wr_9moB3gZGEW-8_Qao,4436
|
303
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_confusion_matrix.py,sha256=cfZQu9M2IkA0qrEy4QJda4_yGENDSg2BVk8lQ5YIAi0,6456
|
304
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_distribution.py,sha256=hmGQYeTMF9ZCBIyporxQi1xc8yuHb8vai8WvR_i3nxE,5856
|
305
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_from_record.py,sha256=LJ5bySLIP8Q6-lI3ibk7rRsgdP4Y6oKIQYuo5-wOw4M,756
|
306
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_lines.py,sha256=aXnhOV2Tnxc0VnqPR3qcENBFVxFof7Oxm5oKVJph_5w,5066
|
307
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_scatters.py,sha256=ouypSDAkrGwI9ZpDFs7xqYgOS3dTZLDeZr68h-ceDh0,4719
|
308
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_scatters_matrix.py,sha256=PTFYaLu_0w1T66p_PP0rK-q1oqNgek-Nto-ILWbawIc,4848
|
309
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/utils/__init__.py,sha256=mI06j19Yk8-6ksAc_OjhXudse7gbkz1dS4-lvmj85FI,115
|
310
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/utils/get_output_path.py,sha256=lHd5unN5nsu7Msqnct5cSn_6Ib3uZUaExpI7qvndE7U,614
|
311
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/utils/save_plot.py,sha256=2yKtzGZOYl0YpVKl2YzuD52G5CpuRbR5YeXp6EktDFM,306
|
312
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/utils/save_record.py,sha256=mZSVGn9om0Qzi2gGiWwlFDUSLu7RgSGtkae0T16UOSk,1332
|
299
313
|
kevin_toolbox/patches/for_numpy/__init__.py,sha256=SNjZGxTRBn-uzkyZi6Jcz-9juhhZKT8TI70qH-fhGGc,21
|
300
314
|
kevin_toolbox/patches/for_numpy/linalg/__init__.py,sha256=TH-M0Orrakyf9S9A8FiDf3zLHY24gP2SGGTuNmLhDP4,128
|
301
315
|
kevin_toolbox/patches/for_numpy/linalg/cos_similar.py,sha256=bFkfDwrW3maXq5i9ZABidKfg8ZdEdXfFgNzW_uygrM4,423
|
302
316
|
kevin_toolbox/patches/for_numpy/linalg/entropy.py,sha256=PSdwkzySvWF4h4Xi27w2kvLq5WAeM_ysLstPFNBMoX8,1080
|
303
317
|
kevin_toolbox/patches/for_numpy/linalg/normalize.py,sha256=7qstt__rwUkk3jRJOQoneBp9YdfhYQtWfh6PZoWbvaA,625
|
304
|
-
kevin_toolbox/patches/for_numpy/linalg/softmax.py,sha256=
|
318
|
+
kevin_toolbox/patches/for_numpy/linalg/softmax.py,sha256=JWYGLT18Yx9csm_svAe1mHtzLwaQhOah8ePFzJRZgaU,2285
|
305
319
|
kevin_toolbox/patches/for_numpy/random/__init__.py,sha256=SDFF7yiUrkSHE9f9quALFQd6bCF2Mr1Q0vznl7QBhyo,231
|
306
320
|
kevin_toolbox/patches/for_numpy/random/get_rng.py,sha256=QblrMKg4OFVy-C4A6rQ-zq26uDKzhMifKTFUlyW3Ksw,1999
|
307
321
|
kevin_toolbox/patches/for_numpy/random/get_rng_state.py,sha256=wceMn3LXx7Fbe2S5f5p6kkMEpNb6GYq3Y-DG9amuL5w,113
|
@@ -358,7 +372,7 @@ kevin_toolbox/patches/for_torch/nn/__init__.py,sha256=aJs3RMqRzQmd8KKDmQW9FxwCqS
|
|
358
372
|
kevin_toolbox/patches/for_torch/nn/lambda_layer.py,sha256=KUuLiX_Dr4bvRmpAaCW5QTDWDcnMPRnw0jg4NNXTFhM,223
|
359
373
|
kevin_toolbox/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
360
374
|
kevin_toolbox/utils/variable.py,sha256=PxUmp9w4CKKcKHjgdVNF_Iaw5gwPPOd4aY_Oe5F9U1M,133
|
361
|
-
kevin_toolbox_dev-1.4.
|
362
|
-
kevin_toolbox_dev-1.4.
|
363
|
-
kevin_toolbox_dev-1.4.
|
364
|
-
kevin_toolbox_dev-1.4.
|
375
|
+
kevin_toolbox_dev-1.4.9.dist-info/METADATA,sha256=Q66eIgYcla2f_LJor80E5ApSiVUBVqT7Wld_vYesMW8,3277
|
376
|
+
kevin_toolbox_dev-1.4.9.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
377
|
+
kevin_toolbox_dev-1.4.9.dist-info/top_level.txt,sha256=S5TeRGF-PwlhsaUEPTI-f2vWrpLmh3axpyI6v-Fi75o,14
|
378
|
+
kevin_toolbox_dev-1.4.9.dist-info/RECORD,,
|
@@ -1,69 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: kevin-toolbox-dev
|
3
|
-
Version: 1.4.7
|
4
|
-
Summary: 一个常用的工具代码包集合
|
5
|
-
Home-page: https://github.com/cantbeblank96/kevin_toolbox
|
6
|
-
Download-URL: https://github.com/username/your-package/archive/refs/tags/v1.0.0.tar.gz
|
7
|
-
Author: kevin hsu
|
8
|
-
Author-email: xukaiming1996@163.com
|
9
|
-
License: MIT
|
10
|
-
Keywords: mathematics,pytorch,numpy,machine-learning,algorithm
|
11
|
-
Platform: UNKNOWN
|
12
|
-
Classifier: License :: OSI Approved :: MIT License
|
13
|
-
Classifier: Programming Language :: Python
|
14
|
-
Classifier: Programming Language :: Python :: 3
|
15
|
-
Requires-Python: >=3.6
|
16
|
-
Description-Content-Type: text/markdown
|
17
|
-
Requires-Dist: torch (>=1.2.0)
|
18
|
-
Requires-Dist: numpy (>=1.19.0)
|
19
|
-
Provides-Extra: plot
|
20
|
-
Requires-Dist: matplotlib (>=3.0) ; extra == 'plot'
|
21
|
-
Provides-Extra: rest
|
22
|
-
Requires-Dist: pytest (>=6.2.5) ; extra == 'rest'
|
23
|
-
Requires-Dist: line-profiler (>=3.5) ; extra == 'rest'
|
24
|
-
|
25
|
-
# kevin_toolbox
|
26
|
-
|
27
|
-
一个通用的工具代码包集合
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
环境要求
|
32
|
-
|
33
|
-
```shell
|
34
|
-
numpy>=1.19
|
35
|
-
pytorch>=1.2
|
36
|
-
```
|
37
|
-
|
38
|
-
安装方法:
|
39
|
-
|
40
|
-
```shell
|
41
|
-
pip install kevin-toolbox --no-dependencies
|
42
|
-
```
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
[项目地址 Repo](https://github.com/cantbeblank96/kevin_toolbox)
|
47
|
-
|
48
|
-
[使用指南 User_Guide](./notes/User_Guide.md)
|
49
|
-
|
50
|
-
[免责声明 Disclaimer](./notes/Disclaimer.md)
|
51
|
-
|
52
|
-
[版本更新记录](./notes/Release_Record.md):
|
53
|
-
|
54
|
-
- v 1.4.7 (2025-02-19)【new feature】【bug fix】【incompatible change】
|
55
|
-
|
56
|
-
- data_flow.file
|
57
|
-
- 【new feature】【incompatible change】modify json_.write(),支持使用参数 output_format 设置更复杂的输出格式。同时废弃原来的sort_keys参数。
|
58
|
-
- output_format 支持以下输入:
|
59
|
-
- "pretty_printed": 通过添加大量的空格和换行符来格式化输出,使输出更易读
|
60
|
-
- "minified": 删除所有空格和换行符,使输出更紧凑
|
61
|
-
- `<dict/tuple>`: 更加细致的格式设定,比如 `{"indent": 2, ensure_ascii=True}`,如果需要基于已有格式进行微调可以使用以下方式:`("pretty_printed", {"indent": 2, ensure_ascii=True})`
|
62
|
-
- computer_science.algorithm.parallel_and_concurrent
|
63
|
-
- 【bug fix】【incompatible change】fix bug in multi_thread_execute(),修正了参数timeout无法对每个任务起效的bug,将参数thread_nums更名为worker_nums。
|
64
|
-
- 【new feature】add multi_process_execute(),用于多进程执行任务。同样支持timeout设定和进度条显示。
|
65
|
-
- patches.for_matplotlib.common_charts
|
66
|
-
- modify plot_lines(),添加了 x_ticklabels_name 参数用于自定义x轴的坐标值
|
67
|
-
- 以上修改,均已添加了对应的测试用例。
|
68
|
-
|
69
|
-
|
/kevin_toolbox/{developing → computer_science/algorithm}/decorator/restore_original_work_path.py
RENAMED
File without changes
|
File without changes
|
File without changes
|