snowflake-ml-python 1.7.2__py3-none-any.whl → 1.7.4__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.
Files changed (237) hide show
  1. snowflake/cortex/__init__.py +16 -8
  2. snowflake/cortex/_classify_text.py +12 -1
  3. snowflake/cortex/_complete.py +101 -13
  4. snowflake/cortex/_embed_text_1024.py +9 -2
  5. snowflake/cortex/_embed_text_768.py +9 -2
  6. snowflake/cortex/_extract_answer.py +9 -2
  7. snowflake/cortex/_sentiment.py +9 -2
  8. snowflake/cortex/_summarize.py +9 -2
  9. snowflake/cortex/_translate.py +9 -2
  10. snowflake/ml/_internal/env_utils.py +7 -52
  11. snowflake/ml/_internal/platform_capabilities.py +87 -0
  12. snowflake/ml/_internal/utils/identifier.py +4 -2
  13. snowflake/ml/data/__init__.py +3 -0
  14. snowflake/ml/data/_internal/arrow_ingestor.py +4 -4
  15. snowflake/ml/data/data_connector.py +53 -11
  16. snowflake/ml/data/data_ingestor.py +2 -1
  17. snowflake/ml/data/torch_utils.py +18 -5
  18. snowflake/ml/dataset/dataset.py +0 -1
  19. snowflake/ml/feature_store/examples/example_helper.py +2 -1
  20. snowflake/ml/fileset/fileset.py +24 -18
  21. snowflake/ml/jobs/__init__.py +21 -0
  22. snowflake/ml/jobs/_utils/constants.py +51 -0
  23. snowflake/ml/jobs/_utils/payload_utils.py +352 -0
  24. snowflake/ml/jobs/_utils/spec_utils.py +298 -0
  25. snowflake/ml/jobs/_utils/types.py +39 -0
  26. snowflake/ml/jobs/decorators.py +91 -0
  27. snowflake/ml/jobs/job.py +113 -0
  28. snowflake/ml/jobs/manager.py +298 -0
  29. snowflake/ml/model/_client/model/model_version_impl.py +5 -3
  30. snowflake/ml/model/_client/ops/model_ops.py +13 -8
  31. snowflake/ml/model/_client/ops/service_ops.py +1 -11
  32. snowflake/ml/model/_client/sql/model_version.py +11 -0
  33. snowflake/ml/model/_client/sql/service.py +13 -6
  34. snowflake/ml/model/_model_composer/model_composer.py +8 -3
  35. snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +20 -1
  36. snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +1 -0
  37. snowflake/ml/model/_model_composer/model_method/constants.py +1 -0
  38. snowflake/ml/model/_model_composer/model_method/function_generator.py +2 -0
  39. snowflake/ml/model/_model_composer/model_method/infer_function.py_template +1 -1
  40. snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +1 -1
  41. snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template +1 -1
  42. snowflake/ml/model/_model_composer/model_method/model_method.py +9 -1
  43. snowflake/ml/model/_model_composer/model_user_file/model_user_file.py +27 -0
  44. snowflake/ml/model/_packager/model_handlers/_utils.py +39 -5
  45. snowflake/ml/model/_packager/model_handlers/catboost.py +3 -3
  46. snowflake/ml/model/_packager/model_handlers/custom.py +1 -2
  47. snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py +6 -1
  48. snowflake/ml/model/_packager/model_handlers/lightgbm.py +5 -3
  49. snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +55 -20
  50. snowflake/ml/model/_packager/model_handlers/sklearn.py +9 -10
  51. snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +66 -28
  52. snowflake/ml/model/_packager/model_handlers/tensorflow.py +70 -17
  53. snowflake/ml/model/_packager/model_handlers/xgboost.py +3 -3
  54. snowflake/ml/model/_packager/model_meta/model_meta.py +3 -0
  55. snowflake/ml/model/_packager/model_meta/model_meta_schema.py +6 -1
  56. snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +2 -2
  57. snowflake/ml/model/_packager/model_task/model_task_utils.py +3 -2
  58. snowflake/ml/model/_signatures/base_handler.py +1 -2
  59. snowflake/ml/model/_signatures/builtins_handler.py +2 -2
  60. snowflake/ml/model/_signatures/numpy_handler.py +6 -7
  61. snowflake/ml/model/_signatures/pandas_handler.py +3 -3
  62. snowflake/ml/model/_signatures/pytorch_handler.py +2 -5
  63. snowflake/ml/model/_signatures/snowpark_handler.py +11 -5
  64. snowflake/ml/model/_signatures/tensorflow_handler.py +2 -7
  65. snowflake/ml/model/model_signature.py +17 -4
  66. snowflake/ml/model/type_hints.py +1 -0
  67. snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -8
  68. snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -13
  69. snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +6 -3
  70. snowflake/ml/modeling/cluster/affinity_propagation.py +6 -3
  71. snowflake/ml/modeling/cluster/agglomerative_clustering.py +6 -3
  72. snowflake/ml/modeling/cluster/birch.py +6 -3
  73. snowflake/ml/modeling/cluster/bisecting_k_means.py +6 -3
  74. snowflake/ml/modeling/cluster/dbscan.py +6 -3
  75. snowflake/ml/modeling/cluster/feature_agglomeration.py +6 -3
  76. snowflake/ml/modeling/cluster/k_means.py +6 -3
  77. snowflake/ml/modeling/cluster/mean_shift.py +6 -3
  78. snowflake/ml/modeling/cluster/mini_batch_k_means.py +6 -3
  79. snowflake/ml/modeling/cluster/optics.py +6 -3
  80. snowflake/ml/modeling/cluster/spectral_biclustering.py +6 -3
  81. snowflake/ml/modeling/cluster/spectral_clustering.py +6 -3
  82. snowflake/ml/modeling/cluster/spectral_coclustering.py +6 -3
  83. snowflake/ml/modeling/compose/column_transformer.py +6 -3
  84. snowflake/ml/modeling/compose/transformed_target_regressor.py +6 -3
  85. snowflake/ml/modeling/covariance/elliptic_envelope.py +6 -3
  86. snowflake/ml/modeling/covariance/empirical_covariance.py +6 -3
  87. snowflake/ml/modeling/covariance/graphical_lasso.py +6 -3
  88. snowflake/ml/modeling/covariance/graphical_lasso_cv.py +6 -3
  89. snowflake/ml/modeling/covariance/ledoit_wolf.py +6 -3
  90. snowflake/ml/modeling/covariance/min_cov_det.py +6 -3
  91. snowflake/ml/modeling/covariance/oas.py +6 -3
  92. snowflake/ml/modeling/covariance/shrunk_covariance.py +6 -3
  93. snowflake/ml/modeling/decomposition/dictionary_learning.py +6 -3
  94. snowflake/ml/modeling/decomposition/factor_analysis.py +6 -3
  95. snowflake/ml/modeling/decomposition/fast_ica.py +6 -3
  96. snowflake/ml/modeling/decomposition/incremental_pca.py +6 -3
  97. snowflake/ml/modeling/decomposition/kernel_pca.py +6 -3
  98. snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +6 -3
  99. snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +6 -3
  100. snowflake/ml/modeling/decomposition/pca.py +6 -3
  101. snowflake/ml/modeling/decomposition/sparse_pca.py +6 -3
  102. snowflake/ml/modeling/decomposition/truncated_svd.py +6 -3
  103. snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +6 -3
  104. snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +6 -3
  105. snowflake/ml/modeling/ensemble/ada_boost_classifier.py +6 -3
  106. snowflake/ml/modeling/ensemble/ada_boost_regressor.py +6 -3
  107. snowflake/ml/modeling/ensemble/bagging_classifier.py +6 -3
  108. snowflake/ml/modeling/ensemble/bagging_regressor.py +6 -3
  109. snowflake/ml/modeling/ensemble/extra_trees_classifier.py +6 -3
  110. snowflake/ml/modeling/ensemble/extra_trees_regressor.py +6 -3
  111. snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +6 -3
  112. snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +6 -3
  113. snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +6 -3
  114. snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +6 -3
  115. snowflake/ml/modeling/ensemble/isolation_forest.py +6 -3
  116. snowflake/ml/modeling/ensemble/random_forest_classifier.py +6 -3
  117. snowflake/ml/modeling/ensemble/random_forest_regressor.py +6 -3
  118. snowflake/ml/modeling/ensemble/stacking_regressor.py +6 -3
  119. snowflake/ml/modeling/ensemble/voting_classifier.py +6 -3
  120. snowflake/ml/modeling/ensemble/voting_regressor.py +6 -3
  121. snowflake/ml/modeling/feature_selection/generic_univariate_select.py +6 -3
  122. snowflake/ml/modeling/feature_selection/select_fdr.py +6 -3
  123. snowflake/ml/modeling/feature_selection/select_fpr.py +6 -3
  124. snowflake/ml/modeling/feature_selection/select_fwe.py +6 -3
  125. snowflake/ml/modeling/feature_selection/select_k_best.py +6 -3
  126. snowflake/ml/modeling/feature_selection/select_percentile.py +6 -3
  127. snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +6 -3
  128. snowflake/ml/modeling/feature_selection/variance_threshold.py +6 -3
  129. snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +6 -3
  130. snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +6 -3
  131. snowflake/ml/modeling/impute/iterative_imputer.py +6 -3
  132. snowflake/ml/modeling/impute/knn_imputer.py +6 -3
  133. snowflake/ml/modeling/impute/missing_indicator.py +6 -3
  134. snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +6 -3
  135. snowflake/ml/modeling/kernel_approximation/nystroem.py +6 -3
  136. snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +6 -3
  137. snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +6 -3
  138. snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +6 -3
  139. snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +6 -3
  140. snowflake/ml/modeling/lightgbm/lgbm_classifier.py +6 -3
  141. snowflake/ml/modeling/lightgbm/lgbm_regressor.py +6 -3
  142. snowflake/ml/modeling/linear_model/ard_regression.py +6 -3
  143. snowflake/ml/modeling/linear_model/bayesian_ridge.py +6 -3
  144. snowflake/ml/modeling/linear_model/elastic_net.py +6 -3
  145. snowflake/ml/modeling/linear_model/elastic_net_cv.py +6 -3
  146. snowflake/ml/modeling/linear_model/gamma_regressor.py +6 -3
  147. snowflake/ml/modeling/linear_model/huber_regressor.py +6 -3
  148. snowflake/ml/modeling/linear_model/lars.py +6 -3
  149. snowflake/ml/modeling/linear_model/lars_cv.py +6 -3
  150. snowflake/ml/modeling/linear_model/lasso.py +6 -3
  151. snowflake/ml/modeling/linear_model/lasso_cv.py +6 -3
  152. snowflake/ml/modeling/linear_model/lasso_lars.py +6 -3
  153. snowflake/ml/modeling/linear_model/lasso_lars_cv.py +6 -3
  154. snowflake/ml/modeling/linear_model/lasso_lars_ic.py +6 -3
  155. snowflake/ml/modeling/linear_model/linear_regression.py +6 -3
  156. snowflake/ml/modeling/linear_model/logistic_regression.py +6 -3
  157. snowflake/ml/modeling/linear_model/logistic_regression_cv.py +6 -3
  158. snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +6 -3
  159. snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +6 -3
  160. snowflake/ml/modeling/linear_model/multi_task_lasso.py +6 -3
  161. snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +6 -3
  162. snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +6 -3
  163. snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +6 -3
  164. snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +6 -3
  165. snowflake/ml/modeling/linear_model/perceptron.py +6 -3
  166. snowflake/ml/modeling/linear_model/poisson_regressor.py +6 -3
  167. snowflake/ml/modeling/linear_model/ransac_regressor.py +6 -3
  168. snowflake/ml/modeling/linear_model/ridge.py +6 -3
  169. snowflake/ml/modeling/linear_model/ridge_classifier.py +6 -3
  170. snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +6 -3
  171. snowflake/ml/modeling/linear_model/ridge_cv.py +6 -3
  172. snowflake/ml/modeling/linear_model/sgd_classifier.py +6 -3
  173. snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +6 -3
  174. snowflake/ml/modeling/linear_model/sgd_regressor.py +6 -3
  175. snowflake/ml/modeling/linear_model/theil_sen_regressor.py +6 -3
  176. snowflake/ml/modeling/linear_model/tweedie_regressor.py +6 -3
  177. snowflake/ml/modeling/manifold/isomap.py +6 -3
  178. snowflake/ml/modeling/manifold/mds.py +6 -3
  179. snowflake/ml/modeling/manifold/spectral_embedding.py +6 -3
  180. snowflake/ml/modeling/manifold/tsne.py +6 -3
  181. snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +6 -3
  182. snowflake/ml/modeling/mixture/gaussian_mixture.py +6 -3
  183. snowflake/ml/modeling/model_selection/grid_search_cv.py +17 -2
  184. snowflake/ml/modeling/model_selection/randomized_search_cv.py +17 -2
  185. snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +6 -3
  186. snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +6 -3
  187. snowflake/ml/modeling/multiclass/output_code_classifier.py +6 -3
  188. snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +6 -3
  189. snowflake/ml/modeling/naive_bayes/categorical_nb.py +6 -3
  190. snowflake/ml/modeling/naive_bayes/complement_nb.py +6 -3
  191. snowflake/ml/modeling/naive_bayes/gaussian_nb.py +6 -3
  192. snowflake/ml/modeling/naive_bayes/multinomial_nb.py +6 -3
  193. snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +6 -3
  194. snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +6 -3
  195. snowflake/ml/modeling/neighbors/kernel_density.py +6 -3
  196. snowflake/ml/modeling/neighbors/local_outlier_factor.py +6 -3
  197. snowflake/ml/modeling/neighbors/nearest_centroid.py +6 -3
  198. snowflake/ml/modeling/neighbors/nearest_neighbors.py +6 -3
  199. snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +6 -3
  200. snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +6 -3
  201. snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +6 -3
  202. snowflake/ml/modeling/neural_network/bernoulli_rbm.py +6 -3
  203. snowflake/ml/modeling/neural_network/mlp_classifier.py +6 -3
  204. snowflake/ml/modeling/neural_network/mlp_regressor.py +6 -3
  205. snowflake/ml/modeling/pipeline/pipeline.py +16 -178
  206. snowflake/ml/modeling/preprocessing/polynomial_features.py +6 -3
  207. snowflake/ml/modeling/semi_supervised/label_propagation.py +6 -3
  208. snowflake/ml/modeling/semi_supervised/label_spreading.py +6 -3
  209. snowflake/ml/modeling/svm/linear_svc.py +6 -3
  210. snowflake/ml/modeling/svm/linear_svr.py +6 -3
  211. snowflake/ml/modeling/svm/nu_svc.py +6 -3
  212. snowflake/ml/modeling/svm/nu_svr.py +6 -3
  213. snowflake/ml/modeling/svm/svc.py +6 -3
  214. snowflake/ml/modeling/svm/svr.py +6 -3
  215. snowflake/ml/modeling/tree/decision_tree_classifier.py +6 -3
  216. snowflake/ml/modeling/tree/decision_tree_regressor.py +6 -3
  217. snowflake/ml/modeling/tree/extra_tree_classifier.py +6 -3
  218. snowflake/ml/modeling/tree/extra_tree_regressor.py +6 -3
  219. snowflake/ml/modeling/xgboost/xgb_classifier.py +167 -91
  220. snowflake/ml/modeling/xgboost/xgb_regressor.py +166 -88
  221. snowflake/ml/modeling/xgboost/xgbrf_classifier.py +166 -88
  222. snowflake/ml/modeling/xgboost/xgbrf_regressor.py +166 -88
  223. snowflake/ml/monitoring/_client/model_monitor_sql_client.py +4 -4
  224. snowflake/ml/registry/_manager/model_manager.py +70 -33
  225. snowflake/ml/registry/registry.py +41 -22
  226. snowflake/ml/version.py +1 -1
  227. {snowflake_ml_python-1.7.2.dist-info → snowflake_ml_python-1.7.4.dist-info}/METADATA +63 -19
  228. {snowflake_ml_python-1.7.2.dist-info → snowflake_ml_python-1.7.4.dist-info}/RECORD +231 -226
  229. {snowflake_ml_python-1.7.2.dist-info → snowflake_ml_python-1.7.4.dist-info}/WHEEL +1 -1
  230. snowflake/ml/_internal/utils/retryable_http.py +0 -39
  231. snowflake/ml/fileset/parquet_parser.py +0 -170
  232. snowflake/ml/fileset/tf_dataset.py +0 -88
  233. snowflake/ml/fileset/torch_datapipe.py +0 -57
  234. snowflake/ml/modeling/_internal/ml_runtime_implementations/ml_runtime_handlers.py +0 -151
  235. snowflake/ml/modeling/_internal/ml_runtime_implementations/ml_runtime_trainer.py +0 -66
  236. {snowflake_ml_python-1.7.2.dist-info → snowflake_ml_python-1.7.4.dist-info}/LICENSE.txt +0 -0
  237. {snowflake_ml_python-1.7.2.dist-info → snowflake_ml_python-1.7.4.dist-info}/top_level.txt +0 -0
