mlpack 4.5.1__pp38-pypy38_pp73-win_amd64.whl → 4.6.2__pp38-pypy38_pp73-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (243) hide show
  1. mlpack/__init__.py +7 -7
  2. mlpack/adaboost_classify.pypy38-pp73-win_amd64.pyd +0 -0
  3. mlpack/adaboost_probabilities.pypy38-pp73-win_amd64.pyd +0 -0
  4. mlpack/adaboost_train.pypy38-pp73-win_amd64.pyd +0 -0
  5. mlpack/approx_kfn.pypy38-pp73-win_amd64.pyd +0 -0
  6. mlpack/arma_numpy.pypy38-pp73-win_amd64.pyd +0 -0
  7. mlpack/bayesian_linear_regression.pypy38-pp73-win_amd64.pyd +0 -0
  8. mlpack/cf.pypy38-pp73-win_amd64.pyd +0 -0
  9. mlpack/dbscan.pypy38-pp73-win_amd64.pyd +0 -0
  10. mlpack/decision_tree.pypy38-pp73-win_amd64.pyd +0 -0
  11. mlpack/det.pypy38-pp73-win_amd64.pyd +0 -0
  12. mlpack/emst.pypy38-pp73-win_amd64.pyd +0 -0
  13. mlpack/fastmks.pypy38-pp73-win_amd64.pyd +0 -0
  14. mlpack/gmm_generate.pypy38-pp73-win_amd64.pyd +0 -0
  15. mlpack/gmm_probability.pypy38-pp73-win_amd64.pyd +0 -0
  16. mlpack/gmm_train.pypy38-pp73-win_amd64.pyd +0 -0
  17. mlpack/hmm_generate.pypy38-pp73-win_amd64.pyd +0 -0
  18. mlpack/hmm_loglik.pypy38-pp73-win_amd64.pyd +0 -0
  19. mlpack/hmm_train.pypy38-pp73-win_amd64.pyd +0 -0
  20. mlpack/hmm_viterbi.pypy38-pp73-win_amd64.pyd +0 -0
  21. mlpack/hoeffding_tree.pypy38-pp73-win_amd64.pyd +0 -0
  22. mlpack/image_converter.pypy38-pp73-win_amd64.pyd +0 -0
  23. mlpack/include/mlpack/base.hpp +9 -3
  24. mlpack/include/mlpack/config.hpp +14 -51
  25. mlpack/include/mlpack/core/cv/k_fold_cv.hpp +21 -12
  26. mlpack/include/mlpack/core/cv/k_fold_cv_impl.hpp +49 -39
  27. mlpack/include/mlpack/core/data/data.hpp +6 -1
  28. mlpack/include/mlpack/core/data/data_options.hpp +219 -0
  29. mlpack/include/mlpack/core/data/detect_file_type.hpp +6 -8
  30. mlpack/include/mlpack/core/data/detect_file_type_impl.hpp +30 -76
  31. mlpack/include/mlpack/core/data/image_info_impl.hpp +0 -4
  32. mlpack/include/mlpack/core/data/image_resize_crop.hpp +216 -0
  33. mlpack/include/mlpack/core/data/load.hpp +41 -3
  34. mlpack/include/mlpack/core/data/load_arff.hpp +4 -3
  35. mlpack/include/mlpack/core/data/load_arff_impl.hpp +68 -20
  36. mlpack/include/mlpack/core/data/{load_csv.hpp → load_categorical.hpp} +44 -80
  37. mlpack/include/mlpack/core/data/{load_categorical_csv.hpp → load_categorical_impl.hpp} +86 -46
  38. mlpack/include/mlpack/core/data/load_image.hpp +2 -26
  39. mlpack/include/mlpack/core/data/load_image_impl.hpp +0 -25
  40. mlpack/include/mlpack/core/data/load_impl.hpp +264 -289
  41. mlpack/include/mlpack/core/data/load_model_impl.hpp +2 -1
  42. mlpack/include/mlpack/core/data/load_numeric.hpp +130 -0
  43. mlpack/include/mlpack/core/data/load_vec_impl.hpp +14 -10
  44. mlpack/include/mlpack/core/data/map_policies/missing_policy.hpp +3 -2
  45. mlpack/include/mlpack/core/data/matrix_options.hpp +172 -0
  46. mlpack/include/mlpack/core/data/save.hpp +32 -2
  47. mlpack/include/mlpack/core/data/save_image.hpp +2 -24
  48. mlpack/include/mlpack/core/data/save_image_impl.hpp +0 -25
  49. mlpack/include/mlpack/core/data/save_impl.hpp +136 -167
  50. mlpack/include/mlpack/core/data/split_data.hpp +130 -124
  51. mlpack/include/mlpack/core/data/string_algorithms.hpp +17 -78
  52. mlpack/include/mlpack/core/data/text_options.hpp +244 -0
  53. mlpack/include/mlpack/core/data/types.hpp +3 -4
  54. mlpack/include/mlpack/core/data/utilities.hpp +158 -0
  55. mlpack/include/mlpack/core/math/ccov.hpp +1 -0
  56. mlpack/include/mlpack/core/math/ccov_impl.hpp +4 -5
  57. mlpack/include/mlpack/core/math/make_alias.hpp +98 -3
  58. mlpack/include/mlpack/core/math/random.hpp +3 -1
  59. mlpack/include/mlpack/core/math/shuffle_data.hpp +68 -0
  60. mlpack/include/mlpack/core/metrics/bleu_impl.hpp +1 -1
  61. mlpack/include/mlpack/core/stb/bundled/stb_image.h +7988 -0
  62. mlpack/include/mlpack/core/stb/bundled/stb_image_resize2.h +10601 -0
  63. mlpack/include/mlpack/core/stb/bundled/stb_image_write.h +1724 -0
  64. mlpack/include/mlpack/core/stb/stb.hpp +85 -0
  65. mlpack/include/mlpack/core/tree/address.hpp +4 -6
  66. mlpack/include/mlpack/core/tree/binary_space_tree/traits.hpp +36 -178
  67. mlpack/include/mlpack/core/tree/cellbound.hpp +2 -2
  68. mlpack/include/mlpack/core/tree/cover_tree/cover_tree.hpp +16 -22
  69. mlpack/include/mlpack/core/tree/hrectbound_impl.hpp +15 -1
  70. mlpack/include/mlpack/core/tree/octree/octree.hpp +22 -23
  71. mlpack/include/mlpack/core/tree/octree/octree_impl.hpp +30 -30
  72. mlpack/include/mlpack/core/tree/rectangle_tree/discrete_hilbert_value.hpp +2 -3
  73. mlpack/include/mlpack/core/tree/rectangle_tree/discrete_hilbert_value_impl.hpp +4 -4
  74. mlpack/include/mlpack/core/tree/rectangle_tree/hilbert_r_tree_auxiliary_information_impl.hpp +4 -4
  75. mlpack/include/mlpack/core/tree/rectangle_tree/hilbert_r_tree_descent_heuristic_impl.hpp +1 -1
  76. mlpack/include/mlpack/core/tree/rectangle_tree/r_plus_plus_tree_auxiliary_information.hpp +12 -0
  77. mlpack/include/mlpack/core/tree/rectangle_tree/r_plus_plus_tree_auxiliary_information_impl.hpp +26 -0
  78. mlpack/include/mlpack/core/tree/rectangle_tree/r_plus_plus_tree_descent_heuristic.hpp +2 -6
  79. mlpack/include/mlpack/core/tree/rectangle_tree/r_plus_tree_descent_heuristic.hpp +3 -7
  80. mlpack/include/mlpack/core/tree/rectangle_tree/r_plus_tree_split.hpp +11 -2
  81. mlpack/include/mlpack/core/tree/rectangle_tree/r_plus_tree_split_impl.hpp +18 -16
  82. mlpack/include/mlpack/core/tree/rectangle_tree/r_star_tree_descent_heuristic_impl.hpp +2 -2
  83. mlpack/include/mlpack/core/tree/rectangle_tree/r_star_tree_split.hpp +2 -2
  84. mlpack/include/mlpack/core/tree/rectangle_tree/rectangle_tree.hpp +65 -43
  85. mlpack/include/mlpack/core/tree/rectangle_tree/rectangle_tree_impl.hpp +114 -59
  86. mlpack/include/mlpack/core/tree/rectangle_tree/traits.hpp +2 -2
  87. mlpack/include/mlpack/core/tree/rectangle_tree/typedef.hpp +20 -10
  88. mlpack/include/mlpack/core/tree/rectangle_tree.hpp +1 -1
  89. mlpack/include/mlpack/core/tree/space_split/hyperplane.hpp +20 -14
  90. mlpack/include/mlpack/core/tree/space_split/mean_space_split_impl.hpp +2 -2
  91. mlpack/include/mlpack/core/tree/space_split/midpoint_space_split_impl.hpp +1 -1
  92. mlpack/include/mlpack/core/tree/space_split/projection_vector.hpp +6 -5
  93. mlpack/include/mlpack/core/tree/space_split/space_split.hpp +4 -4
  94. mlpack/include/mlpack/core/tree/space_split/space_split_impl.hpp +18 -12
  95. mlpack/include/mlpack/core/tree/spill_tree/is_spill_tree.hpp +1 -1
  96. mlpack/include/mlpack/core/tree/spill_tree/spill_dual_tree_traverser.hpp +2 -1
  97. mlpack/include/mlpack/core/tree/spill_tree/spill_dual_tree_traverser_impl.hpp +4 -2
  98. mlpack/include/mlpack/core/tree/spill_tree/spill_single_tree_traverser.hpp +2 -1
  99. mlpack/include/mlpack/core/tree/spill_tree/spill_single_tree_traverser_impl.hpp +4 -2
  100. mlpack/include/mlpack/core/tree/spill_tree/spill_tree.hpp +13 -16
  101. mlpack/include/mlpack/core/tree/spill_tree/spill_tree_impl.hpp +78 -51
  102. mlpack/include/mlpack/core/tree/spill_tree/traits.hpp +2 -1
  103. mlpack/include/mlpack/core/tree/spill_tree/typedef.hpp +12 -4
  104. mlpack/include/mlpack/core/util/arma_traits.hpp +117 -11
  105. mlpack/include/mlpack/core/util/distr_param.hpp +113 -0
  106. mlpack/include/mlpack/core/util/gitversion.hpp +1 -1
  107. mlpack/include/mlpack/core/util/io.hpp +4 -0
  108. mlpack/include/mlpack/core/util/io_impl.hpp +14 -0
  109. mlpack/include/mlpack/core/util/log.hpp +2 -1
  110. mlpack/include/mlpack/core/util/sfinae_utility.hpp +24 -2
  111. mlpack/include/mlpack/core/util/timers.hpp +4 -0
  112. mlpack/include/mlpack/core/util/timers_impl.hpp +12 -0
  113. mlpack/include/mlpack/core/util/using.hpp +41 -33
  114. mlpack/include/mlpack/core/util/version.hpp +2 -2
  115. mlpack/include/mlpack/core.hpp +2 -0
  116. mlpack/include/mlpack/methods/CMakeLists.txt +1 -5
  117. mlpack/include/mlpack/methods/adaboost/adaboost_impl.hpp +0 -1
  118. mlpack/include/mlpack/methods/amf/init_rules/no_init.hpp +1 -1
  119. mlpack/include/mlpack/methods/amf/update_rules/svd_batch_learning.hpp +0 -2
  120. mlpack/include/mlpack/methods/ann/augmented/tasks/add_impl.hpp +1 -1
  121. mlpack/include/mlpack/methods/ann/augmented/tasks/copy_impl.hpp +1 -1
  122. mlpack/include/mlpack/methods/ann/augmented/tasks/sort_impl.hpp +1 -1
  123. mlpack/include/mlpack/methods/ann/dists/bernoulli_distribution_impl.hpp +1 -2
  124. mlpack/include/mlpack/methods/ann/ffn_impl.hpp +7 -6
  125. mlpack/include/mlpack/methods/ann/init_rules/network_init.hpp +5 -5
  126. mlpack/include/mlpack/methods/ann/layer/batch_norm.hpp +3 -2
  127. mlpack/include/mlpack/methods/ann/layer/batch_norm_impl.hpp +19 -20
  128. mlpack/include/mlpack/methods/ann/layer/concat.hpp +1 -0
  129. mlpack/include/mlpack/methods/ann/layer/concat_impl.hpp +6 -7
  130. mlpack/include/mlpack/methods/ann/layer/convolution_impl.hpp +3 -3
  131. mlpack/include/mlpack/methods/ann/layer/grouped_convolution_impl.hpp +3 -3
  132. mlpack/include/mlpack/methods/ann/layer/layer_types.hpp +1 -0
  133. mlpack/include/mlpack/methods/ann/layer/linear3d.hpp +1 -0
  134. mlpack/include/mlpack/methods/ann/layer/linear3d_impl.hpp +11 -14
  135. mlpack/include/mlpack/methods/ann/layer/linear_impl.hpp +8 -2
  136. mlpack/include/mlpack/methods/ann/layer/linear_no_bias_impl.hpp +7 -1
  137. mlpack/include/mlpack/methods/ann/layer/linear_recurrent.hpp +175 -0
  138. mlpack/include/mlpack/methods/ann/layer/linear_recurrent_impl.hpp +279 -0
  139. mlpack/include/mlpack/methods/ann/layer/lstm.hpp +167 -140
  140. mlpack/include/mlpack/methods/ann/layer/lstm_impl.hpp +363 -260
  141. mlpack/include/mlpack/methods/ann/layer/max_pooling.hpp +5 -4
  142. mlpack/include/mlpack/methods/ann/layer/max_pooling_impl.hpp +15 -14
  143. mlpack/include/mlpack/methods/ann/layer/mean_pooling.hpp +3 -2
  144. mlpack/include/mlpack/methods/ann/layer/mean_pooling_impl.hpp +14 -15
  145. mlpack/include/mlpack/methods/ann/layer/multihead_attention.hpp +6 -5
  146. mlpack/include/mlpack/methods/ann/layer/multihead_attention_impl.hpp +24 -25
  147. mlpack/include/mlpack/methods/ann/layer/nearest_interpolation.hpp +1 -0
  148. mlpack/include/mlpack/methods/ann/layer/nearest_interpolation_impl.hpp +4 -4
  149. mlpack/include/mlpack/methods/ann/layer/not_adapted/pixel_shuffle.hpp +1 -1
  150. mlpack/include/mlpack/methods/ann/layer/not_adapted/pixel_shuffle_impl.hpp +1 -1
  151. mlpack/include/mlpack/methods/ann/layer/padding.hpp +1 -0
  152. mlpack/include/mlpack/methods/ann/layer/padding_impl.hpp +12 -13
  153. mlpack/include/mlpack/methods/ann/layer/recurrent_layer.hpp +97 -36
  154. mlpack/include/mlpack/methods/ann/layer/recurrent_layer_impl.hpp +63 -15
  155. mlpack/include/mlpack/methods/ann/layer/serialization.hpp +1 -0
  156. mlpack/include/mlpack/methods/ann/loss_functions/cosine_embedding_loss_impl.hpp +5 -4
  157. mlpack/include/mlpack/methods/ann/loss_functions/empty_loss.hpp +1 -1
  158. mlpack/include/mlpack/methods/ann/loss_functions/mean_absolute_percentage_error.hpp +1 -1
  159. mlpack/include/mlpack/methods/ann/loss_functions/mean_squared_error.hpp +2 -2
  160. mlpack/include/mlpack/methods/ann/loss_functions/mean_squared_error_impl.hpp +1 -1
  161. mlpack/include/mlpack/methods/ann/loss_functions/multilabel_softmargin_loss.hpp +1 -1
  162. mlpack/include/mlpack/methods/ann/loss_functions/multilabel_softmargin_loss_impl.hpp +1 -1
  163. mlpack/include/mlpack/methods/ann/loss_functions/triplet_margin_loss.hpp +1 -1
  164. mlpack/include/mlpack/methods/ann/loss_functions/triplet_margin_loss_impl.hpp +1 -1
  165. mlpack/include/mlpack/methods/ann/rnn.hpp +113 -22
  166. mlpack/include/mlpack/methods/ann/rnn_impl.hpp +226 -145
  167. mlpack/include/mlpack/methods/bayesian_linear_regression/bayesian_linear_regression_impl.hpp +3 -8
  168. mlpack/include/mlpack/methods/decision_tree/fitness_functions/gini_gain.hpp +5 -8
  169. mlpack/include/mlpack/methods/decision_tree/fitness_functions/information_gain.hpp +5 -8
  170. mlpack/include/mlpack/methods/gmm/diagonal_gmm_impl.hpp +2 -1
  171. mlpack/include/mlpack/methods/gmm/eigenvalue_ratio_constraint.hpp +3 -3
  172. mlpack/include/mlpack/methods/gmm/gmm_impl.hpp +2 -1
  173. mlpack/include/mlpack/methods/hmm/hmm_impl.hpp +10 -5
  174. mlpack/include/mlpack/methods/hoeffding_trees/hoeffding_tree_impl.hpp +1 -1
  175. mlpack/include/mlpack/methods/kde/kde_main.cpp +2 -2
  176. mlpack/include/mlpack/methods/lmnn/lmnn.hpp +1 -1
  177. mlpack/include/mlpack/methods/lmnn/lmnn_impl.hpp +2 -2
  178. mlpack/include/mlpack/methods/lmnn/lmnn_main.cpp +2 -2
  179. mlpack/include/mlpack/methods/local_coordinate_coding/local_coordinate_coding_main.cpp +3 -3
  180. mlpack/include/mlpack/methods/lsh/lsh_main.cpp +9 -0
  181. mlpack/include/mlpack/methods/nca/nca.hpp +1 -1
  182. mlpack/include/mlpack/methods/nca/nca_impl.hpp +1 -1
  183. mlpack/include/mlpack/methods/nca/nca_main.cpp +2 -1
  184. mlpack/include/mlpack/methods/neighbor_search/kfn_main.cpp +8 -2
  185. mlpack/include/mlpack/methods/neighbor_search/knn_main.cpp +8 -2
  186. mlpack/include/mlpack/methods/nmf/nmf_main.cpp +2 -2
  187. mlpack/include/mlpack/methods/perceptron/perceptron_main.cpp +1 -1
  188. mlpack/include/mlpack/methods/radical/radical.hpp +1 -1
  189. mlpack/include/mlpack/methods/radical/radical_impl.hpp +1 -1
  190. mlpack/include/mlpack/methods/random_forest/bootstrap.hpp +219 -23
  191. mlpack/include/mlpack/methods/random_forest/random_forest.hpp +90 -42
  192. mlpack/include/mlpack/methods/random_forest/random_forest_impl.hpp +156 -118
  193. mlpack/include/mlpack/methods/range_search/range_search_main.cpp +8 -2
  194. mlpack/include/mlpack/methods/rann/krann_main.cpp +10 -4
  195. mlpack/include/mlpack/methods/reinforcement_learning/environment/acrobot.hpp +1 -1
  196. mlpack/include/mlpack/methods/reinforcement_learning/environment/cart_pole.hpp +1 -1
  197. mlpack/include/mlpack/methods/reinforcement_learning/environment/continuous_mountain_car.hpp +1 -1
  198. mlpack/include/mlpack/methods/reinforcement_learning/environment/mountain_car.hpp +1 -1
  199. mlpack/include/mlpack/methods/reinforcement_learning/environment/pendulum.hpp +1 -1
  200. mlpack/include/mlpack/methods/reinforcement_learning/replay/random_replay.hpp +1 -1
  201. mlpack/include/mlpack/methods/softmax_regression/softmax_regression_impl.hpp +1 -1
  202. mlpack/include/mlpack/methods/sparse_coding/sparse_coding_main.cpp +2 -1
  203. mlpack/kde.pypy38-pp73-win_amd64.pyd +0 -0
  204. mlpack/kernel_pca.pypy38-pp73-win_amd64.pyd +0 -0
  205. mlpack/kfn.pypy38-pp73-win_amd64.pyd +0 -0
  206. mlpack/kmeans.pypy38-pp73-win_amd64.pyd +0 -0
  207. mlpack/knn.pypy38-pp73-win_amd64.pyd +0 -0
  208. mlpack/krann.pypy38-pp73-win_amd64.pyd +0 -0
  209. mlpack/lars.pypy38-pp73-win_amd64.pyd +0 -0
  210. mlpack/linear_regression_predict.pypy38-pp73-win_amd64.pyd +0 -0
  211. mlpack/linear_regression_train.pypy38-pp73-win_amd64.pyd +0 -0
  212. mlpack/linear_svm.pypy38-pp73-win_amd64.pyd +0 -0
  213. mlpack/lmnn.pypy38-pp73-win_amd64.pyd +0 -0
  214. mlpack/local_coordinate_coding.pypy38-pp73-win_amd64.pyd +0 -0
  215. mlpack/logistic_regression.pypy38-pp73-win_amd64.pyd +0 -0
  216. mlpack/lsh.pypy38-pp73-win_amd64.pyd +0 -0
  217. mlpack/mean_shift.pypy38-pp73-win_amd64.pyd +0 -0
  218. mlpack/nbc.pypy38-pp73-win_amd64.pyd +0 -0
  219. mlpack/nca.pypy38-pp73-win_amd64.pyd +0 -0
  220. mlpack/nmf.pypy38-pp73-win_amd64.pyd +0 -0
  221. mlpack/pca.pypy38-pp73-win_amd64.pyd +0 -0
  222. mlpack/perceptron.pypy38-pp73-win_amd64.pyd +0 -0
  223. mlpack/preprocess_binarize.pypy38-pp73-win_amd64.pyd +0 -0
  224. mlpack/preprocess_describe.pypy38-pp73-win_amd64.pyd +0 -0
  225. mlpack/preprocess_json_params.py +10 -6
  226. mlpack/preprocess_one_hot_encoding.pypy38-pp73-win_amd64.pyd +0 -0
  227. mlpack/preprocess_scale.pypy38-pp73-win_amd64.pyd +0 -0
  228. mlpack/preprocess_split.pypy38-pp73-win_amd64.pyd +0 -0
  229. mlpack/radical.pypy38-pp73-win_amd64.pyd +0 -0
  230. mlpack/random_forest.pypy38-pp73-win_amd64.pyd +0 -0
  231. mlpack/softmax_regression.pypy38-pp73-win_amd64.pyd +0 -0
  232. mlpack/sparse_coding.pypy38-pp73-win_amd64.pyd +0 -0
  233. mlpack-4.6.2.dist-info/DELVEWHEEL +2 -0
  234. {mlpack-4.5.1.dist-info → mlpack-4.6.2.dist-info}/METADATA +6 -3
  235. {mlpack-4.5.1.dist-info → mlpack-4.6.2.dist-info}/RECORD +240 -228
  236. {mlpack-4.5.1.dist-info → mlpack-4.6.2.dist-info}/WHEEL +1 -1
  237. mlpack.libs/.load-order-mlpack-4.6.2 +3 -0
  238. mlpack.libs/{msvcp140-d45f2baa7e2848f92b7e1dbcce002f4b.dll → msvcp140-50208655e42969b9a5ab8a4e0186bbb9.dll} +0 -0
  239. mlpack.libs/{vcruntime140_1-d890de56b3b2d87da64381c825eb1e2a.dll → vcruntime140_1-334c6985712ed6bcb8c936e867548687.dll} +0 -0
  240. mlpack/include/mlpack/core/data/load_numeric_csv.hpp +0 -192
  241. mlpack-4.5.1.dist-info/DELVEWHEEL +0 -2
  242. mlpack.libs/.load-order-mlpack-4.5.1 +0 -3
  243. {mlpack-4.5.1.dist-info → mlpack-4.6.2.dist-info}/top_level.txt +0 -0
