snowflake-ml-python 1.8.3__py3-none-any.whl → 1.8.5__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.
- snowflake/cortex/__init__.py +7 -1
- snowflake/ml/_internal/platform_capabilities.py +13 -11
- snowflake/ml/_internal/telemetry.py +42 -13
- snowflake/ml/_internal/utils/identifier.py +2 -2
- snowflake/ml/data/data_connector.py +1 -1
- snowflake/ml/jobs/_utils/constants.py +10 -1
- snowflake/ml/jobs/_utils/interop_utils.py +1 -1
- snowflake/ml/jobs/_utils/payload_utils.py +51 -34
- snowflake/ml/jobs/_utils/scripts/constants.py +6 -0
- snowflake/ml/jobs/_utils/scripts/get_instance_ip.py +4 -4
- snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +86 -3
- snowflake/ml/jobs/_utils/spec_utils.py +8 -6
- snowflake/ml/jobs/decorators.py +13 -3
- snowflake/ml/jobs/job.py +206 -26
- snowflake/ml/jobs/manager.py +78 -34
- snowflake/ml/model/_client/model/model_version_impl.py +1 -1
- snowflake/ml/model/_client/ops/service_ops.py +31 -17
- snowflake/ml/model/_client/service/model_deployment_spec.py +351 -170
- snowflake/ml/model/_client/service/model_deployment_spec_schema.py +25 -0
- snowflake/ml/model/_client/sql/model_version.py +1 -1
- snowflake/ml/model/_client/sql/service.py +20 -32
- snowflake/ml/model/_model_composer/model_composer.py +44 -19
- snowflake/ml/model/_packager/model_handlers/_utils.py +32 -2
- snowflake/ml/model/_packager/model_handlers/custom.py +1 -1
- snowflake/ml/model/_packager/model_handlers/pytorch.py +1 -2
- snowflake/ml/model/_packager/model_handlers/sklearn.py +100 -41
- snowflake/ml/model/_packager/model_handlers/tensorflow.py +7 -4
- snowflake/ml/model/_packager/model_handlers/torchscript.py +2 -2
- snowflake/ml/model/_packager/model_handlers/xgboost.py +16 -7
- snowflake/ml/model/_packager/model_meta/model_meta.py +2 -1
- snowflake/ml/model/_packager/model_meta/model_meta_schema.py +1 -0
- snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +5 -4
- snowflake/ml/model/_signatures/dmatrix_handler.py +15 -2
- snowflake/ml/model/custom_model.py +17 -4
- snowflake/ml/model/model_signature.py +3 -3
- snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +9 -1
- snowflake/ml/modeling/cluster/affinity_propagation.py +9 -1
- snowflake/ml/modeling/cluster/agglomerative_clustering.py +9 -1
- snowflake/ml/modeling/cluster/birch.py +9 -1
- snowflake/ml/modeling/cluster/bisecting_k_means.py +9 -1
- snowflake/ml/modeling/cluster/dbscan.py +9 -1
- snowflake/ml/modeling/cluster/feature_agglomeration.py +9 -1
- snowflake/ml/modeling/cluster/k_means.py +9 -1
- snowflake/ml/modeling/cluster/mean_shift.py +9 -1
- snowflake/ml/modeling/cluster/mini_batch_k_means.py +9 -1
- snowflake/ml/modeling/cluster/optics.py +9 -1
- snowflake/ml/modeling/cluster/spectral_biclustering.py +9 -1
- snowflake/ml/modeling/cluster/spectral_clustering.py +9 -1
- snowflake/ml/modeling/cluster/spectral_coclustering.py +9 -1
- snowflake/ml/modeling/compose/column_transformer.py +9 -1
- snowflake/ml/modeling/compose/transformed_target_regressor.py +9 -1
- snowflake/ml/modeling/covariance/elliptic_envelope.py +9 -1
- snowflake/ml/modeling/covariance/empirical_covariance.py +9 -1
- snowflake/ml/modeling/covariance/graphical_lasso.py +9 -1
- snowflake/ml/modeling/covariance/graphical_lasso_cv.py +9 -1
- snowflake/ml/modeling/covariance/ledoit_wolf.py +9 -1
- snowflake/ml/modeling/covariance/min_cov_det.py +9 -1
- snowflake/ml/modeling/covariance/oas.py +9 -1
- snowflake/ml/modeling/covariance/shrunk_covariance.py +9 -1
- snowflake/ml/modeling/decomposition/dictionary_learning.py +9 -1
- snowflake/ml/modeling/decomposition/factor_analysis.py +9 -1
- snowflake/ml/modeling/decomposition/fast_ica.py +9 -1
- snowflake/ml/modeling/decomposition/incremental_pca.py +9 -1
- snowflake/ml/modeling/decomposition/kernel_pca.py +9 -1
- snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +9 -1
- snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +9 -1
- snowflake/ml/modeling/decomposition/pca.py +9 -1
- snowflake/ml/modeling/decomposition/sparse_pca.py +9 -1
- snowflake/ml/modeling/decomposition/truncated_svd.py +9 -1
- snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +9 -1
- snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +9 -1
- snowflake/ml/modeling/ensemble/ada_boost_classifier.py +9 -1
- snowflake/ml/modeling/ensemble/ada_boost_regressor.py +9 -1
- snowflake/ml/modeling/ensemble/bagging_classifier.py +9 -1
- snowflake/ml/modeling/ensemble/bagging_regressor.py +9 -1
- snowflake/ml/modeling/ensemble/extra_trees_classifier.py +9 -1
- snowflake/ml/modeling/ensemble/extra_trees_regressor.py +9 -1
- snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +9 -1
- snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +9 -1
- snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +9 -1
- snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +9 -1
- snowflake/ml/modeling/ensemble/isolation_forest.py +9 -1
- snowflake/ml/modeling/ensemble/random_forest_classifier.py +9 -1
- snowflake/ml/modeling/ensemble/random_forest_regressor.py +9 -1
- snowflake/ml/modeling/ensemble/stacking_regressor.py +9 -1
- snowflake/ml/modeling/ensemble/voting_classifier.py +9 -1
- snowflake/ml/modeling/ensemble/voting_regressor.py +9 -1
- snowflake/ml/modeling/feature_selection/generic_univariate_select.py +9 -1
- snowflake/ml/modeling/feature_selection/select_fdr.py +9 -1
- snowflake/ml/modeling/feature_selection/select_fpr.py +9 -1
- snowflake/ml/modeling/feature_selection/select_fwe.py +9 -1
- snowflake/ml/modeling/feature_selection/select_k_best.py +9 -1
- snowflake/ml/modeling/feature_selection/select_percentile.py +9 -1
- snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +9 -1
- snowflake/ml/modeling/feature_selection/variance_threshold.py +9 -1
- snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +9 -1
- snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +9 -1
- snowflake/ml/modeling/impute/iterative_imputer.py +9 -1
- snowflake/ml/modeling/impute/knn_imputer.py +9 -1
- snowflake/ml/modeling/impute/missing_indicator.py +9 -1
- snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +9 -1
- snowflake/ml/modeling/kernel_approximation/nystroem.py +9 -1
- snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +9 -1
- snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +9 -1
- snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +9 -1
- snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +9 -1
- snowflake/ml/modeling/lightgbm/lgbm_classifier.py +9 -1
- snowflake/ml/modeling/lightgbm/lgbm_regressor.py +9 -1
- snowflake/ml/modeling/linear_model/ard_regression.py +9 -1
- snowflake/ml/modeling/linear_model/bayesian_ridge.py +9 -1
- snowflake/ml/modeling/linear_model/elastic_net.py +9 -1
- snowflake/ml/modeling/linear_model/elastic_net_cv.py +9 -1
- snowflake/ml/modeling/linear_model/gamma_regressor.py +9 -1
- snowflake/ml/modeling/linear_model/huber_regressor.py +9 -1
- snowflake/ml/modeling/linear_model/lars.py +9 -1
- snowflake/ml/modeling/linear_model/lars_cv.py +9 -1
- snowflake/ml/modeling/linear_model/lasso.py +9 -1
- snowflake/ml/modeling/linear_model/lasso_cv.py +9 -1
- snowflake/ml/modeling/linear_model/lasso_lars.py +9 -1
- snowflake/ml/modeling/linear_model/lasso_lars_cv.py +9 -1
- snowflake/ml/modeling/linear_model/lasso_lars_ic.py +9 -1
- snowflake/ml/modeling/linear_model/linear_regression.py +9 -1
- snowflake/ml/modeling/linear_model/logistic_regression.py +9 -1
- snowflake/ml/modeling/linear_model/logistic_regression_cv.py +9 -1
- snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +9 -1
- snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +9 -1
- snowflake/ml/modeling/linear_model/multi_task_lasso.py +9 -1
- snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +9 -1
- snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +9 -1
- snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +9 -1
- snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +9 -1
- snowflake/ml/modeling/linear_model/perceptron.py +9 -1
- snowflake/ml/modeling/linear_model/poisson_regressor.py +9 -1
- snowflake/ml/modeling/linear_model/ransac_regressor.py +9 -1
- snowflake/ml/modeling/linear_model/ridge.py +9 -1
- snowflake/ml/modeling/linear_model/ridge_classifier.py +9 -1
- snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +9 -1
- snowflake/ml/modeling/linear_model/ridge_cv.py +9 -1
- snowflake/ml/modeling/linear_model/sgd_classifier.py +9 -1
- snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +9 -1
- snowflake/ml/modeling/linear_model/sgd_regressor.py +9 -1
- snowflake/ml/modeling/linear_model/theil_sen_regressor.py +9 -1
- snowflake/ml/modeling/linear_model/tweedie_regressor.py +9 -1
- snowflake/ml/modeling/manifold/isomap.py +9 -1
- snowflake/ml/modeling/manifold/mds.py +9 -1
- snowflake/ml/modeling/manifold/spectral_embedding.py +9 -1
- snowflake/ml/modeling/manifold/tsne.py +9 -1
- snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +9 -1
- snowflake/ml/modeling/mixture/gaussian_mixture.py +9 -1
- snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +9 -1
- snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +9 -1
- snowflake/ml/modeling/multiclass/output_code_classifier.py +9 -1
- snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +9 -1
- snowflake/ml/modeling/naive_bayes/categorical_nb.py +9 -1
- snowflake/ml/modeling/naive_bayes/complement_nb.py +9 -1
- snowflake/ml/modeling/naive_bayes/gaussian_nb.py +9 -1
- snowflake/ml/modeling/naive_bayes/multinomial_nb.py +9 -1
- snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +9 -1
- snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +9 -1
- snowflake/ml/modeling/neighbors/kernel_density.py +9 -1
- snowflake/ml/modeling/neighbors/local_outlier_factor.py +9 -1
- snowflake/ml/modeling/neighbors/nearest_centroid.py +9 -1
- snowflake/ml/modeling/neighbors/nearest_neighbors.py +9 -1
- snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +9 -1
- snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +9 -1
- snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +9 -1
- snowflake/ml/modeling/neural_network/bernoulli_rbm.py +9 -1
- snowflake/ml/modeling/neural_network/mlp_classifier.py +9 -1
- snowflake/ml/modeling/neural_network/mlp_regressor.py +9 -1
- snowflake/ml/modeling/preprocessing/polynomial_features.py +9 -1
- snowflake/ml/modeling/semi_supervised/label_propagation.py +9 -1
- snowflake/ml/modeling/semi_supervised/label_spreading.py +9 -1
- snowflake/ml/modeling/svm/linear_svc.py +9 -1
- snowflake/ml/modeling/svm/linear_svr.py +9 -1
- snowflake/ml/modeling/svm/nu_svc.py +9 -1
- snowflake/ml/modeling/svm/nu_svr.py +9 -1
- snowflake/ml/modeling/svm/svc.py +9 -1
- snowflake/ml/modeling/svm/svr.py +9 -1
- snowflake/ml/modeling/tree/decision_tree_classifier.py +9 -1
- snowflake/ml/modeling/tree/decision_tree_regressor.py +9 -1
- snowflake/ml/modeling/tree/extra_tree_classifier.py +9 -1
- snowflake/ml/modeling/tree/extra_tree_regressor.py +9 -1
- snowflake/ml/modeling/xgboost/xgb_classifier.py +9 -1
- snowflake/ml/modeling/xgboost/xgb_regressor.py +9 -1
- snowflake/ml/modeling/xgboost/xgbrf_classifier.py +9 -1
- snowflake/ml/modeling/xgboost/xgbrf_regressor.py +9 -1
- snowflake/ml/monitoring/explain_visualize.py +424 -0
- snowflake/ml/registry/_manager/model_manager.py +23 -2
- snowflake/ml/registry/registry.py +10 -9
- snowflake/ml/utils/connection_params.py +8 -2
- snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.8.3.dist-info → snowflake_ml_python-1.8.5.dist-info}/METADATA +58 -8
- {snowflake_ml_python-1.8.3.dist-info → snowflake_ml_python-1.8.5.dist-info}/RECORD +196 -195
- {snowflake_ml_python-1.8.3.dist-info → snowflake_ml_python-1.8.5.dist-info}/WHEEL +1 -1
- {snowflake_ml_python-1.8.3.dist-info → snowflake_ml_python-1.8.5.dist-info}/licenses/LICENSE.txt +0 -0
- {snowflake_ml_python-1.8.3.dist-info → snowflake_ml_python-1.8.5.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
snowflake/cortex/__init__.py,sha256=
|
1
|
+
snowflake/cortex/__init__.py,sha256=Z51KTLHGAC2L1DXYaKeDIoTjBEeRGNZHpHZ47vj6aBk,1101
|
2
2
|
snowflake/cortex/_classify_text.py,sha256=2AYJBABEn8pngFJ2eL7Vt6Ed0t1xEOVWfwb6SHLQKRY,1634
|
3
3
|
snowflake/cortex/_complete.py,sha256=1JRD9Ye1FX9cM6g4QfZn80EiY1X_9mQtM3zHU2tnHjU,19733
|
4
4
|
snowflake/cortex/_embed_text_1024.py,sha256=18DhgNj1zWbmGfEvZyIV8vIBGjF3DbwvlhCxMAxXFAw,1645
|
@@ -10,15 +10,15 @@ snowflake/cortex/_sse_client.py,sha256=sLYgqAfTOPADCnaWH2RWAJi8KbU_7gSRsTUDcDD5T
|
|
10
10
|
snowflake/cortex/_summarize.py,sha256=7GH8zqfIdOiHA5w4b6EvJEKEWhaTrL4YA6iDGbn7BNM,1307
|
11
11
|
snowflake/cortex/_translate.py,sha256=9ZGjvAnJFisbzJ_bXnt4pyug5UzhHJRXW8AhGQEersM,1652
|
12
12
|
snowflake/cortex/_util.py,sha256=krNTpbkFLXwdFqy1bd0xi7ZmOzOHRnIfHdQCPiLZJxk,3288
|
13
|
-
snowflake/ml/version.py,sha256=
|
13
|
+
snowflake/ml/version.py,sha256=VKHkHHe4NuU45p9rVSgxnJnhI_HRO0RG73jfubIU-xE,98
|
14
14
|
snowflake/ml/_internal/env.py,sha256=EY_2KVe8oR3LgKWdaeRb5rRU-NDNXJppPDsFJmMZUUY,265
|
15
15
|
snowflake/ml/_internal/env_utils.py,sha256=tzz8BziiwJEnZwkzDEYCMO20Sb-mnXwDtSakGfgG--M,29364
|
16
16
|
snowflake/ml/_internal/file_utils.py,sha256=7sA6loOeSfmGP4yx16P4usT9ZtRqG3ycnXu7_Tk7dOs,14206
|
17
17
|
snowflake/ml/_internal/init_utils.py,sha256=WhrlvS-xcmKErSpwg6cUk6XDQ5lQcwDqPJnU7cooMIg,2672
|
18
18
|
snowflake/ml/_internal/migrator_utils.py,sha256=k3erO8x3YJcX6nkKeyJAUNGg1qjE3RFmD-W6dtLzIH0,161
|
19
|
-
snowflake/ml/_internal/platform_capabilities.py,sha256=
|
19
|
+
snowflake/ml/_internal/platform_capabilities.py,sha256=2l3GeuKIbeoMh5m3z1mWx7niWsnPvNTSVrlK5bnRNpk,5290
|
20
20
|
snowflake/ml/_internal/relax_version_strategy.py,sha256=MYEIZrx1HfKNhl9Na3GN50ipX8c0MKIj9nwxjB0IC0Y,484
|
21
|
-
snowflake/ml/_internal/telemetry.py,sha256=
|
21
|
+
snowflake/ml/_internal/telemetry.py,sha256=04IFfNU-1V2EMD-5jgasCtXbUSxVqXABRRm5LGAHhtM,31949
|
22
22
|
snowflake/ml/_internal/type_utils.py,sha256=fGnxGx9Tb9G1Fh9EaD23CxChx0Jfc4KnRZv-M-Dcblk,2197
|
23
23
|
snowflake/ml/_internal/exceptions/dataset_error_messages.py,sha256=h7uGJbxBM6se-TW_64LKGGGdBCbwflzbBnmijWKX3Gc,285
|
24
24
|
snowflake/ml/_internal/exceptions/dataset_errors.py,sha256=TqESe8cDfWurJdv5X0DOwgzBfHCEqga_F3WQipYbdqg,741
|
@@ -36,7 +36,7 @@ snowflake/ml/_internal/human_readable_id/hrid_generator_base.py,sha256=_Egc-L0DK
|
|
36
36
|
snowflake/ml/_internal/lineage/lineage_utils.py,sha256=-_PKuznsL_w38rVj3wXgbPdm6XkcbnABrU4v4GwZQcg,3426
|
37
37
|
snowflake/ml/_internal/utils/db_utils.py,sha256=HlxdMrgV8UpnxvfKDM-ZR5N566eWZLC-mE291ByrPEQ,1662
|
38
38
|
snowflake/ml/_internal/utils/formatting.py,sha256=PswZ6Xas7sx3Ok1MBLoH2o7nfXOxaJqpUPg_UqXrQb8,3676
|
39
|
-
snowflake/ml/_internal/utils/identifier.py,sha256=
|
39
|
+
snowflake/ml/_internal/utils/identifier.py,sha256=0Tn07XNxyUFYdFIYNvZ0iA7k9jiyOFAqrVx5ZLvoDwQ,12582
|
40
40
|
snowflake/ml/_internal/utils/import_utils.py,sha256=msvUDaCcJpAcNCS-5Ynz4F1CvUhXjRsuZyOv1rN6Yhk,3213
|
41
41
|
snowflake/ml/_internal/utils/jwt_generator.py,sha256=bj7Ltnw68WjRcxtV9t5xrTRvV5ETnvovB-o3Y8QWNBg,5357
|
42
42
|
snowflake/ml/_internal/utils/parallelize.py,sha256=l8Zjo-hp8zqoLgHxBlpz9Zmn2Z-MRQ0fS_NnrR4jWR8,4522
|
@@ -50,7 +50,7 @@ snowflake/ml/_internal/utils/sql_identifier.py,sha256=YHIwXpb8E1U6LVUVpT8q7s9Zyg
|
|
50
50
|
snowflake/ml/_internal/utils/table_manager.py,sha256=Wf3JXLUzdCiffKF9PJj7edHY7usCXNNZf1P0jRWff-E,4963
|
51
51
|
snowflake/ml/_internal/utils/temp_file_utils.py,sha256=0-HTjXdxVt0kE6XcgyvRvY0btflWlmotP2bMXVpFJPA,1553
|
52
52
|
snowflake/ml/data/__init__.py,sha256=nm5VhN98Lzxr4kb679kglQfqbDbHhd9zYsnFJiQiThg,351
|
53
|
-
snowflake/ml/data/data_connector.py,sha256=
|
53
|
+
snowflake/ml/data/data_connector.py,sha256=m8OqV1HAm0QGJriV1XUSTV5tSS4t8as1xQK6AbaCfHA,10133
|
54
54
|
snowflake/ml/data/data_ingestor.py,sha256=w9PbcAKtAjP6TTzILOwwpFgF1qVYFhTDEryXBOsQq_o,972
|
55
55
|
snowflake/ml/data/data_source.py,sha256=HjBO1xqTyJfAvEAGESUIdke0KvSj5S5-FcI2D2zgejI,512
|
56
56
|
snowflake/ml/data/ingestor_utils.py,sha256=JOv7Kvs0DNhsXUjl940ZULDkeTjIcePCfQ9aL_NteV0,2721
|
@@ -94,39 +94,39 @@ snowflake/ml/fileset/sfcfs.py,sha256=FJFc9-gc0KXaNyc10ZovN_87aUCShb0WztVwa02t0io
|
|
94
94
|
snowflake/ml/fileset/snowfs.py,sha256=uF5QluYtiJ-HezGIhF55dONi3t0E6N7ByaVAIAlM3nk,5133
|
95
95
|
snowflake/ml/fileset/stage_fs.py,sha256=V4pysouSKKDPLzuW3u_extxfvjkQa5OlwIRES9Srpzo,20151
|
96
96
|
snowflake/ml/jobs/__init__.py,sha256=ORX_0blPSpl9u5442R-i4e8cqWYfO_vVjFFtX3as184,420
|
97
|
-
snowflake/ml/jobs/decorators.py,sha256=
|
98
|
-
snowflake/ml/jobs/job.py,sha256=
|
99
|
-
snowflake/ml/jobs/manager.py,sha256=
|
100
|
-
snowflake/ml/jobs/_utils/constants.py,sha256=
|
101
|
-
snowflake/ml/jobs/_utils/interop_utils.py,sha256=
|
102
|
-
snowflake/ml/jobs/_utils/payload_utils.py,sha256=
|
103
|
-
snowflake/ml/jobs/_utils/spec_utils.py,sha256=
|
97
|
+
snowflake/ml/jobs/decorators.py,sha256=8QGjpQBqFjAAN2nF-g8mqQoTnaC8Z9FZzTY-2PYtQAE,3614
|
98
|
+
snowflake/ml/jobs/job.py,sha256=dfioi8n_O74gC9mQ1-fjSJHZJI8ztLHmBrMeo2nSVi8,16055
|
99
|
+
snowflake/ml/jobs/manager.py,sha256=MjbZWSOoMJYqmPv0Bn1s9DHsQPKSu-P2-DxowVYgjuw,15705
|
100
|
+
snowflake/ml/jobs/_utils/constants.py,sha256=9M284dk1xr_r7JFgNz-_eVZViYYh7B4VLkFUXowvtZs,3586
|
101
|
+
snowflake/ml/jobs/_utils/interop_utils.py,sha256=8_HzGyz1bl-We6_tBp1NKxlYZ2VqWT4svJzKTEh7Wx4,18844
|
102
|
+
snowflake/ml/jobs/_utils/payload_utils.py,sha256=Jl1TxlTjJBbK-OaCYp_69VE_snwJEbtamEYKdc3C1tI,22499
|
103
|
+
snowflake/ml/jobs/_utils/spec_utils.py,sha256=WdZhVHxoMNNSQSLbS4UdOovzePY7jBV3J7bSOOzY_oM,12348
|
104
104
|
snowflake/ml/jobs/_utils/types.py,sha256=IRDZZAShUA_trwoSUFqbSRexvLefi2CFcBmQTYN11Yc,972
|
105
|
-
snowflake/ml/jobs/_utils/scripts/constants.py,sha256=
|
106
|
-
snowflake/ml/jobs/_utils/scripts/get_instance_ip.py,sha256=
|
107
|
-
snowflake/ml/jobs/_utils/scripts/mljob_launcher.py,sha256=
|
105
|
+
snowflake/ml/jobs/_utils/scripts/constants.py,sha256=4AL4x5pyrvj8gYZFhOY5dgxY4ouSRbvIVaQRCE1j7ao,457
|
106
|
+
snowflake/ml/jobs/_utils/scripts/get_instance_ip.py,sha256=DmWs5cVpNmUcrqnwhrUvxE5PycDWFN88Pdut8vFDHPg,5293
|
107
|
+
snowflake/ml/jobs/_utils/scripts/mljob_launcher.py,sha256=vgorJ7RTRwlfEOjj4ynx6AEPiDa8IFyDSaFi9ThOdtY,9767
|
108
108
|
snowflake/ml/jobs/_utils/scripts/signal_workers.py,sha256=AR1Pylkm4-FGh10WXfrCtcxaV0rI7IQ2ZiO0Li7zZ3U,7433
|
109
109
|
snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py,sha256=SeJ8v5XDriwHAjIGpcQkwVP-f-lO9QIdVjVD7Fkgafs,7893
|
110
110
|
snowflake/ml/lineage/__init__.py,sha256=8p1YGynC-qOxAZ8jZX2z84Reg5bv1NoJMoJmNJCrzI4,65
|
111
111
|
snowflake/ml/lineage/lineage_node.py,sha256=jCxCwQRvUkH-5nyF1PvdKAyRombOjWDYs5ZJmw5RMT0,5789
|
112
112
|
snowflake/ml/model/__init__.py,sha256=EvPtblqPN6_T6dyVfaYUxCfo_M7D2CQ1OR5giIH4TsQ,314
|
113
|
-
snowflake/ml/model/custom_model.py,sha256=
|
114
|
-
snowflake/ml/model/model_signature.py,sha256=
|
113
|
+
snowflake/ml/model/custom_model.py,sha256=fDhMObqlyzD_qQG1Bq6HHkBN1w3Qzg9e81JWPiqRfc4,12249
|
114
|
+
snowflake/ml/model/model_signature.py,sha256=bVRdMx4JEj31gLe2dr10y7aVy9fPDfPlcKYlE1NBOeQ,32265
|
115
115
|
snowflake/ml/model/type_hints.py,sha256=oCyzLllloC_GZVddHSBQMg_fvWQfhLLXwJPxPKpwvtE,9574
|
116
116
|
snowflake/ml/model/_client/model/model_impl.py,sha256=I_bwFX1N7EVS1GdCTjHeyDJ7Ox4dyeqbZtQfl3v2Xzk,15357
|
117
|
-
snowflake/ml/model/_client/model/model_version_impl.py,sha256=
|
117
|
+
snowflake/ml/model/_client/model/model_version_impl.py,sha256=Nk8J1iHLV0g68txvoQf8Wgfay8UXumOJs8BQBY_2bRg,43273
|
118
118
|
snowflake/ml/model/_client/ops/metadata_ops.py,sha256=qpK6PL3OyfuhyOmpvLCpHLy6vCxbZbp1HlEvakFGwv4,4884
|
119
119
|
snowflake/ml/model/_client/ops/model_ops.py,sha256=Olj5ccsAviHw3Kbhv-_c5JaPvXpAHj1qckOf2IpThu0,47978
|
120
|
-
snowflake/ml/model/_client/ops/service_ops.py,sha256=
|
121
|
-
snowflake/ml/model/_client/service/model_deployment_spec.py,sha256=
|
122
|
-
snowflake/ml/model/_client/service/model_deployment_spec_schema.py,sha256=
|
120
|
+
snowflake/ml/model/_client/ops/service_ops.py,sha256=7b7wafDNHQP_9w3HaE6_TWWk1BCGH_OwDrj7npu33mU,28362
|
121
|
+
snowflake/ml/model/_client/service/model_deployment_spec.py,sha256=V1j1WJ-gYrXN9SBsbg-908MbsJejl86rmaXHg4-tZiw,17508
|
122
|
+
snowflake/ml/model/_client/service/model_deployment_spec_schema.py,sha256=cr1yNVlbLzpHIDeyIIHb6m06-w3LfJc12DLQAqEHQqQ,1895
|
123
123
|
snowflake/ml/model/_client/sql/_base.py,sha256=Qrm8M92g3MHb-QnSLUlbd8iVKCRxLhG_zr5M2qmXwJ8,1473
|
124
124
|
snowflake/ml/model/_client/sql/model.py,sha256=nstZ8zR7MkXVEfhqLt7PWMik6dZr06nzq7VsF5NVNow,5840
|
125
|
-
snowflake/ml/model/_client/sql/model_version.py,sha256=
|
126
|
-
snowflake/ml/model/_client/sql/service.py,sha256=
|
125
|
+
snowflake/ml/model/_client/sql/model_version.py,sha256=QwzFlDH5laTqK2qF7SJQSbt28DgspWj3R11l-yD1Da0,23496
|
126
|
+
snowflake/ml/model/_client/sql/service.py,sha256=uzVenElisFwBxYO2NmC2-CJ_VDMVJp-8QHib6XjyoN8,11212
|
127
127
|
snowflake/ml/model/_client/sql/stage.py,sha256=DIFP1m7Itt_FJR4GCt5CNngEHn9OcK-fshoQAYnkNOY,820
|
128
128
|
snowflake/ml/model/_client/sql/tag.py,sha256=9sI0VoldKmsfToWSjMQddozPPGCxYUI6n0gPBiqd6x8,4333
|
129
|
-
snowflake/ml/model/_model_composer/model_composer.py,sha256=
|
129
|
+
snowflake/ml/model/_model_composer/model_composer.py,sha256=SJyaw8Pcp-n_VYLEraIxrispRYMkIU90DuEisZj4z-U,11631
|
130
130
|
snowflake/ml/model/_model_composer/model_manifest/model_manifest.py,sha256=0z0TKJ-qI1cGJ9gQOfmxAoWzo0-tBmMkl80bO-P0TKg,9157
|
131
131
|
snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py,sha256=eqv-4-tvA9Lgrp7kQAQGS_CJVR9D6uOd8-SxADNOkeM,2887
|
132
132
|
snowflake/ml/model/_model_composer/model_method/constants.py,sha256=hoJwIopSdZiYn0fGq15_NiirC0l02d5LEs2D-4J_tPk,35
|
@@ -140,38 +140,38 @@ snowflake/ml/model/_packager/model_handler.py,sha256=qZB5FVRWZD5wDdm6vuuoXnDFar7
|
|
140
140
|
snowflake/ml/model/_packager/model_packager.py,sha256=FBuepy_W8ZTd4gsQHLnCj-EhO0H2wvjL556YRKOKsO8,6061
|
141
141
|
snowflake/ml/model/_packager/model_env/model_env.py,sha256=D9NBAPSVxPiDl82Dw07OPSLlwtAJqs4fUxm3VSDbYCs,18924
|
142
142
|
snowflake/ml/model/_packager/model_handlers/_base.py,sha256=OZhGv7nyej3PqaoBz021uGa40T06d9rv-kDcKUY3VnM,7152
|
143
|
-
snowflake/ml/model/_packager/model_handlers/_utils.py,sha256=
|
143
|
+
snowflake/ml/model/_packager/model_handlers/_utils.py,sha256=8y-LfiBfoj2txQD4Yh_GM0eEEOrm1S0R1149J5z31O0,12572
|
144
144
|
snowflake/ml/model/_packager/model_handlers/catboost.py,sha256=dbI2QizGZS04l6ehgXb3oy5YSXrlwRHz8YENVefEbms,10676
|
145
|
-
snowflake/ml/model/_packager/model_handlers/custom.py,sha256=
|
145
|
+
snowflake/ml/model/_packager/model_handlers/custom.py,sha256=fM_13N5ejT0Ta0-M_Uzsqr_TwGVk_3jSjsLJiMEfyR4,8514
|
146
146
|
snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py,sha256=dBxSqOJrZS9Fkk20TAQwY4OYKwaD66SrqWnrW_ZFq5I,22312
|
147
147
|
snowflake/ml/model/_packager/model_handlers/keras.py,sha256=JKBCiJEjc41zaoEhsen7rnlyPo2RBuEqG9Vq6JR_Cq0,8696
|
148
148
|
snowflake/ml/model/_packager/model_handlers/lightgbm.py,sha256=DAFMiqpXEUmKqeq5rgn5j6rtuwScNnuiMUBwS4OyC7Q,11074
|
149
149
|
snowflake/ml/model/_packager/model_handlers/mlflow.py,sha256=xSpoXO0UOfBUpzx2W1O8P2WF0Xi1vrZ_J-DdgzQG0o8,9177
|
150
|
-
snowflake/ml/model/_packager/model_handlers/pytorch.py,sha256=
|
150
|
+
snowflake/ml/model/_packager/model_handlers/pytorch.py,sha256=jHYRjPUlCpSU2yvrJwuKAYLbG6CethxQx4brQ5ZmiVM,9784
|
151
151
|
snowflake/ml/model/_packager/model_handlers/sentence_transformers.py,sha256=sKp-bt-fAnruDMZJ5cN6F_m9dJRY0G2FjJ4-KjNLgcg,11380
|
152
|
-
snowflake/ml/model/_packager/model_handlers/sklearn.py,sha256=
|
152
|
+
snowflake/ml/model/_packager/model_handlers/sklearn.py,sha256=dH6S7FhJBqVOWPPXyEhN9Kj9tzDdDrD0phaGacoXQ14,18094
|
153
153
|
snowflake/ml/model/_packager/model_handlers/snowmlmodel.py,sha256=4YKX6BktNIjRSSUOStOMx4NVmRBE0o9pes3wyKYZ1Y0,17173
|
154
|
-
snowflake/ml/model/_packager/model_handlers/tensorflow.py,sha256=
|
155
|
-
snowflake/ml/model/_packager/model_handlers/torchscript.py,sha256=
|
156
|
-
snowflake/ml/model/_packager/model_handlers/xgboost.py,sha256=
|
154
|
+
snowflake/ml/model/_packager/model_handlers/tensorflow.py,sha256=2J2XWYOC70axWaoNJa9aQLMyjLAKIskrT31t_LgqcIk,11350
|
155
|
+
snowflake/ml/model/_packager/model_handlers/torchscript.py,sha256=3IbMoVGlBR-RsQAdYZxjAz1ST-jDMQIyhhdwM5e3NeE,9531
|
156
|
+
snowflake/ml/model/_packager/model_handlers/xgboost.py,sha256=Nj80oPwvg1Ng9Nfdtf1nRxyBdStoyz9CVe4jPqksxuk,12190
|
157
157
|
snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py,sha256=BZo14UrywGZM1kTqzN4VFQcYjl7dggDp1U90ZBCMuOg,1409
|
158
158
|
snowflake/ml/model/_packager/model_handlers_migrator/pytorch_migrator_2023_12_01.py,sha256=GVpfYllXa3Voxa54PGNsZ3Hea1kOJe3T_AoA9nrs60A,764
|
159
159
|
snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12_01.py,sha256=dXIisQteU55QMw5OvC_1E_sGqFgE88WRhGCWFqUyauM,2239
|
160
160
|
snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py,sha256=0DxwZtXFgXpxb5LQEAfTUfEFV7zgbG4j3F-oNHLkTgE,769
|
161
161
|
snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py,sha256=MDOAGV6kML9sJh_hnYjnrPH4GtECP5DDCjaRT7NmYpU,768
|
162
162
|
snowflake/ml/model/_packager/model_meta/model_blob_meta.py,sha256=CzY_MhiSshKi9dWzXc4lrC9PysU0FCdHG2oRlz1vCb8,1943
|
163
|
-
snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=
|
164
|
-
snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=
|
163
|
+
snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=hX-gZzNxPyWDPBfGPWjhvnEWaPdKyNZcUcywONMndHg,19912
|
164
|
+
snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=e4TUbWl998xQOZUzEWvb9CrUyHwGHBGb0TNbtezAeQ0,3707
|
165
165
|
snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py,sha256=8zTgq3n6TBXv7Vcwmf7b9wjK3m-9HHMsY0Qy1Rs-sZ4,1305
|
166
166
|
snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py,sha256=5butM-lyaDRhCAO2BaCOIQufpAxAfSAinsNuGqbbjMU,1029
|
167
167
|
snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py,sha256=cyZVvBGM3nF1IVqDKfYstLCchNO-ZhSkPvLM4aU7J5c,2066
|
168
|
-
snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py,sha256=
|
168
|
+
snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py,sha256=jRa_AmJd6H4VHeMSAp-2v1dDj1w7sEFtgmXv5BxxGPI,893
|
169
169
|
snowflake/ml/model/_packager/model_runtime/model_runtime.py,sha256=CDjbfBvZNrW6AI5xapYPFSEEQInd3RVo7_08mru2xx4,5487
|
170
170
|
snowflake/ml/model/_packager/model_task/model_task_utils.py,sha256=_nm3Irl5W6Oa8_OnJyp3bLeA9QAbV9ygGCsgHI70GX4,6641
|
171
171
|
snowflake/ml/model/_signatures/base_handler.py,sha256=4CTZKKbg4WIz_CmXjyVy8tKZW-5OFcz0J8XVPHm2dfQ,1269
|
172
172
|
snowflake/ml/model/_signatures/builtins_handler.py,sha256=ItWb8xNDDvIhDlmfUFCHOnUllvKZSTsny7_mRwks_Lc,3135
|
173
173
|
snowflake/ml/model/_signatures/core.py,sha256=uWa_o7wZQGKQ84g8_LmfS9nyKyuFKeTcAVQROrTbF2w,21024
|
174
|
-
snowflake/ml/model/_signatures/dmatrix_handler.py,sha256=
|
174
|
+
snowflake/ml/model/_signatures/dmatrix_handler.py,sha256=ldcWqadJ9fJp9cOaZ3Mn-hTSj8W_laXszlkWb0zpifw,4137
|
175
175
|
snowflake/ml/model/_signatures/numpy_handler.py,sha256=xy7mBEAs9U5eM8F51NLabLbWXRmyQUffhVweO6jmLBA,5461
|
176
176
|
snowflake/ml/model/_signatures/pandas_handler.py,sha256=rYgSaqdh8d-w22e_ZDt4kCFCkPWEhs-KwL9wyoLUacI,10704
|
177
177
|
snowflake/ml/model/_signatures/pytorch_handler.py,sha256=Xy-ITCCX_EgHcyIIqeYSDUIvE2kiqECa8swy1hmohyc,5036
|
@@ -193,135 +193,135 @@ snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py,sh
|
|
193
193
|
snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py,sha256=ckeh8plxm0sHIDheYwR4etBfZ9mNy0hySd9ApahUG-k,32240
|
194
194
|
snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py,sha256=Cu_ywcFzlkflbUvJ5C8rNk1H3YwRDEhVdsyngNcjE2Q,17282
|
195
195
|
snowflake/ml/modeling/calibration/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
196
|
-
snowflake/ml/modeling/calibration/calibrated_classifier_cv.py,sha256=
|
196
|
+
snowflake/ml/modeling/calibration/calibrated_classifier_cv.py,sha256=PN-fBoZIjD3Jl5yn7Av5BPveExrpJn3n2Y1xTGVC_b0,54177
|
197
197
|
snowflake/ml/modeling/cluster/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
198
|
-
snowflake/ml/modeling/cluster/affinity_propagation.py,sha256=
|
199
|
-
snowflake/ml/modeling/cluster/agglomerative_clustering.py,sha256=
|
200
|
-
snowflake/ml/modeling/cluster/birch.py,sha256=
|
201
|
-
snowflake/ml/modeling/cluster/bisecting_k_means.py,sha256=
|
202
|
-
snowflake/ml/modeling/cluster/dbscan.py,sha256=
|
203
|
-
snowflake/ml/modeling/cluster/feature_agglomeration.py,sha256=
|
204
|
-
snowflake/ml/modeling/cluster/k_means.py,sha256=
|
205
|
-
snowflake/ml/modeling/cluster/mean_shift.py,sha256=
|
206
|
-
snowflake/ml/modeling/cluster/mini_batch_k_means.py,sha256=
|
207
|
-
snowflake/ml/modeling/cluster/optics.py,sha256=
|
208
|
-
snowflake/ml/modeling/cluster/spectral_biclustering.py,sha256=
|
209
|
-
snowflake/ml/modeling/cluster/spectral_clustering.py,sha256=
|
210
|
-
snowflake/ml/modeling/cluster/spectral_coclustering.py,sha256=
|
198
|
+
snowflake/ml/modeling/cluster/affinity_propagation.py,sha256=XiphFPZDckJ_6bUWMO-8XatkTklUcjpdAH8lR00OuFo,52430
|
199
|
+
snowflake/ml/modeling/cluster/agglomerative_clustering.py,sha256=Mdsnf4kiEP3S_4WrjfykEw3eZWsSJoaewvWbzgqYXTQ,54343
|
200
|
+
snowflake/ml/modeling/cluster/birch.py,sha256=Jo6TkZfLD5aLs4eAJtcyZtwlgL9DpXz-P0t8e15Mvpw,52343
|
201
|
+
snowflake/ml/modeling/cluster/bisecting_k_means.py,sha256=BiuRlG8SgJZfb8uwc188PJsd5qSLWvRF3hdsvDIQADA,55112
|
202
|
+
snowflake/ml/modeling/cluster/dbscan.py,sha256=a_EVi5I77x-ieKwwILizlki_ofCoA_L7BwkgpNY1pEs,52684
|
203
|
+
snowflake/ml/modeling/cluster/feature_agglomeration.py,sha256=xqMUcExCDQQVjvl_ol23KHAz5uB7x7hxjGq8K4uYuA4,54637
|
204
|
+
snowflake/ml/modeling/cluster/k_means.py,sha256=OW5V0N2EtY7LQdbjcpVaW8pyUKTiNuwWWCjj-G7R7RA,54838
|
205
|
+
snowflake/ml/modeling/cluster/mean_shift.py,sha256=AlidvXHbUm0BQqCsqykcCI2xImCpCPR8ElLIXXWSlNk,52717
|
206
|
+
snowflake/ml/modeling/cluster/mini_batch_k_means.py,sha256=can2LP4Vvpl9yQt4neUrwRnAtwZAihBO-QF1xiU8IYg,56035
|
207
|
+
snowflake/ml/modeling/cluster/optics.py,sha256=uTFULCzoDgZ0adK4IX6mqgVAuMv0Gygd25o8zlf7HEE,55894
|
208
|
+
snowflake/ml/modeling/cluster/spectral_biclustering.py,sha256=DrEwe-67GQKZXEcHDaV38mRWKG9_deTBzq92ZfDk3rg,52727
|
209
|
+
snowflake/ml/modeling/cluster/spectral_clustering.py,sha256=gPwW_o2f9KcJfTkYKzrRbWbCR23Vk1n70Z0JjIHT-BU,56011
|
210
|
+
snowflake/ml/modeling/cluster/spectral_coclustering.py,sha256=mMQme1WyTGyK7WJmHrEIPaMY4xmUksXfFlBFBqE8FuM,51860
|
211
211
|
snowflake/ml/modeling/compose/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
212
|
-
snowflake/ml/modeling/compose/column_transformer.py,sha256=
|
213
|
-
snowflake/ml/modeling/compose/transformed_target_regressor.py,sha256=
|
212
|
+
snowflake/ml/modeling/compose/column_transformer.py,sha256=3OQQggsNoYpYbDewCUYuBi_qWWYRsV0w185LAwu2N2w,55185
|
213
|
+
snowflake/ml/modeling/compose/transformed_target_regressor.py,sha256=XPvXGr2Tlbn3OeDCDU_IGrPf-utPkE4jjXHsW9rGEeM,52472
|
214
214
|
snowflake/ml/modeling/covariance/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
215
|
-
snowflake/ml/modeling/covariance/elliptic_envelope.py,sha256=
|
216
|
-
snowflake/ml/modeling/covariance/empirical_covariance.py,sha256=
|
217
|
-
snowflake/ml/modeling/covariance/graphical_lasso.py,sha256=
|
218
|
-
snowflake/ml/modeling/covariance/graphical_lasso_cv.py,sha256=
|
219
|
-
snowflake/ml/modeling/covariance/ledoit_wolf.py,sha256=
|
220
|
-
snowflake/ml/modeling/covariance/min_cov_det.py,sha256=
|
221
|
-
snowflake/ml/modeling/covariance/oas.py,sha256=
|
222
|
-
snowflake/ml/modeling/covariance/shrunk_covariance.py,sha256=
|
215
|
+
snowflake/ml/modeling/covariance/elliptic_envelope.py,sha256=9LIpOcLW--RF25jrpoSSJsJM5asbh3gnAwsCFkC6Jvc,52761
|
216
|
+
snowflake/ml/modeling/covariance/empirical_covariance.py,sha256=G6fI9hevwGyr3cL14oqJVLdNvncoeiF2vkYjXpEukx8,50559
|
217
|
+
snowflake/ml/modeling/covariance/graphical_lasso.py,sha256=Uc35kzMzAZwIo15Y3qcRrvciaRMx2VJLxH64aFqwe-g,52418
|
218
|
+
snowflake/ml/modeling/covariance/graphical_lasso_cv.py,sha256=Q0V3LS0sAgJgLgRFNvdwwsRxxT592hlDJIIKQNwHmsI,53610
|
219
|
+
snowflake/ml/modeling/covariance/ledoit_wolf.py,sha256=xML2bb31xCUykM40bQELyItRMES-p03aoO9gPNEOeow,50688
|
220
|
+
snowflake/ml/modeling/covariance/min_cov_det.py,sha256=fBXLS8hEpY7Iyv7126bEXV_WBUz1sfwm9N_JY82EM48,51455
|
221
|
+
snowflake/ml/modeling/covariance/oas.py,sha256=K7lDGHpWELONnZmprN2YVHdWl-lE7n2UKRyGO5MmF08,50302
|
222
|
+
snowflake/ml/modeling/covariance/shrunk_covariance.py,sha256=yLfYUr1yhMGUnD1B8dNdjeYTCIWESOHsxrHrXophYFc,50711
|
223
223
|
snowflake/ml/modeling/decomposition/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
224
|
-
snowflake/ml/modeling/decomposition/dictionary_learning.py,sha256=
|
225
|
-
snowflake/ml/modeling/decomposition/factor_analysis.py,sha256=
|
226
|
-
snowflake/ml/modeling/decomposition/fast_ica.py,sha256=
|
227
|
-
snowflake/ml/modeling/decomposition/incremental_pca.py,sha256=
|
228
|
-
snowflake/ml/modeling/decomposition/kernel_pca.py,sha256=
|
229
|
-
snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py,sha256=
|
230
|
-
snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py,sha256=
|
231
|
-
snowflake/ml/modeling/decomposition/pca.py,sha256=
|
232
|
-
snowflake/ml/modeling/decomposition/sparse_pca.py,sha256=
|
233
|
-
snowflake/ml/modeling/decomposition/truncated_svd.py,sha256
|
224
|
+
snowflake/ml/modeling/decomposition/dictionary_learning.py,sha256=sBg2xt7mT_SW4iaUHf2YMpLwSgIXlg2YoDB5jCo-AwI,55710
|
225
|
+
snowflake/ml/modeling/decomposition/factor_analysis.py,sha256=Ut-tYVcqMSXaaLE0putxSz8Aatdt9tbDD5BOtMnDe2Y,53369
|
226
|
+
snowflake/ml/modeling/decomposition/fast_ica.py,sha256=IxXCMNcvLb7j9QRK6pq37qhTV0h3u3sJrtS613rz9Xo,53296
|
227
|
+
snowflake/ml/modeling/decomposition/incremental_pca.py,sha256=qpiboaU7doR4Ak2RlSLpv5WiF0f0AMwmysZEsZ-zvLA,51663
|
228
|
+
snowflake/ml/modeling/decomposition/kernel_pca.py,sha256=hc9LRrdn3hlWsoLVaYtGkbIS9CKcZv7TtPycSKDixdk,55653
|
229
|
+
snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py,sha256=4X7770WbECY94vsZyfLpjw9eLHHps5ftJaA55x1U-3Q,56442
|
230
|
+
snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py,sha256=cKmHEgNpAgAp2is0MRFDEi7FdXn_zETrDmG3eHj2l0U,53705
|
231
|
+
snowflake/ml/modeling/decomposition/pca.py,sha256=DL--DHcMxjoER-gYpKjyUCE3q5ZGi_0I7X8Y_-4tWu4,55873
|
232
|
+
snowflake/ml/modeling/decomposition/sparse_pca.py,sha256=dcaCTtxiTHBWqgry6w9ADQNvxP3bZ2N_DzBMxppPUhA,52812
|
233
|
+
snowflake/ml/modeling/decomposition/truncated_svd.py,sha256=UR5x27eWCbRwzz4y4gZa6zlc7wfWDrm5XiUvfEVMG18,52438
|
234
234
|
snowflake/ml/modeling/discriminant_analysis/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
235
|
-
snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py,sha256=
|
236
|
-
snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py,sha256=
|
235
|
+
snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py,sha256=9qZc2XDOMQS-hVeDcSf7Gi7INnu2PczKF0NgB86Mez8,55329
|
236
|
+
snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py,sha256=HzfQbabMIKkGZa975yKumqsOg0gloA5Vw6AX7DH0svQ,52908
|
237
237
|
snowflake/ml/modeling/ensemble/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
238
|
-
snowflake/ml/modeling/ensemble/ada_boost_classifier.py,sha256=
|
239
|
-
snowflake/ml/modeling/ensemble/ada_boost_regressor.py,sha256=
|
240
|
-
snowflake/ml/modeling/ensemble/bagging_classifier.py,sha256=
|
241
|
-
snowflake/ml/modeling/ensemble/bagging_regressor.py,sha256=
|
242
|
-
snowflake/ml/modeling/ensemble/extra_trees_classifier.py,sha256=
|
243
|
-
snowflake/ml/modeling/ensemble/extra_trees_regressor.py,sha256=
|
244
|
-
snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py,sha256=
|
245
|
-
snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py,sha256=
|
246
|
-
snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py,sha256=
|
247
|
-
snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py,sha256=
|
248
|
-
snowflake/ml/modeling/ensemble/isolation_forest.py,sha256=
|
249
|
-
snowflake/ml/modeling/ensemble/random_forest_classifier.py,sha256=
|
250
|
-
snowflake/ml/modeling/ensemble/random_forest_regressor.py,sha256
|
251
|
-
snowflake/ml/modeling/ensemble/stacking_regressor.py,sha256=
|
252
|
-
snowflake/ml/modeling/ensemble/voting_classifier.py,sha256=
|
253
|
-
snowflake/ml/modeling/ensemble/voting_regressor.py,sha256=
|
238
|
+
snowflake/ml/modeling/ensemble/ada_boost_classifier.py,sha256=rfOlUx4fc3zfc9YUop8UJh4UyKvL7zTgpK8EDhw77kc,53110
|
239
|
+
snowflake/ml/modeling/ensemble/ada_boost_regressor.py,sha256=u5V38S4XEc7PpgMywrLv9bBj8p2pmkPYHXBUFoPx6-w,52113
|
240
|
+
snowflake/ml/modeling/ensemble/bagging_classifier.py,sha256=ilghs_lbcCZ-UJx4WzgV7LRE8q2GTZaAUt4f9ORt-d0,54302
|
241
|
+
snowflake/ml/modeling/ensemble/bagging_regressor.py,sha256=NlBi6e1Ik9tSdb7AibiJR1VP8QIw7ST40SoaHuC3_yc,53537
|
242
|
+
snowflake/ml/modeling/ensemble/extra_trees_classifier.py,sha256=CaOG7EMFb9szt2wWql2bVtFQLOHDU8vg_cs_pHUrLD0,60351
|
243
|
+
snowflake/ml/modeling/ensemble/extra_trees_regressor.py,sha256=k9aK1uGdm9KEkHWerXoNsjZ710Ddp5fYBY_OIKlkGCs,58804
|
244
|
+
snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py,sha256=uNcKO35j_pRJdyVu-qwmzzt_RHUQyl5f2Rq9J46a93c,61110
|
245
|
+
snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py,sha256=a7O5iVOGSHjheqnKCVjnH5K9Ld-SmTWllhPBFqeMEv4,60702
|
246
|
+
snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py,sha256=SHSA_bYMRyTkdVaHc9-d2fGd4H_P7y8shWHbqFBrWVU,61596
|
247
|
+
snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py,sha256=4FbSw_o-7LWGNzcqweeB3UYIkvfJJGjLBbU_r66UmVU,59931
|
248
|
+
snowflake/ml/modeling/ensemble/isolation_forest.py,sha256=valmvjZxGeLzQuA7El-gGKLiW2Y6bymMlU6tjWT29XE,53895
|
249
|
+
snowflake/ml/modeling/ensemble/random_forest_classifier.py,sha256=jaD7spMP7ozsxdStwvlovUxx2VbVaf9fbo8ZwWKqPpo,60324
|
250
|
+
snowflake/ml/modeling/ensemble/random_forest_regressor.py,sha256=-arnzokzT_qmftZ-Vp-CFBHLcq07vpj4KFvAzFhm8kg,58777
|
251
|
+
snowflake/ml/modeling/ensemble/stacking_regressor.py,sha256=QLw56XDhTdNjHOgGbAHHbmRQNzuAUxp3rEdF5fncrg4,53839
|
252
|
+
snowflake/ml/modeling/ensemble/voting_classifier.py,sha256=v1ZztvpeqOmkStHQsmgOW3DGc2IPrtX5ritRwkDkCjQ,53391
|
253
|
+
snowflake/ml/modeling/ensemble/voting_regressor.py,sha256=Lcl6m5gAD8u7Oagu3_ZCzISU5QdygGiIkAfnehansRI,51916
|
254
254
|
snowflake/ml/modeling/feature_selection/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
255
|
-
snowflake/ml/modeling/feature_selection/generic_univariate_select.py,sha256=
|
256
|
-
snowflake/ml/modeling/feature_selection/select_fdr.py,sha256=
|
257
|
-
snowflake/ml/modeling/feature_selection/select_fpr.py,sha256=
|
258
|
-
snowflake/ml/modeling/feature_selection/select_fwe.py,sha256=
|
259
|
-
snowflake/ml/modeling/feature_selection/select_k_best.py,sha256=
|
260
|
-
snowflake/ml/modeling/feature_selection/select_percentile.py,sha256=
|
261
|
-
snowflake/ml/modeling/feature_selection/sequential_feature_selector.py,sha256=
|
262
|
-
snowflake/ml/modeling/feature_selection/variance_threshold.py,sha256=
|
255
|
+
snowflake/ml/modeling/feature_selection/generic_univariate_select.py,sha256=AOHtDD6nvoL0n-OR_bQToeRHTLwLFgv3y5cvnPhVz_k,51386
|
256
|
+
snowflake/ml/modeling/feature_selection/select_fdr.py,sha256=0MPBvzKLLq804ZHWOdubbUNZlyzue2WFMXZQE3PGtsA,50848
|
257
|
+
snowflake/ml/modeling/feature_selection/select_fpr.py,sha256=vVPZ2iN_EzbgHQLj5s7HIGb5a_DMvRw1d-i0cykIfqI,50842
|
258
|
+
snowflake/ml/modeling/feature_selection/select_fwe.py,sha256=MTUByQDm-T0FwvonKX1Q5XPMDKvLoBLWpK_8jUC1ePg,50850
|
259
|
+
snowflake/ml/modeling/feature_selection/select_k_best.py,sha256=CWBHTaR1k79NphpRemJTGaXSQH_8-v7HYXOoQwVyeFA,50943
|
260
|
+
snowflake/ml/modeling/feature_selection/select_percentile.py,sha256=J8tbZQpz2tJn-diy3S-O-MxCoak00pfOcTderrPtRwo,51003
|
261
|
+
snowflake/ml/modeling/feature_selection/sequential_feature_selector.py,sha256=Kyzf2jziMQp2Q5nq8ar5-JAEV9cRZX2axlN9orZMOBI,53782
|
262
|
+
snowflake/ml/modeling/feature_selection/variance_threshold.py,sha256=DombmnjBuNvDItNEXH_OMV-4wkOVAZmXCMTE9kW0j0Y,50644
|
263
263
|
snowflake/ml/modeling/framework/_utils.py,sha256=UvB9hlvvUl_N6qQM-xIDcbtMr0oJQnlV1aTZCRUveQg,10197
|
264
264
|
snowflake/ml/modeling/framework/base.py,sha256=i8DEdGoV9b_Ky8uDO2yzgPN_9YFmGtYOoT6RA11YgWM,31942
|
265
265
|
snowflake/ml/modeling/gaussian_process/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
266
|
-
snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py,sha256=
|
267
|
-
snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py,sha256=
|
266
|
+
snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py,sha256=53AOs2kSN7Y6humFHfzQ_b1UdsLKKyvFg3RmPe3jwys,56274
|
267
|
+
snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py,sha256=Gt3NvazKv-JN84mBCs40PmGWcJqo65hhJLZS1ZK1TIo,55338
|
268
268
|
snowflake/ml/modeling/impute/__init__.py,sha256=AUAyMIRsAF9Ocf7zDnGPYSvKgGfkR8LInyFvkC-7MiU,281
|
269
|
-
snowflake/ml/modeling/impute/iterative_imputer.py,sha256=
|
270
|
-
snowflake/ml/modeling/impute/knn_imputer.py,sha256=
|
271
|
-
snowflake/ml/modeling/impute/missing_indicator.py,sha256=
|
269
|
+
snowflake/ml/modeling/impute/iterative_imputer.py,sha256=O3H0l0c2eIOtlaXeI0YMIlNeABIJdfo6H1mkJlNtVzI,57167
|
270
|
+
snowflake/ml/modeling/impute/knn_imputer.py,sha256=GLYIS2aEcdYb73SQa7S-MHk5639yoCRGQSvSipTD_jE,52877
|
271
|
+
snowflake/ml/modeling/impute/missing_indicator.py,sha256=cjajFF4_f_ogSvmfNgvFCZZZWoxtxfZZi7z3LpQA3vs,51740
|
272
272
|
snowflake/ml/modeling/impute/simple_imputer.py,sha256=Tznj3hrPZQSy6nnaOAWoWYuMcz1AwtzmtToG2l5t-d4,20934
|
273
273
|
snowflake/ml/modeling/kernel_approximation/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
274
|
-
snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py,sha256=
|
275
|
-
snowflake/ml/modeling/kernel_approximation/nystroem.py,sha256=
|
276
|
-
snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py,sha256=
|
277
|
-
snowflake/ml/modeling/kernel_approximation/rbf_sampler.py,sha256=
|
278
|
-
snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py,sha256=
|
274
|
+
snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py,sha256=kofj3unubKoZkk0hz9nkAdE889UWAWfS9giPXzSJewk,50774
|
275
|
+
snowflake/ml/modeling/kernel_approximation/nystroem.py,sha256=P1kBUm1RR85CsJuNXAdKl4O0g2tt0HVykEMqySH9K58,52534
|
276
|
+
snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py,sha256=Fn2oMHNMRnvmhkfnSXOJyhE2lg6PCwSYsitQbshQyDk,51795
|
277
|
+
snowflake/ml/modeling/kernel_approximation/rbf_sampler.py,sha256=2xr8in9M9M4n_OFsQLr5PtbE1K_3M83ZFg6vq59eoU0,51138
|
278
|
+
snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py,sha256=u9qXtk-ZvCYKy6eotHZA0EWsNrbnhfqw_Hhp78VDGAg,51193
|
279
279
|
snowflake/ml/modeling/kernel_ridge/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
280
|
-
snowflake/ml/modeling/kernel_ridge/kernel_ridge.py,sha256=
|
280
|
+
snowflake/ml/modeling/kernel_ridge/kernel_ridge.py,sha256=YzK3c6HcrbGykQ8hPa6pXJMsuVVHavRkjuNEyLavbm8,52642
|
281
281
|
snowflake/ml/modeling/lightgbm/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
282
|
-
snowflake/ml/modeling/lightgbm/lgbm_classifier.py,sha256=
|
283
|
-
snowflake/ml/modeling/lightgbm/lgbm_regressor.py,sha256=
|
282
|
+
snowflake/ml/modeling/lightgbm/lgbm_classifier.py,sha256=aqu_9wuJTO0b02jjwIa8Pa9AWJ7ZSjPJNGZjrhDBPFY,52145
|
283
|
+
snowflake/ml/modeling/lightgbm/lgbm_regressor.py,sha256=QM2wAK8olzrzI-q_dXv_kAc7CIvV7sGs32AKCTmJcPE,51647
|
284
284
|
snowflake/ml/modeling/linear_model/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
285
|
-
snowflake/ml/modeling/linear_model/ard_regression.py,sha256=
|
286
|
-
snowflake/ml/modeling/linear_model/bayesian_ridge.py,sha256=
|
287
|
-
snowflake/ml/modeling/linear_model/elastic_net.py,sha256=
|
288
|
-
snowflake/ml/modeling/linear_model/elastic_net_cv.py,sha256=
|
289
|
-
snowflake/ml/modeling/linear_model/gamma_regressor.py,sha256=
|
290
|
-
snowflake/ml/modeling/linear_model/huber_regressor.py,sha256=
|
291
|
-
snowflake/ml/modeling/linear_model/lars.py,sha256=
|
292
|
-
snowflake/ml/modeling/linear_model/lars_cv.py,sha256=
|
293
|
-
snowflake/ml/modeling/linear_model/lasso.py,sha256=
|
294
|
-
snowflake/ml/modeling/linear_model/lasso_cv.py,sha256=
|
295
|
-
snowflake/ml/modeling/linear_model/lasso_lars.py,sha256=
|
296
|
-
snowflake/ml/modeling/linear_model/lasso_lars_cv.py,sha256
|
297
|
-
snowflake/ml/modeling/linear_model/lasso_lars_ic.py,sha256=
|
298
|
-
snowflake/ml/modeling/linear_model/linear_regression.py,sha256=
|
299
|
-
snowflake/ml/modeling/linear_model/logistic_regression.py,sha256=
|
300
|
-
snowflake/ml/modeling/linear_model/logistic_regression_cv.py,sha256=
|
301
|
-
snowflake/ml/modeling/linear_model/multi_task_elastic_net.py,sha256=
|
302
|
-
snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py,sha256=
|
303
|
-
snowflake/ml/modeling/linear_model/multi_task_lasso.py,sha256=
|
304
|
-
snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py,sha256=
|
305
|
-
snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py,sha256=
|
306
|
-
snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py,sha256=
|
307
|
-
snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py,sha256=
|
308
|
-
snowflake/ml/modeling/linear_model/perceptron.py,sha256=
|
309
|
-
snowflake/ml/modeling/linear_model/poisson_regressor.py,sha256=
|
310
|
-
snowflake/ml/modeling/linear_model/ransac_regressor.py,sha256=
|
311
|
-
snowflake/ml/modeling/linear_model/ridge.py,sha256=
|
312
|
-
snowflake/ml/modeling/linear_model/ridge_classifier.py,sha256=
|
313
|
-
snowflake/ml/modeling/linear_model/ridge_classifier_cv.py,sha256=
|
314
|
-
snowflake/ml/modeling/linear_model/ridge_cv.py,sha256=
|
315
|
-
snowflake/ml/modeling/linear_model/sgd_classifier.py,sha256=
|
316
|
-
snowflake/ml/modeling/linear_model/sgd_one_class_svm.py,sha256=
|
317
|
-
snowflake/ml/modeling/linear_model/sgd_regressor.py,sha256=
|
318
|
-
snowflake/ml/modeling/linear_model/theil_sen_regressor.py,sha256=
|
319
|
-
snowflake/ml/modeling/linear_model/tweedie_regressor.py,sha256=
|
285
|
+
snowflake/ml/modeling/linear_model/ard_regression.py,sha256=W1gl4IGFaX_AXONDbA_gfC-LZHiAGf0DC6ELYp62pZk,52402
|
286
|
+
snowflake/ml/modeling/linear_model/bayesian_ridge.py,sha256=w-Pc6xF2ytch-HfPWIgAGadTf64J5e3lsWFHPUISR2Q,52772
|
287
|
+
snowflake/ml/modeling/linear_model/elastic_net.py,sha256=UOy7Pc3KIytN9gyRydt56uUoZ4oLc-ng09-uUMF8keA,53790
|
288
|
+
snowflake/ml/modeling/linear_model/elastic_net_cv.py,sha256=551rCj5fGimvmNhWHV7F-ug7x-BwkyHK2GbtRZcYRsg,54866
|
289
|
+
snowflake/ml/modeling/linear_model/gamma_regressor.py,sha256=HqjrLTaY4EROwp66xGCekuQ_kpHN8InKyf3PEhNML8M,52655
|
290
|
+
snowflake/ml/modeling/linear_model/huber_regressor.py,sha256=Rr7aGYwkaBpM-zYBPXeI6W2xXswA7-h77_VB0IzHD4E,51852
|
291
|
+
snowflake/ml/modeling/linear_model/lars.py,sha256=qszoPQvf2fPWBIee6CB-e8kij8gUoGGPpLAjaqzNkQk,52558
|
292
|
+
snowflake/ml/modeling/linear_model/lars_cv.py,sha256=om9N6A2L6AvNLN7ZGmLYyBkZ-2Vt_dYis6MimNkxW8I,52806
|
293
|
+
snowflake/ml/modeling/linear_model/lasso.py,sha256=_sI_TRshSX2nYl8HB0p5ogBtIOoi5crI4GrcJgBeqzQ,53172
|
294
|
+
snowflake/ml/modeling/linear_model/lasso_cv.py,sha256=C5TNLWaT3LH4XsSZ_THjWgKSasEEnzGbUEfhpEWBYZc,53984
|
295
|
+
snowflake/ml/modeling/linear_model/lasso_lars.py,sha256=knYCrHCOaXBf47AAdhJ9wDDELGSpudj6E-_AnHgMUlI,53699
|
296
|
+
snowflake/ml/modeling/linear_model/lasso_lars_cv.py,sha256=-F6A1QHVn6ULJG12ZrRkNZdGbwYm7YZIWG3Ejsr3J8A,53687
|
297
|
+
snowflake/ml/modeling/linear_model/lasso_lars_ic.py,sha256=SgdksEfanuFEXzaTSADndsvt99CrcKjhE0Gq-40o_y0,53008
|
298
|
+
snowflake/ml/modeling/linear_model/linear_regression.py,sha256=x6XurxKT0F-rSkpsog-kMH4dqf8IGkT7bS1oYz_fFfc,51396
|
299
|
+
snowflake/ml/modeling/linear_model/logistic_regression.py,sha256=IlDx28zrwblP-8DdZ5tN1CeaOfrHMunRMP-fbi8RosM,58161
|
300
|
+
snowflake/ml/modeling/linear_model/logistic_regression_cv.py,sha256=El5o3udl4EXCeqE3UQchb5TbrGXbApvRoktiMgc6_Vw,59225
|
301
|
+
snowflake/ml/modeling/linear_model/multi_task_elastic_net.py,sha256=j59Bb4DfPOPbvV3ekxCPaLlXyN_ZsDFH0VIUkBcKIVE,52871
|
302
|
+
snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py,sha256=LmsFrKdIQrbTuhoxTo-Ta83IUuAZu85R6A0oHw7YAYc,54536
|
303
|
+
snowflake/ml/modeling/linear_model/multi_task_lasso.py,sha256=MnsTR1ZzNxEiOzPtJh5ClKcgKxzyeyDCxkuEZhC4cu0,52414
|
304
|
+
snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py,sha256=8k8kpcFy48NDr0s3c3-BL4PjOHSkjly0dCMUkKXKmDg,53703
|
305
|
+
snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py,sha256=JgWKwDHYI43j1A3GNCjS4NWo4hT0cibil0L-0gC9fA4,51619
|
306
|
+
snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py,sha256=PcAHLuuFMDDOZL45yatHIWN61jw61msOXsNfMNGcjWg,55443
|
307
|
+
snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py,sha256=NCfQHD9VJiIDl-eGCPQZ4492yTPZzZN5RYz72PCOWVQ,54505
|
308
|
+
snowflake/ml/modeling/linear_model/perceptron.py,sha256=hSpgHC4XO-08h2AXqnfTbScHUzRH460_V4FyPQ1siT0,54760
|
309
|
+
snowflake/ml/modeling/linear_model/poisson_regressor.py,sha256=2H46W-XbwX-8GwBh5Eca3kV5LioYIcwohYaLIpo3yGI,52702
|
310
|
+
snowflake/ml/modeling/linear_model/ransac_regressor.py,sha256=_cVkRspXP0ljSe7YdxYFRv-5JBeiamaibk509NTCDgw,55841
|
311
|
+
snowflake/ml/modeling/linear_model/ridge.py,sha256=L5Ajz3PwJteqcflPslez66NTr7IAKjbigUTHxMYpiDg,54716
|
312
|
+
snowflake/ml/modeling/linear_model/ridge_classifier.py,sha256=niM44vDmpoRMMGJ9g-5qIuUHqeDkrsOk5TJpHZMvlAU,55114
|
313
|
+
snowflake/ml/modeling/linear_model/ridge_classifier_cv.py,sha256=6sawX5avdKR0ZOStnFom-FbcjCRXySoTPtHksMnNaj0,53579
|
314
|
+
snowflake/ml/modeling/linear_model/ridge_cv.py,sha256=iiTABk8xZD1T3QY1WrmicduN2Jk3UZ_wutFHdGrXwUM,54186
|
315
|
+
snowflake/ml/modeling/linear_model/sgd_classifier.py,sha256=CGymVQuwdfbip_YfDqz-pniCGTFd7NI82UUDTGp1c_g,60171
|
316
|
+
snowflake/ml/modeling/linear_model/sgd_one_class_svm.py,sha256=mTAzO2gVL5TtDRExgpytgNEVxt7DvPTYPb6xNbxRYt8,55253
|
317
|
+
snowflake/ml/modeling/linear_model/sgd_regressor.py,sha256=ToIeH8C32chpaXf8v8DgqozfwwKa12-22shdBcmJ-QU,58148
|
318
|
+
snowflake/ml/modeling/linear_model/theil_sen_regressor.py,sha256=wEtbl-3q1w62qVnE-GRgjhTmq7ItQsR063Igm9k8QX0,53138
|
319
|
+
snowflake/ml/modeling/linear_model/tweedie_regressor.py,sha256=c0kO63RiGi1N8d_xtmROUgLX6edbRSbHw5byrA7aMY8,54093
|
320
320
|
snowflake/ml/modeling/manifold/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
321
|
-
snowflake/ml/modeling/manifold/isomap.py,sha256=
|
322
|
-
snowflake/ml/modeling/manifold/mds.py,sha256=
|
323
|
-
snowflake/ml/modeling/manifold/spectral_embedding.py,sha256=
|
324
|
-
snowflake/ml/modeling/manifold/tsne.py,sha256=
|
321
|
+
snowflake/ml/modeling/manifold/isomap.py,sha256=aFdaFP0fRxXtHnWDxiyOdas2xjjTFB0JqFBSrXxbqEE,53396
|
322
|
+
snowflake/ml/modeling/manifold/mds.py,sha256=I_QuAmmAvR_XVhC02S1Id8_86onuZVDn3C2vmEIaskY,52612
|
323
|
+
snowflake/ml/modeling/manifold/spectral_embedding.py,sha256=WWXDnycP_jkLO5krDH_HkF8RGmvGbc0p5UcNpojImRs,53476
|
324
|
+
snowflake/ml/modeling/manifold/tsne.py,sha256=oSHMII0dVUst6ezVmfTlyP3wJywVJIt7Aj965a1p1PY,56599
|
325
325
|
snowflake/ml/modeling/metrics/__init__.py,sha256=1lc1DCVNeo7D-gvvCjmpI5tFIIrOsEdEZMrQiXJnQ8E,507
|
326
326
|
snowflake/ml/modeling/metrics/classification.py,sha256=E-Dx3xSmZQrF_MXf2BHAjrDstbCXVyU5g6x6CeizosQ,66411
|
327
327
|
snowflake/ml/modeling/metrics/correlation.py,sha256=Roi17Sx5F81VlJaLQTeBAe5qZ7sZYc31UkIuC6z4qkQ,4803
|
@@ -330,35 +330,35 @@ snowflake/ml/modeling/metrics/metrics_utils.py,sha256=MLqTN59F3NLkldhsUrJFAZsHmf
|
|
330
330
|
snowflake/ml/modeling/metrics/ranking.py,sha256=znjIIRkGqnGzid7BAGhBowGHbau7mTV5gc-RY_HVfoQ,17760
|
331
331
|
snowflake/ml/modeling/metrics/regression.py,sha256=TcqnADqfL9_1XY47HQeul09t3DMPBkPSVtHP5Z9SyV4,26043
|
332
332
|
snowflake/ml/modeling/mixture/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
333
|
-
snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py,sha256=
|
334
|
-
snowflake/ml/modeling/mixture/gaussian_mixture.py,sha256
|
333
|
+
snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py,sha256=vKF2eQnrB63KmDKv0uRytR9-1CYOYU52fr79q0Mfvp8,57984
|
334
|
+
snowflake/ml/modeling/mixture/gaussian_mixture.py,sha256=-RLbWrJUJTZ1GZwNn0yrZKwGQpSJZgof6iJpYJG0Wz0,55877
|
335
335
|
snowflake/ml/modeling/model_selection/__init__.py,sha256=AUAyMIRsAF9Ocf7zDnGPYSvKgGfkR8LInyFvkC-7MiU,281
|
336
336
|
snowflake/ml/modeling/model_selection/grid_search_cv.py,sha256=MN2ShNWFKDJYU8-ofhNfef3zAsGyPMAzfToC6EuQMs4,38358
|
337
337
|
snowflake/ml/modeling/model_selection/randomized_search_cv.py,sha256=E5i1AsL50HV9A25JkUUTEQZkX4EVJqrFP2T9EOW5B4U,39100
|
338
338
|
snowflake/ml/modeling/multiclass/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
339
|
-
snowflake/ml/modeling/multiclass/one_vs_one_classifier.py,sha256=
|
340
|
-
snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py,sha256
|
341
|
-
snowflake/ml/modeling/multiclass/output_code_classifier.py,sha256=
|
339
|
+
snowflake/ml/modeling/multiclass/one_vs_one_classifier.py,sha256=Wfh4mMKFKbh82cZYSVSn1Ra0CrWdw1uplrpuUl9z3RU,51398
|
340
|
+
snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py,sha256=-Hpcu72UIFh2TjPavGXl4GLfuQ6KBProKFc0omJvF54,52333
|
341
|
+
snowflake/ml/modeling/multiclass/output_code_classifier.py,sha256=qlTdJpZ_kG68l2suCDc2Q-lFhZAzof8DuH7Fpn2kxH4,51670
|
342
342
|
snowflake/ml/modeling/naive_bayes/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
343
|
-
snowflake/ml/modeling/naive_bayes/bernoulli_nb.py,sha256=
|
344
|
-
snowflake/ml/modeling/naive_bayes/categorical_nb.py,sha256=
|
345
|
-
snowflake/ml/modeling/naive_bayes/complement_nb.py,sha256=
|
346
|
-
snowflake/ml/modeling/naive_bayes/gaussian_nb.py,sha256=
|
347
|
-
snowflake/ml/modeling/naive_bayes/multinomial_nb.py,sha256=
|
343
|
+
snowflake/ml/modeling/naive_bayes/bernoulli_nb.py,sha256=KNaMA7jiWY1k2y1NJQti6DjHJDmNDjn9GNpmdik_EqY,51925
|
344
|
+
snowflake/ml/modeling/naive_bayes/categorical_nb.py,sha256=4y2cpGa7I49_yA8mUTnVk3yHFl8I02-5-C1zFSbPzwo,52262
|
345
|
+
snowflake/ml/modeling/naive_bayes/complement_nb.py,sha256=AIl4z8cJywDBWB9Aj77mWqwPQM2FXDJa3iZbX-HFFyg,51941
|
346
|
+
snowflake/ml/modeling/naive_bayes/gaussian_nb.py,sha256=J6jl4rFzTu3wXEXCE0gg_XHGKYMqKdsJrw7KEmEqGu4,51073
|
347
|
+
snowflake/ml/modeling/naive_bayes/multinomial_nb.py,sha256=J1-OnSpbELzx5N75mXU4DwoKQQVQV6cExx37E9YPBXI,51707
|
348
348
|
snowflake/ml/modeling/neighbors/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
349
|
-
snowflake/ml/modeling/neighbors/k_neighbors_classifier.py,sha256
|
350
|
-
snowflake/ml/modeling/neighbors/k_neighbors_regressor.py,sha256=
|
351
|
-
snowflake/ml/modeling/neighbors/kernel_density.py,sha256=
|
352
|
-
snowflake/ml/modeling/neighbors/local_outlier_factor.py,sha256=
|
353
|
-
snowflake/ml/modeling/neighbors/nearest_centroid.py,sha256=
|
354
|
-
snowflake/ml/modeling/neighbors/nearest_neighbors.py,sha256=
|
355
|
-
snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py,sha256=
|
356
|
-
snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py,sha256=
|
357
|
-
snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py,sha256=
|
349
|
+
snowflake/ml/modeling/neighbors/k_neighbors_classifier.py,sha256=_Yf9GV5V48Odh-xD4urNQKgtEisQz-V85RCAmdZDcS0,55039
|
350
|
+
snowflake/ml/modeling/neighbors/k_neighbors_regressor.py,sha256=KUAfOp5spxNgiy1sx_S9B8iugvRdCXwPOkgtK_pwrtM,54405
|
351
|
+
snowflake/ml/modeling/neighbors/kernel_density.py,sha256=PMX2ee5gmtnBk2Tn6QVe0tvLJWHtntAkvCbRqI07-9M,52694
|
352
|
+
snowflake/ml/modeling/neighbors/local_outlier_factor.py,sha256=C-BHWY1LTSUxet9Cq2RRNOuYp1PBAc8U9tEGmZOn1l0,55270
|
353
|
+
snowflake/ml/modeling/neighbors/nearest_centroid.py,sha256=54-5Z0s0UqOzgbW12mBrRLJXX-b2s1rLLE40zGJtqyA,50858
|
354
|
+
snowflake/ml/modeling/neighbors/nearest_neighbors.py,sha256=cT7OHKZZz3ZVBSCF2sEv3eigrJfdZ4ceXIJTbU6uk50,53177
|
355
|
+
snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py,sha256=kmwYOcG7oEPRSYRACms6lnAwBbaTr5ZpLWRkI_qkILA,54759
|
356
|
+
snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py,sha256=_n3tarqrvg-YrNOpOVuQIsgQL0YdPoJ2g-eXPVPoaTk,55488
|
357
|
+
snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py,sha256=N1CaJ-AEcYnzcQg8XzKq-JDJIqvi01xxCAeTh7TJQPM,54088
|
358
358
|
snowflake/ml/modeling/neural_network/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
359
|
-
snowflake/ml/modeling/neural_network/bernoulli_rbm.py,sha256=
|
360
|
-
snowflake/ml/modeling/neural_network/mlp_classifier.py,sha256=
|
361
|
-
snowflake/ml/modeling/neural_network/mlp_regressor.py,sha256=
|
359
|
+
snowflake/ml/modeling/neural_network/bernoulli_rbm.py,sha256=e5iUpcB_ZHpHjtf2uZD5N0qwPKaIiy2sxdv9I6dr7tQ,51901
|
360
|
+
snowflake/ml/modeling/neural_network/mlp_classifier.py,sha256=DV9IQYwGTW-12O2tP2vEl5Y4lkB653sP4Bw6PEsZHho,59455
|
361
|
+
snowflake/ml/modeling/neural_network/mlp_regressor.py,sha256=evzApQusrUFssU6PDu4YXk3apyOGnTDKberoXANN1VU,58567
|
362
362
|
snowflake/ml/modeling/parameters/disable_distributed_hpo.py,sha256=jyjlLPrtnDSQxlTTM0ayMjWKVL_IP3snd--yeXK5htY,221
|
363
363
|
snowflake/ml/modeling/parameters/disable_model_tracer.py,sha256=uj6SZz7HQpThGLs90zfUDcNMChxf0C6DKRN2xOfjmvI,203
|
364
364
|
snowflake/ml/modeling/parameters/enable_anonymous_sproc.py,sha256=7FUdfhLbEGEocdd5XZ-7MFYMzOva58qI1dPDurPt7fw,207
|
@@ -373,29 +373,30 @@ snowflake/ml/modeling/preprocessing/min_max_scaler.py,sha256=NappHtB3aOPDstBFkc-
|
|
373
373
|
snowflake/ml/modeling/preprocessing/normalizer.py,sha256=rVlTClMkFz2N12vlV5pbKBMLJ14FU9XOd1p064Wv1lU,6984
|
374
374
|
snowflake/ml/modeling/preprocessing/one_hot_encoder.py,sha256=JWwBI5Ew1pwyMmJRmvEEnfkNn4zR-p4BbpgqGHQpFVQ,75160
|
375
375
|
snowflake/ml/modeling/preprocessing/ordinal_encoder.py,sha256=FLPX9ix3dWUe2_8GdEZ9v4MWPzoYfp8Ig6B5w4svPcQ,35307
|
376
|
-
snowflake/ml/modeling/preprocessing/polynomial_features.py,sha256=
|
376
|
+
snowflake/ml/modeling/preprocessing/polynomial_features.py,sha256=r22lF0Qw3ylUesyu4SDX0rqXzs4MYmdJoqlakCBz7_c,51843
|
377
377
|
snowflake/ml/modeling/preprocessing/robust_scaler.py,sha256=XW9d7z0JlQlmkcsNxfEgf78uOmb0T2uQd4B-vfyA8zY,12634
|
378
378
|
snowflake/ml/modeling/preprocessing/standard_scaler.py,sha256=V-9LbiD5G-RXGayLMnsC4wh9EQx0rw3bAou1gARWtIQ,11761
|
379
379
|
snowflake/ml/modeling/semi_supervised/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
380
|
-
snowflake/ml/modeling/semi_supervised/label_propagation.py,sha256=
|
381
|
-
snowflake/ml/modeling/semi_supervised/label_spreading.py,sha256=
|
380
|
+
snowflake/ml/modeling/semi_supervised/label_propagation.py,sha256=QvurssFENi7-aHTkLyyWxS9rQ_s_dmmxr7kjDmn7Ygg,52172
|
381
|
+
snowflake/ml/modeling/semi_supervised/label_spreading.py,sha256=4FsxD-Owdu_a7jr6lO3LPWEaRqtlODg-8MIokB-Avbo,52519
|
382
382
|
snowflake/ml/modeling/svm/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
383
|
-
snowflake/ml/modeling/svm/linear_svc.py,sha256=
|
384
|
-
snowflake/ml/modeling/svm/linear_svr.py,sha256=
|
385
|
-
snowflake/ml/modeling/svm/nu_svc.py,sha256=
|
386
|
-
snowflake/ml/modeling/svm/nu_svr.py,sha256=
|
387
|
-
snowflake/ml/modeling/svm/svc.py,sha256
|
388
|
-
snowflake/ml/modeling/svm/svr.py,sha256
|
383
|
+
snowflake/ml/modeling/svm/linear_svc.py,sha256=ccGMbftE9R49lKdZfBMlpT4B0LefdJSaNSP--8v8InU,55744
|
384
|
+
snowflake/ml/modeling/svm/linear_svr.py,sha256=1lI0VDv_huwEE0lBZaMhtJ3qi2ZJ3dNeKzvyVpE5PUo,53927
|
385
|
+
snowflake/ml/modeling/svm/nu_svc.py,sha256=qijEUvsgmjfStiyyvg8_TTMv_BVFq69R39M5olbLyHc,55412
|
386
|
+
snowflake/ml/modeling/svm/nu_svr.py,sha256=Fti-_OEaYxMlP_7KQnmSJ5J6JfPZowSrXQVeGxnPATE,52526
|
387
|
+
snowflake/ml/modeling/svm/svc.py,sha256=-6AL1e6eoReuwD34wiC3fKAEy7oXrLwSIAJLFPHYb1o,55726
|
388
|
+
snowflake/ml/modeling/svm/svr.py,sha256=-c39k9sfWZGOshzQDblh-IH_SM1AAywevOXw93G9GlI,52705
|
389
389
|
snowflake/ml/modeling/tree/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
390
|
-
snowflake/ml/modeling/tree/decision_tree_classifier.py,sha256=
|
391
|
-
snowflake/ml/modeling/tree/decision_tree_regressor.py,sha256=
|
392
|
-
snowflake/ml/modeling/tree/extra_tree_classifier.py,sha256=
|
393
|
-
snowflake/ml/modeling/tree/extra_tree_regressor.py,sha256=
|
390
|
+
snowflake/ml/modeling/tree/decision_tree_classifier.py,sha256=sikvjQMyaD0ji8cHERdCSvhY161wWpWzT8EYAEcoBl4,58512
|
391
|
+
snowflake/ml/modeling/tree/decision_tree_regressor.py,sha256=999NuwdM3ioYv6bgvtAA6RhSmUHj9fpwLEzigLQmWsg,57060
|
392
|
+
snowflake/ml/modeling/tree/extra_tree_classifier.py,sha256=4qCZ_LgKEn1CjJwe-jvYqYrEG03s89_AVBCevaR3zcc,57823
|
393
|
+
snowflake/ml/modeling/tree/extra_tree_regressor.py,sha256=1WP5zhhdXsNbFtZ38RLGj0THvMpVUF_zZr-j5qlEzds,56408
|
394
394
|
snowflake/ml/modeling/xgboost/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
395
|
-
snowflake/ml/modeling/xgboost/xgb_classifier.py,sha256=
|
396
|
-
snowflake/ml/modeling/xgboost/xgb_regressor.py,sha256=
|
397
|
-
snowflake/ml/modeling/xgboost/xgbrf_classifier.py,sha256=
|
398
|
-
snowflake/ml/modeling/xgboost/xgbrf_regressor.py,sha256=
|
395
|
+
snowflake/ml/modeling/xgboost/xgb_classifier.py,sha256=SF5F4elDdHmt8Wtth8BIH2Sc60l7ZgVen_XsGoKraIo,63977
|
396
|
+
snowflake/ml/modeling/xgboost/xgb_regressor.py,sha256=5x-N1Yym0OfF3D7lHNzLByaazc4aoDNVmCQ-TgbYOGg,63580
|
397
|
+
snowflake/ml/modeling/xgboost/xgbrf_classifier.py,sha256=H3SAtx-2mIwS3N_ltBXVHlbLeYun5TtdBBN_goeKrBg,64253
|
398
|
+
snowflake/ml/modeling/xgboost/xgbrf_regressor.py,sha256=Up3rbL7pfeglVKx920UpLhBzHxteXLTWHqIk5WX9iPY,63778
|
399
|
+
snowflake/ml/monitoring/explain_visualize.py,sha256=w0_ETgUq0mjKTbbpCXeLxAZGd7t2iLv3yPh90nbjVYY,15789
|
399
400
|
snowflake/ml/monitoring/model_monitor.py,sha256=8vJf1YROmJgBLUtpaH-lGKSSJv9R7PxPaQnOdr_j5YE,2200
|
400
401
|
snowflake/ml/monitoring/model_monitor_version.py,sha256=TlmDJZDE0lCVatRaBRgXIjzDF538nrMIc-zWj9MM_nk,46
|
401
402
|
snowflake/ml/monitoring/shap.py,sha256=Dp9nYquPEZjxMTW62YYA9g9qUdmCEFxcSk7ejvOP7PE,3597
|
@@ -405,14 +406,14 @@ snowflake/ml/monitoring/_client/queries/rmse.ssql,sha256=OEJiSStRz9-qKoZaFvmubtY
|
|
405
406
|
snowflake/ml/monitoring/_manager/model_monitor_manager.py,sha256=0jpT1-aRU2tsxSM87I-C2kfJeLevCgM-a-OwU_-VUdI,10302
|
406
407
|
snowflake/ml/monitoring/entities/model_monitor_config.py,sha256=1W6TFTPicC6YAbjD7A0w8WMhWireyUxyuEy0RQXmqyY,1787
|
407
408
|
snowflake/ml/registry/__init__.py,sha256=XdPQK9ejYkSJVrSQ7HD3jKQO0hKq2mC4bPCB6qrtH3U,76
|
408
|
-
snowflake/ml/registry/registry.py,sha256=
|
409
|
-
snowflake/ml/registry/_manager/model_manager.py,sha256=
|
409
|
+
snowflake/ml/registry/registry.py,sha256=FImEpQghF9tiSVwKAH5w0ePo2HG9i5AZNJ_4dw_6J54,30634
|
410
|
+
snowflake/ml/registry/_manager/model_manager.py,sha256=5HMLGSEJK8uYD4OVlxJqa83g9OPvdj-K7j_UaW-dde8,18271
|
410
411
|
snowflake/ml/utils/authentication.py,sha256=E1at4TIAQRDZDsMXSbrKvSJaT6_kSYJBkkr37vU9P2s,2606
|
411
|
-
snowflake/ml/utils/connection_params.py,sha256=
|
412
|
+
snowflake/ml/utils/connection_params.py,sha256=kJeFLfF1CHECYJGgPWIFdg__WMK9428yD0HsArms7aQ,8287
|
412
413
|
snowflake/ml/utils/sparse.py,sha256=zLBNh-ynhGpKH5TFtopk0YLkHGvv0yq1q-sV59YQKgg,3819
|
413
414
|
snowflake/ml/utils/sql_client.py,sha256=pSe2od6Pkh-8NwG3D-xqN76_uNf-ohOtVbT55HeQg1Y,668
|
414
|
-
snowflake_ml_python-1.8.
|
415
|
-
snowflake_ml_python-1.8.
|
416
|
-
snowflake_ml_python-1.8.
|
417
|
-
snowflake_ml_python-1.8.
|
418
|
-
snowflake_ml_python-1.8.
|
415
|
+
snowflake_ml_python-1.8.5.dist-info/licenses/LICENSE.txt,sha256=PdEp56Av5m3_kl21iFkVTX_EbHJKFGEdmYeIO1pL_Yk,11365
|
416
|
+
snowflake_ml_python-1.8.5.dist-info/METADATA,sha256=zAAUouCztUjL9nVVP5NEeggoiuiAULPSJRTld4iNOLA,84951
|
417
|
+
snowflake_ml_python-1.8.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
418
|
+
snowflake_ml_python-1.8.5.dist-info/top_level.txt,sha256=TY0gFSHKDdZy3THb0FGomyikWQasEGldIR1O0HGOHVw,10
|
419
|
+
snowflake_ml_python-1.8.5.dist-info/RECORD,,
|