@@ -1,21 +1,22 @@
1
- snowflake/cortex/__init__.py,sha256=IZra16r_FeqcwdtCUE8Lj0gIsTDq7VGlux8xDnnq42U,770
2
- snowflake/cortex/_classify_text.py,sha256=1SnEdAnQ1IbCKp1bUvQSW7zhGtcS_8qk34X1sVQL37U,1338
3
- snowflake/cortex/_complete.py,sha256=AvE5pNQ8hmWAHUHh8K8NCZLSh_UutrTOD7iQi85-m20,13053
4
- snowflake/cortex/_embed_text_1024.py,sha256=zQp2F3MTAxacnIJo7zu8OHkXmX-xi8YzoUcs_FM48uo,1381
5
- snowflake/cortex/_embed_text_768.py,sha256=lTus5A1zehbzX4FV6IYZ8bl66QoxUiC_ZilYeBLdLOE,1377
6
- snowflake/cortex/_extract_answer.py,sha256=hmJG0iVEe_ww-ll9XEtIL_xPOiNitycUkXBI6WwgfzA,1342
1
+ snowflake/cortex/__init__.py,sha256=gboUvJBYzJIq11AK_Qa0ipOUbKctHahNXe1p1Z7j8xY,1032
2
+ snowflake/cortex/_classify_text.py,sha256=zlAUJXPgcEwmh9KtkqafAD0NRP3UBboCJGVzMylW4Lk,1640
3
+ snowflake/cortex/_complete.py,sha256=Oi9wUGYewvO2izBk9wDMBLtvXGm3fgjZ2NUBskRdkP8,16111
4
+ snowflake/cortex/_embed_text_1024.py,sha256=P3oMsrMol_rTK0lZxDmEBx7XSA9HB2y3AMjaD66LrgY,1651
5
+ snowflake/cortex/_embed_text_768.py,sha256=_WMt_FHu3n-CKXj8yiposDSi763Sd-NHV9UeGQ7YHaE,1643
6
+ snowflake/cortex/_extract_answer.py,sha256=7C-23JytRKdZN9ZYY9w10RfAe_GzmvzKAqqUDl3T4aQ,1605
7
7
  snowflake/cortex/_finetune.py,sha256=V-cb1M-TDurjO-F25E1CwviXp2r-QCcu6NjsVE6icOg,10952
8
- snowflake/cortex/_sentiment.py,sha256=6_RfOKpwoH0k1puvMaj2TP-0RHQvbkLqrorFvmhdx3E,1206
8
+ snowflake/cortex/_sentiment.py,sha256=Zv2USbn-1SoHwYYuutI6uzgm1-indv54q4q5A6jegME,1454
9
9
  snowflake/cortex/_sse_client.py,sha256=sLYgqAfTOPADCnaWH2RWAJi8KbU_7gSRsTUDcDD5Tl8,5239
10
- snowflake/cortex/_summarize.py,sha256=bwpFBzBGmNQSoJqKs3IB5wASjAREnC5ZnViSuZK5IrU,1059
11
- snowflake/cortex/_translate.py,sha256=69YUps6mnhzVdubdU_H0IfUAlbBwF9OPemFEQ34P-ts,1404
10
+ snowflake/cortex/_summarize.py,sha256=7GH8zqfIdOiHA5w4b6EvJEKEWhaTrL4YA6iDGbn7BNM,1307
11
+ snowflake/cortex/_translate.py,sha256=9ZGjvAnJFisbzJ_bXnt4pyug5UzhHJRXW8AhGQEersM,1652
12
12
  snowflake/cortex/_util.py,sha256=cwRGgrcUo3E05ZaIDT9436vXLQ7GfuBVAjR0QeQ2bDE,3320
13
- snowflake/ml/version.py,sha256=wJaJaqPpO6Ic3Pl_5e81zlGKYqi1rf5q8V10jTUEDjA,16
13
+ snowflake/ml/version.py,sha256=CI97AHNm7cJe6epn5r3AC6geTNi2-zdhUsgpJvsoNkc,16
14
14
  snowflake/ml/_internal/env.py,sha256=kCrJTRnqQ97VGUVI1cWUPD8HuBWeL5vOOtwUR0NB9Mg,161
15
- snowflake/ml/_internal/env_utils.py,sha256=J_jitp8jvDoC3a79EbMSDatFRYw-HiXaI9vR81bhtU8,28075
15
+ snowflake/ml/_internal/env_utils.py,sha256=6CohPgQoDyWX0cnGT_9jfQCXOsR6qLoRxtyNq0f3_nU,25856
16
16
  snowflake/ml/_internal/file_utils.py,sha256=OyXHv-UcItiip1YgLnab6etonUQkYuyDtmplZA0CaoU,13622
17
17
  snowflake/ml/_internal/init_utils.py,sha256=U-oPOtyVf22hCwDH_CH2uDr9yuN6Mr3kwQ_yRAs1mcM,2696
18
18
  snowflake/ml/_internal/migrator_utils.py,sha256=k3erO8x3YJcX6nkKeyJAUNGg1qjE3RFmD-W6dtLzIH0,161
19
+ snowflake/ml/_internal/platform_capabilities.py,sha256=cNa42hB8-aThVlxlKSXNbqlJdWmplbJFKD5mYzmIa8A,3592
19
20
  snowflake/ml/_internal/telemetry.py,sha256=xgpJtUgKNZXrhf9u4G-0IBoSX7QXB5goLC5sHETiJHc,29850
20
21
  snowflake/ml/_internal/type_utils.py,sha256=x0sm7lhpDyjdA1G7KvJb06z4PEGsogWiMwFrskPTWkA,2197
21
22
  snowflake/ml/_internal/exceptions/dataset_error_messages.py,sha256=h7uGJbxBM6se-TW_64LKGGGdBCbwflzbBnmijWKX3Gc,285
@@ -34,29 +35,28 @@ snowflake/ml/_internal/human_readable_id/hrid_generator_base.py,sha256=D1yoVG1vm
34
35
  snowflake/ml/_internal/lineage/lineage_utils.py,sha256=kxWW7fkSf1HiUQSks3VlzWyntpt4o_pbptXcpQHtnk8,3432
35
36
  snowflake/ml/_internal/utils/db_utils.py,sha256=HBAY0-XHzCP4ai5q3Yqd8O19Ar_Q9J3xD4jO6Fe7Zek,1668
36
37
  snowflake/ml/_internal/utils/formatting.py,sha256=PswZ6Xas7sx3Ok1MBLoH2o7nfXOxaJqpUPg_UqXrQb8,3676
37
- snowflake/ml/_internal/utils/identifier.py,sha256=fUYXjXKXAkjLUZpomneMHo2wR4_ZNP4ak-5OJxeUS-g,12467
38
+ snowflake/ml/_internal/utils/identifier.py,sha256=A7TCY2o-VzZr_pV_mwG7e_DS1zHZdlVlRIQOg9bgOt8,12585
38
39
  snowflake/ml/_internal/utils/import_utils.py,sha256=iUIROZdiTGy73UCGpG0N-dKtK54H0ymNVge_QNQYY3A,3220
39
40
  snowflake/ml/_internal/utils/jwt_generator.py,sha256=bj7Ltnw68WjRcxtV9t5xrTRvV5ETnvovB-o3Y8QWNBg,5357
40
41
  snowflake/ml/_internal/utils/parallelize.py,sha256=Q6_-P2t4DoYNO8DyC1kOl7H3qNL-bUK6EgtlQ_b5ThY,4534
41
42
  snowflake/ml/_internal/utils/pkg_version_utils.py,sha256=FwdLHFhxi3CAQQduGjFavEBmkD9Ra6ZTkt6Eub-WoSA,5168
42
43
  snowflake/ml/_internal/utils/query_result_checker.py,sha256=h1nbUImdB9lSNCON3uIA0xCm8_JrS-TE-jQXJJs9WfU,10668
43
44
  snowflake/ml/_internal/utils/result.py,sha256=59Sz6MvhjakUNiONwg9oi2544AmORCJR3XyWTxY2vP0,2405
44
- snowflake/ml/_internal/utils/retryable_http.py,sha256=1GCuQkTGO4sX-VRbjy31e4_VgUjqsp5Lh2v5tSJjVK8,1321
45
45
  snowflake/ml/_internal/utils/service_logger.py,sha256=tSKz7SzC33Btu2QgerXJ__4jRhOvRepOSEvHXSy_FTs,1974
46
46
  snowflake/ml/_internal/utils/snowflake_env.py,sha256=WY9KgMcXEydpWObHQCQhvxcSZXMwC-2OHc894njmXEg,3346
47
47
  snowflake/ml/_internal/utils/snowpark_dataframe_utils.py,sha256=pV8m0d4xfG2_Cl25T5nZb1HCXH375EKSOCgwYWfQVac,6359
48
48
  snowflake/ml/_internal/utils/sql_identifier.py,sha256=A5mfeDuz4z6VuUYG3EBpDyQQQCNiRtjVS1WNWAoiqq8,4682
49
49
  snowflake/ml/_internal/utils/table_manager.py,sha256=pU7v8Cx-jGObf6RtTmfCmALfhbpJD-lL45T1gWX1nSY,4982
50
50
  snowflake/ml/_internal/utils/temp_file_utils.py,sha256=0-HTjXdxVt0kE6XcgyvRvY0btflWlmotP2bMXVpFJPA,1553
51
- snowflake/ml/data/__init__.py,sha256=vTUXLV3r8CoPkepoEzj5HSpKiaHH4MrthXb9RyclVto,275
52
- snowflake/ml/data/data_connector.py,sha256=iOOEkRsy11acWZZnLJj6EDgLM63Q8GY-1htO0l7m9Wo,8711
53
- snowflake/ml/data/data_ingestor.py,sha256=Nrj5l0cVnoXWI6Ilig-r_pGS902xkZATbqh3OsV53NI,1017
51
+ snowflake/ml/data/__init__.py,sha256=nm5VhN98Lzxr4kb679kglQfqbDbHhd9zYsnFJiQiThg,351
52
+ snowflake/ml/data/data_connector.py,sha256=havoMBDiWTtc65mvDEAHk2Omy4BOVaMV38_acErjkbw,9696
53
+ snowflake/ml/data/data_ingestor.py,sha256=mH1_DBDS_XwxYsOoWI3EGQpBzr8j8jBgH2t2S1V1eGM,1035
54
54
  snowflake/ml/data/data_source.py,sha256=dRemXGi_HHQdn6gaNkxxGJixnQPuUYFDP8NBjmB_ZMk,518
55
55
  snowflake/ml/data/ingestor_utils.py,sha256=--nEwJHbYqYHpAzR1APgoeVF9CMgq_fDX81X29HAB4w,2727
56
- snowflake/ml/data/torch_utils.py,sha256=Wn9_AY3DiFHJEPdZkKqaFtBMaS1RJ9hSF1ArBeNKqJ4,3292
57
- snowflake/ml/data/_internal/arrow_ingestor.py,sha256=C72MGC7QEUAXwIy43qXkxxO9zZDyd3fU4fyZmQ75VHg,12086
56
+ snowflake/ml/data/torch_utils.py,sha256=6ywrp1BKrkuhmDQLatgT5pRb6bJNKLKbAQNRV6HDEhY,3603
57
+ snowflake/ml/data/_internal/arrow_ingestor.py,sha256=P7Q975IKkbLWQ7KUMKxkm_Z8yfxnp3ZJN5spsaaTUgo,12110
58
58
  snowflake/ml/dataset/__init__.py,sha256=nESj7YEI2u90Oxyit_hKCQMWb7N1BlEM3Ho2Fm0MfHo,274
59
- snowflake/ml/dataset/dataset.py,sha256=GqdcABGcIlAzPmfTcOC8H_Kw6LNQZ6F_7Ch45hxHOHU,21094
59
+ snowflake/ml/dataset/dataset.py,sha256=eN9hStlwLlWXU3bp7RSruzIgSPEXNunpagCUDRbtz54,21041
60
60
  snowflake/ml/dataset/dataset_factory.py,sha256=Fym4ICK-B1j6Om4ENwWxEvryq3ZKoCslBSZDBenmjOo,1615
61
61
  snowflake/ml/dataset/dataset_metadata.py,sha256=tWR3fa2WG3Kj2btKMbg51l5jX68qm1rfXRswU0IDYTg,4157
62
62
  snowflake/ml/dataset/dataset_reader.py,sha256=e-IRbxbxFfNbsglmqtzhV_wYFsEflBW6-U_krbfXPpw,4371
@@ -65,7 +65,7 @@ snowflake/ml/feature_store/access_manager.py,sha256=LcsfBKsZzfERQQ_pqZG0W-XbpVGx
65
65
  snowflake/ml/feature_store/entity.py,sha256=A65FOGlljREUG8IRMSN84v1x2uTeVGCM4NqKXO2Ui8w,4059
66
66
  snowflake/ml/feature_store/feature_store.py,sha256=cb_5xc3QWkiqnUiQ4Y0T58f2sKuifmumV9jG13qreAk,113425
67
67
  snowflake/ml/feature_store/feature_view.py,sha256=7xfrq7abM9-FiA7mJ1yDq5z9Uk7jbHNuyGyySVlNqbo,37040
68
- snowflake/ml/feature_store/examples/example_helper.py,sha256=DcQZA5rDyRj9lzMp8ZmoATjAzNfC4DL-draz8du9-Ms,12414
68
+ snowflake/ml/feature_store/examples/example_helper.py,sha256=qW6Pu_hQyeSQ3K4OKmiE5AkdvFqDU9OGHNP9RnN6xVE,12482
69
69
  snowflake/ml/feature_store/examples/airline_features/entities.py,sha256=V2xVZpHFgGA92Kyd9hCWa2YoiRhH5m6HAgvnh126Nqo,463
70
70
  snowflake/ml/feature_store/examples/airline_features/source.yaml,sha256=kzl8ukOK8OuSPsxChEgJ9SPyPnzC-fPHqZC4O6aqd5o,247