mlpack/__init__.py CHANGED
@@ -11,7 +11,7 @@ http://www.opensource.org/licenses/BSD-3-Clause for more information.
11
11
 
12
12
 
13
13
  # start delvewheel patch
14
- def _delvewheel_patch_1_9_0():
14
+ def _delvewheel_patch_1_10_0():
15
15
  import ctypes
16
16
  import os
17
17
  import platform
@@ -22,10 +22,10 @@ def _delvewheel_patch_1_9_0():
22
22
  if os.path.isdir(libs_dir):
23
23
  os.add_dll_directory(libs_dir)
24
24
  else:
25
- load_order_filepath = os.path.join(libs_dir, '.load-order-mlpack-4.5.1')
25
+ load_order_filepath = os.path.join(libs_dir, '.load-order-mlpack-4.6.2')
26
26
  if os.path.isfile(load_order_filepath):
27
27
  import ctypes.wintypes
28
- with open(os.path.join(libs_dir, '.load-order-mlpack-4.5.1')) as file:
28
+ with open(os.path.join(libs_dir, '.load-order-mlpack-4.6.2')) as file:
29
29
  load_order = file.read().split()
30
30
  kernel32 = ctypes.WinDLL('kernel32', use_last_error=True)
31
31
  kernel32.LoadLibraryExW.restype = ctypes.wintypes.HMODULE
