snowflake-ml-python 1.18.0__py3-none-any.whl → 1.20.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 (26) hide show
  1. snowflake/ml/_internal/env_utils.py +16 -0
  2. snowflake/ml/_internal/telemetry.py +56 -7
  3. snowflake/ml/experiment/_client/experiment_tracking_sql_client.py +1 -7
  4. snowflake/ml/experiment/_entities/run.py +15 -0
  5. snowflake/ml/experiment/experiment_tracking.py +61 -73
  6. snowflake/ml/feature_store/access_manager.py +1 -0
  7. snowflake/ml/feature_store/feature_store.py +86 -31
  8. snowflake/ml/feature_store/feature_view.py +12 -6
  9. snowflake/ml/fileset/stage_fs.py +12 -1
  10. snowflake/ml/jobs/_utils/feature_flags.py +1 -0
  11. snowflake/ml/jobs/_utils/payload_utils.py +6 -1
  12. snowflake/ml/jobs/_utils/spec_utils.py +12 -3
  13. snowflake/ml/jobs/job.py +8 -3
  14. snowflake/ml/jobs/manager.py +19 -6
  15. snowflake/ml/model/_client/model/inference_engine_utils.py +8 -4
  16. snowflake/ml/model/_client/model/model_version_impl.py +45 -17
  17. snowflake/ml/model/_client/ops/model_ops.py +11 -4
  18. snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +2 -2
  19. snowflake/ml/model/models/huggingface_pipeline.py +6 -7
  20. snowflake/ml/monitoring/explain_visualize.py +3 -1
  21. snowflake/ml/version.py +1 -1
  22. {snowflake_ml_python-1.18.0.dist-info → snowflake_ml_python-1.20.0.dist-info}/METADATA +68 -5
  23. {snowflake_ml_python-1.18.0.dist-info → snowflake_ml_python-1.20.0.dist-info}/RECORD +26 -26
  24. {snowflake_ml_python-1.18.0.dist-info → snowflake_ml_python-1.20.0.dist-info}/WHEEL +0 -0
  25. {snowflake_ml_python-1.18.0.dist-info → snowflake_ml_python-1.20.0.dist-info}/licenses/LICENSE.txt +0 -0
  26. {snowflake_ml_python-1.18.0.dist-info → snowflake_ml_python-1.20.0.dist-info}/top_level.txt +0 -0