71
71
  snowflake/ml/feature_store/examples/airline_features/features/plane_features.py,sha256=dLZlKOUsI-NvBdaBeoole0mIUrHfbqTexFSbCDGjlGw,1070
@@ -88,224 +88,229 @@ snowflake/ml/feature_store/examples/wine_quality_features/source.yaml,sha256=dPs
88
88
  snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py,sha256=W58pGmIKV1iehou4Knw_yWJRWKKt_80ZiiMi3C_vwOw,1466
89
89
  snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py,sha256=ej1_DxD_W4TyqwOJ9T5C6s0S8rE5UPaP-KFzKi5MDWM,1024
90
90
  snowflake/ml/fileset/embedded_stage_fs.py,sha256=fmt8IoYbHtBMjyIC3K87ng-i5uYwE_2XKFQogNkP-nM,6000
91
- snowflake/ml/fileset/fileset.py,sha256=u-Hkqr7p97ajRYyd93fr62grbiBaA0AqTYkAAOppZj8,26186
92
- snowflake/ml/fileset/parquet_parser.py,sha256=sjyRB59cGBzSzvbcYLvu_ApMPtrR-zwZsQkxekMR4FA,6884
91
+ snowflake/ml/fileset/fileset.py,sha256=GSRUBNniScUIDl5f8cHvSn9C62JGBRxkzMs-bj2QkCQ,26416
93
92
  snowflake/ml/fileset/sfcfs.py,sha256=uPn8v5jlC3h_FrNqb4UMRAZjRZLn0I3tzu0sfi5RHik,15542
94
93
  snowflake/ml/fileset/snowfs.py,sha256=uF5QluYtiJ-HezGIhF55dONi3t0E6N7ByaVAIAlM3nk,5133
95
94
  snowflake/ml/fileset/stage_fs.py,sha256=IEVZ6imH77JiSOIRlRHNWalwafoACRgHFr8RAaICSP8,20170
96
- snowflake/ml/fileset/tf_dataset.py,sha256=K8jafWBsyRaIYEmxaYAYNDj3dLApK82cg0Mlx52jX8I,3849
97
- snowflake/ml/fileset/torch_datapipe.py,sha256=O2irHckqLzPDnXemEbAEjc3ZCVnLufPdPbt9WKYiBp0,2386
95
+ snowflake/ml/jobs/__init__.py,sha256=ORX_0blPSpl9u5442R-i4e8cqWYfO_vVjFFtX3as184,420
96
+ snowflake/ml/jobs/decorators.py,sha256=Ddop5ZT9cfIitVZdrZkwaHg8q45PC589-vR4vFWnUVg,3658
97
+ snowflake/ml/jobs/job.py,sha256=H4cMk4t23WMW2aJvLbDqWlnb1L1xi_jIDGjLaxJ02lM,4162
98
+ snowflake/ml/jobs/manager.py,sha256=s7plorj3cs6aARxAg_ZRLsZ1OzDTtGFBG5CDooSIlA4,11045
99
+ snowflake/ml/jobs/_utils/constants.py,sha256=QG_9w0SU0Ju5D2nphIjxdG56MfM5bGMQTb1E80YTaVI,2297
100
+ snowflake/ml/jobs/_utils/payload_utils.py,sha256=ZtTQoTGpY1PnA-HasVGwP0pKNtf8DFoMfuCFcQLAbKk,14174
101
+ snowflake/ml/jobs/_utils/spec_utils.py,sha256=YmlzHAyeYKgk_u4oQ_hPSo--v1o4pByQabD0xyzKuVc,10444
102
+ snowflake/ml/jobs/_utils/types.py,sha256=sEV-jCA-0Bb8KdKMBZGrIdqJhSWGb6QI8pYRL56dIDA,874
98
103
  snowflake/ml/lineage/__init__.py,sha256=8p1YGynC-qOxAZ8jZX2z84Reg5bv1NoJMoJmNJCrzI4,65
99
104
  snowflake/ml/lineage/lineage_node.py,sha256=e6L4bdYDSVgTv0BEfqgPQWNoDiTiuI7HmfJ6n-WmNLE,5812
100
105
  snowflake/ml/model/__init__.py,sha256=EvPtblqPN6_T6dyVfaYUxCfo_M7D2CQ1OR5giIH4TsQ,314
101
106
  snowflake/ml/model/custom_model.py,sha256=O60mjz2Vy8A0Rt3obq43zBT3BxkU7CIcN0AkHsOgHZI,11221
102
- snowflake/ml/model/model_signature.py,sha256=gZnZPs9zTCYkeFoiQzoGUQYZMydYjzH-4xPTzfqt4hU,30496
103
- snowflake/ml/model/type_hints.py,sha256=9GPwEuG6B6GSWOXdOy8B1Swz6yDngL865yEtJMd0v1U,8883
107
+ snowflake/ml/model/model_signature.py,sha256=8i2FWSk4ljrcGMephAtd3MCOjY6OumncG3kN8z2yupo,31298
108
+ snowflake/ml/model/type_hints.py,sha256=DzavATx7v9iH8gbvYiVMLogB3-sWPtfcE4i6gAJg55s,8916
104
109
  snowflake/ml/model/_client/model/model_impl.py,sha256=pqjK8mSZIQJ_30tRWWFPIo8X35InSVoAunXlQNtSJEM,15369
105
- snowflake/ml/model/_client/model/model_version_impl.py,sha256=tGfSR4dF8okdBPeAu7yWVSLtwvnvhnJr9xalKbQZw5M,40144
110
+ snowflake/ml/model/_client/model/model_version_impl.py,sha256=I_gi90GEQVLMlOO6Y2S0IIreBTn-bHb8rC9o-2-QzBw,40260
106
111
  snowflake/ml/model/_client/ops/metadata_ops.py,sha256=7cGx8zYzye2_cvZnyGxoukPtT6Q-Kexd-s4yeZmpmj8,4890
107
- snowflake/ml/model/_client/ops/model_ops.py,sha256=didFBsjb7KJYV_586TUK4c9DudVQvjzlphEXJW0AnmY,43935
108
- snowflake/ml/model/_client/ops/service_ops.py,sha256=t_yLtHlAzHc28XDZ543yAALY5iVsRwVw4i9mtiPaXpQ,19237
112
+ snowflake/ml/model/_client/ops/model_ops.py,sha256=fj5AH7Ot9EmeMfgpuB3sBc3Kk36VpR_ba4fFWXxAjV4,44101
113
+ snowflake/ml/model/_client/ops/service_ops.py,sha256=itoi_3kH2-wEa2wsaqPb51vutGWbmu4UKM_QDWHunoo,18788
109
114
  snowflake/ml/model/_client/service/model_deployment_spec.py,sha256=uyh5k_u8mVP5T4lf0jq8s2cFuiTsbV_nJL6z1Zum2rM,4456
110
115
  snowflake/ml/model/_client/service/model_deployment_spec_schema.py,sha256=eaulF6OFNuDfQz3oPYlDjP26Ww2jWWatm81dCbg602E,825
111
116
  snowflake/ml/model/_client/sql/_base.py,sha256=Qrm8M92g3MHb-QnSLUlbd8iVKCRxLhG_zr5M2qmXwJ8,1473
112
117
  snowflake/ml/model/_client/sql/model.py,sha256=o36oPq4aU9TwahqY2uODYvICxmj1orLztijJ0yMbWnM,5852
113
- snowflake/ml/model/_client/sql/model_version.py,sha256=hNMlmwN5JQngKuaeUYV2Bli73RMnHmVH01ABX9NBHFk,20686
114
- snowflake/ml/model/_client/sql/service.py,sha256=fvQRhRGU4FBeOBouIoQByTvfQg-qbEQKplCG99BPmL0,10408
118
+ snowflake/ml/model/_client/sql/model_version.py,sha256=EyMyn0GriurJ-rRd9Fm-Rh8MQlmsQij4qojQJdR6oEY,21288
119
+ snowflake/ml/model/_client/sql/service.py,sha256=GXYRM2vVIqeDKmVEJ-vI-5HMo5D3MAjFrWiGczU_oI4,10869
115
120
  snowflake/ml/model/_client/sql/stage.py,sha256=165vyAtrScSQWJB8wLXKRUO1QvHTWDmPykeWOyxrDRg,826
116
121
  snowflake/ml/model/_client/sql/tag.py,sha256=pwwrcyPtSnkUfDzL3M8kqM0KSx7CaTtgty3HDhVC9vg,4345
117
- snowflake/ml/model/_model_composer/model_composer.py,sha256=535ElL3Kw8eoUjL7fHd-K20eDCBqvJFwowUx2_UOCl8,6712
118
- snowflake/ml/model/_model_composer/model_manifest/model_manifest.py,sha256=X6-cKLBZ1X2liIjWnyrd9efQaQhwIoxRSE90Zs0kAZo,7822
119
- snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py,sha256=akDY_lM3srumPHjmL7AUl782eARg1rWTIdLu-U0Jjwc,2720
120
- snowflake/ml/model/_model_composer/model_method/function_generator.py,sha256=2cE463GKWAJCrqEYD1s8IPzd3iPu0X0eQ12NnXQhGBM,2556
121
- snowflake/ml/model/_model_composer/model_method/infer_function.py_template,sha256=JbCgx__GqkHi6n_ceYdZi_ywNKK38u-d5c5Afg9QUi0,1476
122
- snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template,sha256=L5R04QeoW6dH1PdEy3qo1LS478rTmvvRmrwlgqVwimg,1504
123
- snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template,sha256=NUDSyFFAdEZEWtSkvYxkU9vB-NTjcTg6sjkrNpcmF6A,1418
124
- snowflake/ml/model/_model_composer/model_method/model_method.py,sha256=LBZsXzkGj-OiL9Tw4S0yBJlWLIzwzefCL6iO964gdCw,7019
122
+ snowflake/ml/model/_model_composer/model_composer.py,sha256=iV51I7SK2tPRh0Up3CdCTlhkPTNpEZFthciOGsZhhOg,7021
123
+ snowflake/ml/model/_model_composer/model_manifest/model_manifest.py,sha256=b7eczcLSatqlkQtrKvzkbNacnXRKeSP_qB9sJyJKTe0,8755
124
+ snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py,sha256=Hql_9XIEqwlcqdf_Bupg7IpxKtLpKfGpZDFEuUDLX3U,2759
125
+ snowflake/ml/model/_model_composer/model_method/constants.py,sha256=hoJwIopSdZiYn0fGq15_NiirC0l02d5LEs2D-4J_tPk,35
126
+ snowflake/ml/model/_model_composer/model_method/function_generator.py,sha256=nnUJki3bJVCTF3gZ-usZW3xQ6wwlJ08EfNsPAgsnI3s,2625
127
+ snowflake/ml/model/_model_composer/model_method/infer_function.py_template,sha256=olysEb_bE2C8CjIRAhm7qdr2mtgk77Tx45gnLRVQGFw,1511
128
+ snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template,sha256=8p8jkTOJA-mBt5cuGhcWSH4z7ySQ9xevC35UioCLkC8,1539
129
+ snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template,sha256=QT32N6akQDutLh00cXp2OD4WI6Gb7IGG1snsnrXNih8,1453
130
+ snowflake/ml/model/_model_composer/model_method/model_method.py,sha256=SeN1aPSOhIJExC8OB3BmZo91m3zsQJXQ8-lwWrd2kgY,7275
131
+ snowflake/ml/model/_model_composer/model_user_file/model_user_file.py,sha256=dYNgg8P9p6nRH47-OLxZIbt_Ja3t1VPGNQ0qJtpGuAw,1018
125
132
  snowflake/ml/model/_packager/model_handler.py,sha256=wMPGOegXx5GgiSA81gbKpfODosdj2mvD1bFbeN4OmNc,2642
126
133
  snowflake/ml/model/_packager/model_packager.py,sha256=EhpEmfd2oDYuIrOYFOadI0OOFJa9bleMvI1WTHQqjE8,5806
127
134
  snowflake/ml/model/_packager/model_env/model_env.py,sha256=968vlQJrI2_2rQ88cl3uXe1FP5kG-zG4UkUySRDgFt4,17517
128
135
  snowflake/ml/model/_packager/model_handlers/_base.py,sha256=qQS1ZSz1Ikdj0TvyLU9n8K6KAj-PknL4s801qpnWodo,7164
129
- snowflake/ml/model/_packager/model_handlers/_utils.py,sha256=KwBZVSlp6HcCXd7T_zJJE8s5W9YGeXAD_kTpKhrLVzE,9209
130
- snowflake/ml/model/_packager/model_handlers/catboost.py,sha256=psBv5txOfAjKMqQnxg3sLPd1I7JYtruslbGUkhULtTs,10704
131
- snowflake/ml/model/_packager/model_handlers/custom.py,sha256=i9jhMzNrgxEdiJLw9ojeiMaCWYk5nVj48JyS_e87RpM,8333
132
- snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py,sha256=BzeZgY4Z8GTtgc2sv65wjLlONgfEH1_yWBd2N4RDCMg,21397
133
- snowflake/ml/model/_packager/model_handlers/lightgbm.py,sha256=E0667G5FFfMssaXjkM77vtf_cyQJg53OKgUJOBmWhaQ,11092
136
+ snowflake/ml/model/_packager/model_handlers/_utils.py,sha256=fFnTuS_1DrIQGDsLvgVy0oAfnl7VHdO55-ysg9B5N3Y,10471
137
+ snowflake/ml/model/_packager/model_handlers/catboost.py,sha256=vwlKuXwJGYrna7wkXDgEu8-nUNegNhHMCaNQdhL5p44,10677
138
+ snowflake/ml/model/_packager/model_handlers/custom.py,sha256=Atp6QP_ksRBNXYUEHGe4FykPjEDBR6Fb6E3hWvpsjQI,8302
139
+ snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py,sha256=TEhA1tZT_JeAYWgB68G7E4H96tZ9ehjZ7fqVvaB6iN0,21575
140
+ snowflake/ml/model/_packager/model_handlers/lightgbm.py,sha256=qm_Q7FxD19r1fFnSt25pZJw9sU-jE0Yu2h2qUvOl_qs,11127
134
141
  snowflake/ml/model/_packager/model_handlers/mlflow.py,sha256=A3HnCa065jtHsRM40ZxfLv5alk0RYhVmsU4Jt2klRwQ,9189
135
142
  snowflake/ml/model/_packager/model_handlers/pytorch.py,sha256=DDcf85xisPLT1PyXdmPrjJpIIepkdmWNXCOpT_dCncw,8294
136
- snowflake/ml/model/_packager/model_handlers/sentence_transformers.py,sha256=f21fJw2wPsXzzhv71Gi1eHctSlyJ6NAR1EQX5iUL5M8,9842
137
- snowflake/ml/model/_packager/model_handlers/sklearn.py,sha256=dwwETBdJJM3AVfl3R6VvvVOZQHgnwIuk9dUUCDOs-w0,14111
138
- snowflake/ml/model/_packager/model_handlers/snowmlmodel.py,sha256=uhsJ3zK24aavBRO5gNyxv8BHqU9n1TPUBYm1qHTuaxE,12176
139
- snowflake/ml/model/_packager/model_handlers/tensorflow.py,sha256=SkbnvkElK4UIMgygv9EK9f5hBxWZ2YDroymUC9uBsBk,9169
143
+ snowflake/ml/model/_packager/model_handlers/sentence_transformers.py,sha256=EKgpN6e4c8bi0znnV-pWzAR3cwDvORcsL72x6o-JPqA,11381
144
+ snowflake/ml/model/_packager/model_handlers/sklearn.py,sha256=pMAeHaBUp9SqEOB8AD_zGbhF_S5BTS3SRPjGOqk40Xo,14111
145
+ snowflake/ml/model/_packager/model_handlers/snowmlmodel.py,sha256=dlOnIREhdnq4ufphjM-M6DifUGiftACQKntUzbrzTmc,13954
146
+ snowflake/ml/model/_packager/model_handlers/tensorflow.py,sha256=WQNEwsC5VvzJJ65sRw6wfX3ivf3nKkc2-j6fwe-ytmE,11367
140
147
  snowflake/ml/model/_packager/model_handlers/torchscript.py,sha256=BIdRINO1xZ5uHrR9uA0vExWQymOryTaSpyAMpCCtz8U,8036