@@ -36,8 +36,8 @@ def _delvewheel_patch_1_9_0():
36
36
  raise OSError('Error loading {}; {}'.format(lib, ctypes.FormatError(ctypes.get_last_error())))
37
37
 
38
38
 
39
- _delvewheel_patch_1_9_0()
40
- del _delvewheel_patch_1_9_0
39
+ _delvewheel_patch_1_10_0()
40
+ del _delvewheel_patch_1_10_0
41
41
  # end delvewheel patch
42
42
 
43
43
  import warnings
@@ -58,6 +58,7 @@ from .hmm_generate import hmm_generate
58
58
  from .hmm_loglik import hmm_loglik
59
59
  from .hmm_viterbi import hmm_viterbi
60
60
  from .hoeffding_tree import hoeffding_tree
61
+ from .image_converter import image_converter
61
62
  from .kde import kde
62
63
  from .kernel_pca import kernel_pca
63
64
  from .kmeans import kmeans
@@ -92,5 +93,4 @@ from .adaboost import *
92
93
  from .linear_regression_train import linear_regression_train
93
94
  from .linear_regression_predict import linear_regression_predict
94
95
  from .linear_regression import *
95
- from .image_converter import image_converter
96
- __version__='4.5.1'
96
+ __version__='4.6.2'
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -33,6 +33,7 @@
33
33
  #include <numeric>
