kevin-toolbox-dev 1.4.11__py3-none-any.whl → 1.4.13__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/computer_science/algorithm/pareto_front/get_pareto_points_idx.py +2 -0
- kevin_toolbox/computer_science/algorithm/redirector/redirectable_sequence_fetcher.py +3 -3
- kevin_toolbox/computer_science/algorithm/sampler/__init__.py +1 -0
- kevin_toolbox/computer_science/algorithm/sampler/recent_sampler.py +128 -0
- kevin_toolbox/computer_science/algorithm/sampler/reservoir_sampler.py +2 -2
- kevin_toolbox/computer_science/algorithm/statistician/__init__.py +2 -0
- kevin_toolbox/computer_science/algorithm/statistician/average_accumulator.py +1 -1
- kevin_toolbox/computer_science/algorithm/statistician/exponential_moving_average.py +1 -1
- kevin_toolbox/computer_science/algorithm/statistician/maximum_accumulator.py +80 -0
- kevin_toolbox/computer_science/algorithm/statistician/minimum_accumulator.py +34 -0
- kevin_toolbox/data_flow/file/markdown/table/find_tables.py +38 -12
- kevin_toolbox/developing/file_management/__init__.py +1 -0
- kevin_toolbox/developing/file_management/file_feature_extractor.py +263 -0
- kevin_toolbox/nested_dict_list/serializer/read.py +4 -1
- kevin_toolbox/patches/for_matplotlib/common_charts/__init__.py +5 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_2d_matrix.py +134 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_3d.py +198 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_bars.py +7 -4
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_confusion_matrix.py +11 -4
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_contour.py +157 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_distribution.py +19 -8
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_lines.py +72 -21
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_mean_std_lines.py +135 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_scatters.py +9 -3
- kevin_toolbox/patches/for_matplotlib/common_charts/plot_scatters_matrix.py +9 -3
- kevin_toolbox/patches/for_matplotlib/common_charts/utils/__init__.py +1 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/utils/log_scaling.py +69 -0
- kevin_toolbox/patches/for_matplotlib/common_charts/utils/save_plot.py +19 -3
- kevin_toolbox/patches/for_matplotlib/common_charts/utils/save_record.py +1 -1
- kevin_toolbox/patches/for_numpy/__init__.py +1 -0
- kevin_toolbox/patches/for_numpy/linalg/softmax.py +4 -1
- kevin_toolbox_dev-1.4.13.dist-info/METADATA +77 -0
- {kevin_toolbox_dev-1.4.11.dist-info → kevin_toolbox_dev-1.4.13.dist-info}/RECORD +36 -26
- kevin_toolbox_dev-1.4.11.dist-info/METADATA +0 -67
- {kevin_toolbox_dev-1.4.11.dist-info → kevin_toolbox_dev-1.4.13.dist-info}/WHEEL +0 -0
- {kevin_toolbox_dev-1.4.11.dist-info → kevin_toolbox_dev-1.4.13.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
kevin_toolbox/__init__.py,sha256=
|
1
|
+
kevin_toolbox/__init__.py,sha256=VXeXX9QGHxr-cBWYWC39YDDc1xMg3uAj-i2lCQLQ1HI,411
|
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=xKWoGhpgrgWbU1newrK7PKIoVsSSOyvcAHUP3cbAd3I,108
|
@@ -48,25 +48,28 @@ kevin_toolbox/computer_science/algorithm/parallel_and_concurrent/utils/__init__.
|
|
48
48
|
kevin_toolbox/computer_science/algorithm/parallel_and_concurrent/utils/wrapper_with_timeout_1.py,sha256=8vO26zBOq12BXJc0wudyGeWObIAfDkxWU-pg5VOOZMA,2165
|
49
49
|
kevin_toolbox/computer_science/algorithm/parallel_and_concurrent/utils/wrapper_with_timeout_2.py,sha256=LcDBFjPY77tyZGjk2g3iCEj7bNeQS4usaqgoUQAZxSY,2412
|
50
50
|
kevin_toolbox/computer_science/algorithm/pareto_front/__init__.py,sha256=F1uD0ZT2Ukb708_Eay96SEhaDfCq9YEheJRust33P6w,111
|
51
|
-
kevin_toolbox/computer_science/algorithm/pareto_front/get_pareto_points_idx.py,sha256=
|
51
|
+
kevin_toolbox/computer_science/algorithm/pareto_front/get_pareto_points_idx.py,sha256=e92gRDgYxP2tO8yKiGWFfYWkY8w5ioWRHMfk_Fu4s1U,3139
|
52
52
|
kevin_toolbox/computer_science/algorithm/pareto_front/optimum_picker.py,sha256=wnYN2s9r2g1z5wF0FvFLawRYITUJbMXbBs4TPsdvhlE,9923
|
53
53
|
kevin_toolbox/computer_science/algorithm/redirector/__init__.py,sha256=eeHQnV6qY5_2O3Xhn7Dl4YHaSI5HnAi9Nuyq65qgoow,73
|
54
|
-
kevin_toolbox/computer_science/algorithm/redirector/redirectable_sequence_fetcher.py,sha256=
|
54
|
+
kevin_toolbox/computer_science/algorithm/redirector/redirectable_sequence_fetcher.py,sha256=85aPxWN4P7IpquIlTHfXfI79t9GRJaRtSc94KQOdpME,12457
|
55
55
|
kevin_toolbox/computer_science/algorithm/registration/__init__.py,sha256=w9CHaFB1rIfIAiKrSXePwdhjN8kaRrxxdBwjJ7S2aWk,152
|
56
56
|
kevin_toolbox/computer_science/algorithm/registration/registry.py,sha256=X1I04ZO2lTE36TjvJ1tcepl7xXD0OJWCA82RDsoENvA,17734
|
57
57
|
kevin_toolbox/computer_science/algorithm/registration/serializer_for_registry_execution.py,sha256=a-bsb1JCc0rfHhz1mCua-5NWYu-lx4kPY9Ubp5MKUVU,3156
|
58
|
-
kevin_toolbox/computer_science/algorithm/sampler/__init__.py,sha256=
|
59
|
-
kevin_toolbox/computer_science/algorithm/sampler/
|
58
|
+
kevin_toolbox/computer_science/algorithm/sampler/__init__.py,sha256=CI2XpdgXHpNXEm6bX8hfJr2gVdJfwivoGXqw4QNmuGw,92
|
59
|
+
kevin_toolbox/computer_science/algorithm/sampler/recent_sampler.py,sha256=sVNLON9DtfbysMry5TNiU26mDA6P6eqcipwEpbRzc3Q,3849
|
60
|
+
kevin_toolbox/computer_science/algorithm/sampler/reservoir_sampler.py,sha256=8U7-E4TFphcsaYPQHpcP0kALHjsK0ccXgZAIdUCj4_s,3375
|
60
61
|
kevin_toolbox/computer_science/algorithm/scheduler/__init__.py,sha256=ENzZsNaMu6ISilTxeE3_EP_L0dNi8SI7IYdTdxic2nw,76
|
61
62
|
kevin_toolbox/computer_science/algorithm/scheduler/strategy_manager.py,sha256=yLh2GBEsedJhqvB90zEmAOdZ8IF7nn1r9lSE95BbnEQ,12194
|
62
63
|
kevin_toolbox/computer_science/algorithm/scheduler/trigger.py,sha256=YlqTX2TE44BwcQI0jfvcBCJhouhdAYuhwu2QJhuBWP0,4470
|
63
64
|
kevin_toolbox/computer_science/algorithm/search/__init__.py,sha256=zja7FXLTNd2dSVzzGp1TbBp4i3TDY8S9tcJ9pqc684A,41
|
64
65
|
kevin_toolbox/computer_science/algorithm/search/binary_search.py,sha256=FcOdgxfuNews_AhPF_CoQDr2vBPqpUpifF7Fmgml1p4,1013
|
65
|
-
kevin_toolbox/computer_science/algorithm/statistician/__init__.py,sha256=
|
66
|
+
kevin_toolbox/computer_science/algorithm/statistician/__init__.py,sha256=TfCNNnR49uTMMlJgD1aqOr-xGzwa6MpFUMof7rz5K8w,326
|
66
67
|
kevin_toolbox/computer_science/algorithm/statistician/accumulator_base.py,sha256=ePUmJlt7bPCC8o4BAuUEReIe9MuQM3aS-oDzUzZ_fdU,6113
|
67
68
|
kevin_toolbox/computer_science/algorithm/statistician/accumulator_for_ndl.py,sha256=BBPuJHhMI7m6-qP3EDB1Z2dlCg4a_Fev7WQ5zFMPuuE,2275
|
68
|
-
kevin_toolbox/computer_science/algorithm/statistician/average_accumulator.py,sha256=
|
69
|
-
kevin_toolbox/computer_science/algorithm/statistician/exponential_moving_average.py,sha256=
|
69
|
+
kevin_toolbox/computer_science/algorithm/statistician/average_accumulator.py,sha256=UouowXRdbAznCJOg0m-_wrhels8hu0PrQp2I_yd8nbg,2871
|
70
|
+
kevin_toolbox/computer_science/algorithm/statistician/exponential_moving_average.py,sha256=qAz0FBCkUMQ6dy1Fb-8F0R_zgZ8VIkLpVXySsS6SQao,5044
|
71
|
+
kevin_toolbox/computer_science/algorithm/statistician/maximum_accumulator.py,sha256=el7LqKNnUszsYaT7qFEsZZOctdjJJR7Gt3ZxAvHF3us,2847
|
72
|
+
kevin_toolbox/computer_science/algorithm/statistician/minimum_accumulator.py,sha256=vARPcGrBBI5WyL2icrmJCmbbgrqKjZiQl5PYLdFEVDc,867
|
70
73
|
kevin_toolbox/computer_science/algorithm/statistician/init_var/__init__.py,sha256=LrrLKilP-LqkNeLEqClZN4wMl9TvEaDktgbmw7CN1mY,121
|
71
74
|
kevin_toolbox/computer_science/algorithm/statistician/init_var/init_by_data_format.py,sha256=vCLguGS7het-gwPZ5uR2KDxnHV4gPaNbzJflocLbmLQ,769
|
72
75
|
kevin_toolbox/computer_science/algorithm/statistician/init_var/init_by_like.py,sha256=8QfvltiNDqZUYiNW6Ebt0UIuYvyqhSpsCYn99T2q70c,572
|
@@ -119,7 +122,7 @@ kevin_toolbox/data_flow/file/markdown/link/find_links.py,sha256=bj3vCVnduEyaitp8
|
|
119
122
|
kevin_toolbox/data_flow/file/markdown/link/generate_link.py,sha256=obuHoh8VEPeddHetsJWuNtqrtaHesYPSd51FLPjAH4o,394
|
120
123
|
kevin_toolbox/data_flow/file/markdown/table/__init__.py,sha256=kLWziykXpOKwebDZan3vrXjICVHJMn8Jt6FSWm9Oz9E,258
|
121
124
|
kevin_toolbox/data_flow/file/markdown/table/convert_format.py,sha256=JT7AZsQi3h5XZsz6PAvAQKbWIkpLsjIyAFv6Iiwt5H8,2652
|
122
|
-
kevin_toolbox/data_flow/file/markdown/table/find_tables.py,sha256=
|
125
|
+
kevin_toolbox/data_flow/file/markdown/table/find_tables.py,sha256=1XEDXUgugE89H0_bFlaBmiVySatdB44TE7B_f7babVo,4574
|
123
126
|
kevin_toolbox/data_flow/file/markdown/table/generate_table.py,sha256=jFd1OT5Er65Mg5x6KTEQ4FD1HnlcurpZNYNaAg_E-NQ,5879
|
124
127
|
kevin_toolbox/data_flow/file/markdown/table/get_format.py,sha256=MZIrWLxLDRpQRHKWUzzzagIYvyFMRpTqn8p32BBLaM8,749
|
125
128
|
kevin_toolbox/data_flow/file/markdown/table/padding_misaligned_values.py,sha256=kbme0KXCPwjIoJVd9wIs7l0q_kicu3PzZjtcwWecH9E,712
|
@@ -143,6 +146,8 @@ kevin_toolbox/developing/design_pattern/producer_consumer/producer.py,sha256=47D
|
|
143
146
|
kevin_toolbox/developing/design_pattern/producer_consumer/sender.py,sha256=sn5WkJS3VS-nYbOO9emB8MMfGYHUKM6voj94KM2QIHs,51
|
144
147
|
kevin_toolbox/developing/design_pattern/singleton/__init__.py,sha256=2PYWz9DDkR7a6vYb_4i3qzBsoskubozMwVf7IGUOz6M,49
|
145
148
|
kevin_toolbox/developing/design_pattern/singleton/singleton_for_uid.py,sha256=AlerlDTfa0ZN3XiV5YmTI_OKR_F3RyeNuafYdHwCvfo,3803
|
149
|
+
kevin_toolbox/developing/file_management/__init__.py,sha256=wsm_h2XvaupiUPLRuFhDbEtPImwIykroXygtpNZDVXM,59
|
150
|
+
kevin_toolbox/developing/file_management/file_feature_extractor.py,sha256=NufF3UtnePKhUquVQE4nwC0PmDVrwQFORsP_FaOujds,12808
|
146
151
|
kevin_toolbox/developing/numerical_characteristics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
152
|
kevin_toolbox/developing/numerical_characteristics/iou.py,sha256=XfN8LN3IY9C5HqbXi4XPnp1JX6K8_7-_rAjC-nVB-NI,2953
|
148
153
|
kevin_toolbox/developing/temperate/__init__.py,sha256=9OdEkRFxCOtAf_QRUeNo6tH3t2cPGH_aLLl7lypK24s,630
|
@@ -263,7 +268,7 @@ kevin_toolbox/nested_dict_list/name_handler/escape_node.py,sha256=niT9MxmsyrSZYh
|
|
263
268
|
kevin_toolbox/nested_dict_list/name_handler/parse_name.py,sha256=vUlAXPocpVSxtb3EnRi7U5K40Tz9plFG-_sbwLfYiy4,2280
|
264
269
|
kevin_toolbox/nested_dict_list/serializer/__init__.py,sha256=79dd9l-mNz0bycFKjNm7YsfWPR-JsVx9NoG_Ofqy-HQ,153
|
265
270
|
kevin_toolbox/nested_dict_list/serializer/enum_variable.py,sha256=RWPydtXI4adOJYGo_k5CWHSL0Odzj_bsahb24p1ranY,847
|
266
|
-
kevin_toolbox/nested_dict_list/serializer/read.py,sha256=
|
271
|
+
kevin_toolbox/nested_dict_list/serializer/read.py,sha256=TJMuRv5cUeo47_bj9cioeunNMJ6Bt2En28iwiR42JjY,3495
|
267
272
|
kevin_toolbox/nested_dict_list/serializer/saved_node_name_builder.py,sha256=qsD-rmDmVaKZP4owN3Wm3QY2Ksi71XlYETqw4VmIsSU,1011
|
268
273
|
kevin_toolbox/nested_dict_list/serializer/variable.py,sha256=dDOhaj_GpIpiqKRvIrYzMejo0Oqc-Ie2x569vcl3XrA,657
|
269
274
|
kevin_toolbox/nested_dict_list/serializer/write.py,sha256=7WwnT7hO7Rvs3ut4wdS17LgMv9jQOy2Bo4_QpzEi-Dw,24122
|
@@ -304,24 +309,29 @@ kevin_toolbox/patches/for_matplotlib/color/color_format.py,sha256=ADwKfPmryxOuN6
|
|
304
309
|
kevin_toolbox/patches/for_matplotlib/color/convert_format.py,sha256=lTnKgXgCLvKPJc8L6xq_ABmTh5MeMb6vYIVj-lSkmVc,3988
|
305
310
|
kevin_toolbox/patches/for_matplotlib/color/generate_color_list.py,sha256=TZm-TkOuJbFzJ0_RklliQ9SHjMUhJvjbu7DUJGtgvw0,1993
|
306
311
|
kevin_toolbox/patches/for_matplotlib/color/get_format.py,sha256=l_vX8DUsWHNzLwveuF60TLcbQ_P7PvVt1yH_7FjElDs,312
|
307
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/__init__.py,sha256=
|
308
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/
|
309
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/
|
310
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/
|
312
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/__init__.py,sha256=Xd91dg4kdpKDDwpC_hy-3p-k1LdR3RlNpM8AGZAtx8U,2233
|
313
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_2d_matrix.py,sha256=naJxC-2TwsU_VqjEeCwzWO9QMm9BXyX4Pcy73U8BRNQ,6477
|
314
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_3d.py,sha256=4vvWeEzi-AwyRQjqT-4Xt5ZwNPmMMBPjkX-RP1xktZI,9950
|
315
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_bars.py,sha256=D5OWux7NT5aN4z2cZln0DulTqEJxp4Bp_LKc1XHhji8,4823
|
316
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_confusion_matrix.py,sha256=6T6MLBLrYwmnkeaT15DQeEDxr3pV7IaH3TPVnEjpzQw,6907
|
317
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_contour.py,sha256=XwI7dsKO2T_A5moWQ33l9wPKF4CZhz7-STCuKN2Imkc,8152
|
318
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_distribution.py,sha256=J5YF678tBKXwk16tfo7ez7-xiQteVvWbQnjQjh9YKeg,6484
|
311
319
|
kevin_toolbox/patches/for_matplotlib/common_charts/plot_from_record.py,sha256=LJ5bySLIP8Q6-lI3ibk7rRsgdP4Y6oKIQYuo5-wOw4M,756
|
312
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/plot_lines.py,sha256=
|
313
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/
|
314
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/
|
315
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/
|
320
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_lines.py,sha256=CIi0XoONQQ3w8DxrA3zsSTagbZZkZoWlfcvDxNEyoKY,7036
|
321
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_mean_std_lines.py,sha256=guU7WhxZ88Wq4OcYA8AoSVnj6oxSSSXv1vsHShhk0zQ,5837
|
322
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_scatters.py,sha256=RSjG3iUtO6F-k6P6wzLD0D1vTj4wp4s9XSngh_6BM0w,5166
|
323
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/plot_scatters_matrix.py,sha256=jAE6G7RcaucMjU3TknAK_5fXr-bodovXOpi6y-4L-oQ,5295
|
324
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/utils/__init__.py,sha256=Ku8209KTQcodwcHaWx08gp1W_msFscYEmd6ssqfyouc,151
|
316
325
|
kevin_toolbox/patches/for_matplotlib/common_charts/utils/get_output_path.py,sha256=lHd5unN5nsu7Msqnct5cSn_6Ib3uZUaExpI7qvndE7U,614
|
317
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/utils/
|
318
|
-
kevin_toolbox/patches/for_matplotlib/common_charts/utils/
|
319
|
-
kevin_toolbox/patches/
|
326
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/utils/log_scaling.py,sha256=Cl1566POUc2zLtx8IhqkPaJq_h7okPYSljFds6ZTMjo,2422
|
327
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/utils/save_plot.py,sha256=6MEytbsnyx91t34ZEvjP8bvqzjLYO8uVjJRUwtCD59g,767
|
328
|
+
kevin_toolbox/patches/for_matplotlib/common_charts/utils/save_record.py,sha256=R6eQoLlhtSchmQ_T6_fwPGRjN0GqfgivtulkXwK6wpY,1333
|
329
|
+
kevin_toolbox/patches/for_numpy/__init__.py,sha256=n-Bpps1t3YvmF8C_AE43G5ozf0a_LvC6m2vBlKHY940,42
|
320
330
|
kevin_toolbox/patches/for_numpy/linalg/__init__.py,sha256=TH-M0Orrakyf9S9A8FiDf3zLHY24gP2SGGTuNmLhDP4,128
|
321
331
|
kevin_toolbox/patches/for_numpy/linalg/cos_similar.py,sha256=bFkfDwrW3maXq5i9ZABidKfg8ZdEdXfFgNzW_uygrM4,423
|
322
332
|
kevin_toolbox/patches/for_numpy/linalg/entropy.py,sha256=PSdwkzySvWF4h4Xi27w2kvLq5WAeM_ysLstPFNBMoX8,1080
|
323
333
|
kevin_toolbox/patches/for_numpy/linalg/normalize.py,sha256=7qstt__rwUkk3jRJOQoneBp9YdfhYQtWfh6PZoWbvaA,625
|
324
|
-
kevin_toolbox/patches/for_numpy/linalg/softmax.py,sha256=
|
334
|
+
kevin_toolbox/patches/for_numpy/linalg/softmax.py,sha256=zNTBfmgfdWTdBg6nEW_NtcXWTT_CGuzv2UI3bZT1xHc,2359
|
325
335
|
kevin_toolbox/patches/for_numpy/random/__init__.py,sha256=SDFF7yiUrkSHE9f9quALFQd6bCF2Mr1Q0vznl7QBhyo,231
|
326
336
|
kevin_toolbox/patches/for_numpy/random/get_rng.py,sha256=QblrMKg4OFVy-C4A6rQ-zq26uDKzhMifKTFUlyW3Ksw,1999
|
327
337
|
kevin_toolbox/patches/for_numpy/random/get_rng_state.py,sha256=wceMn3LXx7Fbe2S5f5p6kkMEpNb6GYq3Y-DG9amuL5w,113
|
@@ -378,7 +388,7 @@ kevin_toolbox/patches/for_torch/nn/__init__.py,sha256=aJs3RMqRzQmd8KKDmQW9FxwCqS
|
|
378
388
|
kevin_toolbox/patches/for_torch/nn/lambda_layer.py,sha256=KUuLiX_Dr4bvRmpAaCW5QTDWDcnMPRnw0jg4NNXTFhM,223
|
379
389
|
kevin_toolbox/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
380
390
|
kevin_toolbox/utils/variable.py,sha256=PxUmp9w4CKKcKHjgdVNF_Iaw5gwPPOd4aY_Oe5F9U1M,133
|
381
|
-
kevin_toolbox_dev-1.4.
|
382
|
-
kevin_toolbox_dev-1.4.
|
383
|
-
kevin_toolbox_dev-1.4.
|
384
|
-
kevin_toolbox_dev-1.4.
|
391
|
+
kevin_toolbox_dev-1.4.13.dist-info/METADATA,sha256=TEOkzjETEhJed-welvCsgdWKGNGth__d19oN-Iy-V9A,2926
|
392
|
+
kevin_toolbox_dev-1.4.13.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
393
|
+
kevin_toolbox_dev-1.4.13.dist-info/top_level.txt,sha256=S5TeRGF-PwlhsaUEPTI-f2vWrpLmh3axpyI6v-Fi75o,14
|
394
|
+
kevin_toolbox_dev-1.4.13.dist-info/RECORD,,
|
@@ -1,67 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: kevin-toolbox-dev
|
3
|
-
Version: 1.4.11
|
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.11 (2025-04-16)【bug fix】
|
55
|
-
|
56
|
-
- nested_dict_list
|
57
|
-
- 【bug fix】fix bug in value_parser.replace_identical_with_reference()
|
58
|
-
- bug 描述:该函数的 _forward 中是通过 get_nodes 来获取各层节点,并记录节点的 id 和 level,这就导致某些节点由于其下具有不同长度的到叶节点的路径,因此节点会同时属于多个 level,最终导致其在 id_to_height_s 中被记录为有多个高度,这进一步导致其无法通过后面“具有相同 id 的节点所处的高度应该相同”的检验条件。
|
59
|
-
- 解决:
|
60
|
-
- 修复了 replace_identical_with_reference() 中的 _forward 部分,仅记录每个节点的最大高度。
|
61
|
-
- 去除了“具有相同 id 的节点所处的高度应该相同”的检验条件。
|
62
|
-
- computer_science.algorithm.redirector
|
63
|
-
- 【bug fix】fix bug in Redirectable_Sequence_Fetcher,将 _randomly_idx_redirector 中的 rng.choices 改为 rng.choice
|
64
|
-
- 添加了对应的测试用例。
|
65
|
-
|
66
|
-
|
67
|
-
|
File without changes
|
File without changes
|