@@ -10,7 +10,7 @@ REQUIREMENTS = [
10
10
  "fsspec>=2024.6.1,<2026",
11
11
  "importlib_resources>=6.1.1, <7",
12
12
  "numpy>=1.23,<3",
13
- "packaging>=20.9,<25",
13
+ "packaging>=20.9,<26",
14
14
  "pandas>=2.1.4,<3",
15
15
  "platformdirs<5",
16
16
  "pyarrow<19.0.0",
@@ -24,7 +24,7 @@ REQUIREMENTS = [
24
24
  "scikit-learn<1.8",
25
25
  "scipy>=1.9,<2",
26
26
  "shap>=0.46.0,<1",
27
- "snowflake-connector-python>=3.17.0,<4",
27
+ "snowflake-connector-python>=3.17.3,<4",
28
28
  "snowflake-snowpark-python>=1.17.0,<2,!=1.26.0",
29
29
  "snowflake.core>=1.0.2,<2",
30
30
  "sqlparse>=0.4,<1",
@@ -303,6 +303,7 @@ class HuggingFacePipelineModel:
303
303
  force_rebuild: bool = False,
304
304
  build_external_access_integrations: Optional[list[str]] = None,
305
305
  block: bool = True,
306
+ inference_engine_options: Optional[dict[str, Any]] = None,
306
307
  experimental_options: Optional[dict[str, Any]] = None,
307
308
  ) -> Union[str, async_job.AsyncJob]:
308
309
  """Logs a Hugging Face model and creates a service in Snowflake.
@@ -330,10 +331,8 @@ class HuggingFacePipelineModel:
330
331
  force_rebuild: Whether to force rebuild the image. Defaults to False.
331
332
  build_external_access_integrations: External access integrations for building the image. Defaults to None.
332
333
  block: Whether to block the operation. Defaults to True.
333
- experimental_options: Experimental options for the service creation with custom inference engine.
334
- Currently, only `inference_engine` and `inference_engine_args_override` are supported.
335
- `inference_engine` is the name of the inference engine to use.
336
- `inference_engine_args_override` is a list of string arguments to pass to the inference engine.
334
+ inference_engine_options: Options for the service creation with custom inference engine. Defaults to None.
335
+ experimental_options: Experimental options for the service creation. Defaults to None.
337
336
 
338
337
  Raises:
339
338
  ValueError: if database and schema name is not provided and session doesn't have a
@@ -377,14 +376,14 @@ class HuggingFacePipelineModel:
377
376
 
378
377
  # Check if model is HuggingFace text-generation before doing inference engine checks
379
378
  inference_engine_args = None
380
- if experimental_options:
379
+ if inference_engine_options:
381
380
  if self.task != "text-generation":
382
381
  raise ValueError(
383
- "Currently, InferenceEngine using experimental_options is only supported for "
382
+ "Currently, InferenceEngine using inference_engine_options is only supported for "
384
383
  "HuggingFace text-generation models."
385
384
  )
386
385
 
387
- inference_engine_args = inference_engine_utils._get_inference_engine_args(experimental_options)
386
+ inference_engine_args = inference_engine_utils._get_inference_engine_args(inference_engine_options)
388
387
 
389
388
  # Enrich inference engine args if inference engine is specified
390
389
  if inference_engine_args is not None:
@@ -1,3 +1,4 @@
1
+ import uuid
1
2
  from typing import Any, Union, cast, overload
2
3
 
3
4
  import altair as alt
@@ -319,7 +320,8 @@ def _prepare_feature_values_for_streamlit(
319
320
  import streamlit as st
320
321
 
321
322
  feature_columns = feature_values_df.columns
322
- chosen_ft: str = st.selectbox("Feature:", feature_columns)
323
+ unique_key = f"ml-explain-feature-select-{uuid.uuid4()}"
324
+ chosen_ft: str = st.selectbox("Feature:", feature_columns, key=unique_key)
323
325
  feature_values = feature_values_df[chosen_ft]
324
326
  shap_values = shap_values.iloc[:, feature_columns.get_loc(chosen_ft)]
325
327
  return feature_values, shap_values, st
snowflake/ml/version.py CHANGED
@@ -1,2 +1,2 @@
1
1
  # This is parsed by regex in conda recipe meta file. Make sure not to break it.
2
- VERSION = "1.18.0"
2
+ VERSION = "1.20.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: snowflake-ml-python
3
- Version: 1.18.0
3
+ Version: 1.20.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:
@@ -240,7 +240,7 @@ Requires-Dist: cryptography
240
240
  Requires-Dist: fsspec[http]<2026,>=2024.6.1
241
241
  Requires-Dist: importlib_resources<7,>=6.1.1
242
242
  Requires-Dist: numpy<3,>=1.23
243
- Requires-Dist: packaging<25,>=20.9
243
+ Requires-Dist: packaging<26,>=20.9
244
244
  Requires-Dist: pandas<3,>=2.1.4
245
245
  Requires-Dist: platformdirs<5
246
246
  Requires-Dist: pyarrow<19.0.0
@@ -253,7 +253,7 @@ Requires-Dist: s3fs<2026,>=2024.6.1
253
253
  Requires-Dist: scikit-learn<1.8
254
254
  Requires-Dist: scipy<2,>=1.9
255
255
  Requires-Dist: shap<1,>=0.46.0
256
- Requires-Dist: snowflake-connector-python[pandas]<4,>=3.17.0
256
+ Requires-Dist: snowflake-connector-python[pandas]<4,>=3.17.3
257
257
  Requires-Dist: snowflake-snowpark-python!=1.26.0,<2,>=1.17.0
258
258
  Requires-Dist: snowflake.core<2,>=1.0.2
259
259
  Requires-Dist: sqlparse<1,>=0.4
@@ -285,6 +285,14 @@ Requires-Dist: tensorflow<3,>=2.17.0; extra == "keras"
285
285
  Requires-Dist: torch<3,>=2.0.1; extra == "keras"
286
286
  Provides-Extra: lightgbm
287
287
  Requires-Dist: lightgbm<5,>=4.1.0; extra == "lightgbm"
288
+ Provides-Extra: llm
289
+ Requires-Dist: mlflow<3,>=2.16.0; extra == "llm"
290
+ Requires-Dist: sentence-transformers<4,>=2.7.0; extra == "llm"
291
+ Requires-Dist: sentencepiece<0.2.0,>=0.1.95; extra == "llm"
292
+ Requires-Dist: tokenizers<1,>=0.15.1; extra == "llm"
293
+ Requires-Dist: torch<3,>=2.0.1; extra == "llm"
294
+ Requires-Dist: torchdata<1,>=0.4; extra == "llm"
295
+ Requires-Dist: transformers!=4.51.3,<5,>=4.39.3; extra == "llm"
288
296
  Provides-Extra: mlflow
289
297
  Requires-Dist: mlflow<3,>=2.16.0; extra == "mlflow"
290
298
  Provides-Extra: prophet
@@ -299,9 +307,7 @@ Requires-Dist: torchdata<1,>=0.4; extra == "torch"
299
307
  Provides-Extra: transformers
300
308
  Requires-Dist: sentence-transformers<4,>=2.7.0; extra == "transformers"
301
309
  Requires-Dist: sentencepiece<0.2.0,>=0.1.95; extra == "transformers"
302
- Requires-Dist: tokenizers<1,>=0.15.1; extra == "transformers"
303
310
  Requires-Dist: torch<3,>=2.0.1; extra == "transformers"
304
- Requires-Dist: transformers!=4.51.3,<5,>=4.39.3; extra == "transformers"
305
311
  Dynamic: license-file
306
312
 
307
313
  # Snowflake ML Python
@@ -409,6 +415,63 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
409
415
 
410
416
  # Release History
411
417
 
418
+ ## 1.20.0
419
+
420
+ ### Bug Fixes
421
+
422
+ * Experiment Tracking (PuPr): Reaching the run metadata size limit in `log_metrics` or `log_params` will warn the user
423
+ instead of raising an exception.
424
+
425
+ ### Behavior Changes
426
+
427
+ ### New Features
428
+
429
+ * Registry (PrPr): Introducing vLLM as a backend inference engine. The `create_service` API will now
430
+ accept `inference_engine_options` as an argument.
431
+
432
+ ```python
433
+ from snowflake.ml.model.inference_engine import InferenceEngine
434
+
435
+ mv = snowflake_registry.log_model(
436
+ model=generator,
437
+ model_name=...,
438
+ ...,
439
+ # Specifying OPENAI_CHAT_SIGNATURE is necessary to use vLLM inference engine
440
+ signatures=openai_signatures.OPENAI_CHAT_SIGNATURE,
441
+ )
442
+
443
+ mv.create_service(
444
+ service_name=my_serv,
445
+ service_compute_pool=...,
446
+ ...,
447
+ inference_engine_options={
448
+ "engine": InferenceEngine.VLLM,
449
+ "engine_args_override": [
450
+ "--max-model-len=2048",
451
+ "--gpu-memory-utilization=0.9"
452
+ ]
453
+ }
454
+ )
455
+ ```
456
+
457
+ ### Deprecations
458
+
459
+ ## 1.19.0 (11-13-2025)
460
+
461
+ ### Bug Fixes
462
+
463
+ * Experiment Tracking (PuPr): No longer throw an exception in `list_artifacts` when run does not have artifacts.
464
+ * Registry: Fix `get_version_by_alias`: now requires an exact match of snowflake identifier.
465
+
466
+ ### Behavior Changes
467
+
468
+ ### New Features
469
+
470
+ * Online feature serving in Feature Store is in public preview.
471
+ * Experiment Tracking (`snowflake.ml.experiment`) is in public preview.
472
+
473
+ ### Deprecations
474
+
412
475
  ## 1.18.0
413
476
 
414
477
  ### Bug Fixes
@@ -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=DlOpeyxcS6xpAWs8-Ni5jfcj--OA0JCQSc2w2BFU3l8,99
13
+ snowflake/ml/version.py,sha256=eXm1ZjZ4bkRp_ba2n0F5kutVHnNUvpW7L4_SMMkOxeM,99
14
14
  snowflake/ml/_internal/env.py,sha256=EY_2KVe8oR3LgKWdaeRb5rRU-NDNXJppPDsFJmMZUUY,265
15
- snowflake/ml/_internal/env_utils.py,sha256=x6ID94g6FYoMX3afp0zoUHzBvuvPyiE2F6RDpxx5Cq0,30967
15
+ snowflake/ml/_internal/env_utils.py,sha256=Xx03pV_qEIVJJY--J3ZmnqK9Ugf0Os3O2vrF8xOyq_c,31500
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
19
  snowflake/ml/_internal/platform_capabilities.py,sha256=5cpeKpsxCObjOsPIz38noIusWw4n5KXOvPqRPiF3Kj4,7627
20
20
  snowflake/ml/_internal/relax_version_strategy.py,sha256=MYEIZrx1HfKNhl9Na3GN50ipX8c0MKIj9nwxjB0IC0Y,484
21
- snowflake/ml/_internal/telemetry.py,sha256=SL5_yXvRoqvmIckTpTHVwGsgPyg06uIIPZHMZWfdkzo,31922
21
+ snowflake/ml/_internal/telemetry.py,sha256=oN0NDuKYabmc85IGPDz48ktFpPlo9Xlhw0qGJdOtFNY,33684
22
22
  snowflake/ml/_internal/type_utils.py,sha256=bNNW0I9rOvwhx-Y274vGd0qWA0fMIPA3SGnaDE09wvc,2198
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
@@ -65,22 +65,22 @@ snowflake/ml/dataset/dataset_metadata.py,sha256=lcNvugBkP8YEkGMQqaV8SlHs5mwUKsUS
65
65
  snowflake/ml/dataset/dataset_reader.py,sha256=mZsG9HyWUGgfotrGkLrunyEsOm_659mH-Sn2OyG6A-Q,5036
66
66
  snowflake/ml/experiment/__init__.py,sha256=r7qdyPd3jwxzqvksim2ju5j_LrnYQrta0ZI6XpWUqmc,109
67
67
  snowflake/ml/experiment/_experiment_info.py,sha256=iaJ65x6nzBYJ5djleSOzBtMpZUJCUDlRpaDw0pu-dcU,2533
68
- snowflake/ml/experiment/experiment_tracking.py,sha256=r3iu3RRCRW3JRzW2bz94micO37pNk2Yi7Qrgq4LWf-k,18131
68
+ snowflake/ml/experiment/experiment_tracking.py,sha256=ASalDFuUjuNHmiwJJ1EKW1u1ENLGGFEHYeQVZuPuqkU,17828
69
69
  snowflake/ml/experiment/utils.py,sha256=3bpbkilc5vvFjnti-kcyhhjAd9Ga3LqiKqJDwORiATY,628
70
70
  snowflake/ml/experiment/_client/artifact.py,sha256=R2WB4Y_kqv43BWLfXv8SEDINn1Bnevzgb-mH5LyvgGk,3035
71
- snowflake/ml/experiment/_client/experiment_tracking_sql_client.py,sha256=ISST57CEs12zGb76X-aKaitJX-bEzf-MpWc8T5OoqxE,8317
71
+ snowflake/ml/experiment/_client/experiment_tracking_sql_client.py,sha256=7AuC9VvDmH04PnyuCxSJt-YcwEm8cmkfmxixVN7dSbQ,8167
72
72
  snowflake/ml/experiment/_entities/__init__.py,sha256=11XxkvAzosydf5owNmMzLwXZdQ2NtNKRM-MMra4ND2k,247
73
73
  snowflake/ml/experiment/_entities/experiment.py,sha256=lKmQj59K8fGDWVwRqeIesxorrChb-m78vX_WUmI7PV0,225
74
- snowflake/ml/experiment/_entities/run.py,sha256=JkhiS4UZWuRm3ZSLgc2uktedeag5Voih2r02YFr6DQk,1621
74
+ snowflake/ml/experiment/_entities/run.py,sha256=6_R35nI24PzIWMrwPKDif5ZINAAE6J0R7p4UmlT-m4o,2251
75
75
  snowflake/ml/experiment/_entities/run_metadata.py,sha256=25cIg8FnAYHk5SoTg_StzL10_BkomL7xrhMmWxUTU8E,366
76
76
  snowflake/ml/experiment/callback/keras.py,sha256=I_O2SBYttFNChO2Sc_C6xQh03r3ymSFB4eN2TS41Dgs,2680
77
77
  snowflake/ml/experiment/callback/lightgbm.py,sha256=qu4m8WV6Rqxa39X7g7ZBd1zJ8icYEkBBF3Kh3C1VpHU,2754
78
78
  snowflake/ml/experiment/callback/xgboost.py,sha256=F547AXZ7Gv39cyIrgRdxVE8MQ3VlNi5JqKKW0Z5RlQo,2754
79
79
  snowflake/ml/feature_store/__init__.py,sha256=MJr2Gp_EimDgDxD6DtenOEdLTzg6NYPfdNiPM-5rEtw,406
80
- snowflake/ml/feature_store/access_manager.py,sha256=Q5ImMXRY8WA5X5dpBMzHnIJmeyKVShjNAlbn3cQb4N8,10654
80
+ snowflake/ml/feature_store/access_manager.py,sha256=ZuLk2IQE2H-XSV96Z6mf_KzF2J-kjaDf-_t-0nCxnTg,10724
81
81
  snowflake/ml/feature_store/entity.py,sha256=ViOSlqCV17ouiO4iH-_KvkvJZqSzpf-nfsjijG6G1Uk,4047
82
- snowflake/ml/feature_store/feature_store.py,sha256=dUrlXqZYFvdmBk5HRHmRUVcNWcUCZZAahKsrh4DSYqg,169501
83
- snowflake/ml/feature_store/feature_view.py,sha256=fCciDGC8qd-ySGVEHKHo-PYIFrAuFlVAFDu8ZiRTDIY,44141
82
+ snowflake/ml/feature_store/feature_store.py,sha256=9rb-CT1F-gI1hb8JzqD9CBRz2Q9Vd3c2HtRbl7pSdu4,172334
83
+ snowflake/ml/feature_store/feature_view.py,sha256=OHhhk33DJa1-P0YG0g9XQxlMrt761yRpZ3CO1y4mtwc,44329
84
84
  snowflake/ml/feature_store/examples/example_helper.py,sha256=eaD2vLe7y4C5hMZQTeMXylbTtLacbq9gJcAluGHrkug,12470
85
85
  snowflake/ml/feature_store/examples/airline_features/entities.py,sha256=mzHRS-InHpXON0eHds-QLmi7nK9ciOnCruhPZI4niLs,438
86
86
  snowflake/ml/feature_store/examples/airline_features/source.yaml,sha256=kzl8ukOK8OuSPsxChEgJ9SPyPnzC-fPHqZC4O6aqd5o,247
@@ -107,11 +107,11 @@ snowflake/ml/fileset/embedded_stage_fs.py,sha256=Cw1L3Ktd1g0nWeADH6xjIxR0VweBbVt
107
107
  snowflake/ml/fileset/fileset.py,sha256=ApMpHiiyzGRkyxQfJPdXPuKtw_wOXbOfQCXSH6pDwWE,26333
108
108
  snowflake/ml/fileset/sfcfs.py,sha256=FJFc9-gc0KXaNyc10ZovN_87aUCShb0WztVwa02t0io,15517
109
109
  snowflake/ml/fileset/snowfs.py,sha256=uF5QluYtiJ-HezGIhF55dONi3t0E6N7ByaVAIAlM3nk,5133
110
- snowflake/ml/fileset/stage_fs.py,sha256=V4pysouSKKDPLzuW3u_extxfvjkQa5OlwIRES9Srpzo,20151
110
+ snowflake/ml/fileset/stage_fs.py,sha256=SnkgCta6_5G6Ljl-Nzctr4yavhHUSlNKN3je0ojp54E,20685
111
111
  snowflake/ml/jobs/__init__.py,sha256=h176wKqEylZs5cdWdzWHuUrSAcwctDdw4tUhIpy-mO4,657
112
112
  snowflake/ml/jobs/decorators.py,sha256=mQgdWvvCwD7q79cSFKZHKegXGh2j1u8WM64UD3lCKr4,3428
113
- snowflake/ml/jobs/job.py,sha256=Pwc71PcZ9t92Z1tj_-O-fZOOQhqgC3wjkK_uuS29uEs,27532
114
- snowflake/ml/jobs/manager.py,sha256=PuM3WZQrB3wbtBcQ7p7X3wxAz6hq6Of0p-_hkjg4sfs,29092
113
+ snowflake/ml/jobs/job.py,sha256=eK2D0DurFJGNp7GDrsqn4TTkHdvLR1hFVJrgfET5GOU,27739
114
+ snowflake/ml/jobs/manager.py,sha256=_JEK7ozkEoEL26f0QJPBOhFrFr2U_-BnS_Cs5_R6PIw,29846
115
115
  snowflake/ml/jobs/_interop/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
116
  snowflake/ml/jobs/_interop/data_utils.py,sha256=xUO5YlhUKFVCDtbjam5gP2lka3lfoknTLr7syNAVxK0,4074
117
117
  snowflake/ml/jobs/_interop/dto_schema.py,sha256=NhoQ6WJa7uLO9VJojEENVVZhZMfL_G1VPPSSUYmmhO8,2750
@@ -122,12 +122,12 @@ snowflake/ml/jobs/_interop/results.py,sha256=nQ07XJ1BZEkPB4xa12pbGyaKqR8sWCoSzx0
122
122
  snowflake/ml/jobs/_interop/utils.py,sha256=TWFkUcAYmb-fpTwEL8idkk3XxlZ8vLz4X_gyS78PSi4,5552
123
123
  snowflake/ml/jobs/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
124
  snowflake/ml/jobs/_utils/constants.py,sha256=Wp2s_wBX5WZnxo3cdrsitnb9Ze0OUGmH26sofDFrdMI,4613
125
- snowflake/ml/jobs/_utils/feature_flags.py,sha256=c69OYFOZyXVmj87VKRh-rp_MP-3I1gJXhxBSiXAprbQ,1612
125
+ snowflake/ml/jobs/_utils/feature_flags.py,sha256=dLWBVIjyB2vsa4Vtm7Yhty6DOi8Nn73_YSjuYf73Y7A,1669
126
126
  snowflake/ml/jobs/_utils/function_payload_utils.py,sha256=4LBaStMdhRxcqwRkwFje-WwiEKRWnBfkaOYouF3N3Kg,1308
127
- snowflake/ml/jobs/_utils/payload_utils.py,sha256=INq_G1flV-Sa2riuqKwx5DOWTUegcDF01jfmJKpBcao,31101
127
+ snowflake/ml/jobs/_utils/payload_utils.py,sha256=IZr8aIadP0vQrKsSdCTFYX2ZYJNzGsijFqH219fjOX4,31382
128
128
  snowflake/ml/jobs/_utils/query_helper.py,sha256=1-XK-y4iukbR1693qAELprRbHmJDM4YoEBHov8IYbHU,1115
129
129
  snowflake/ml/jobs/_utils/runtime_env_utils.py,sha256=fqa3ctf_CAOSv1zT__01Qp9T058mKgMjXuEkBZqKUqA,2247
130
- snowflake/ml/jobs/_utils/spec_utils.py,sha256=Ch-3iKezKWXgSJm-xpHOW7ZpMBjIZvSNiEZGL9CyA2w,16346
130
+ snowflake/ml/jobs/_utils/spec_utils.py,sha256=j7fqkVb7PzW5jV3IkBlialzOEs_V1rKT4DkM1IeGmfU,16623
131
131
  snowflake/ml/jobs/_utils/stage_utils.py,sha256=YjN7cQFRcAUT1JvNZDSiNw8KiCF4HJ6ymkOYMhYJwE0,5297
132
132
  snowflake/ml/jobs/_utils/types.py,sha256=uOf7TPPWfIRALZhD6Li3AgizPOktPXv8_6iVK2grkgc,2587
133
133
  snowflake/ml/jobs/_utils/scripts/constants.py,sha256=YyIWZqQPYOTtgCY6SfyJjk2A98I5RQVmrOuLtET5Pqg,173
@@ -148,11 +148,11 @@ snowflake/ml/model/task.py,sha256=Zp5JaLB-YfX5p_HSaw81P3J7UnycQq5EMa87A35VOaQ,28
148
148
  snowflake/ml/model/type_hints.py,sha256=hoIq3KOscvp9rqJnmgWHW3IGwCSwiCVbklFAqSQekr4,11225
149
149
  snowflake/ml/model/volatility.py,sha256=qu-wqe9oKkRwXwE2qkKygxTWzUypQYEk3UjsqOGRl_I,1144
150
150
  snowflake/ml/model/_client/model/batch_inference_specs.py,sha256=0SlLTpZW_gzNP5IH_8cFnqjArxM0zVjA5nBLKnKAnz8,4396
151
- snowflake/ml/model/_client/model/inference_engine_utils.py,sha256=L8HnoAEbnN5YAcMlsgNbeqfyZbiOyrNMxj7rD4DcjyU,1878
151
+ snowflake/ml/model/_client/model/inference_engine_utils.py,sha256=yPkdImi2qP1uG1WzLKCBZgXV-DiIBVpImEosIjYJk8Y,1958
152
152
  snowflake/ml/model/_client/model/model_impl.py,sha256=Yabrbir5vPMOnsVmQJ23YN7vqhi756Jcm6pfO8Aq92o,17469
153
- snowflake/ml/model/_client/model/model_version_impl.py,sha256=v03RFKRnu7Gr8lovgRjE-MUK1MY_-RD5zjrrrbliJq4,60470
153
+ snowflake/ml/model/_client/model/model_version_impl.py,sha256=EjZONsvuhZaWGqUm-y3wu5m968E99yoqQZQnZcXiw9Q,61859
154
154
  snowflake/ml/model/_client/ops/metadata_ops.py,sha256=qpK6PL3OyfuhyOmpvLCpHLy6vCxbZbp1HlEvakFGwv4,4884
155
- snowflake/ml/model/_client/ops/model_ops.py,sha256=sQ0t6plS5o_2qqnA48quYwJOZ0NlhgnZMarwrzSKwew,50599
155
+ snowflake/ml/model/_client/ops/model_ops.py,sha256=e6z-Pd-yslMFokzJV-ZKNK3m5dyIyl9Zk1TQX5lmgRY,50903
156
156
  snowflake/ml/model/_client/ops/service_ops.py,sha256=Ey_yvKQvFnD4dafjFtPA3aaU1GTGqrdlgIpjrfYC8Ew,47143
157
157
  snowflake/ml/model/_client/service/model_deployment_spec.py,sha256=n1i19opcjocXflWdr2jjtNk1GVqw8YSwip_ki2XyVMc,19628
158
158
  snowflake/ml/model/_client/service/model_deployment_spec_schema.py,sha256=Nlw-rwCGmiGqPYwWjZrowPtcRvgYMInpmWZvsEC4sTI,2464
@@ -203,7 +203,7 @@ snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=mtKRbHQb6Hq2
203
203
  snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py,sha256=8zTgq3n6TBXv7Vcwmf7b9wjK3m-9HHMsY0Qy1Rs-sZ4,1305
204
204
  snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py,sha256=5butM-lyaDRhCAO2BaCOIQufpAxAfSAinsNuGqbbjMU,1029
205
205
  snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py,sha256=cyZVvBGM3nF1IVqDKfYstLCchNO-ZhSkPvLM4aU7J5c,2066
206
- snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py,sha256=xVdhOAl8aj6B_zWHjrqq0YUQrgjZXL7SRdlazq682jo,904
206
+ snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py,sha256=uzIkTNkxIyfSzBB8mKMHxU754Lk6BWVgoyjCsgPBANQ,904
207
207
  snowflake/ml/model/_packager/model_runtime/model_runtime.py,sha256=xEf-S9QurEOeQzrNxlc-4-S_VkHsVO1eNS4UR0hWwHU,5495
208
208
  snowflake/ml/model/_packager/model_task/model_task_utils.py,sha256=_nm3Irl5W6Oa8_OnJyp3bLeA9QAbV9ygGCsgHI70GX4,6641
209
209
  snowflake/ml/model/_signatures/base_handler.py,sha256=4CTZKKbg4WIz_CmXjyVy8tKZW-5OFcz0J8XVPHm2dfQ,1269
@@ -216,7 +216,7 @@ snowflake/ml/model/_signatures/pytorch_handler.py,sha256=Xy-ITCCX_EgHcyIIqeYSDUI
216
216
  snowflake/ml/model/_signatures/snowpark_handler.py,sha256=aNGPa2v0kTMuSZ80NBdHeAWYva0Nc1vo17ZjQwIjf2E,7621
217
217
  snowflake/ml/model/_signatures/tensorflow_handler.py,sha256=_yrvMg-w_jJoYuyrGXKPX4Dv7Vt8z1e6xIKiWGuZcc4,5660
218
218
  snowflake/ml/model/_signatures/utils.py,sha256=NYZwDtuMV91ryJflBhfrRnu1sq45ej30uEo9_scNbhg,16387
219
- snowflake/ml/model/models/huggingface_pipeline.py,sha256=zx5OXigB6La6GDJxjsy4PkZtE2eIkZ2cbSBBxlmqyfU,22601
219
+ snowflake/ml/model/models/huggingface_pipeline.py,sha256=k6oFoVNE3tqWmaM8BCaC7Xe2eD1-00UIEOadGWtiT9g,22494
220
220
  snowflake/ml/modeling/_internal/estimator_utils.py,sha256=dfPPWO-RHf5C3Tya3VQ4KEqoa32pm-WKwRrjzjDInLk,13956
221
221
  snowflake/ml/modeling/_internal/model_specifications.py,sha256=3wFMcKPCSoiEzU7Mx6RVem89BRlBBENpX__-Rd7GwdU,4851
222
222
  snowflake/ml/modeling/_internal/model_trainer.py,sha256=5Ck1lbdyzcd-TpzAxEyovIN9fjaaVIqugyMHXt0wzH0,971
@@ -434,7 +434,7 @@ snowflake/ml/modeling/xgboost/xgb_classifier.py,sha256=dpJ7Y4ZRjejDxvE1vmxNUVIpg
434
434
  snowflake/ml/modeling/xgboost/xgb_regressor.py,sha256=huczAVSfD5XpsXwxjC3fiaRnr_NLz1qtNyW0H_zIa6w,63580
435
435
  snowflake/ml/modeling/xgboost/xgbrf_classifier.py,sha256=9ZyYqcdsx7nUQsrNJFMBohySPhZpFZHkbyL66-2vOJQ,64253
436
436
  snowflake/ml/modeling/xgboost/xgbrf_regressor.py,sha256=Zvl3atGaaZpOjI5XizLsLqWuHWA3B-M59jGzYtjkq14,63778
437
- snowflake/ml/monitoring/explain_visualize.py,sha256=Vj4x7ClGvXY42HQzFcvVr1CbO_vVfZv6eZn_jV9N9gk,16145
437
+ snowflake/ml/monitoring/explain_visualize.py,sha256=I5-JKHhpD7JD6inZYMGUxm1MEEflBB9jwQgXcrDStow,16234
438
438
  snowflake/ml/monitoring/model_monitor.py,sha256=m-1eeQIhAYAvFQ-8mjMQ-PTzCpnN9XEcWpdHdQuEEus,4707
439
439
  snowflake/ml/monitoring/shap.py,sha256=Dp9nYquPEZjxMTW62YYA9g9qUdmCEFxcSk7ejvOP7PE,3597
440
440
  snowflake/ml/monitoring/_client/model_monitor_sql_client.py,sha256=6IVU1aQdiRu0GRhpZfNatJdzd5YgUNFlJ3Ti-mBxzN8,18027
@@ -451,8 +451,8 @@ snowflake/ml/utils/connection_params.py,sha256=NSBUgcs-DXPRHs1BKpxdSubbJx1yrFRlM
451
451
  snowflake/ml/utils/html_utils.py,sha256=L4pzpvFd20SIk4rie2kTAtcQjbxBHfjKmxonMAT2OoA,7665
452
452
  snowflake/ml/utils/sparse.py,sha256=zLBNh-ynhGpKH5TFtopk0YLkHGvv0yq1q-sV59YQKgg,3819
453
453
  snowflake/ml/utils/sql_client.py,sha256=pSe2od6Pkh-8NwG3D-xqN76_uNf-ohOtVbT55HeQg1Y,668
454
- snowflake_ml_python-1.18.0.dist-info/licenses/LICENSE.txt,sha256=PdEp56Av5m3_kl21iFkVTX_EbHJKFGEdmYeIO1pL_Yk,11365
455
- snowflake_ml_python-1.18.0.dist-info/METADATA,sha256=HhlNlP1kqGKztNYHt4n9EB4Vs6nFglrHUyTdC7xYHuo,97170
456
- snowflake_ml_python-1.18.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
457
- snowflake_ml_python-1.18.0.dist-info/top_level.txt,sha256=TY0gFSHKDdZy3THb0FGomyikWQasEGldIR1O0HGOHVw,10
458
- snowflake_ml_python-1.18.0.dist-info/RECORD,,
454
+ snowflake_ml_python-1.20.0.dist-info/licenses/LICENSE.txt,sha256=PdEp56Av5m3_kl21iFkVTX_EbHJKFGEdmYeIO1pL_Yk,11365
455
+ snowflake_ml_python-1.20.0.dist-info/METADATA,sha256=Ud6fGclw-XBNGupTN1LqbS9xDo99t4HupqYi-yNRXVE,98864
456
+ snowflake_ml_python-1.20.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
457
+ snowflake_ml_python-1.20.0.dist-info/top_level.txt,sha256=TY0gFSHKDdZy3THb0FGomyikWQasEGldIR1O0HGOHVw,10
458
+ snowflake_ml_python-1.20.0.dist-info/RECORD,,