34
34
  #include <vector>
35
35
  #include <queue>
36
+ #include <string>
36
37
 
37
38
  // But if it's not defined, we'll do it.
38
39
  #ifndef M_PI
@@ -93,11 +94,16 @@
93
94
  #pragma warning(disable : 4519)
94
95
  #endif
95
96
 
96
- // This can be removed when Visual Studio supports an OpenMP version with
97
- // unsigned loop variables.
97
+ // OpenMP usage must be version 3.1 or newer, if it is being used.
98
98
  #if (defined(_OPENMP) && (_OPENMP >= 201107))
99
- #undef MLPACK_USE_OPENMP
99
+ #undef MLPACK_USE_OPENMP
100
100
  #define MLPACK_USE_OPENMP
101
+ #elif defined(_OPENMP)
102
+ #ifdef _MSC_VER
103
+ #error "mlpack requires OpenMP 3.1+; compile without /OPENMP"
104
+ #else
105
+ #error "mlpack requires OpenMP 3.1+; disable OpenMP in your compiler"
106
+ #endif
101
107
  #endif
102
108
 
103
109
  #endif
@@ -23,29 +23,6 @@
23
23
  // #define MLPACK_HAS_BFD_DL
24
24
  #endif
25
25
 
26
- //
27
- // mlpack provides image loading and saving support via STB, if available. STB
28
- // is an optional dependency of mlpack. When STB is found on a system,
29
- // MLPACK_HAS_STB will be defined and the files `stb_image.h` and
30
- // `stb_image_write.h` are expected to be found in the compiler include path.
31
- //
32
- #ifndef MLPACK_HAS_STB
33
- // #define MLPACK_HAS_STB
34
- #endif
35
-
36
- //
37
- // If STB support is available but the STB headers do not live in an stb/
38
- // directory, then MLPACK_HAS_NO_STB_DIR should be defined.
39
- //
40
- // Note that this is ignored in newer compilers where __has_include is available
41
- // (C++17 and newer compilers support it).
42
- //
43
- #ifdef MLPACK_HAS_STB
44
- #ifndef MLPACK_HAS_NO_STB_DIR
45
- // #define MLPACK_HAS_NO_STB_DIR
46
- #endif
47
- #endif
48
-
49
26
  //