141
- snowflake/ml/model/_packager/model_handlers/xgboost.py,sha256=iQkwJ_Ksly3ZSNNjnW2pRetjpyLLneDT5QaeHrpidnw,11542
148
+ snowflake/ml/model/_packager/model_handlers/xgboost.py,sha256=p8J4En5exWRpN3KHDIRtkvSRGpfyW-VaYWEBWjAmivE,11515
142
149
  snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py,sha256=BZo14UrywGZM1kTqzN4VFQcYjl7dggDp1U90ZBCMuOg,1409
143
150
  snowflake/ml/model/_packager/model_meta/_packaging_requirements.py,sha256=yOrF0WBkFh5NvyzZMSZHpsv_W1iR5hRpPH1bwzpSH_Q,78
144
151
  snowflake/ml/model/_packager/model_meta/model_blob_meta.py,sha256=GmiqqI-XVjrOX7cSa5GKerKhfHptlsg74MKqTGwJ5Jk,1949
145
- snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=Fn0yrMiTRmp2lgy15DJvIeT_PMOu_ACNO37b9o4_q2Q,18787
146
- snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=5Sdh1_NCKycLvhMO1IbLyXdl4RO_vnw9Z9-AHf5ojpE,2839
152
+ snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=oQszUWYKJRPJ6TPvQMQa_2IgOdlJOL2af7liHBqcTyA,18995
153
+ snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=nMtx4iDksayA4oR2p5tEf_ikU-RbbgijFy9zkZjRyHk,2975
147
154
  snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py,sha256=SORlqpPbOeBg6dvJ3DidHeLVi0w9YF0Zv4tC0Kbc20g,1311
148
155
  snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py,sha256=nf6PWDH_gvX_OiS4A-G6BzyCLFEG4dASU0t5JTsijM4,1041
149
156
  snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py,sha256=qEPzdCw_FzExMbPuyFHupeWlYD88yejLdcmkPwjJzDk,2070
150
- snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py,sha256=eR_qxEwsmzaeaRYH9K4wUAG7bhpqZvn07en2vfRV4c4,1459
157
+ snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py,sha256=lfC-2nwfH2ucvOqrQOESYK0_CowmFBuOKMi-ci0ytio,1507
151
158
  snowflake/ml/model/_packager/model_runtime/model_runtime.py,sha256=G52nrjzcZiWBJaed6Z1qKq-HjqtnG2MnywDdU9lPusg,5051
152
- snowflake/ml/model/_packager/model_task/model_task_utils.py,sha256=0aEUfg71bP5-RkwmzOJBe51yHxLRrtM17tUBoCiuMMk,6310
153
- snowflake/ml/model/_signatures/base_handler.py,sha256=WwBfe-83Y0m-HcDx1YSYCGwanIe0fb2MWhTeXc1IeJI,1304
154
- snowflake/ml/model/_signatures/builtins_handler.py,sha256=nF-2ptQjeu7ikO72_d14jk1N6BVbmy-mjtZ9I1c7-Qg,2741
159
+ snowflake/ml/model/_packager/model_task/model_task_utils.py,sha256=Lxlw_H2lJQoy-3kpmD9QL4bwYLl1jZj9N8a1SR2gee4,6439
160
+ snowflake/ml/model/_signatures/base_handler.py,sha256=4CTZKKbg4WIz_CmXjyVy8tKZW-5OFcz0J8XVPHm2dfQ,1269
161
+ snowflake/ml/model/_signatures/builtins_handler.py,sha256=eGtGiy81Cs2wHZq69rpvmn3QYBNW17uME-WSrFHzpSc,2713
155
162
  snowflake/ml/model/_signatures/core.py,sha256=C9iTtdaXJVMDkOqCH5Tie7ucib4d0pBJ0oXJWAqur3s,20233
156
- snowflake/ml/model/_signatures/numpy_handler.py,sha256=wE9GNuNNmC-0jLmz8lI_UhyETNkKUvftIABAuNsSe94,5858
157
- snowflake/ml/model/_signatures/pandas_handler.py,sha256=ACv8egyiK2Sug8uhkQqMDGTTc9HPkI3-UZYMUxzSjLg,11145
158
- snowflake/ml/model/_signatures/pytorch_handler.py,sha256=yEU-V_WRjE8Q7NdHyghl0iYpMiIDzGaIR5Pd_ixB1Hk,4631
159
- snowflake/ml/model/_signatures/snowpark_handler.py,sha256=2_AY1ssucMICKSPeDjf3mV4WT5farKYdnYkHsvhHZ20,6066
160
- snowflake/ml/model/_signatures/tensorflow_handler.py,sha256=9bUbxtHpl4kEoFzeDJF87bQPb8RdLLm9OV23-aUyW3s,6114
163
+ snowflake/ml/model/_signatures/numpy_handler.py,sha256=B-U2Pqk767KqB6vNP3dhbkpgTLbNDmzmyz5pDQPMp5o,5783
164
+ snowflake/ml/model/_signatures/pandas_handler.py,sha256=phmF9BkMZoRg99iXFXDhmOPJTg0PhaNFVDXnS-Su1TU,11120
165
+ snowflake/ml/model/_signatures/pytorch_handler.py,sha256=n3TCNhQJwc5MntRzVipN8_LyJN7lLIzh9xY6EsMHFUY,4560
166
+ snowflake/ml/model/_signatures/snowpark_handler.py,sha256=HoaCNgN5UFi-X6bMartY_or7czr5gZd_Lhv_O8wvsOQ,6178
167
+ snowflake/ml/model/_signatures/tensorflow_handler.py,sha256=gXjn0DYl0HvRXld253LR6Fh-DpMZaqshP7iBigA-3Uw,6014
161
168
  snowflake/ml/model/_signatures/utils.py,sha256=1E_mV1qdUuob8tjB8WaOEfuo2rmQ2FtOgTNyXZGzoJg,13108
162
169
  snowflake/ml/model/models/huggingface_pipeline.py,sha256=62GpPZxBheqCnFNxNOggiDE1y9Dhst-v6D4IkGLuDeQ,10221
163
170
  snowflake/ml/modeling/_internal/constants.py,sha256=aJGngY599w3KqN8cDZCYrjbWe6UwYIbgv0gx0Ukdtc0,105
164
171
  snowflake/ml/modeling/_internal/estimator_utils.py,sha256=mbMm8_5tQde_sQDwI8pS3ljHZ8maCHl2Shb5nQwLYac,11872
165
172
  snowflake/ml/modeling/_internal/model_specifications.py,sha256=P9duVMP9-X7us_RZFPyXvWxOrm5K30sWDVYwSMEzG1M,4876
166
173
  snowflake/ml/modeling/_internal/model_trainer.py,sha256=RxpZ5ARy_3sfRMCvArkdK-KmsdbNXxEZTbXoaJ4c1ag,984
167
- snowflake/ml/modeling/_internal/model_trainer_builder.py,sha256=11cpEaxU1D7R7m79nVLcCA9dryUPsElS7YdlKZh850U,8422
168
- snowflake/ml/modeling/_internal/model_transformer_builder.py,sha256=Y6Y8XSr7X7xAy1FvjPuHTb9Opy7tnGoCuOUBc5WEBJ4,3364
174
+ snowflake/ml/modeling/_internal/model_trainer_builder.py,sha256=n1l9i9LFLcdbMFRvxkWNIs7kYnNNlUJnaToRvFBEjls,8062
175
+ snowflake/ml/modeling/_internal/model_transformer_builder.py,sha256=E7Psa14Z-Us5MD9yOdRbGTlR6r4Fq7BQSCcHwFlh1Ig,2815
169
176
  snowflake/ml/modeling/_internal/transformer_protocols.py,sha256=adbJH9BcD52Z1VbqoCE_9IexjIxERTXE8932Hz-gw3E,6482
170
177
  snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py,sha256=UN-23TJ4Usf6N9ZTXcU4IfJmI-uJXOsfdslOAax7d2I,7989
171
178
  snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py,sha256=h3Zsw9tpBB7WEUyIGy35VYNNR8y_XwiRHyR3mULyxIE,5960
172
- snowflake/ml/modeling/_internal/ml_runtime_implementations/ml_runtime_handlers.py,sha256=fgm1DpBBO0qUo2fXFwuN2uFAyTFhcIhT5_bC326VTVw,5544
173
- snowflake/ml/modeling/_internal/ml_runtime_implementations/ml_runtime_trainer.py,sha256=lM1vYwpJ1jgTh8vnuyMp4tnFibM6UFf50W1IpPWwUWE,2535
174
179
  snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py,sha256=Jypb-EH4iCOTtFRfF_wUNlm3yMR2WTUrV0YZnuYz_QA,54996
175
180
  snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py,sha256=HnsSmsXAeJrH9zVeq3CSziIaCUDxeWWx6kRyAK4qajM,6601
176
181
  snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py,sha256=O6QHRPVS-HzVesw_tMXL6NALAphkqXIEsrEKMva6-Z0,15750
177
182
  snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py,sha256=D4tZY-Fg9U6yY4mkznzzFuf6GmmemS5ZQCUu2yZgDTQ,32259
178
183
  snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py,sha256=4WP1QVqfSVvziVlQ7k9nWQNCM0GN5kTk4Xnd-9jWTXc,17300
179
184
  snowflake/ml/modeling/calibration/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
180
- snowflake/ml/modeling/calibration/calibrated_classifier_cv.py,sha256=TFIK8t0Q2iWmc7m_Z4RS5NtaFbZ1tXDWoq36lqv0cGs,53602
185
+ snowflake/ml/modeling/calibration/calibrated_classifier_cv.py,sha256=JniApR5y_vYUT4vgugsYiOWsXsknIA6uDa5xZohnEr8,53780
181
186
  snowflake/ml/modeling/cluster/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
182
- snowflake/ml/modeling/cluster/affinity_propagation.py,sha256=k1ZND2S4qlc45KxBIUkg5T-ajKJ3VWk-4yayLdv44Zk,51855
183
- snowflake/ml/modeling/cluster/agglomerative_clustering.py,sha256=IsWA50g9Fxi3ddMluCO1eqbJ3zcXTmM13s4NPDfvzeo,53768
184
- snowflake/ml/modeling/cluster/birch.py,sha256=M1-7YgDw71fCRt_qtzH_OLKmZhuceq8CLqGw5VjF51M,51768
185
- snowflake/ml/modeling/cluster/bisecting_k_means.py,sha256=MUoutkGVeTcX1MbXZXqyJh5nR0BWqMvJDoorLoXcYUg,54537
186
- snowflake/ml/modeling/cluster/dbscan.py,sha256=rjplq4RyBsIImQbOO19IbV2zobTPKgUmTRe1grROqiI,52109
187
- snowflake/ml/modeling/cluster/feature_agglomeration.py,sha256=89zIYUVfvbJPZJrsjVnzQhRKDY36neIY2pfy4fOaeQE,54062
188
- snowflake/ml/modeling/cluster/k_means.py,sha256=eji_ySSPIrxQAYz8VQ41suLUwP7SdKF33Bt9ySLOdlg,54263
189
- snowflake/ml/modeling/cluster/mean_shift.py,sha256=7F-VD9ElANRiinzpapgvxxs_u1Tg1ennRUVdLQLcQhU,52142
190
- snowflake/ml/modeling/cluster/mini_batch_k_means.py,sha256=jFxEH4PXcSVuni4xKGbP4OOJNBu-j4P0QLx8u8CRpYQ,55460
191
- snowflake/ml/modeling/cluster/optics.py,sha256=-R9TNtmLPrQF_2d2wCSElnsZOrg2EGvCCTdLqMu3sv0,55319
192
- snowflake/ml/modeling/cluster/spectral_biclustering.py,sha256=o8_SbNh3dYEG8BKz0r-0BZkJZOwXv6gx0nNfAEceiks,52152
193
- snowflake/ml/modeling/cluster/spectral_clustering.py,sha256=zL00K8UQSehQMZ-0Aeqw-vzFKqNXrbVwBYdoam0mXOQ,55436
194
- snowflake/ml/modeling/cluster/spectral_coclustering.py,sha256=yzrNfxs48JPQPkLdO6So11lJDZKsy8gDD1wlMJ7oxcc,51285
187
+ snowflake/ml/modeling/cluster/affinity_propagation.py,sha256=CqRDwR5AxWtJOc2cJ1NYdwoC-kPq14Ag4hAHbc29fFg,52033
188
+ snowflake/ml/modeling/cluster/agglomerative_clustering.py,sha256=ms167mkw1TxaQ40RIvOkVCKXnYWZ8T66XOyrq061Wxs,53946
189
+ snowflake/ml/modeling/cluster/birch.py,sha256=WC_bTyytjC0_awNUt6oJianpeJKQPpsgOUZJ1Pzdj5k,51946
190
+ snowflake/ml/modeling/cluster/bisecting_k_means.py,sha256=dv3gctgYmzCk1NhKHx__AlhUvSwE2tprnmc3XV66118,54715
191
+ snowflake/ml/modeling/cluster/dbscan.py,sha256=GaeNT3w4yxFPKXj4wg0o24VMc2TlBXbtMuw-Y3awExY,52287
192
+ snowflake/ml/modeling/cluster/feature_agglomeration.py,sha256=LVYxbuhcpUD0NAcY-cLp4iW4xNGu3vAQtwCuefAO-gA,54240
193
+ snowflake/ml/modeling/cluster/k_means.py,sha256=lJPWARJRd9TKuj7MSmdwFB1fPXh4Bzx4YuBVe07qLU8,54441
194
+ snowflake/ml/modeling/cluster/mean_shift.py,sha256=zVlmKd_5dwhATXcxmTxtmW83kAJO1tBpqZY9WNlyZAY,52320
195
+ snowflake/ml/modeling/cluster/mini_batch_k_means.py,sha256=Ta4Mk8WvWsmnwAOQhQdV0gi-5S2G6v3X0JgCgMiKYqg,55638
196
+ snowflake/ml/modeling/cluster/optics.py,sha256=Ar1GQGlmjx3ielzstafhTnKL1Fd3WG34AX0TCIFfJx0,55497
197
+ snowflake/ml/modeling/cluster/spectral_biclustering.py,sha256=Xyq1AJeJp6tHlYHuF4cqsE2VIHIdk6B0sAalgx9MyzY,52330
198
+ snowflake/ml/modeling/cluster/spectral_clustering.py,sha256=IoHmeovo0ndflgra5WmDL5i26OdFjc6MH76b90mzk2k,55614
199
+ snowflake/ml/modeling/cluster/spectral_coclustering.py,sha256=L0FtG9mzUil-5C5bjkCjZaIPFadZ18Ijep3WVDkTvO0,51463
195
200
  snowflake/ml/modeling/compose/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
