snowflake-ml-python 1.14.0__py3-none-any.whl → 1.16.0__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/ml/_internal/platform_capabilities.py +13 -7
- snowflake/ml/_internal/utils/connection_params.py +5 -3
- snowflake/ml/_internal/utils/jwt_generator.py +3 -2
- snowflake/ml/_internal/utils/mixins.py +24 -9
- snowflake/ml/_internal/utils/temp_file_utils.py +1 -2
- snowflake/ml/experiment/_client/experiment_tracking_sql_client.py +16 -3
- snowflake/ml/experiment/_entities/__init__.py +2 -1
- snowflake/ml/experiment/_entities/run.py +0 -15
- snowflake/ml/experiment/_entities/run_metadata.py +3 -51
- snowflake/ml/experiment/experiment_tracking.py +71 -27
- snowflake/ml/jobs/_utils/spec_utils.py +49 -11
- snowflake/ml/jobs/manager.py +20 -0
- snowflake/ml/model/__init__.py +12 -2
- snowflake/ml/model/_client/model/batch_inference_specs.py +16 -4
- snowflake/ml/model/_client/model/inference_engine_utils.py +55 -0
- snowflake/ml/model/_client/model/model_version_impl.py +30 -62
- snowflake/ml/model/_client/ops/service_ops.py +68 -7
- snowflake/ml/model/_client/service/model_deployment_spec.py +1 -1
- snowflake/ml/model/_client/sql/service.py +29 -2
- snowflake/ml/model/_client/sql/stage.py +8 -0
- snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +1 -0
- snowflake/ml/model/_model_composer/model_method/model_method.py +25 -2
- snowflake/ml/model/_packager/model_env/model_env.py +26 -16
- snowflake/ml/model/_packager/model_handlers/_utils.py +4 -2
- snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py +7 -5
- snowflake/ml/model/_packager/model_packager.py +4 -3
- snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +1 -2
- snowflake/ml/model/_signatures/utils.py +0 -21
- snowflake/ml/model/models/huggingface_pipeline.py +56 -21
- snowflake/ml/model/type_hints.py +13 -0
- snowflake/ml/model/volatility.py +34 -0
- snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +1 -1
- snowflake/ml/modeling/cluster/affinity_propagation.py +1 -1
- snowflake/ml/modeling/cluster/agglomerative_clustering.py +1 -1
- snowflake/ml/modeling/cluster/birch.py +1 -1
- snowflake/ml/modeling/cluster/bisecting_k_means.py +1 -1
- snowflake/ml/modeling/cluster/dbscan.py +1 -1
- snowflake/ml/modeling/cluster/feature_agglomeration.py +1 -1
- snowflake/ml/modeling/cluster/k_means.py +1 -1
- snowflake/ml/modeling/cluster/mean_shift.py +1 -1
- snowflake/ml/modeling/cluster/mini_batch_k_means.py +1 -1
- snowflake/ml/modeling/cluster/optics.py +1 -1
- snowflake/ml/modeling/cluster/spectral_biclustering.py +1 -1
- snowflake/ml/modeling/cluster/spectral_clustering.py +1 -1
- snowflake/ml/modeling/cluster/spectral_coclustering.py +1 -1
- snowflake/ml/modeling/compose/column_transformer.py +1 -1
- snowflake/ml/modeling/compose/transformed_target_regressor.py +1 -1
- snowflake/ml/modeling/covariance/elliptic_envelope.py +1 -1
- snowflake/ml/modeling/covariance/empirical_covariance.py +1 -1
- snowflake/ml/modeling/covariance/graphical_lasso.py +1 -1
- snowflake/ml/modeling/covariance/graphical_lasso_cv.py +1 -1
- snowflake/ml/modeling/covariance/ledoit_wolf.py +1 -1
- snowflake/ml/modeling/covariance/min_cov_det.py +1 -1
- snowflake/ml/modeling/covariance/oas.py +1 -1
- snowflake/ml/modeling/covariance/shrunk_covariance.py +1 -1
- snowflake/ml/modeling/decomposition/dictionary_learning.py +1 -1
- snowflake/ml/modeling/decomposition/factor_analysis.py +1 -1
- snowflake/ml/modeling/decomposition/fast_ica.py +1 -1
- snowflake/ml/modeling/decomposition/incremental_pca.py +1 -1
- snowflake/ml/modeling/decomposition/kernel_pca.py +1 -1
- snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +1 -1
- snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +1 -1
- snowflake/ml/modeling/decomposition/pca.py +1 -1
- snowflake/ml/modeling/decomposition/sparse_pca.py +1 -1
- snowflake/ml/modeling/decomposition/truncated_svd.py +1 -1
- snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +1 -1
- snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +1 -1
- snowflake/ml/modeling/ensemble/ada_boost_classifier.py +1 -1
- snowflake/ml/modeling/ensemble/ada_boost_regressor.py +1 -1
- snowflake/ml/modeling/ensemble/bagging_classifier.py +1 -1
- snowflake/ml/modeling/ensemble/bagging_regressor.py +1 -1
- snowflake/ml/modeling/ensemble/extra_trees_classifier.py +1 -1
- snowflake/ml/modeling/ensemble/extra_trees_regressor.py +1 -1
- snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +1 -1
- snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +1 -1
- snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +1 -1
- snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +1 -1
- snowflake/ml/modeling/ensemble/isolation_forest.py +1 -1
- snowflake/ml/modeling/ensemble/random_forest_classifier.py +1 -1
- snowflake/ml/modeling/ensemble/random_forest_regressor.py +1 -1
- snowflake/ml/modeling/ensemble/stacking_regressor.py +1 -1
- snowflake/ml/modeling/ensemble/voting_classifier.py +1 -1
- snowflake/ml/modeling/ensemble/voting_regressor.py +1 -1
- snowflake/ml/modeling/feature_selection/generic_univariate_select.py +1 -1
- snowflake/ml/modeling/feature_selection/select_fdr.py +1 -1
- snowflake/ml/modeling/feature_selection/select_fpr.py +1 -1
- snowflake/ml/modeling/feature_selection/select_fwe.py +1 -1
- snowflake/ml/modeling/feature_selection/select_k_best.py +1 -1
- snowflake/ml/modeling/feature_selection/select_percentile.py +1 -1
- snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +1 -1
- snowflake/ml/modeling/feature_selection/variance_threshold.py +1 -1
- snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +1 -1
- snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +1 -1
- snowflake/ml/modeling/impute/iterative_imputer.py +1 -1
- snowflake/ml/modeling/impute/knn_imputer.py +1 -1
- snowflake/ml/modeling/impute/missing_indicator.py +1 -1
- snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +1 -1
- snowflake/ml/modeling/kernel_approximation/nystroem.py +1 -1
- snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +1 -1
- snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +1 -1
- snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +1 -1
- snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +1 -1
- snowflake/ml/modeling/lightgbm/lgbm_classifier.py +1 -1
- snowflake/ml/modeling/lightgbm/lgbm_regressor.py +1 -1
- snowflake/ml/modeling/linear_model/ard_regression.py +1 -1
- snowflake/ml/modeling/linear_model/bayesian_ridge.py +1 -1
- snowflake/ml/modeling/linear_model/elastic_net.py +1 -1
- snowflake/ml/modeling/linear_model/elastic_net_cv.py +1 -1
- snowflake/ml/modeling/linear_model/gamma_regressor.py +1 -1
- snowflake/ml/modeling/linear_model/huber_regressor.py +1 -1
- snowflake/ml/modeling/linear_model/lars.py +1 -1
- snowflake/ml/modeling/linear_model/lars_cv.py +1 -1
- snowflake/ml/modeling/linear_model/lasso.py +1 -1
- snowflake/ml/modeling/linear_model/lasso_cv.py +1 -1
- snowflake/ml/modeling/linear_model/lasso_lars.py +1 -1
- snowflake/ml/modeling/linear_model/lasso_lars_cv.py +1 -1
- snowflake/ml/modeling/linear_model/lasso_lars_ic.py +1 -1
- snowflake/ml/modeling/linear_model/linear_regression.py +1 -1
- snowflake/ml/modeling/linear_model/logistic_regression.py +1 -1
- snowflake/ml/modeling/linear_model/logistic_regression_cv.py +1 -1
- snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +1 -1
- snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +1 -1
- snowflake/ml/modeling/linear_model/multi_task_lasso.py +1 -1
- snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +1 -1
- snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +1 -1
- snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +1 -1
- snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +1 -1
- snowflake/ml/modeling/linear_model/perceptron.py +1 -1
- snowflake/ml/modeling/linear_model/poisson_regressor.py +1 -1
- snowflake/ml/modeling/linear_model/ransac_regressor.py +1 -1
- snowflake/ml/modeling/linear_model/ridge.py +1 -1
- snowflake/ml/modeling/linear_model/ridge_classifier.py +1 -1
- snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +1 -1
- snowflake/ml/modeling/linear_model/ridge_cv.py +1 -1
- snowflake/ml/modeling/linear_model/sgd_classifier.py +1 -1
- snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +1 -1
- snowflake/ml/modeling/linear_model/sgd_regressor.py +1 -1
- snowflake/ml/modeling/linear_model/theil_sen_regressor.py +1 -1
- snowflake/ml/modeling/linear_model/tweedie_regressor.py +1 -1
- snowflake/ml/modeling/manifold/isomap.py +1 -1
- snowflake/ml/modeling/manifold/mds.py +1 -1
- snowflake/ml/modeling/manifold/spectral_embedding.py +1 -1
- snowflake/ml/modeling/manifold/tsne.py +1 -1
- snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +1 -1
- snowflake/ml/modeling/mixture/gaussian_mixture.py +1 -1
- snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +1 -1
- snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +1 -1
- snowflake/ml/modeling/multiclass/output_code_classifier.py +1 -1
- snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +1 -1
- snowflake/ml/modeling/naive_bayes/categorical_nb.py +1 -1
- snowflake/ml/modeling/naive_bayes/complement_nb.py +1 -1
- snowflake/ml/modeling/naive_bayes/gaussian_nb.py +1 -1
- snowflake/ml/modeling/naive_bayes/multinomial_nb.py +1 -1
- snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +1 -1
- snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +1 -1
- snowflake/ml/modeling/neighbors/kernel_density.py +1 -1
- snowflake/ml/modeling/neighbors/local_outlier_factor.py +1 -1
- snowflake/ml/modeling/neighbors/nearest_centroid.py +1 -1
- snowflake/ml/modeling/neighbors/nearest_neighbors.py +1 -1
- snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +1 -1
- snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +1 -1
- snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +1 -1
- snowflake/ml/modeling/neural_network/bernoulli_rbm.py +1 -1
- snowflake/ml/modeling/neural_network/mlp_classifier.py +1 -1
- snowflake/ml/modeling/neural_network/mlp_regressor.py +1 -1
- snowflake/ml/modeling/preprocessing/polynomial_features.py +1 -1
- snowflake/ml/modeling/semi_supervised/label_propagation.py +1 -1
- snowflake/ml/modeling/semi_supervised/label_spreading.py +1 -1
- snowflake/ml/modeling/svm/linear_svc.py +1 -1
- snowflake/ml/modeling/svm/linear_svr.py +1 -1
- snowflake/ml/modeling/svm/nu_svc.py +1 -1
- snowflake/ml/modeling/svm/nu_svr.py +1 -1
- snowflake/ml/modeling/svm/svc.py +1 -1
- snowflake/ml/modeling/svm/svr.py +1 -1
- snowflake/ml/modeling/tree/decision_tree_classifier.py +1 -1
- snowflake/ml/modeling/tree/decision_tree_regressor.py +1 -1
- snowflake/ml/modeling/tree/extra_tree_classifier.py +1 -1
- snowflake/ml/modeling/tree/extra_tree_regressor.py +1 -1
- snowflake/ml/modeling/xgboost/xgb_classifier.py +1 -1
- snowflake/ml/modeling/xgboost/xgb_regressor.py +1 -1
- snowflake/ml/modeling/xgboost/xgbrf_classifier.py +1 -1
- snowflake/ml/modeling/xgboost/xgbrf_regressor.py +1 -1
- snowflake/ml/registry/_manager/model_manager.py +2 -1
- snowflake/ml/registry/_manager/model_parameter_reconciler.py +29 -2
- snowflake/ml/registry/registry.py +15 -0
- snowflake/ml/utils/authentication.py +16 -0
- snowflake/ml/utils/connection_params.py +5 -3
- snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.14.0.dist-info → snowflake_ml_python-1.16.0.dist-info}/METADATA +81 -36
- {snowflake_ml_python-1.14.0.dist-info → snowflake_ml_python-1.16.0.dist-info}/RECORD +193 -191
- {snowflake_ml_python-1.14.0.dist-info → snowflake_ml_python-1.16.0.dist-info}/WHEEL +0 -0
- {snowflake_ml_python-1.14.0.dist-info → snowflake_ml_python-1.16.0.dist-info}/licenses/LICENSE.txt +0 -0
- {snowflake_ml_python-1.14.0.dist-info → snowflake_ml_python-1.16.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snowflake-ml-python
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.16.0
|
|
4
4
|
Summary: The machine learning client library that is used for interacting with Snowflake to build machine learning solutions.
|
|
5
5
|
Author-email: "Snowflake, Inc" <support@snowflake.com>
|
|
6
6
|
License:
|
|
@@ -233,7 +233,6 @@ Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
|
233
233
|
Requires-Python: <3.13,>=3.9
|
|
234
234
|
Description-Content-Type: text/markdown
|
|
235
235
|
License-File: LICENSE.txt
|
|
236
|
-
Requires-Dist: absl-py<2,>=0.15
|
|
237
236
|
Requires-Dist: anyio<5,>=3.5.0
|
|
238
237
|
Requires-Dist: cachetools<6,>=3.1.1
|
|
239
238
|
Requires-Dist: cloudpickle>=2.0.0
|
|
@@ -251,7 +250,7 @@ Requires-Dist: pytimeparse<2,>=1.1.8
|
|
|
251
250
|
Requires-Dist: pyyaml<7,>=6.0
|
|
252
251
|
Requires-Dist: retrying<2,>=1.3.3
|
|
253
252
|
Requires-Dist: s3fs<2026,>=2024.6.1
|
|
254
|
-
Requires-Dist: scikit-learn<1.
|
|
253
|
+
Requires-Dist: scikit-learn<1.8
|
|
255
254
|
Requires-Dist: scipy<2,>=1.9
|
|
256
255
|
Requires-Dist: shap<1,>=0.46.0
|
|
257
256
|
Requires-Dist: snowflake-connector-python[pandas]<4,>=3.16.0
|
|
@@ -302,21 +301,21 @@ Requires-Dist: torch<3,>=2.0.1; extra == "transformers"
|
|
|
302
301
|
Requires-Dist: transformers!=4.51.3,<5,>=4.39.3; extra == "transformers"
|
|
303
302
|
Dynamic: license-file
|
|
304
303
|
|
|
305
|
-
#
|
|
304
|
+
# Snowflake ML Python
|
|
306
305
|
|
|
307
|
-
|
|
308
|
-
With
|
|
306
|
+
Snowflake ML Python is a set of tools including SDKs and underlying infrastructure to build and deploy machine learning models.
|
|
307
|
+
With Snowflake ML Python, you can pre-process data, train, manage and deploy ML models all within Snowflake,
|
|
309
308
|
and benefit from Snowflake’s proven performance, scalability, stability and governance at every stage of the Machine
|
|
310
309
|
Learning workflow.
|
|
311
310
|
|
|
312
|
-
## Key Components of
|
|
311
|
+
## Key Components of Snowflake ML Python
|
|
313
312
|
|
|
314
|
-
The
|
|
315
|
-
and deployment process
|
|
313
|
+
The Snowflake ML Python SDK provides a number of APIs to support each stage of an end-to-end Machine Learning development
|
|
314
|
+
and deployment process.
|
|
316
315
|
|
|
317
|
-
###
|
|
316
|
+
### Snowflake ML Model Development
|
|
318
317
|
|
|
319
|
-
[
|
|
318
|
+
[Snowflake ML Model Development](https://docs.snowflake.com/developer-guide/snowflake-ml/overview#ml-modeling)
|
|
320
319
|
provides a collection of python APIs enabling efficient ML model development directly in Snowflake:
|
|
321
320
|
|
|
322
321
|
1. Modeling API (`snowflake.ml.modeling`) for data preprocessing, feature engineering and model training in Snowflake.
|
|
@@ -327,19 +326,16 @@ model development classes based on sklearn, xgboost, and lightgbm.
|
|
|
327
326
|
1. Framework Connectors: Optimized, secure and performant data provisioning for Pytorch and Tensorflow frameworks in
|
|
328
327
|
their native data loader formats.
|
|
329
328
|
|
|
330
|
-
|
|
331
|
-
from a query or Snowpark Dataframe along with a number of convenience APIs.
|
|
329
|
+
### Snowflake ML Ops
|
|
332
330
|
|
|
333
|
-
|
|
331
|
+
Snowflake ML Python contains a suite of MLOps tools. It complements
|
|
332
|
+
the Snowflake Modeling API, and provides end to end development to deployment within Snowflake.
|
|
333
|
+
The Snowflake ML Ops suite consists of:
|
|
334
334
|
|
|
335
|
-
|
|
336
|
-
the Snowpark ML Development API, and provides end to end development to deployment within Snowflake.
|
|
337
|
-
Currently, the API consists of:
|
|
338
|
-
|
|
339
|
-
1. [Registry](https://docs.snowflake.com/en/developer-guide/snowpark-ml/index#snowflake-model-registry): A python API
|
|
335
|
+
1. [Registry](https://docs.snowflake.com/developer-guide/snowflake-ml/overview#snowflake-model-registry): A python API
|
|
340
336
|
allows secure deployment and management of models in Snowflake, supporting models trained both inside and outside of
|
|
341
337
|
Snowflake.
|
|
342
|
-
2. [Feature Store](https://docs.snowflake.com/
|
|
338
|
+
2. [Feature Store](https://docs.snowflake.com/developer-guide/snowflake-ml/overview#snowflake-feature-store): A fully
|
|
343
339
|
integrated solution for defining, managing, storing and discovering ML features derived from your data. The
|
|
344
340
|
Snowflake Feature Store supports automated, incremental refresh from batch and streaming data sources, so that
|
|
345
341
|
feature pipelines need be defined only once to be continuously updated with new data.
|
|
@@ -348,12 +344,19 @@ Currently, the API consists of:
|
|
|
348
344
|
|
|
349
345
|
## Getting started
|
|
350
346
|
|
|
347
|
+
Learn about all Snowflake ML feature offerings in the [Developer Guide](https://docs.snowflake.com/developer-guide/snowflake-ml/overview).
|
|
348
|
+
|
|
351
349
|
### Have your Snowflake account ready
|
|
352
350
|
|
|
353
351
|
If you don't have a Snowflake account yet, you can [sign up for a 30-day free trial account](https://signup.snowflake.com/).
|
|
354
352
|
|
|
355
353
|
### Installation
|
|
356
354
|
|
|
355
|
+
Snowflake ML Python is pre-installed in Container Runtime notebook environments.
|
|
356
|
+
[Learn more](https://docs.snowflake.com/en/developer-guide/snowflake-ml/notebooks-on-spcs).
|
|
357
|
+
|
|
358
|
+
In Snowflake Warehouse notebook environments, snowflake-ml-python can be installed using the "Packages" drop-down menu.
|
|
359
|
+
|
|
357
360
|
Follow the [installation instructions](https://docs.snowflake.com/en/developer-guide/snowpark-ml/index#installing-snowpark-ml)
|
|
358
361
|
in the Snowflake documentation.
|
|
359
362
|
|
|
@@ -363,8 +366,8 @@ or [virtualenv](https://docs.python.org/3/tutorial/venv.html) to create a virtua
|
|
|
363
366
|
|
|
364
367
|
### Conda channels
|
|
365
368
|
|
|
366
|
-
The [Snowflake
|
|
367
|
-
|
|
369
|
+
The [Snowflake Anaconda Channel](https://repo.anaconda.com/pkgs/snowflake/) contains the official snowflake-ml-python package
|
|
370
|
+
releases. To install `snowflake-ml-python` from this conda channel:
|
|
368
371
|
|
|
369
372
|
```sh
|
|
370
373
|
conda install \
|
|
@@ -373,25 +376,18 @@ conda install \
|
|
|
373
376
|
snowflake-ml-python
|
|
374
377
|
```
|
|
375
378
|
|
|
376
|
-
See [the developer guide](https://docs.snowflake.com/en/developer-guide/snowpark-ml/index) for installation instructions.
|
|
379
|
+
See [the developer guide](https://docs.snowflake.com/en/developer-guide/snowpark-ml/index) for detailed installation instructions.
|
|
377
380
|
|
|
378
|
-
The
|
|
379
|
-
|
|
381
|
+
The snowflake-ml-python package is also published in [conda-forge](https://anaconda.org/conda-forge/snowflake-ml-python).
|
|
382
|
+
To install `snowflake-ml-python` from conda forge:
|
|
380
383
|
|
|
381
|
-
|
|
382
|
-
desired version, e.g. `1.0.10`):
|
|
383
|
-
|
|
384
|
-
```bash
|
|
384
|
+
```sh
|
|
385
385
|
conda install \
|
|
386
|
-
-c https://
|
|
387
|
-
-c https://repo.anaconda.com/pkgs/snowflake \
|
|
386
|
+
-c https://conda.anaconda.org/conda-forge/ \
|
|
388
387
|
--override-channels \
|
|
389
|
-
snowflake-ml-python
|
|
388
|
+
snowflake-ml-python
|
|
390
389
|
```
|
|
391
390
|
|
|
392
|
-
Note that until a `snowflake-ml-python` package version is available in the official Snowflake conda channel, there may
|
|
393
|
-
be compatibility issues. Server-side functionality that `snowflake-ml-python` depends on may not yet be released.
|
|
394
|
-
|
|
395
391
|
### Verifying the package
|
|
396
392
|
|
|
397
393
|
1. Install cosign.
|
|
@@ -410,7 +406,56 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
|
410
406
|
|
|
411
407
|
# Release History
|
|
412
408
|
|
|
413
|
-
## 1.
|
|
409
|
+
## 1.16.0
|
|
410
|
+
|
|
411
|
+
### Bug Fixes
|
|
412
|
+
|
|
413
|
+
* Registry: Remove redundant pip dependency warnings when `artifact_repository_map` is provided for warehouse model deployments.
|
|
414
|
+
|
|
415
|
+
### Behavior Changes
|
|
416
|
+
|
|
417
|
+
### New Features
|
|
418
|
+
|
|
419
|
+
* Support scikit-learn < 1.8.
|
|
420
|
+
* ML Job: Added support for configuring the runtime image via `runtime_environment`
|
|
421
|
+
(image tag or full image URL) at submission time.
|
|
422
|
+
Examples:
|
|
423
|
+
* @remote(compute_pool, stage_name = 'payload_stage', runtime_environment = '1.8.0')
|
|
424
|
+
* submit_file('/path/to/repo/test.py', compute_pool, stage_name = 'payload_stage', runtime_environment = '/mydb/myschema/myrepo/myimage:latest')
|
|
425
|
+
* Registry: Ability to mark model methods as `Volatility.VOLATILE` or `Volatility.IMMUTABLE`.
|
|
426
|
+
|
|
427
|
+
```python
|
|
428
|
+
from snowflake.ml.model.volatility import Volatility
|
|
429
|
+
|
|
430
|
+
options = {
|
|
431
|
+
"embed_local_ml_library": True,
|
|
432
|
+
"relax_version": True,
|
|
433
|
+
"save_location": "/path/to/my/directory",
|
|
434
|
+
"function_type": "TABLE_FUNCTION",
|
|
435
|
+
"volatility": Volatility.IMMUTABLE,
|
|
436
|
+
"method_options": {
|
|
437
|
+
"predict": {
|
|
438
|
+
"case_sensitive": False,
|
|
439
|
+
"max_batch_size": 100,
|
|
440
|
+
"function_type": "TABLE_FUNCTION",
|
|
441
|
+
"volatility": Volatility.VOLATILE,
|
|
442
|
+
},
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
````
|
|
446
|
+
|
|
447
|
+
## 1.15.0 (09-29-2025)
|
|
448
|
+
|
|
449
|
+
### Bug Fixes
|
|
450
|
+
|
|
451
|
+
### Behavior Changes
|
|
452
|
+
|
|
453
|
+
* Registry: Dropping support for deprecated `conversational` task type for Huggingface models.
|
|
454
|
+
To read more <https://github.com/huggingface/transformers/pull/31165>
|
|
455
|
+
|
|
456
|
+
### New Features
|
|
457
|
+
|
|
458
|
+
## 1.14.0 (09-18-2025)
|
|
414
459
|
|
|
415
460
|
### Bug Fixes
|
|
416
461
|
|