50
27
  // If the version of mlpack is built from a git repository and is not an
51
28
  // official release, then MLPACK_GIT_VERSION will be defined. This causes
@@ -72,42 +49,28 @@
72
49
  #define MLPACK_CERR_STREAM std::cerr
73
50
  #endif
74
51
 
52
+
75
53
  //
76
- // Perform autodetection of STB if possible.
54
+ // MLPACK_NO_STD_MUTEX is used to disable mutex usage inside mlpack. Assuming
55
+ // the system has one core only.
77
56
  //
78
- #ifndef MLPACK_HAS_STB
79
- #if defined __has_include
80
- #if __has_include("stb_image.h")
81
- #define MLPACK_HAS_STB_IMAGE
82
- #elif __has_include("stb/stb_image.h")
83
- #define MLPACK_HAS_STB_IMAGE
84
- #endif
85
-
86
- #if __has_include("stb_image_write.h")
87
- #define MLPACK_HAS_STB_IMAGE_WRITE
88
- #elif __has_include("stb/stb_image_write.h")
89
- #define MLPACK_HAS_STB_IMAGE_WRITE
90
- #endif
91
-
92
- #if defined(MLPACK_HAS_STB_IMAGE) && defined(MLPACK_HAS_STB_IMAGE_WRITE)
93
- #define MLPACK_HAS_STB
94
- #endif
95
-
96
- #undef MLPACK_HAS_STB_IMAGE
97
- #undef MLPACK_HAS_STB_IMAGE_WRITE
98
- #endif
57
+ #ifdef MLPACK_NO_STD_MUTEX
58
+ #define ARMA_DONT_USE_STD_MUTEX
99
59
  #endif
100
60
 
101
61
  //
102
- // These macros can be defined to disable support that is defined above. (This
103
- // is useful if you cannot or do not want to modify config.hpp.)
62
+ // MLPACK_USE_SYSTEM_STB is used to enable usage of locally installed STB.
104
63
  //
105
- #ifdef MLPACK_DISABLE_STB
106
- #undef MLPACK_HAS_STB
64
+ #if !defined(MLPACK_USE_SYSTEM_STB)
65
+ // #define MLPACK_USE_SYSTEM_STB
107
66
  #endif