196
- snowflake/ml/modeling/compose/column_transformer.py,sha256=LTaCu3U9lqbGbzGlSggzEfmjih_YEDsKAVYEMPWqBD0,54610
197
- snowflake/ml/modeling/compose/transformed_target_regressor.py,sha256=hk-g-yJFL4CNlmDhTg6vw-N8N-bg9hZvzh2nWe4Z8rM,51897
201
+ snowflake/ml/modeling/compose/column_transformer.py,sha256=2ipCSOw5v7cFpDNvw2AnxombJFC4cbkW4Hb8_32Z9HY,54788
202
+ snowflake/ml/modeling/compose/transformed_target_regressor.py,sha256=Lfa3bfdCvvGaaoZFN39zs-knO-dacR5ifz4JiRhQxtI,52075
198
203
  snowflake/ml/modeling/covariance/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
199
- snowflake/ml/modeling/covariance/elliptic_envelope.py,sha256=c-BG_eiC01n2ZN76ZEj80TtQRM9z-GPMWfIVgNnqBLA,52186
200
- snowflake/ml/modeling/covariance/empirical_covariance.py,sha256=hYRitTNwhsY60qpTbUdhNMQkCG2aX2oxFP0trsYyJeA,49984
201
- snowflake/ml/modeling/covariance/graphical_lasso.py,sha256=fsotiESbzirsjULlzda8X0OrJbdCYJjwRUHFsMX5n-4,51843
202
- snowflake/ml/modeling/covariance/graphical_lasso_cv.py,sha256=WeiQ8WXeDsy3ly6sx6246jq5hFKkAchXLtK4o2RfbYI,53035
203
- snowflake/ml/modeling/covariance/ledoit_wolf.py,sha256=GJhlSCGT-nanFY0fAvSCDlfaiiZpOFxeNJ8o54uEFEM,50113
204
- snowflake/ml/modeling/covariance/min_cov_det.py,sha256=wmRlc8MiDOUOVLVKYcdKHs2aHGp45A-7zlWCJ9CDCw8,50880
205
- snowflake/ml/modeling/covariance/oas.py,sha256=RL1L8D-Ed9s1rFVnSn4wPvwQao6jYFhDz5tDq1W_KHg,49727
206
- snowflake/ml/modeling/covariance/shrunk_covariance.py,sha256=ULvwAUtaQUSeqQELKhSaa1kfjeXuqgGSdD71X81YjZo,50136
204
+ snowflake/ml/modeling/covariance/elliptic_envelope.py,sha256=RaKo_LRGkl4cY0qHDuk8F2MjMIY3FriHL-iIRaoi6YA,52364
205
+ snowflake/ml/modeling/covariance/empirical_covariance.py,sha256=2zXGrOTA2acEJeed-TNnv4SsKYQmUtuZWaJ7vUKPbCA,50162
206
+ snowflake/ml/modeling/covariance/graphical_lasso.py,sha256=05yYxExMUixdKmBVxUa3TEnukdruMzwagXCQT1ln75Y,52021
207
+ snowflake/ml/modeling/covariance/graphical_lasso_cv.py,sha256=8blX9csdbbUJEBmQA_IN31LuGdbKinFoR1MTayffSQI,53213
208
+ snowflake/ml/modeling/covariance/ledoit_wolf.py,sha256=M5FLiV8fm9qZhEQXVoEh2N97p6LT05zuXSrrfWMW96A,50291
209
+ snowflake/ml/modeling/covariance/min_cov_det.py,sha256=DAFJ5PkON4D1fKgnF7ExKqPzbOCrn01K8N8we6p03wM,51058
210
+ snowflake/ml/modeling/covariance/oas.py,sha256=yxUj8dkixKhkCBCc3LhtfqDwactxHnGBX_KaC1jfIuI,49905
211
+ snowflake/ml/modeling/covariance/shrunk_covariance.py,sha256=nD7ShDojIk4iAf_YCSKxnl-_kvbL9Zl0FRLtQzcJ3UM,50314
207
212
  snowflake/ml/modeling/decomposition/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
208
- snowflake/ml/modeling/decomposition/dictionary_learning.py,sha256=AJBcaae1t9R7XAbjLrmYd9U0AHzVoG_5E8ZAbunYWfU,55135
209
- snowflake/ml/modeling/decomposition/factor_analysis.py,sha256=yple9ZHcINCl95OpB0GivWbi-gWC9Q4TW-_YoYg3cNQ,52794
210
- snowflake/ml/modeling/decomposition/fast_ica.py,sha256=lUb88ndGnryU1-jU8ASpG86keTSCZ4zELccg-tfC0Ak,52721
211
- snowflake/ml/modeling/decomposition/incremental_pca.py,sha256=G_buEnTXWdPX-KVR0YRZrm82118_cYWQV8TFl_eBN-A,51088
212
- snowflake/ml/modeling/decomposition/kernel_pca.py,sha256=oiV8XnvFPrYLIpfeh7hzKXaQAZtOZ7fZWA2rh0nOuiA,55078
213
- snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py,sha256=QorZjT46Fs3Dm5fkALMWhiY-YA5Aq8GAl6WPrckrR4E,55867
214
- snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py,sha256=tWHa8KqsBDnwjWes-hs-qiB-JHPLObbm18UxVUu8w_Q,53130
215
- snowflake/ml/modeling/decomposition/pca.py,sha256=PEUS9WHGS3kFRbyJxgDphJE6gWi5Lpul5pBQ85YfgF8,55298
216
- snowflake/ml/modeling/decomposition/sparse_pca.py,sha256=vMWi3cKMuFrJOlggWPs_vQaC9WF_q4M0XHXPpuR34Vs,52237
217
- snowflake/ml/modeling/decomposition/truncated_svd.py,sha256=oy1k6zTMb5R9_AaYYJeVAS_U3m0zfVwvKGLbVAUeW8A,51863
213
+ snowflake/ml/modeling/decomposition/dictionary_learning.py,sha256=Fkg_HYbxx1N5vZ6Jf-dMq-4Q9IGjMmKzGQad8LPsrPg,55313
214
+ snowflake/ml/modeling/decomposition/factor_analysis.py,sha256=xucG_8znJNtZu06tT5G8NoHfPcokXt0XuTuePotydWc,52972
215
+ snowflake/ml/modeling/decomposition/fast_ica.py,sha256=hnRksLrvlhKzUa4TDDvd01UFea5N21iJDornOrjhKrc,52899
216
+ snowflake/ml/modeling/decomposition/incremental_pca.py,sha256=IFuUgpqxdPcUBCb5vMiNigZ854eJ6Ab4m3h_4qcFvpw,51266
217
+ snowflake/ml/modeling/decomposition/kernel_pca.py,sha256=LqilurNUpzQpfQ5lRe142uX6pemDuSlh6hm_JX_PB6I,55256
218
+ snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py,sha256=V0jSC1ujjq3Wrn0BA6kvCOFZ9QBVF11Dit02L2k8Eys,56045
219
+ snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py,sha256=ycjHdaNG5HTIDDH7XoIiY36-MFDYglo_-Ci8IPC0Fz0,53308
220
+ snowflake/ml/modeling/decomposition/pca.py,sha256=EZNn5_LjbbgjXVjx_dlBY-Pn3IP0JAZJDftZgY37caM,55476
221
+ snowflake/ml/modeling/decomposition/sparse_pca.py,sha256=qbHSoABVm_R-SUTky0lNhOYW4WaN6vK5CchYd6Y8mP8,52415
222
+ snowflake/ml/modeling/decomposition/truncated_svd.py,sha256=-ashOOOhiX17jiDsc4EIx6vkSC3TD2wgH-KzzS3Djvs,52041
218
223
  snowflake/ml/modeling/discriminant_analysis/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
219
- snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py,sha256=9JKFvGdCZZEqQvHiJxdHQXMBdqaDfAgKOQEQcZBGzfE,54754
220
- snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py,sha256=x536xqmYYQa9n6dJG5uW-kr0Ah-0wIFf5cWq_hlGUCQ,52333
224
+ snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py,sha256=gv1DuoypM4rJa_W6Fv27x6B8dTP6fX8Z3MykXicb8u8,54932
225
+ snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py,sha256=90IxGXiskt9SNoRJzR8AvFQnrdDFaDXdKu-6_C87Mys,52511
221
226
  snowflake/ml/modeling/ensemble/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
222
- snowflake/ml/modeling/ensemble/ada_boost_classifier.py,sha256=UdGn1aSInpqsmOCycMaotppJ7oIa7KYzYFKSdcKlra0,52535
223
- snowflake/ml/modeling/ensemble/ada_boost_regressor.py,sha256=1batkzCn0PHyLk8jdN0n3AY0-PKU7bPdHpAlSV1ew2A,51538
224
- snowflake/ml/modeling/ensemble/bagging_classifier.py,sha256=RLOvLvHm-snlgDO8bOywN8K0xsOS7Ay4LEdGg8dooqE,53727
225
- snowflake/ml/modeling/ensemble/bagging_regressor.py,sha256=gE1IIkVpPBdnVz2pQp8m6_HuYglRVWSRpR35Gs8oHB0,52962
226
- snowflake/ml/modeling/ensemble/extra_trees_classifier.py,sha256=0OPcDnZQfYZGxruEkSC5PfJ1bXt8eEqV5qcPxrCiOqQ,59776
227
- snowflake/ml/modeling/ensemble/extra_trees_regressor.py,sha256=ktX5IdGEZkLg6OsF_XX0CeuBjc_3VzQyyJZihoHGyLU,58229
228
- snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py,sha256=MK8hfnMxLONqj4JAmsparVB_lvMre5EswBGDnfxmR5g,60535
229
- snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py,sha256=x0_pDhqifw9waPkib-BsNnSwq0_hqjjCtElrLNn-q_g,60127
230
- snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py,sha256=GvXqM5VOGw2PdjK7eoO4cFyX09XK60LhSklAP8j8uPA,61021
231
- snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py,sha256=6a3LDEOTnDv8VHy5szdauBxXrWjOC8gCJf9q9zvFjqE,59356
232
- snowflake/ml/modeling/ensemble/isolation_forest.py,sha256=bKDKA7N0Cnadd-ed6gcWZLZ-HcA47Z9imUEIURkVOac,53320
233
- snowflake/ml/modeling/ensemble/random_forest_classifier.py,sha256=P60cup1BdqN3CzNvTxPuJN4fzv5WNZeKB3flh87zlNg,59749
234
- snowflake/ml/modeling/ensemble/random_forest_regressor.py,sha256=iNJNzWw6Gmp21UmLdNqOVCHfd0rMj7Uor-LYPIls7qw,58202
235
- snowflake/ml/modeling/ensemble/stacking_regressor.py,sha256=_7UAkQFzVg86CEVt71flU5vKHPkOwk4OLvnBeqVWy9E,53264
236
- snowflake/ml/modeling/ensemble/voting_classifier.py,sha256=Tp3Bp2t1eiPaZHMSwzVa-F7jwR21EHwxOjwwelQf6Rw,52816
237
- snowflake/ml/modeling/ensemble/voting_regressor.py,sha256=SwoThI21kjcR1SIWGBFfaTBkElC7bT3rYBQPvZjSpxM,51341
227
+ snowflake/ml/modeling/ensemble/ada_boost_classifier.py,sha256=IaX1u3qjLCrTz0-xqEG651M7mMChwzwYg9Yxrn9GRT4,52713
228
+ snowflake/ml/modeling/ensemble/ada_boost_regressor.py,sha256=5LER9dyYnkIDzMTasn66LxpR97HPGb8yxuVkKRNT7x4,51716
229
+ snowflake/ml/modeling/ensemble/bagging_classifier.py,sha256=b93ddAeS6Zk_TlbOO8Vov7g3TWccm641uQeC6ydz0IU,53905
230
+ snowflake/ml/modeling/ensemble/bagging_regressor.py,sha256=Fj8KZ81GmUDlwpNeIHjD5t_J9BPvAWd53RZiBlQuuPE,53140
231
+ snowflake/ml/modeling/ensemble/extra_trees_classifier.py,sha256=yqHN3SIPg2AJ-6etymTbO2K7qn0RRXBUBoz3VYkLJ6c,59954
232
+ snowflake/ml/modeling/ensemble/extra_trees_regressor.py,sha256=YR6O27rGbZvYOEqzBUphnUopk_A4VufI4vtZuGNAj-M,58407
233
+ snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py,sha256=_ph-9VAnsyRvCM0I2DLQotbuM3K2NKBYCc9N6agIi3Q,60713
234
+ snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py,sha256=_i7Px76XlOY1Yh-vz8O4xDibc00LaCqOoQLPjf4qb64,60305
235
+ snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py,sha256=Kzp78g-bMxFIdvQKzqoe2jOAvyGyNSXnaaxscITPVGU,61199
236
+ snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py,sha256=Mf2cTmLgENtF-iy4vCDe_AX59rYRIDrGijraOvbWodU,59534
237
+ snowflake/ml/modeling/ensemble/isolation_forest.py,sha256=UydWp5KrT8_FgG29rG_bzr6HOILeykq-3SE_dcIcc_M,53498
238
+ snowflake/ml/modeling/ensemble/random_forest_classifier.py,sha256=9eWLXEeRem1XDJjEcty7bZV2mT0Akfe76sPDiPvddag,59927
239
+ snowflake/ml/modeling/ensemble/random_forest_regressor.py,sha256=V4jRwqelQXSfBIYGHkVh2uKCKinHNLa1ssi6icGB_ts,58380
240
+ snowflake/ml/modeling/ensemble/stacking_regressor.py,sha256=Z-HTdCSQLTuOdwpe_4ScGHPIcqHTcBDiD80KGep6x00,53442
241
+ snowflake/ml/modeling/ensemble/voting_classifier.py,sha256=NZKRVdo9ZRrvqNspXU_H8KxzqayU6rrBJCrTR__YFjc,52994
242
+ snowflake/ml/modeling/ensemble/voting_regressor.py,sha256=0kwAKXYHJk0REhhAMe0FhYBShd_ysurDV7qP4CWGjOo,51519
238
243
  snowflake/ml/modeling/feature_selection/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
