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.
Files changed (193) hide show
  1. snowflake/ml/_internal/platform_capabilities.py +13 -7
  2. snowflake/ml/_internal/utils/connection_params.py +5 -3
  3. snowflake/ml/_internal/utils/jwt_generator.py +3 -2
  4. snowflake/ml/_internal/utils/mixins.py +24 -9
  5. snowflake/ml/_internal/utils/temp_file_utils.py +1 -2
  6. snowflake/ml/experiment/_client/experiment_tracking_sql_client.py +16 -3
  7. snowflake/ml/experiment/_entities/__init__.py +2 -1
  8. snowflake/ml/experiment/_entities/run.py +0 -15
  9. snowflake/ml/experiment/_entities/run_metadata.py +3 -51
  10. snowflake/ml/experiment/experiment_tracking.py +71 -27
  11. snowflake/ml/jobs/_utils/spec_utils.py +49 -11
  12. snowflake/ml/jobs/manager.py +20 -0
  13. snowflake/ml/model/__init__.py +12 -2
  14. snowflake/ml/model/_client/model/batch_inference_specs.py +16 -4
  15. snowflake/ml/model/_client/model/inference_engine_utils.py +55 -0
  16. snowflake/ml/model/_client/model/model_version_impl.py +30 -62
  17. snowflake/ml/model/_client/ops/service_ops.py +68 -7
  18. snowflake/ml/model/_client/service/model_deployment_spec.py +1 -1
  19. snowflake/ml/model/_client/sql/service.py +29 -2
  20. snowflake/ml/model/_client/sql/stage.py +8 -0
  21. snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +1 -0
  22. snowflake/ml/model/_model_composer/model_method/model_method.py +25 -2
  23. snowflake/ml/model/_packager/model_env/model_env.py +26 -16
  24. snowflake/ml/model/_packager/model_handlers/_utils.py +4 -2
  25. snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py +7 -5
  26. snowflake/ml/model/_packager/model_packager.py +4 -3
  27. snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +1 -2
  28. snowflake/ml/model/_signatures/utils.py +0 -21
  29. snowflake/ml/model/models/huggingface_pipeline.py +56 -21
  30. snowflake/ml/model/type_hints.py +13 -0
  31. snowflake/ml/model/volatility.py +34 -0
  32. snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +1 -1
  33. snowflake/ml/modeling/cluster/affinity_propagation.py +1 -1
  34. snowflake/ml/modeling/cluster/agglomerative_clustering.py +1 -1
  35. snowflake/ml/modeling/cluster/birch.py +1 -1
  36. snowflake/ml/modeling/cluster/bisecting_k_means.py +1 -1
  37. snowflake/ml/modeling/cluster/dbscan.py +1 -1
  38. snowflake/ml/modeling/cluster/feature_agglomeration.py +1 -1
  39. snowflake/ml/modeling/cluster/k_means.py +1 -1
  40. snowflake/ml/modeling/cluster/mean_shift.py +1 -1
  41. snowflake/ml/modeling/cluster/mini_batch_k_means.py +1 -1
  42. snowflake/ml/modeling/cluster/optics.py +1 -1
  43. snowflake/ml/modeling/cluster/spectral_biclustering.py +1 -1
  44. snowflake/ml/modeling/cluster/spectral_clustering.py +1 -1
  45. snowflake/ml/modeling/cluster/spectral_coclustering.py +1 -1
  46. snowflake/ml/modeling/compose/column_transformer.py +1 -1
  47. snowflake/ml/modeling/compose/transformed_target_regressor.py +1 -1
  48. snowflake/ml/modeling/covariance/elliptic_envelope.py +1 -1
  49. snowflake/ml/modeling/covariance/empirical_covariance.py +1 -1
  50. snowflake/ml/modeling/covariance/graphical_lasso.py +1 -1
  51. snowflake/ml/modeling/covariance/graphical_lasso_cv.py +1 -1
  52. snowflake/ml/modeling/covariance/ledoit_wolf.py +1 -1
  53. snowflake/ml/modeling/covariance/min_cov_det.py +1 -1
  54. snowflake/ml/modeling/covariance/oas.py +1 -1
  55. snowflake/ml/modeling/covariance/shrunk_covariance.py +1 -1
  56. snowflake/ml/modeling/decomposition/dictionary_learning.py +1 -1
  57. snowflake/ml/modeling/decomposition/factor_analysis.py +1 -1
  58. snowflake/ml/modeling/decomposition/fast_ica.py +1 -1
  59. snowflake/ml/modeling/decomposition/incremental_pca.py +1 -1
  60. snowflake/ml/modeling/decomposition/kernel_pca.py +1 -1
  61. snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +1 -1
  62. snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +1 -1
  63. snowflake/ml/modeling/decomposition/pca.py +1 -1
  64. snowflake/ml/modeling/decomposition/sparse_pca.py +1 -1
  65. snowflake/ml/modeling/decomposition/truncated_svd.py +1 -1
  66. snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +1 -1
  67. snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +1 -1
  68. snowflake/ml/modeling/ensemble/ada_boost_classifier.py +1 -1
  69. snowflake/ml/modeling/ensemble/ada_boost_regressor.py +1 -1
  70. snowflake/ml/modeling/ensemble/bagging_classifier.py +1 -1
  71. snowflake/ml/modeling/ensemble/bagging_regressor.py +1 -1
  72. snowflake/ml/modeling/ensemble/extra_trees_classifier.py +1 -1
  73. snowflake/ml/modeling/ensemble/extra_trees_regressor.py +1 -1
  74. snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +1 -1
  75. snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +1 -1
  76. snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +1 -1
  77. snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +1 -1
  78. snowflake/ml/modeling/ensemble/isolation_forest.py +1 -1
  79. snowflake/ml/modeling/ensemble/random_forest_classifier.py +1 -1
  80. snowflake/ml/modeling/ensemble/random_forest_regressor.py +1 -1
  81. snowflake/ml/modeling/ensemble/stacking_regressor.py +1 -1
  82. snowflake/ml/modeling/ensemble/voting_classifier.py +1 -1
  83. snowflake/ml/modeling/ensemble/voting_regressor.py +1 -1
  84. snowflake/ml/modeling/feature_selection/generic_univariate_select.py +1 -1
  85. snowflake/ml/modeling/feature_selection/select_fdr.py +1 -1
  86. snowflake/ml/modeling/feature_selection/select_fpr.py +1 -1
  87. snowflake/ml/modeling/feature_selection/select_fwe.py +1 -1
  88. snowflake/ml/modeling/feature_selection/select_k_best.py +1 -1
  89. snowflake/ml/modeling/feature_selection/select_percentile.py +1 -1
  90. snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +1 -1
  91. snowflake/ml/modeling/feature_selection/variance_threshold.py +1 -1
  92. snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +1 -1
  93. snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +1 -1
  94. snowflake/ml/modeling/impute/iterative_imputer.py +1 -1
  95. snowflake/ml/modeling/impute/knn_imputer.py +1 -1
  96. snowflake/ml/modeling/impute/missing_indicator.py +1 -1
  97. snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +1 -1
  98. snowflake/ml/modeling/kernel_approximation/nystroem.py +1 -1
  99. snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +1 -1
  100. snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +1 -1
  101. snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +1 -1
  102. snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +1 -1
  103. snowflake/ml/modeling/lightgbm/lgbm_classifier.py +1 -1
  104. snowflake/ml/modeling/lightgbm/lgbm_regressor.py +1 -1
  105. snowflake/ml/modeling/linear_model/ard_regression.py +1 -1
  106. snowflake/ml/modeling/linear_model/bayesian_ridge.py +1 -1
  107. snowflake/ml/modeling/linear_model/elastic_net.py +1 -1
  108. snowflake/ml/modeling/linear_model/elastic_net_cv.py +1 -1
  109. snowflake/ml/modeling/linear_model/gamma_regressor.py +1 -1
  110. snowflake/ml/modeling/linear_model/huber_regressor.py +1 -1
  111. snowflake/ml/modeling/linear_model/lars.py +1 -1
  112. snowflake/ml/modeling/linear_model/lars_cv.py +1 -1
  113. snowflake/ml/modeling/linear_model/lasso.py +1 -1
  114. snowflake/ml/modeling/linear_model/lasso_cv.py +1 -1
  115. snowflake/ml/modeling/linear_model/lasso_lars.py +1 -1
  116. snowflake/ml/modeling/linear_model/lasso_lars_cv.py +1 -1
  117. snowflake/ml/modeling/linear_model/lasso_lars_ic.py +1 -1
  118. snowflake/ml/modeling/linear_model/linear_regression.py +1 -1
  119. snowflake/ml/modeling/linear_model/logistic_regression.py +1 -1
  120. snowflake/ml/modeling/linear_model/logistic_regression_cv.py +1 -1
  121. snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +1 -1
  122. snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +1 -1
  123. snowflake/ml/modeling/linear_model/multi_task_lasso.py +1 -1
  124. snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +1 -1
  125. snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +1 -1
  126. snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +1 -1
  127. snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +1 -1
  128. snowflake/ml/modeling/linear_model/perceptron.py +1 -1
  129. snowflake/ml/modeling/linear_model/poisson_regressor.py +1 -1
  130. snowflake/ml/modeling/linear_model/ransac_regressor.py +1 -1
  131. snowflake/ml/modeling/linear_model/ridge.py +1 -1
  132. snowflake/ml/modeling/linear_model/ridge_classifier.py +1 -1
  133. snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +1 -1
  134. snowflake/ml/modeling/linear_model/ridge_cv.py +1 -1
  135. snowflake/ml/modeling/linear_model/sgd_classifier.py +1 -1
  136. snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +1 -1
  137. snowflake/ml/modeling/linear_model/sgd_regressor.py +1 -1
  138. snowflake/ml/modeling/linear_model/theil_sen_regressor.py +1 -1
  139. snowflake/ml/modeling/linear_model/tweedie_regressor.py +1 -1
  140. snowflake/ml/modeling/manifold/isomap.py +1 -1
  141. snowflake/ml/modeling/manifold/mds.py +1 -1
  142. snowflake/ml/modeling/manifold/spectral_embedding.py +1 -1
  143. snowflake/ml/modeling/manifold/tsne.py +1 -1
  144. snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +1 -1
  145. snowflake/ml/modeling/mixture/gaussian_mixture.py +1 -1
  146. snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +1 -1
  147. snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +1 -1
  148. snowflake/ml/modeling/multiclass/output_code_classifier.py +1 -1
  149. snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +1 -1
  150. snowflake/ml/modeling/naive_bayes/categorical_nb.py +1 -1
  151. snowflake/ml/modeling/naive_bayes/complement_nb.py +1 -1
  152. snowflake/ml/modeling/naive_bayes/gaussian_nb.py +1 -1
  153. snowflake/ml/modeling/naive_bayes/multinomial_nb.py +1 -1
  154. snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +1 -1
  155. snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +1 -1
  156. snowflake/ml/modeling/neighbors/kernel_density.py +1 -1
  157. snowflake/ml/modeling/neighbors/local_outlier_factor.py +1 -1
  158. snowflake/ml/modeling/neighbors/nearest_centroid.py +1 -1
  159. snowflake/ml/modeling/neighbors/nearest_neighbors.py +1 -1
  160. snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +1 -1
  161. snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +1 -1
  162. snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +1 -1
  163. snowflake/ml/modeling/neural_network/bernoulli_rbm.py +1 -1
  164. snowflake/ml/modeling/neural_network/mlp_classifier.py +1 -1
  165. snowflake/ml/modeling/neural_network/mlp_regressor.py +1 -1
  166. snowflake/ml/modeling/preprocessing/polynomial_features.py +1 -1
  167. snowflake/ml/modeling/semi_supervised/label_propagation.py +1 -1
  168. snowflake/ml/modeling/semi_supervised/label_spreading.py +1 -1
  169. snowflake/ml/modeling/svm/linear_svc.py +1 -1
  170. snowflake/ml/modeling/svm/linear_svr.py +1 -1
  171. snowflake/ml/modeling/svm/nu_svc.py +1 -1
  172. snowflake/ml/modeling/svm/nu_svr.py +1 -1
  173. snowflake/ml/modeling/svm/svc.py +1 -1
  174. snowflake/ml/modeling/svm/svr.py +1 -1
  175. snowflake/ml/modeling/tree/decision_tree_classifier.py +1 -1
  176. snowflake/ml/modeling/tree/decision_tree_regressor.py +1 -1
  177. snowflake/ml/modeling/tree/extra_tree_classifier.py +1 -1
  178. snowflake/ml/modeling/tree/extra_tree_regressor.py +1 -1
  179. snowflake/ml/modeling/xgboost/xgb_classifier.py +1 -1
  180. snowflake/ml/modeling/xgboost/xgb_regressor.py +1 -1
  181. snowflake/ml/modeling/xgboost/xgbrf_classifier.py +1 -1
  182. snowflake/ml/modeling/xgboost/xgbrf_regressor.py +1 -1
  183. snowflake/ml/registry/_manager/model_manager.py +2 -1
  184. snowflake/ml/registry/_manager/model_parameter_reconciler.py +29 -2
  185. snowflake/ml/registry/registry.py +15 -0
  186. snowflake/ml/utils/authentication.py +16 -0
  187. snowflake/ml/utils/connection_params.py +5 -3
  188. snowflake/ml/version.py +1 -1
  189. {snowflake_ml_python-1.14.0.dist-info → snowflake_ml_python-1.16.0.dist-info}/METADATA +81 -36
  190. {snowflake_ml_python-1.14.0.dist-info → snowflake_ml_python-1.16.0.dist-info}/RECORD +193 -191
  191. {snowflake_ml_python-1.14.0.dist-info → snowflake_ml_python-1.16.0.dist-info}/WHEEL +0 -0
  192. {snowflake_ml_python-1.14.0.dist-info → snowflake_ml_python-1.16.0.dist-info}/licenses/LICENSE.txt +0 -0
  193. {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.14.0
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.7
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
- # Snowpark ML
304
+ # Snowflake ML Python
306
305
 
307
- Snowpark ML is a set of tools including SDKs and underlying infrastructure to build and deploy machine learning models.
308
- With Snowpark ML, you can pre-process data, train, manage and deploy ML models all within Snowflake, using a single SDK,
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 Snowpark ML
311
+ ## Key Components of Snowflake ML Python
313
312
 
314
- The Snowpark ML Python SDK provides a number of APIs to support each stage of an end-to-end Machine Learning development
315
- and deployment process, and includes two key components.
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
- ### Snowpark ML Development
316
+ ### Snowflake ML Model Development
318
317
 
319
- [Snowpark ML Development](https://docs.snowflake.com/en/developer-guide/snowpark-ml/index#ml-modeling)
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
- 1. FileSet API: FileSet provides a Python fsspec-compliant API for materializing data into a Snowflake internal stage
331
- from a query or Snowpark Dataframe along with a number of convenience APIs.
329
+ ### Snowflake ML Ops
332
330
 
333
- ### Snowflake MLOps
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
- Snowflake MLOps contains suit of tools and objects to make ML development cycle. It complements
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/en/developer-guide/snowpark-ml/index#snowflake-feature-store): A fully
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 Conda Channel](https://repo.anaconda.com/pkgs/snowflake/) contains the official snowpark ML package releases.
367
- The recommended approach is to install `snowflake-ml-python` this conda channel:
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 latest version of the `snowpark-ml-python` package is also published in a conda channel in this repository. Package versions
379
- in this channel may not yet be present in the official Snowflake conda channel.
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
- Install `snowflake-ml-python` from this channel with the following (being sure to replace `<version_specifier>` with the
382
- desired version, e.g. `1.0.10`):
383
-
384
- ```bash
384
+ ```sh
385
385
  conda install \
386
- -c https://raw.githubusercontent.com/snowflakedb/snowflake-ml-python/conda/releases/ \
387
- -c https://repo.anaconda.com/pkgs/snowflake \
386
+ -c https://conda.anaconda.org/conda-forge/ \
388
387
  --override-channels \
389
- snowflake-ml-python==<version_specifier>
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.14.0
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