108
67
 
109
- #ifdef MLPACK_DISABLE_NO_STB_DIR
110
- #undef MLPACK_HAS_NO_STB_DIR
68
+ //
69
+ // This is necessary if we would like to overwrite the default packaging
70
+ // condition.
71
+ //
72
+ #if defined(MLPACK_DONT_USE_SYSTEM_STB) && defined(MLPACK_USE_SYSTEM_STB)
73
+ #undef MLPACK_USE_SYSTEM_STB
111
74
  #endif
112
75
 
113
76
  #ifdef MLPACK_DISABLE_BFD_DL
@@ -14,6 +14,7 @@
14
14
 
15
15
  #include <mlpack/core/cv/meta_info_extractor.hpp>
16
16
  #include <mlpack/core/cv/cv_base.hpp>
17
+ #include <mlpack/core/util/arma_traits.hpp>
17
18
 
18
19
  namespace mlpack {
19
20
 
@@ -280,30 +281,38 @@ class KFoldCV
280
281
  /**
281
282
  * Get the ith training subset from a variable of a matrix type.
282
283
  */
283
- template<typename ElementType>
284
- inline arma::Mat<ElementType> GetTrainingSubset(arma::Mat<ElementType>& m,
285
- const size_t i);
284
+ template<typename SubsetMatType>
285
+ inline SubsetMatType GetTrainingSubset(
286
+ SubsetMatType& m,
287
+ const size_t i,
288
+ const typename std::enable_if_t<IsMatrix<SubsetMatType>::value>* = 0);
286
289
 
287
290
  /**
288
291
  * Get the ith training subset from a variable of a row type.
289
292
  */
290
- template<typename ElementType>
291
- inline arma::Row<ElementType> GetTrainingSubset(arma::Row<ElementType>& r,
292
- const size_t i);
293
+ template<typename SubsetRowType>
294
+ inline SubsetRowType GetTrainingSubset(
295
+ SubsetRowType& r,
296
+ const size_t i,
297
+ const typename std::enable_if_t<IsRow<SubsetRowType>::value>* = 0);
293
298
 
294
299
  /**
295
300
  * Get the ith validation subset from a variable of a matrix type.
296
301
  */
297
- template<typename ElementType>
298
- inline arma::Mat<ElementType> GetValidationSubset(arma::Mat<ElementType>& m,
299
- const size_t i);
302
+ template<typename SubsetMatType>
303
+ inline SubsetMatType GetValidationSubset(
304
+ SubsetMatType& m,
305
+ const size_t i,
306
+ const typename std::enable_if_t<IsMatrix<SubsetMatType>::value>* = 0);
300
307
 
301
308
  /**
302
309
  * Get the ith validation subset from a variable of a row type.
303
310
  */
304
- template<typename ElementType>
305
- inline arma::Row<ElementType> GetValidationSubset(arma::Row<ElementType>& r,
306
- const size_t i);
311
+ template<typename SubsetRowType>
312
+ inline SubsetRowType GetValidationSubset(
313
+ SubsetRowType& r,
314
+ const size_t i,
315
+ const typename std::enable_if_t<IsRow<SubsetRowType>::value>* = 0);
307
316
  };
308
317
 
309
318
  } // namespace mlpack
@@ -375,14 +375,15 @@ template<typename MLAlgorithm,
375
375
  typename MatType,
376
376
  typename PredictionsType,
377
377
  typename WeightsType>
378
- template<typename ElementType>
379
- arma::Mat<ElementType> KFoldCV<MLAlgorithm,
380
- Metric,
381
- MatType,
382
- PredictionsType,
383
- WeightsType>::GetTrainingSubset(
384
- arma::Mat<ElementType>& m,
385
- const size_t i)
378
+ template<typename SubsetMatType>
379
+ SubsetMatType KFoldCV<MLAlgorithm,
380
+ Metric,
381
+ MatType,
382
+ PredictionsType,
383
+ WeightsType>::GetTrainingSubset(
384
+ SubsetMatType& m,
385
+ const size_t i,
386
+ const typename std::enable_if_t<IsMatrix<SubsetMatType>::value>*)
386
387
  {
387
388
  // If this is not the first fold, we have to handle it a little bit
388
389
  // differently, since the last fold may contain slightly more than 'binSize'
@@ -390,8 +391,9 @@ arma::Mat<ElementType> KFoldCV<MLAlgorithm,
390
391
  const size_t subsetSize = (i != 0) ? lastBinSize + (k - 2) * binSize :
391
392
  (k - 1) * binSize;
392
393
 
393
- return arma::Mat<ElementType>(m.colptr(binSize * i), m.n_rows, subsetSize,
394
- false, true);
394
+ SubsetMatType alias;
395
+ MakeAlias(alias, m, m.n_rows, subsetSize, m.n_rows * binSize * i);
396
+ return alias;
395
397
  }
396
398
 
397
399
  template<typename MLAlgorithm,
@@ -399,14 +401,15 @@ template<typename MLAlgorithm,
399
401
  typename MatType,
400
402
  typename PredictionsType,
401
403
  typename WeightsType>
402
- template<typename ElementType>
403
- arma::Row<ElementType> KFoldCV<MLAlgorithm,
404
- Metric,
405
- MatType,
406
- PredictionsType,
407
- WeightsType>::GetTrainingSubset(
408
- arma::Row<ElementType>& r,
409
- const size_t i)
404
+ template<typename SubsetRowType>
405
+ SubsetRowType KFoldCV<MLAlgorithm,
406
+ Metric,
407
+ MatType,
408
+ PredictionsType,
409
+ WeightsType>::GetTrainingSubset(
410
+ SubsetRowType& r,
411
+ const size_t i,
412
+ const typename std::enable_if_t<IsRow<SubsetRowType>::value>*)
410
413
  {
411
414
  // If this is not the first fold, we have to handle it a little bit
412
415
  // differently, since the last fold may contain slightly more than 'binSize'
@@ -414,7 +417,9 @@ arma::Row<ElementType> KFoldCV<MLAlgorithm,
414
417
  const size_t subsetSize = (i != 0) ? lastBinSize + (k - 2) * binSize :
415
418
  (k - 1) * binSize;
416
419
 
417
- return arma::Row<ElementType>(r.colptr(binSize * i), subsetSize, false, true);
420
+ SubsetRowType alias;
421
+ MakeAlias(alias, r, subsetSize, r.n_rows * binSize * i);
422
+ return alias;
418
423
  }