239
- snowflake/ml/modeling/feature_selection/generic_univariate_select.py,sha256=VhZLbQDQSlMmVLKUW14T7bS6miRlxbjNLAICDLuSQAw,50811
240
- snowflake/ml/modeling/feature_selection/select_fdr.py,sha256=CU5gCe24cP8GqL2XsVX6eiO3-q2AWnL1uN3kyd9fUDU,50273
241
- snowflake/ml/modeling/feature_selection/select_fpr.py,sha256=-Dw7VTLNUifbSdlYxReKx20oWljAQSJYD62xa1k2XtA,50267
242
- snowflake/ml/modeling/feature_selection/select_fwe.py,sha256=Je3rfzC5lYaFEm5UPVFZL5dHZO4PkNac7jhEzReOFVU,50275
243
- snowflake/ml/modeling/feature_selection/select_k_best.py,sha256=HL44ELYoURu3AAEUVAq4jOLb0PqyPR1xzlupclK1zgU,50368
244
- snowflake/ml/modeling/feature_selection/select_percentile.py,sha256=g7wL2FyLmeBDUy6-3ArkLlbKWkzb49wHCcEgU7cR1o4,50428
245
- snowflake/ml/modeling/feature_selection/sequential_feature_selector.py,sha256=bn_42MIkNfBcRmS_o7csgSq1k8vEmlmjUi-Rrmr8-Y8,53207
246
- snowflake/ml/modeling/feature_selection/variance_threshold.py,sha256=Uligo8j5-5A6b9WRmZtiFFgokBl9AlpHhQArCwc67S4,50069
244
+ snowflake/ml/modeling/feature_selection/generic_univariate_select.py,sha256=Y_qauoRdTYV1xMCDTGtCjQ_Gevp9vlxFBygGeE1fQ-I,50989
245
+ snowflake/ml/modeling/feature_selection/select_fdr.py,sha256=ysMpv5h0vjwRP86b96Um69L7YaHdlLhstsYTfO2YkcA,50451
246
+ snowflake/ml/modeling/feature_selection/select_fpr.py,sha256=M328iFSomFmUC1tUwgbS6nqb2QL9lLV7I2N12eIvWVk,50445
247
+ snowflake/ml/modeling/feature_selection/select_fwe.py,sha256=Oi8E53i9ooXZ7aRYGi7y9eCUZQXHupcq7VvQBIHVVDE,50453
248
+ snowflake/ml/modeling/feature_selection/select_k_best.py,sha256=YEYfdIktGtaXEkjo2t2FUHgv274H8qzY6RBXericyAg,50546
249
+ snowflake/ml/modeling/feature_selection/select_percentile.py,sha256=taAIIkUGudZnLDDvyS3Bb59NozewAK60u9etVRRltI4,50606
250
+ snowflake/ml/modeling/feature_selection/sequential_feature_selector.py,sha256=W5-NOY5fkDPCXmQoDUTn7t6Up4ayh3PWtf7-35OjfLw,53385
251
+ snowflake/ml/modeling/feature_selection/variance_threshold.py,sha256=NcQxu3aTqkZD-DAxalJeGeOlUB6M0XwYtWaQd8zwPB8,50247
247
252
  snowflake/ml/modeling/framework/_utils.py,sha256=7k9iU5zAWa4ZpMZlg8KfSMi4vH3o69w5aAh5RTRNdZ4,10203
248
253
  snowflake/ml/modeling/framework/base.py,sha256=Q1Yq8SesnpVWdtRGc6rbuz9T3hcT0eRjl2ZiWGyWAeQ,31954
249
254
  snowflake/ml/modeling/gaussian_process/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
250
- snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py,sha256=XhNEhI74o1MIWWdhS6M5VpIi26g4nT3f3q-RFwICu34,55699
251
- snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py,sha256=ixMgrUx730ndApkB9AFJoRBgN8VqfYFzH-wYmyuEF5c,54763
255
+ snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py,sha256=xkWHEGfuQ4ePw1lhEIOpSa4AHrfPehBrbpE0U6GEbP8,55877
256
+ snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py,sha256=K0g7VbDw8WjiECflDVJqsxDemLiH0cmIdm7Rr7A6xEI,54941
252
257
  snowflake/ml/modeling/impute/__init__.py,sha256=dYtqk_GD_hAAZjGfH1maWlZQ30h4hu_KGaf-_y9_AD8,298
253
- snowflake/ml/modeling/impute/iterative_imputer.py,sha256=f6avKsWMH86KMH7dMvFj_JAx6slZk631h3e-jGYo_yY,56592
254
- snowflake/ml/modeling/impute/knn_imputer.py,sha256=7VfopZ9-g_iVsM573g711v86XG7itMNzER2QMBA9nCY,52302
255
- snowflake/ml/modeling/impute/missing_indicator.py,sha256=xFpuMBd2h9yV62MfkKIz6sVS6skOR5Sos5R8xeI8S_k,51165
258
+ snowflake/ml/modeling/impute/iterative_imputer.py,sha256=ArB7_BNQ1yS13uiFzMaNUbHAEsnBHyafedIFu4UNPiM,56770
259
+ snowflake/ml/modeling/impute/knn_imputer.py,sha256=EJAwTGACFByvJgb-EG2jEFEZ5_GOjDCSmltsQ6QsNg4,52480
260
+ snowflake/ml/modeling/impute/missing_indicator.py,sha256=P-4XgNFt6jnHwIv65joaU-yy2aLysIjOQoQemXh7JOU,51343
256
261
  snowflake/ml/modeling/impute/simple_imputer.py,sha256=T1niXlhS2vWbhF5IQ2k7qlBXKmvYVC3y1aKq73dCaBs,20946
257
262
  snowflake/ml/modeling/kernel_approximation/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
258
- snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py,sha256=Wv6Qx-CFff8Fo7f_qGyEU2pg9MDoC6XSUn9qIZGr_k0,50199
259
- snowflake/ml/modeling/kernel_approximation/nystroem.py,sha256=Qf9p8v4fE3E3kDxK1MAzE4hQo3UoR5Wglukm9Coj6TM,51959
260
- snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py,sha256=_FyxuBoy-0x88etrF2y12uMX_EjscisRYH03y7yqM6w,51220
261
- snowflake/ml/modeling/kernel_approximation/rbf_sampler.py,sha256=meXIcWyEVtHtIjHwqPA-lfE3xgBPRUGrKwYHXeNJyPY,50563
262
- snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py,sha256=uFOYWOHEazfgLgWBv7r6cfHOskC81I2z_bkoDWYtK7I,50618
263
+ snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py,sha256=EmJpDmbQTcsde9lEHCtSmPIrsfGL1ywV1jw-hDvMPzU,50377
264
+ snowflake/ml/modeling/kernel_approximation/nystroem.py,sha256=Hw-3MSysDlLLcfh5RaKs2IlvvXgait5dJRdZIy4lQx0,52137
265
+ snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py,sha256=GVfBpS486ZXYc6AUyTksz19AToDHKFFabiG1-YW82Kg,51398
266
+ snowflake/ml/modeling/kernel_approximation/rbf_sampler.py,sha256=I3G5D_64zEypbYywnLcsuXU6MkB6GktdtEDBFHM0QY8,50741
267
+ snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py,sha256=id6MHaqQd2XRJZtct7FJWgbwWID0Jj4Q-4Cmk0_RNmw,50796
263
268
  snowflake/ml/modeling/kernel_ridge/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
264
- snowflake/ml/modeling/kernel_ridge/kernel_ridge.py,sha256=OHjaB-MgZvuYFtQawAC1e5rWw98n2n4jpubjdDxoa6w,52067
269
+ snowflake/ml/modeling/kernel_ridge/kernel_ridge.py,sha256=mgIqlhdIeDwM1KZvUhuCnq3amSvG-BJ4pByjTTW9uLc,52245
265
270
  snowflake/ml/modeling/lightgbm/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
266
- snowflake/ml/modeling/lightgbm/lgbm_classifier.py,sha256=7Sv6ovpKWEVX9tgo9YgPIRPqHmZ9752PacHzpw8YJpo,51570
267
- snowflake/ml/modeling/lightgbm/lgbm_regressor.py,sha256=V0EBtok8jgxDlkCR4M8lg2CW_UOVXmMS7AqOH8LNLEY,51072
271
+ snowflake/ml/modeling/lightgbm/lgbm_classifier.py,sha256=bIWtW2FfW5liDQ_sNQ3DqydbAc0-SFTRr-92WW2iFvI,51748
272
+ snowflake/ml/modeling/lightgbm/lgbm_regressor.py,sha256=SC5xBwFNmaHAoZGLiQZGW5Hyhp3LA-WZVg7XDoW97t8,51250
268
273
  snowflake/ml/modeling/linear_model/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
269
- snowflake/ml/modeling/linear_model/ard_regression.py,sha256=DEX9-MxB9zuw2kdNZM8fjoUHBwRtmoIxeV6zzDvHIm0,51827
270
- snowflake/ml/modeling/linear_model/bayesian_ridge.py,sha256=gc8wvc6ewNnA4L0pSRMgI_we8AN-tNl6FxGgb37xArk,52197
271
- snowflake/ml/modeling/linear_model/elastic_net.py,sha256=nGHJOJ5hw_ZLEaMnC8kFFo4emDiTZ6bLKaDmT2hpyMM,53215
272
- snowflake/ml/modeling/linear_model/elastic_net_cv.py,sha256=thUXXE4ZXvIOCGHwEzgOHfNCQHuoA46OMjEzgS-lr44,54291
273
- snowflake/ml/modeling/linear_model/gamma_regressor.py,sha256=uB9Ru3gE1Cex-XyT-yc3qt6uD1XImIjEHkM4gTpFu-E,52080
274
- snowflake/ml/modeling/linear_model/huber_regressor.py,sha256=R9ColYTOXUBiOMj0-onT1Lhb3iSDU9rcXMyyA0spy3k,51277
275
- snowflake/ml/modeling/linear_model/lars.py,sha256=sC5zjOgBSL7QXrHftXla8wiCugE6_Au3Ub2awz9ix7k,51983
276
- snowflake/ml/modeling/linear_model/lars_cv.py,sha256=J-pHwX1MQk7FRWf5xsuoijO-jCBJpIrnFyhNR75sMKA,52231
277
- snowflake/ml/modeling/linear_model/lasso.py,sha256=oCvyY7P6Dqgyyy6IVMjaWPXR9uJXTCSvepjy1o3ylBU,52597
278
- snowflake/ml/modeling/linear_model/lasso_cv.py,sha256=rE1GJOuj0HECA9nJ1SwuOBKqH_Zm4hiDhAQYxN-n_84,53409
279
- snowflake/ml/modeling/linear_model/lasso_lars.py,sha256=Yf1pOMq3SsD-wY_hNmX3f0LEAnUP8Zt5uyS_hoRKM4g,53124
280
- snowflake/ml/modeling/linear_model/lasso_lars_cv.py,sha256=kKO-V3KYVYqQ3hMy2goGkEdNJFkvwLtaoIMh_d7MWHs,53112
281
- snowflake/ml/modeling/linear_model/lasso_lars_ic.py,sha256=CC094Ky-JhTsOlTza9ta9UVt4AcspAo3KM84vzeL2_w,52433
282
- snowflake/ml/modeling/linear_model/linear_regression.py,sha256=RgsPYYgUVbU7rDbjIU_SkKQ2b_rLKjhaaibaqPXCowM,50821
283
- snowflake/ml/modeling/linear_model/logistic_regression.py,sha256=yhfiwaya483nUTGTJmpWFkffzTk8-HQwSbgQ7qk8BL8,57586
284
- snowflake/ml/modeling/linear_model/logistic_regression_cv.py,sha256=sO7Dyt31IxNShhhe9_a-0_LOuqT5aWLre5SBbBIm4sM,58650
285
- snowflake/ml/modeling/linear_model/multi_task_elastic_net.py,sha256=oAQ3x8w1uZNCDqIr-onPSUz2guRihpzKqL9XuILSdhA,52296
286
- snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py,sha256=LThFnQRTrOejjRf3pa7ztF3CylliSGa8yfcU6ib5_Wo,53961
287
- snowflake/ml/modeling/linear_model/multi_task_lasso.py,sha256=BfNZNeNC61muK_z6EUJ_5SvDiiUZdoBCO8Jxl-cSxNs,51839
288
- snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py,sha256=Ysr8hVUKS5sBPrL84KgCfqwYY5gDvOOk9CZU8G3BwE8,53128
289
- snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py,sha256=jvwmMRDbY8ogcAkfvCDKEz1KBhVw2sv8oo5li78vH7U,51044
290
- snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py,sha256=hVFlZCRz4-MiwrHck91H_omQg01EKVlYmNvbPjdQcqc,54868
291
- snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py,sha256=sU2S8myRWlqohop7OF9tbltPlDt7PGoSN5gWnzAlwCk,53930
292
- snowflake/ml/modeling/linear_model/perceptron.py,sha256=wclJmFgaaS-8r_QWmrbMeKIyAotU_lA05njfrbM7xLM,54185
293
- snowflake/ml/modeling/linear_model/poisson_regressor.py,sha256=qZwQ7JeCSP-vQGKwvNXV90UoQQVp8DRLf4P4w8ScAds,52127
294
- snowflake/ml/modeling/linear_model/ransac_regressor.py,sha256=PN00XC36LAXoaM8KKRvvL3tbAE-rwi5NfGHo3XYjsVY,55266
295
- snowflake/ml/modeling/linear_model/ridge.py,sha256=wEYZos7SjZeeG7pjLIrGVCLU5AszpGZ2s0lmfqlBbTw,54141
296
- snowflake/ml/modeling/linear_model/ridge_classifier.py,sha256=WkbmCDR-cTO-_ICx-sTPjiUxT5kHIsymk-J5kJSxMnw,54539
297
- snowflake/ml/modeling/linear_model/ridge_classifier_cv.py,sha256=_QX8WSk_I9lHQhvd0U5p6YXYnTN3zLUSdpQLNI26FzY,53004
298
- snowflake/ml/modeling/linear_model/ridge_cv.py,sha256=TbM4YPZeF0LLy_PFSsUqGlvLssS0FLG-kD6PIt36fzA,53611
299
- snowflake/ml/modeling/linear_model/sgd_classifier.py,sha256=Tw9spCSfC5X6q5kCQeZyu_2ZnxFdBUUaj5BwPSbkup8,59596
300
- snowflake/ml/modeling/linear_model/sgd_one_class_svm.py,sha256=47xgTQbKcX_SGb9wXphB8zOgSfdl_SF7webdmuZsT2I,54678
301
- snowflake/ml/modeling/linear_model/sgd_regressor.py,sha256=13qYk0V_Z0T-qfRRhHyRQG1nA8NveRfW2XAYpcoCWS8,57573
302
- snowflake/ml/modeling/linear_model/theil_sen_regressor.py,sha256=e9BOBoW54yN1-MN4Qi8gzNgbTc-88kljQdIT81SPQwI,52563
303
- snowflake/ml/modeling/linear_model/tweedie_regressor.py,sha256=9c2cjDRbNGGIhizmC6S-NDZWpeZz8PefjXyq4JLEJtE,53518
274
+ snowflake/ml/modeling/linear_model/ard_regression.py,sha256=W6SyRk2kvzWiN-0RhNVVMk_1GkhRT9Jat3kxzz5wJcw,52005
275
+ snowflake/ml/modeling/linear_model/bayesian_ridge.py,sha256=vZh4blm7vn5F8z-mVtMNeR-xLJpGAHL3P-ewwhRsED8,52375
276
+ snowflake/ml/modeling/linear_model/elastic_net.py,sha256=Dyn5umhvXZkC0uI-VyoffP117Lqlr-1FEOkq3jJ21JA,53393
277
+ snowflake/ml/modeling/linear_model/elastic_net_cv.py,sha256=IyPiRLxt5af6Uu7yZuPBZY5KDGM4o5e2wffN3_HdZ3M,54469
278
+ snowflake/ml/modeling/linear_model/gamma_regressor.py,sha256=McjqipVmPyorLES6iMFNF10yobOG7vA8eiZNurlyrYY,52258
279
+ snowflake/ml/modeling/linear_model/huber_regressor.py,sha256=6NHnX8MDh-FAhvLjX-TubKE5WAEFu6Mb7NcUn7OPq6s,51455
280
+ snowflake/ml/modeling/linear_model/lars.py,sha256=1xB2sbv34CMgKYAcWXyBkAN2mpVaLVFgFT94UdrjLbM,52161
281
+ snowflake/ml/modeling/linear_model/lars_cv.py,sha256=vJuyOfcR_A696KArAVV5jl7oyI9NEmYZzRyw_iYDWeM,52409
282
+ snowflake/ml/modeling/linear_model/lasso.py,sha256=d76NzkhiSD4j5kSbb4xdlj1nPQP2ER-QixoNavwe2k4,52775
283
+ snowflake/ml/modeling/linear_model/lasso_cv.py,sha256=8phiWXGY7KjL2m935jpbW4qHd5JJCv7OQ67sgZsMSoE,53587
284
+ snowflake/ml/modeling/linear_model/lasso_lars.py,sha256=coX9bBN0neDpWLUJSs8_Zs9ubWNS5BempBKnIJAofrQ,53302
285
+ snowflake/ml/modeling/linear_model/lasso_lars_cv.py,sha256=59oby9-ru7oxiPbZfOaher9B7ZchNjc0sl79k8Z2RE8,53290
286
+ snowflake/ml/modeling/linear_model/lasso_lars_ic.py,sha256=2oXUE3-lDogfiUI6T4vNukOQBxHmMkJ70tspc4y3kao,52611
287
+ snowflake/ml/modeling/linear_model/linear_regression.py,sha256=acHXbvXwxbscaoZPEs6Ub30Ed65XjH5tcHgaBXb7gxg,50999
288
+ snowflake/ml/modeling/linear_model/logistic_regression.py,sha256=OyxunEwnb_cFeZ5nmeatKd86csPQTO_JTZV4O-8qDEY,57764
289
+ snowflake/ml/modeling/linear_model/logistic_regression_cv.py,sha256=MDJS8GlgMc6YrtAfTonM5p_FmhVJyp7M35lb2by8f1s,58828
290
+ snowflake/ml/modeling/linear_model/multi_task_elastic_net.py,sha256=DBZtxHsVoHNrW1_N0Nfd0fQN0rrSpYoqSkguSncqs5Q,52474
291
+ snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py,sha256=X6839FIO3uc9ss6D1a9Mt-zKE2FBI4HsIuaO0-oEgDs,54139
292
+ snowflake/ml/modeling/linear_model/multi_task_lasso.py,sha256=Fxkx3JNOONdxNONxxKMyATYlJ6ZdvLOBJLBgj1ADcVM,52017
293
+ snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py,sha256=pBNV_Ki7WDLu6K2XqPGtreSM6Yq7wXne2RZi5_lGNQ8,53306
294
+ snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py,sha256=Pv0GnwY66yeMAxzVNM2255Qy57Rhb9y9i0rXWR86I0g,51222
295
+ snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py,sha256=fPEAy-fc6SU3hgHMaKTmdgMIJj6jf4-W0tU0POl7_fQ,55046
296
+ snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py,sha256=INRSP-tdqg2c4pyszqapNXfFj24zwUNUxp4a64KvrC0,54108
297
+ snowflake/ml/modeling/linear_model/perceptron.py,sha256=AC3OuZlOx9R0sXlUzRW1-R-6i9S4gQv5k3hS3ZUr_As,54363
298
+ snowflake/ml/modeling/linear_model/poisson_regressor.py,sha256=Q6LsupHo14hEmSWaRFLp9j52EiiY3kMfi2mu-6oUq24,52305
299
+ snowflake/ml/modeling/linear_model/ransac_regressor.py,sha256=WO8UB74kp_4X35zSn-vjM2axKNh_n3ErsFJLX5zXPH4,55444
300
+ snowflake/ml/modeling/linear_model/ridge.py,sha256=qazKXGMSPby5CkD_hNQ5YjJ-__roQoAmlPf5wu9W7-U,54319
301
+ snowflake/ml/modeling/linear_model/ridge_classifier.py,sha256=UlHCBQ23BwxujKIYzgfMYZ6d5qcC9T1lITkhW3uhk8c,54717
302
+ snowflake/ml/modeling/linear_model/ridge_classifier_cv.py,sha256=mP7wndBMpMwSlyheKq_mOvMvk6yUkjvid_zYasqQMbw,53182
303
+ snowflake/ml/modeling/linear_model/ridge_cv.py,sha256=RkjQXV9dpZCXQqON_dZ7DCtef9DNkmXixVxVETH4ehA,53789
304
+ snowflake/ml/modeling/linear_model/sgd_classifier.py,sha256=_uM9aLbRU4UEGbXmK-YV1E6v0H1T96QZ9zcbHoit7_w,59774
305
+ snowflake/ml/modeling/linear_model/sgd_one_class_svm.py,sha256=3v6_WrIeV4mtUzz4Go8o05XgiyEKqtBgC2rJj1zfjeg,54856
306
+ snowflake/ml/modeling/linear_model/sgd_regressor.py,sha256=AEcu_eOtTx5okgvf_KLsETmuTF7G6hpRKEBk1cs2_AY,57751
307
+ snowflake/ml/modeling/linear_model/theil_sen_regressor.py,sha256=EEghjoAWCuFuIIy2y4E-ydXhEPNKq9WbpBlQpXbPRvY,52741
308
+ snowflake/ml/modeling/linear_model/tweedie_regressor.py,sha256=y6DNiZ_aE__t9UicC-saQPjooTL86Rg8uFNzukM9-Gc,53696
304
309
  snowflake/ml/modeling/manifold/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