419
424
 
420
425
  template<typename MLAlgorithm,
@@ -422,18 +427,21 @@ template<typename MLAlgorithm,
422
427
  typename MatType,
423
428
  typename PredictionsType,
424
429
  typename WeightsType>
425
- template<typename ElementType>
426
- arma::Mat<ElementType> KFoldCV<MLAlgorithm,
427
- Metric,
428
- MatType,
429
- PredictionsType,
430
- WeightsType>::GetValidationSubset(
431
- arma::Mat<ElementType>& m,
432
- const size_t i)
430
+ template<typename SubsetMatType>
431
+ SubsetMatType KFoldCV<MLAlgorithm,
432
+ Metric,
433
+ MatType,
434
+ PredictionsType,
435
+ WeightsType>::GetValidationSubset(
436
+ SubsetMatType& m,
437
+ const size_t i,
438
+ const typename std::enable_if_t<IsMatrix<SubsetMatType>::value>*)
433
439
  {
434
440
  const size_t subsetSize = (i == 0) ? lastBinSize : binSize;
435
- return arma::Mat<ElementType>(m.colptr(ValidationSubsetFirstCol(i)), m.n_rows,
436
- subsetSize, false, true);
441
+ SubsetMatType alias;
442
+ MakeAlias(alias, m, m.n_rows, subsetSize,
443
+ m.n_rows * ValidationSubsetFirstCol(i));
444
+ return alias;
437
445
  }
438
446
 
439
447
  template<typename MLAlgorithm,
@@ -441,18 +449,20 @@ template<typename MLAlgorithm,
441
449
  typename MatType,
442
450
  typename PredictionsType,
443
451
  typename WeightsType>
444
- template<typename ElementType>
445
- arma::Row<ElementType> KFoldCV<MLAlgorithm,
446
- Metric,
447
- MatType,
448
- PredictionsType,
449
- WeightsType>::GetValidationSubset(
450
- arma::Row<ElementType>& r,
451
- const size_t i)
452
+ template<typename SubsetRowType>
453
+ SubsetRowType KFoldCV<MLAlgorithm,
454
+ Metric,
455
+ MatType,
456
+ PredictionsType,
457
+ WeightsType>::GetValidationSubset(
458
+ SubsetRowType& r,
459
+ const size_t i,
460
+ const typename std::enable_if_t<IsRow<SubsetRowType>::value>*)
452
461
  {
453
462
  const size_t subsetSize = (i == 0) ? lastBinSize : binSize;
454
- return arma::Row<ElementType>(r.colptr(ValidationSubsetFirstCol(i)),
455
- subsetSize, false, true);
463
+ SubsetRowType alias;
464
+ MakeAlias(alias, r, subsetSize, r.n_rows * ValidationSubsetFirstCol(i));
465
+ return alias;
456
466
  }
457
467
 
458
468
  } // namespace mlpack
@@ -12,7 +12,6 @@
12
12
  #ifndef MLPACK_CORE_DATA_DATA_HPP
13
13
  #define MLPACK_CORE_DATA_DATA_HPP
14
14
 
15
- #include "detect_file_type.hpp"
16
15
  #include "extension.hpp"
17
16
  #include "format.hpp"
18
17
  #include "has_serialize.hpp"
@@ -30,13 +29,19 @@
30
29
  #include "check_categorical_param.hpp"
31
30
  #include "confusion_matrix.hpp"
32
31
  #include "dataset_mapper.hpp"
32
+ #include "data_options.hpp"
33
+ #include "detect_file_type.hpp"
33
34
  #include "image_info.hpp"
35
+ #include "image_resize_crop.hpp"
34
36
  #include "imputer.hpp"
35
37
  #include "is_naninf.hpp"
38
+ #include "matrix_options.hpp"
36
39
  #include "normalize_labels.hpp"
37
40
  #include "one_hot_encoding.hpp"
38
41
  #include "split_data.hpp"
39
42
  #include "string_algorithms.hpp"
43
+ #include "text_options.hpp"
40
44
  #include "types.hpp"
45
+ #include "utilities.hpp"
41
46
 
42
47
  #endif
@@ -0,0 +1,219 @@
1
+ /**
2
+ * @file core/data/data_options.hpp
3
+ * @author Ryan Curtin
4
+ * @author Omar Shrit
5
+ *
6
+ * Data options, all possible options to load different data types and format
7
+ * with specific settings into mlpack.
8
+ *
9
+ * mlpack is free software; you may redistribute it and/or modify it under the
10
+ * terms of the 3-clause BSD license. You should have received a copy of the
11
+ * 3-clause BSD license along with mlpack. If not, see
12
+ * http://www.opensource.org/licenses/BSD-3-Clause for more information.
13
+ */
14
+ #ifndef MLPACK_CORE_DATA_DATA_OPTIONS_HPP
15
+ #define MLPACK_CORE_DATA_DATA_OPTIONS_HPP
16
+
17
+ #include <mlpack/prereqs.hpp>
18
+
19
+ #include "types.hpp"
20
+ #include "dataset_mapper.hpp"
21
+ #include "map_policies/map_policies.hpp"
22
+ #include "format.hpp"
23
+ #include "image_info.hpp"
24
+
25
+ namespace mlpack {
26
+ namespace data {
27
+
28
+ /**
29
+ * All possible DataOptions grouped under one class.
30
+ * This will allow us to have consistent data API for mlpack. If new data
31
+ * options might be necessary, then they should be added in the following.
32
+ */
33
+
34
+ template<typename Derived>
35
+ class DataOptionsBase
36
+ {
37
+ public:
38
+ DataOptionsBase(const bool fatal = defaultFatal,
39
+ const FileType format = defaultFormat) :
40
+ fatal(fatal),
41
+ format(format)
42
+ {
43
+ // Do nothing.
44
+ }
45
+
46
+ template<typename Derived2>
47
+ explicit DataOptionsBase(const DataOptionsBase<Derived2>& opts)
48
+ {
49
+ CopyOptions(opts);
50
+ }
51
+
52
+ template<typename Derived2>
53
+ explicit DataOptionsBase(DataOptionsBase<Derived2>&& opts)
54
+ {
55
+ MoveOptions(std::move(opts));
56
+ }
57
+
58
+ // Convert any other DataOptions type to this DataOptions type, printing
59
+ // warnings for any members that cannot be converted. If this object and
60
+ // `opts` are of the same type, then the constructor for that type will be
61
+ // called instead.
62
+ template<typename Derived2>
63
+ DataOptionsBase& operator=(const DataOptionsBase<Derived2>& other)
64
+ {
65
+ if ((void*) &other == (void*) this)
66
+ return *this;
67
+
68
+ // Print warnings for any members that cannot be converted.
69
+ const char* dataDesc = static_cast<const Derived&>(*this).DataDescription();
70
+ static_cast<const Derived2&>(other).WarnBaseConversion(dataDesc);
71
+
72
+ CopyOptions(other);
73
+ return *this;
74
+ }
75
+
76
+ // Take ownership of the options of another `DataOptionsBase` type.
77
+ template<typename Derived2>
78
+ DataOptionsBase& operator=(DataOptionsBase<Derived2>&& other)
79
+ {
80
+ if ((void*) &other != (void*) this)
81
+ return *this;
82
+
83
+ // Print warnings for any members that cannot be converted.
84
+ const char* dataDesc = static_cast<const Derived&>(*this).DataDescription();
85
+ static_cast<const Derived2&>(other).WarnBaseConversion(dataDesc);
86
+
87
+ MoveOptions(std::move(other));
88
+ return *this;
89
+ }
90
+
91
+ template<typename Derived2>
92
+ void CopyOptions(const DataOptionsBase<Derived2>& other)
93
+ {
94
+ // Only copy options that have been set in the other object.
95
+ if (other.fatal.has_value())
96
+ fatal = *other.fatal;
97
+ if (other.format.has_value())
98
+ format = *other.format;
99
+ }
100
+
101
+ template<typename Derived2>
102
+ void MoveOptions(DataOptionsBase<Derived2>&& other)
103
+ {
104
+ fatal = std::move(other.fatal);
105
+ format = std::move(other.format);
106
+
107
+ // Reset all of the options in the other object.
108
+ other.Reset();
109
+ }
110
+
111
+ void Reset()
112
+ {
113
+ fatal.reset();
114
+ format.reset();
115
+
116
+ // Reset any child members.
117
+ static_cast<Derived&>(*this).Reset();
118
+ }
119
+
120
+ // If true, then exceptions are thrown on failures.
121
+ const bool& Fatal() const { return AccessMember(fatal, defaultFatal); }
122
+ // Modify whether or not exceptions are thrown on failures.
123
+ bool& Fatal() { return ModifyMember(fatal, defaultFatal); }
124
+
125
+ // Get the type of the file that will be loaded.
126
+ const FileType& Format() const { return AccessMember(format, defaultFormat); }
127
+ // Modify the file format to load.
128
+ FileType& Format() { return ModifyMember(format, defaultFormat); }
129
+
130
+ /**
131
+ * Given a file type, return a logical name corresponding to that file type.
132
+ */
133
+ const std::string FileTypeToString() const
134
+ {
135
+ FileType f = format.has_value() ? *format : defaultFormat;
136
+ switch (f)
137
+ {
138
+ case FileType::CSVASCII: return "CSV data";
139
+ case FileType::RawASCII: return "raw ASCII formatted data";
140
+ case FileType::RawBinary: return "raw binary formatted data";
141
+ case FileType::ArmaASCII: return "Armadillo ASCII formatted data";
142
+ case FileType::ArmaBinary: return "Armadillo binary formatted data";
143
+ case FileType::PGMBinary: return "PGM data";
144
+ case FileType::PPMBinary: return "PGM data";
145
+ case FileType::HDF5Binary: return "HDF5 data";
146
+ case FileType::CoordASCII:
147
+ return "ASCII formatted sparse coordinate data";
148
+ case FileType::AutoDetect: return "Detect automatically data type";
149
+ case FileType::FileTypeUnknown: return "Unknown data type";
150
+ default: return "";
151
+ }
152
+ }
153
+
154
+ protected:
155
+ template<typename T>
156
+ const T& AccessMember(const std::optional<T>& value,
157
+ const T& defaultValue) const
158
+ {
159
+ if (value.has_value())
160
+ return *value;
161
+ else
162
+ return defaultValue;
163
+ }
164
+
165
+ template<typename T>
166
+ T& ModifyMember(std::optional<T>& value, const T defaultValue)
167
+ {
168
+ // Set the default value if needed so that (*value) has defined behavior
169
+ // according to the spec.
170
+ if (!value.has_value())
171
+ value = defaultValue;
172
+
173
+ return *value;
174
+ }
175
+
176
+ void WarnOptionConversion(const char* optionName, const char* dataType) const
177
+ {
178
+ if (fatal.has_value() && *fatal)
179
+ {
180
+ Log::Fatal << "Option '" << optionName << "' cannot be specified when "
181
+ << dataType << " is being loaded!" << std::endl;
182
+ }
183
+ else
184
+ {
185
+ Log::Warn << "Option '" << optionName << "' ignored; not applicable when "
186
+ << dataType << " is being loaded!" << std::endl;
187
+ }
188
+ }
189
+
190
+ private:
191
+ std::optional<bool> fatal;
192
+ std::optional<FileType> format;
193
+
194
+ constexpr static const bool defaultFatal = false;
195
+ constexpr static const FileType defaultFormat = FileType::AutoDetect;
196
+
197
+ // For access to internal optional members.
198
+ template<typename Derived2>
199
+ friend class DataOptionsBase;
200
+ };
201
+
202
+ // This utility class is meant to be used as the Derived parameter for an option
203
+ // that is not actually a derived type. It provides the WarnBaseConversion()
204
+ // member, which does nothing.
205
+ class EmptyOptions : public DataOptionsBase<EmptyOptions>
206
+ {
207
+ public:
208
+ void WarnBaseConversion(const char* /* dataDescription */) const { }
209
+ static const char* DataDescription() { return "general data"; }
210
+ void Reset() { }
211
+ };
212
+
213
+ using DataOptions = DataOptionsBase<EmptyOptions>;
214
+
215
+
216
+ } // namespace data
217
+ } // namespace mlpack
218
+
219
+ #endif