305
- snowflake/ml/modeling/manifold/isomap.py,sha256=aO4wy-iEjn3meu2ktJO65qDZvSfgblnldzZAjJKgECU,52821
306
- snowflake/ml/modeling/manifold/mds.py,sha256=Mmgl3nRyd8QTwXCqPh3pUz9rjHAUl0PeHLcmRLC0_30,52037
307
- snowflake/ml/modeling/manifold/spectral_embedding.py,sha256=B09ygJjIA49hYV-Y4w1-hnMoWs4z12Xgmun5XBz5pzQ,52901
308
- snowflake/ml/modeling/manifold/tsne.py,sha256=Go_P0kHMAlXBtm9DCubNI3oufPEBnR4eKYVf6sSfGcw,56024
310
+ snowflake/ml/modeling/manifold/isomap.py,sha256=6vV6UxfDtG6XdfuRHP7RuFy5z5JVhmx-uF4Vx370rEE,52999
311
+ snowflake/ml/modeling/manifold/mds.py,sha256=R8Vcoq6Pil8rIMa4rfP7fWQJ4rGO5_VyqA8OAF6ttn4,52215
312
+ snowflake/ml/modeling/manifold/spectral_embedding.py,sha256=Eq4Qlti2yur3shm-WtmA4X8_NrqXHLUujXDEXPdzyys,53079
313
+ snowflake/ml/modeling/manifold/tsne.py,sha256=ufxDqlE1lwEAYY6n8n8ESCg8bw5n1DL9bz-RLYXenvY,56202
309
314
  snowflake/ml/modeling/metrics/__init__.py,sha256=pyZnmdcefErGbbhQPIo-_nGps7B09veZtjKZn4lI8Tg,524
310
315
  snowflake/ml/modeling/metrics/classification.py,sha256=MrEHOQ6EmfeDl_5t4n1fcE_SQOm8i5jbRSaxcN9s-II,66435
311
316
  snowflake/ml/modeling/metrics/correlation.py,sha256=Roi17Sx5F81VlJaLQTeBAe5qZ7sZYc31UkIuC6z4qkQ,4803
@@ -314,40 +319,40 @@ snowflake/ml/modeling/metrics/metrics_utils.py,sha256=9tZQ_Mu6jTWHztwqkPSrFWY_LP
314
319
  snowflake/ml/modeling/metrics/ranking.py,sha256=5aqY9bi38vSLrfEeInIJMkzL-3Jm8nv1pQNX5onE9EA,17653
315
320
  snowflake/ml/modeling/metrics/regression.py,sha256=0vQuk2mLJSWfwnhImT3Uz8e_xjNxYFJlDxb89xaQHJk,25929
316
321
  snowflake/ml/modeling/mixture/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
317
- snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py,sha256=jx5fKk0dnQYUERg4pACPZlFi-N9soXciNHXoBX-IKb0,57409
318
- snowflake/ml/modeling/mixture/gaussian_mixture.py,sha256=FTH60ckoW3cyJCfiX5tN73K4S0SKZlfBJHT8hoGxifM,55302
322
+ snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py,sha256=qT01m49GVLSA0YgK7uFCWj9ivacr-X50dtZA6uhotKk,57587
323
+ snowflake/ml/modeling/mixture/gaussian_mixture.py,sha256=Qd2WXZIzwhJKxISyMR58uln30TPtKj-VI3IS1eoRKyM,55480
319
324
  snowflake/ml/modeling/model_selection/__init__.py,sha256=dYtqk_GD_hAAZjGfH1maWlZQ30h4hu_KGaf-_y9_AD8,298
320
- snowflake/ml/modeling/model_selection/grid_search_cv.py,sha256=K8edz_VVGTWezSxeq5EeReKSrFkgZfmw-5fg5LuD_Bo,38021
321
- snowflake/ml/modeling/model_selection/randomized_search_cv.py,sha256=gPnJ3_YL_QasD6dx2YSDBltDErylZjYSKNKXBus448c,38763
325
+ snowflake/ml/modeling/model_selection/grid_search_cv.py,sha256=KYbdVlluEErygi2cIrO7NnfVLHBDsd-pj35B-qPBRRI,38375
326
+ snowflake/ml/modeling/model_selection/randomized_search_cv.py,sha256=iQ6vlOWyVs74hPMsiYlvqMC0Gq_2kDxEah2af7jsrIA,39117
322
327
  snowflake/ml/modeling/multiclass/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
323
- snowflake/ml/modeling/multiclass/one_vs_one_classifier.py,sha256=r2gUV5EVWnZiIJe41MN_4VHOEyhdkAyDgDLs-fOtFL0,50823
324
- snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py,sha256=2B0w-gj1nnmCj3ZacJgsaWQA3ArL3Zv_y8fH_hHkZfo,51758
325
- snowflake/ml/modeling/multiclass/output_code_classifier.py,sha256=RvF9JB11gsk9a7dsuCAvH18lMANj1XgSaxJ1QrJON1U,51095
328
+ snowflake/ml/modeling/multiclass/one_vs_one_classifier.py,sha256=d-rMWrJgFc8FQDczE7jhL1EqWzn7cw-P0wvF2Ouke1A,51001
329
+ snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py,sha256=NxHBfHMH4e1u_P0oLb_5SBpSOoP05WX2SsSc9Ke14NY,51936
330
+ snowflake/ml/modeling/multiclass/output_code_classifier.py,sha256=MU20m10b4TbgsGiLXTc0i2Mx3R8_it-qg58BSvN4OqA,51273
326
331
  snowflake/ml/modeling/naive_bayes/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
327
- snowflake/ml/modeling/naive_bayes/bernoulli_nb.py,sha256=83IgSrW3GgxiuMF_8XgxaUAkBuKTK8X1w76lWnFx3bA,51350
328
- snowflake/ml/modeling/naive_bayes/categorical_nb.py,sha256=0xxdKLFwUfdPdlmlNZ6VisPYgvA671ZDCW5CIQux0k4,51687
329
- snowflake/ml/modeling/naive_bayes/complement_nb.py,sha256=rhzL4TQc874fm9EdU6B1KZtOdtFI_FI9mDW7ZJSCo28,51366
330
- snowflake/ml/modeling/naive_bayes/gaussian_nb.py,sha256=fadqQU8Iy3U_ZNyyKZL0JkBLsMT23NLA7YbSyIvq_QA,50498
331
- snowflake/ml/modeling/naive_bayes/multinomial_nb.py,sha256=mpZx0HIIcK5s9DWFL2bc1qb3OETx0acAejcavGC-Ib8,51132
332
+ snowflake/ml/modeling/naive_bayes/bernoulli_nb.py,sha256=NknEgL-CJXBTcFhqZcl6B-QCM-82tbebdmPjsBcGTfE,51528
333
+ snowflake/ml/modeling/naive_bayes/categorical_nb.py,sha256=aOcI4oZ55BUJ9E8HaTVH6W0GTlfWH3EBnHe8kZNYN34,51865
334
+ snowflake/ml/modeling/naive_bayes/complement_nb.py,sha256=2pkgOKdf4NWEFplAAD8eZAWgPBSp0Z1wIATYhvoL7j4,51544
335
+ snowflake/ml/modeling/naive_bayes/gaussian_nb.py,sha256=d_CO11bj35yvC9lPQKhIaHb5KVR_sIb7iwI0uRIJ0i4,50676
336
+ snowflake/ml/modeling/naive_bayes/multinomial_nb.py,sha256=1TxZJMhpeoWf5AcEF6dRWL6wo3tRjGB8vL-2ektgbPs,51310
332
337
  snowflake/ml/modeling/neighbors/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
333
- snowflake/ml/modeling/neighbors/k_neighbors_classifier.py,sha256=307GwV6gukR7eG5y768O6D08ek9ao7cOViSU2A-XSZs,54464
334
- snowflake/ml/modeling/neighbors/k_neighbors_regressor.py,sha256=_R9KDDEZ1oe9Ia6Me5pYaifZYXHLszfjn3Mg8IpjZ_8,53830
335
- snowflake/ml/modeling/neighbors/kernel_density.py,sha256=-1nhtIF8jiBi0ecJU3yxSMpy_enDBnh_-yMWBeCFg5Q,52119
336
- snowflake/ml/modeling/neighbors/local_outlier_factor.py,sha256=g7OOJYSTQBpYATZhB08lxY-Ird17c35Z0SfxNW3_P8k,54695
337
- snowflake/ml/modeling/neighbors/nearest_centroid.py,sha256=rj0arB6SElA_yynxrBGSzXioC1nBFe96wtNB1nAJ-F0,50283
338
- snowflake/ml/modeling/neighbors/nearest_neighbors.py,sha256=xow3kFE1nZX8IeKAacDV7mpWF4cnWb5JbJM4T0EuqWk,52602
339
- snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py,sha256=e5LvLURwNDdFGUqFZZlpCaczWC1wtPzW8IR1llR3cbI,54184
340
- snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py,sha256=6m2TeZhPrqYN88qONR1LgYuclapd3Oqtj4naeSbKtBY,54913
341
- snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py,sha256=gSUNGHJOHIv11HZghrSOcN8Sqjr2djUdYiXMSg7ph6o,53513
338
+ snowflake/ml/modeling/neighbors/k_neighbors_classifier.py,sha256=-Lw3Tj1YksHExlOz694PInABD0j5tMmwh4fMOWZSTLY,54642
339
+ snowflake/ml/modeling/neighbors/k_neighbors_regressor.py,sha256=6DAR9iSF2D8lgQ7YM8112Ec0UW05iFNFnwqddkcU7rc,54008
340
+ snowflake/ml/modeling/neighbors/kernel_density.py,sha256=XIVWCoS0wPaibTfwUmFVszbK3YeI65AYsWMch1mcNjI,52297
341
+ snowflake/ml/modeling/neighbors/local_outlier_factor.py,sha256=Lm1WQBljRWI2dfC47u8kVGwqyQK3muwSIjSGodAZPaU,54873
342
+ snowflake/ml/modeling/neighbors/nearest_centroid.py,sha256=Bik3QQh5SA4g7TE0k8h9BUo5X2EYR3NU1loJJ7loMDI,50461
343
+ snowflake/ml/modeling/neighbors/nearest_neighbors.py,sha256=1JYMwd3S__GF5IyC7lSKh6O2gZn_pkhp7sFN4AGWNqQ,52780
344
+ snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py,sha256=fW5eoEljvwjcCYn6aUc1NKIXCgeyIBJY4XzvKbCMMfw,54362
345
+ snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py,sha256=neVDWJ8V1xZdF0gntrjvSjPZPkf9dS8oe0KpFk2yJTg,55091
346
+ snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py,sha256=NTGYoDVdM8ICki2y5q45ARHKlRWpvMuqgQyfQiuWUUc,53691
342
347
  snowflake/ml/modeling/neural_network/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
343
- snowflake/ml/modeling/neural_network/bernoulli_rbm.py,sha256=novw3YKaMmdblfTz6MeBjU7xXrL8Gh51dknXyYV2Flo,51326
344
- snowflake/ml/modeling/neural_network/mlp_classifier.py,sha256=SVvJ33chdtNsSIYccwM5t_QG4g-ijyKPMONzpFHTHco,58880
345
- snowflake/ml/modeling/neural_network/mlp_regressor.py,sha256=mhCxHQrzqd8kJlF7kOIchwUDv8v7mgTYJsymqsQfzss,57992
348
+ snowflake/ml/modeling/neural_network/bernoulli_rbm.py,sha256=U0Q9HMcZK2NTzBO-POL7wjmf68uUQz7-oiPbe0PIrmU,51504
349
+ snowflake/ml/modeling/neural_network/mlp_classifier.py,sha256=CeIglosQLNRE9uk00qw7KQfroHQpTJBEuKMi9CPtia0,59058
350
+ snowflake/ml/modeling/neural_network/mlp_regressor.py,sha256=1qWTOJni734BzrPvbmVpBvpSWKrspyvookgOdisAo74,58170
346
351
  snowflake/ml/modeling/parameters/disable_distributed_hpo.py,sha256=jyjlLPrtnDSQxlTTM0ayMjWKVL_IP3snd--yeXK5htY,221
347
352
  snowflake/ml/modeling/parameters/disable_model_tracer.py,sha256=uj6SZz7HQpThGLs90zfUDcNMChxf0C6DKRN2xOfjmvI,203
348
353
  snowflake/ml/modeling/parameters/enable_anonymous_sproc.py,sha256=7FUdfhLbEGEocdd5XZ-7MFYMzOva58qI1dPDurPt7fw,207
349
354
  snowflake/ml/modeling/pipeline/__init__.py,sha256=dYtqk_GD_hAAZjGfH1maWlZQ30h4hu_KGaf-_y9_AD8,298
350
- snowflake/ml/modeling/pipeline/pipeline.py,sha256=X5V_YQ881QZyowJh8-Tnt-oWgk0gMXPqV_C6psAkDAo,46320
355
+ snowflake/ml/modeling/pipeline/pipeline.py,sha256=Z_JMAEuunJwQU_M3h7hK-wHCitqUXhjs9HsaZ3xuUz0,39685
351
356
  snowflake/ml/modeling/preprocessing/__init__.py,sha256=dYtqk_GD_hAAZjGfH1maWlZQ30h4hu_KGaf-_y9_AD8,298
352
357
  snowflake/ml/modeling/preprocessing/binarizer.py,sha256=MrgSVTw9RpajyYe0dzai-qnpdOb3Zq0SfJRpHJjpnoY,7383
353
358
  snowflake/ml/modeling/preprocessing/k_bins_discretizer.py,sha256=FdIy8mpjsiMqWsUL07S27T-JNDVgE2bvNUJf4HcBik4,21533
@@ -357,46 +362,46 @@ snowflake/ml/modeling/preprocessing/min_max_scaler.py,sha256=leLeIrVsXn08agPqL-N
357
362
  snowflake/ml/modeling/preprocessing/normalizer.py,sha256=0VmTIwldr3F3KQC--6RsYkybWjWuiqtxn4PuWinH0ME,6997
358
363
  snowflake/ml/modeling/preprocessing/one_hot_encoder.py,sha256=BW4T4u7EnN62jBOd9pc5UsNVT1_7HzIJJtnUYFLRYtA,75172
359
364
  snowflake/ml/modeling/preprocessing/ordinal_encoder.py,sha256=CfY50IV-akM1hhmt9A05IlgXEdMuRQsHE8PLkOxKUsM,35319
360
- snowflake/ml/modeling/preprocessing/polynomial_features.py,sha256=RFn6ECCYuCK9kMqPv67uXph2zE872_loKw6jLJGN570,51258
365
+ snowflake/ml/modeling/preprocessing/polynomial_features.py,sha256=q1RyaVKiDCwrCbcFQ9JHLdIu10rX3eQrYqTNfnwVpaA,51436
361
366
  snowflake/ml/modeling/preprocessing/robust_scaler.py,sha256=Dp58jHxBdGdiFQAYmFW39JUdaPHO7dKfMy3KREtKAy0,12653
362
367
  snowflake/ml/modeling/preprocessing/standard_scaler.py,sha256=ui5pWnt2dL2VTTzCWikY8siG3fh_R9J1Wk_VZCHU-rA,11773
363
368
  snowflake/ml/modeling/semi_supervised/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
364
- snowflake/ml/modeling/semi_supervised/label_propagation.py,sha256=rZ3qjcpXNq1dYweHFAPhrbvOBZw-3wcKegen75I5dXQ,51597
365
- snowflake/ml/modeling/semi_supervised/label_spreading.py,sha256=8PHYgqhhINa7fEPPzRsbQFSkvG2nlfFlks7Yd0t-fuU,51944
369
+ snowflake/ml/modeling/semi_supervised/label_propagation.py,sha256=1dZ1FdTslUwnXlztJJF8wQsUo5u743OLtinsFDLU7aM,51775
370
+ snowflake/ml/modeling/semi_supervised/label_spreading.py,sha256=s3-pdgqAAH0PKBCF2z_J6_iext2QrQoFsEbdszQ5DK4,52122
366
371
  snowflake/ml/modeling/svm/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
367
- snowflake/ml/modeling/svm/linear_svc.py,sha256=OcXLU66uy-QvYw7-A41L1DeIZ5xkgAkWqLKz0s0dX2E,55169
368
- snowflake/ml/modeling/svm/linear_svr.py,sha256=xGGCMlP8_XNjTqyXdg3OEOLr8TEd72rO3h3qplKU-tQ,53352
369
- snowflake/ml/modeling/svm/nu_svc.py,sha256=IM4cxpv2DObfp_dQMU8hTSwQ3fUp4WSGnENo9-vNL9Y,54837
370
- snowflake/ml/modeling/svm/nu_svr.py,sha256=ZI-XO8aTkG5hr-zCF_98ENEjTeLS7kZPj7WsNQHterg,51951
371
- snowflake/ml/modeling/svm/svc.py,sha256=XuU-zhPmo0CupeLBgl5gO487r5cE50fK8zcD0Qc9I_A,55151
372
- snowflake/ml/modeling/svm/svr.py,sha256=pIUkD6kKW8inUKIFb9Nt1n6N0HK05Njz6F9bIzpTCdU,52130
372
+ snowflake/ml/modeling/svm/linear_svc.py,sha256=mgwUa_S2F8bCzYYiMvv5lwL2DwEJSJ6pHErAMrab8MQ,55347
373
+ snowflake/ml/modeling/svm/linear_svr.py,sha256=bksG2eKvC4usWMOPUx_6-sYuSQ1zYaVeFOUe7n39k74,53530
374
+ snowflake/ml/modeling/svm/nu_svc.py,sha256=8KRVjB1dtwVBQ_ese9LaCIO9UH16d9tTZFCwTWuJuRI,55015
375
+ snowflake/ml/modeling/svm/nu_svr.py,sha256=8J1huYpx9hMkNeRGGKwpJet8WmJbV_r99T_g3NaWNZU,52129
376
+ snowflake/ml/modeling/svm/svc.py,sha256=Rw5sqJUZZOTpExLYUBow9xG5G2tBEG7ZxANTWzLdAl4,55329
377
+ snowflake/ml/modeling/svm/svr.py,sha256=8RLXSgSCdrcny5zdZAxFIwbDxVu6HwX1_jjWeec_Ra0,52308
373
378
  snowflake/ml/modeling/tree/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
374
- snowflake/ml/modeling/tree/decision_tree_classifier.py,sha256=MmvRKdYqG5zQ_kB1ADOfn45KynYuFv3Z_R-yVY0qHt4,57937
375
- snowflake/ml/modeling/tree/decision_tree_regressor.py,sha256=5eE6INs96PvqqAGgk-gNtZdbCP6_fJ8BFsvv61f6kJk,56485
376
- snowflake/ml/modeling/tree/extra_tree_classifier.py,sha256=GacBZnYfIFmce00DR4mEBpGRcyOgUDDPWhcGLd47BMc,57248
377
- snowflake/ml/modeling/tree/extra_tree_regressor.py,sha256=dretp3_soBuChs_3u2FTT1a00xOtwh0FqacgeKnt41E,55833
379
+ snowflake/ml/modeling/tree/decision_tree_classifier.py,sha256=SuXlnQA8BJezz5BTAthaFYtMnclXXYQxfQgsBTxcoVc,58115
380
+ snowflake/ml/modeling/tree/decision_tree_regressor.py,sha256=Q1ngJLdJAsy5Q_PCiPtlLW9ZBkF0eodvU5F6rWEx7k0,56663
381
+ snowflake/ml/modeling/tree/extra_tree_classifier.py,sha256=LmCt0EUXYWsGYC7D2djxphHZW01xyLOx8JUsaEO3yPM,57426
382
+ snowflake/ml/modeling/tree/extra_tree_regressor.py,sha256=O2syhYHAZfd6LzO3HtAb_kPk6KFj3SZUmcKd8phF-GY,56011
378
383
  snowflake/ml/modeling/xgboost/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
379
- snowflake/ml/modeling/xgboost/xgb_classifier.py,sha256=2QEK6-NihXjKXO8Ue-fOZDyucIBn5ADSyq-fQS3d6Lg,62205
380
- snowflake/ml/modeling/xgboost/xgb_regressor.py,sha256=ZorEmRohT2-AUdS8fK0xH8BdB8ENxvVMMDYy34Jzm1o,61703
381
- snowflake/ml/modeling/xgboost/xgbrf_classifier.py,sha256=67jh9RosrTeYCWsJbnJ6_MQICHeG22z-DMy8CegP8Vg,62383
382
- snowflake/ml/modeling/xgboost/xgbrf_regressor.py,sha256=7_ZwF_QvVqBrkFx_zgGgLXyxtbX26XrWWLozAF-EBB0,61908
384
+ snowflake/ml/modeling/xgboost/xgb_classifier.py,sha256=a3Fb1QquZ-jAlHA89duy9f3Z43kMcYoiN2d1eNF5r0g,63580
385
+ snowflake/ml/modeling/xgboost/xgb_regressor.py,sha256=O5e6nJEGyEBgEfSIeuKJ2MwIiyVRJzoKrZM-tfUBtJs,63183
386
+ snowflake/ml/modeling/xgboost/xgbrf_classifier.py,sha256=PskavP_1rg-bzi8naADViV3alnLEBa7phtYHMwSWGkA,63856
387
+ snowflake/ml/modeling/xgboost/xgbrf_regressor.py,sha256=8umj4GSb8Txu5RmvWjjYb_qYd0cPe7vDb8jg6NB0As0,63381
383
388
  snowflake/ml/monitoring/model_monitor.py,sha256=8vJf1YROmJgBLUtpaH-lGKSSJv9R7PxPaQnOdr_j5YE,2200
384
389
  snowflake/ml/monitoring/model_monitor_version.py,sha256=TlmDJZDE0lCVatRaBRgXIjzDF538nrMIc-zWj9MM_nk,46
385
390
  snowflake/ml/monitoring/shap.py,sha256=Dp9nYquPEZjxMTW62YYA9g9qUdmCEFxcSk7ejvOP7PE,3597
386
- snowflake/ml/monitoring/_client/model_monitor_sql_client.py,sha256=Qr3L6bs84ID5_1TvY6wf5YK2kn3ZVZ-Havo242i3MiY,12710
391
+ snowflake/ml/monitoring/_client/model_monitor_sql_client.py,sha256=XhTcLNehHOwEKGpqJdYnL1-esYm3KWM5E8CvH9pF5Ms,12712
387
392
  snowflake/ml/monitoring/_client/queries/record_count.ssql,sha256=Bd1uNMwhPKqPyrDd5ug8iY493t9KamJjrlo82OAfmjY,335
388
393
  snowflake/ml/monitoring/_client/queries/rmse.ssql,sha256=OEJiSStRz9-qKoZaFvmubtY_n0xMUjyVU2uiQHCp7KU,822
389
394
  snowflake/ml/monitoring/_manager/model_monitor_manager.py,sha256=_-vxqnHqohTHTrwfURjPXijyAeh1mTRdHCG436GaBik,10314
390
395
  snowflake/ml/monitoring/entities/model_monitor_config.py,sha256=IxEiee1HfBXCQGzJOZbrDrvoV8J1tDNk43ygNuN00Io,1793
391
396
  snowflake/ml/registry/__init__.py,sha256=XdPQK9ejYkSJVrSQ7HD3jKQO0hKq2mC4bPCB6qrtH3U,76
392
- snowflake/ml/registry/registry.py,sha256=5aBedBH8NiFkJJe1Pnggsrjnn0ixdg1oqtUHWyz3wsE,23824
393
- snowflake/ml/registry/_manager/model_manager.py,sha256=gFr1EqaMR2Eb4erwVz7fi7xK1G1YsFXz1PF5GvOR0pg,12131
397
+ snowflake/ml/registry/registry.py,sha256=RAJdGLS_Er0o1k3AVuaqHc4ositij_FDbNiaMPMWcwM,25341
398
+ snowflake/ml/registry/_manager/model_manager.py,sha256=ZizYAzaBbo6ivEqlCHFM1_YQNNvMaVFt1X3RJ2szDaI,13678
394
399
  snowflake/ml/utils/authentication.py,sha256=Wx1kVBZ9XBDuKkRHpPEB2pBxpiJepVLFAirDMx4m5Gk,2612
395
400
  snowflake/ml/utils/connection_params.py,sha256=JRpQppuWRk6bhdLzVDhMfz3Y6yInobFNLHmIBaXD7po,8005
396
401
  snowflake/ml/utils/sparse.py,sha256=XqDQkw39Ml6YIknswdkvFIwUwBk_GBXAbP8IACfPENg,3817
397
402
  snowflake/ml/utils/sql_client.py,sha256=z4Rhi7pQz3s9cyu_Uzfr3deCnrkCdFh9IYIvicsuwdc,692
398
- snowflake_ml_python-1.7.2.dist-info/LICENSE.txt,sha256=PdEp56Av5m3_kl21iFkVTX_EbHJKFGEdmYeIO1pL_Yk,11365
399
- snowflake_ml_python-1.7.2.dist-info/METADATA,sha256=GwZOHmNQAKaMDP3VeWIDWC-OMhPqldoJaYPrR-_iWGw,67429
400
- snowflake_ml_python-1.7.2.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
401
- snowflake_ml_python-1.7.2.dist-info/top_level.txt,sha256=TY0gFSHKDdZy3THb0FGomyikWQasEGldIR1O0HGOHVw,10
402
- snowflake_ml_python-1.7.2.dist-info/RECORD,,
403
+ snowflake_ml_python-1.7.4.dist-info/LICENSE.txt,sha256=PdEp56Av5m3_kl21iFkVTX_EbHJKFGEdmYeIO1pL_Yk,11365
404
+ snowflake_ml_python-1.7.4.dist-info/METADATA,sha256=6AiHRpZ3qdnMrcezQjKTrBsTNy1RQhmhC7PMSyUjmwE,70195
405
+ snowflake_ml_python-1.7.4.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
406
+ snowflake_ml_python-1.7.4.dist-info/top_level.txt,sha256=TY0gFSHKDdZy3THb0FGomyikWQasEGldIR1O0HGOHVw,10
407
+ snowflake_ml_python-1.7.4.dist-info/RECORD,,