snowflake-ml-python 1.16.0__py3-none-any.whl → 1.17.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/human_readable_id/adjectives.txt +5 -5
- snowflake/ml/_internal/human_readable_id/animals.txt +3 -3
- snowflake/ml/jobs/__init__.py +4 -0
- snowflake/ml/jobs/_interop/__init__.py +0 -0
- snowflake/ml/jobs/_interop/data_utils.py +124 -0
- snowflake/ml/jobs/_interop/dto_schema.py +95 -0
- snowflake/ml/jobs/{_utils/interop_utils.py → _interop/exception_utils.py} +49 -178
- snowflake/ml/jobs/_interop/legacy.py +225 -0
- snowflake/ml/jobs/_interop/protocols.py +471 -0
- snowflake/ml/jobs/_interop/results.py +51 -0
- snowflake/ml/jobs/_interop/utils.py +144 -0
- snowflake/ml/jobs/_utils/constants.py +4 -1
- snowflake/ml/jobs/_utils/feature_flags.py +37 -5
- snowflake/ml/jobs/_utils/payload_utils.py +1 -1
- snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +139 -102
- snowflake/ml/jobs/_utils/spec_utils.py +2 -1
- snowflake/ml/jobs/_utils/types.py +10 -0
- snowflake/ml/jobs/job.py +168 -36
- snowflake/ml/jobs/manager.py +36 -38
- snowflake/ml/model/_client/model/model_version_impl.py +39 -7
- snowflake/ml/model/_client/ops/model_ops.py +4 -0
- snowflake/ml/model/_client/sql/model_version.py +3 -1
- snowflake/ml/model/_model_composer/model_method/model_method.py +7 -2
- snowflake/ml/model/_model_composer/model_method/utils.py +28 -0
- snowflake/ml/model/_packager/model_env/model_env.py +22 -5
- snowflake/ml/model/_packager/model_meta/model_meta.py +8 -0
- snowflake/ml/model/_packager/model_meta/model_meta_schema.py +1 -0
- snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +2 -2
- snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py +5 -5
- snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.16.0.dist-info → snowflake_ml_python-1.17.0.dist-info}/METADATA +26 -4
- {snowflake_ml_python-1.16.0.dist-info → snowflake_ml_python-1.17.0.dist-info}/RECORD +35 -27
- {snowflake_ml_python-1.16.0.dist-info → snowflake_ml_python-1.17.0.dist-info}/WHEEL +0 -0
- {snowflake_ml_python-1.16.0.dist-info → snowflake_ml_python-1.17.0.dist-info}/licenses/LICENSE.txt +0 -0
- {snowflake_ml_python-1.16.0.dist-info → snowflake_ml_python-1.17.0.dist-info}/top_level.txt +0 -0
|
@@ -116,6 +116,8 @@ def create_model_metadata(
|
|
|
116
116
|
if embed_local_ml_library:
|
|
117
117
|
env.snowpark_ml_version = f"{snowml_version.VERSION}+{file_utils.hash_directory(path_to_copy)}"
|
|
118
118
|
|
|
119
|
+
# Persist full method_options
|
|
120
|
+
method_options: dict[str, dict[str, Any]] = kwargs.pop("method_options", {})
|
|
119
121
|
model_meta = ModelMetadata(
|
|
120
122
|
name=name,
|
|
121
123
|
env=env,
|
|
@@ -124,6 +126,7 @@ def create_model_metadata(
|
|
|
124
126
|
signatures=signatures,
|
|
125
127
|
function_properties=function_properties,
|
|
126
128
|
task=task,
|
|
129
|
+
method_options=method_options,
|
|
127
130
|
)
|
|
128
131
|
|
|
129
132
|
code_dir_path = os.path.join(model_dir_path, MODEL_CODE_DIR)
|
|
@@ -256,6 +259,7 @@ class ModelMetadata:
|
|
|
256
259
|
original_metadata_version: Optional[str] = model_meta_schema.MODEL_METADATA_VERSION,
|
|
257
260
|
task: model_types.Task = model_types.Task.UNKNOWN,
|
|
258
261
|
explain_algorithm: Optional[model_meta_schema.ModelExplainAlgorithm] = None,
|
|
262
|
+
method_options: Optional[dict[str, dict[str, Any]]] = None,
|
|
259
263
|
) -> None:
|
|
260
264
|
self.name = name
|
|
261
265
|
self.signatures: dict[str, model_signature.ModelSignature] = dict()
|
|
@@ -283,6 +287,7 @@ class ModelMetadata:
|
|
|
283
287
|
|
|
284
288
|
self.task: model_types.Task = task
|
|
285
289
|
self.explain_algorithm: Optional[model_meta_schema.ModelExplainAlgorithm] = explain_algorithm
|
|
290
|
+
self.method_options: dict[str, dict[str, Any]] = method_options or {}
|
|
286
291
|
|
|
287
292
|
@property
|
|
288
293
|
def min_snowpark_ml_version(self) -> str:
|
|
@@ -342,6 +347,7 @@ class ModelMetadata:
|
|
|
342
347
|
else None
|
|
343
348
|
),
|
|
344
349
|
"function_properties": self.function_properties,
|
|
350
|
+
"method_options": self.method_options,
|
|
345
351
|
}
|
|
346
352
|
)
|
|
347
353
|
with open(model_yaml_path, "w", encoding="utf-8") as out:
|
|
@@ -381,6 +387,7 @@ class ModelMetadata:
|
|
|
381
387
|
task=loaded_meta.get("task", model_types.Task.UNKNOWN.value),
|
|
382
388
|
explainability=loaded_meta.get("explainability", None),
|
|
383
389
|
function_properties=loaded_meta.get("function_properties", {}),
|
|
390
|
+
method_options=loaded_meta.get("method_options", {}),
|
|
384
391
|
)
|
|
385
392
|
|
|
386
393
|
@classmethod
|
|
@@ -436,4 +443,5 @@ class ModelMetadata:
|
|
|
436
443
|
task=model_types.Task(model_dict.get("task", model_types.Task.UNKNOWN.value)),
|
|
437
444
|
explain_algorithm=explanation_algorithm,
|
|
438
445
|
function_properties=model_dict.get("function_properties", {}),
|
|
446
|
+
method_options=model_dict.get("method_options", {}),
|
|
439
447
|
)
|
|
@@ -125,6 +125,7 @@ class ModelMetadataDict(TypedDict):
|
|
|
125
125
|
task: Required[str]
|
|
126
126
|
explainability: NotRequired[Optional[ExplainabilityMetadataDict]]
|
|
127
127
|
function_properties: NotRequired[dict[str, dict[str, Any]]]
|
|
128
|
+
method_options: NotRequired[dict[str, dict[str, Any]]]
|
|
128
129
|
|
|
129
130
|
|
|
130
131
|
class ModelExplainAlgorithm(Enum):
|
|
@@ -24,11 +24,11 @@ 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.
|
|
27
|
+
"snowflake-connector-python>=3.17.0,<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",
|
|
31
31
|
"tqdm<5",
|
|
32
32
|
"typing-extensions>=4.1.0,<5",
|
|
33
|
-
"xgboost
|
|
33
|
+
"xgboost<4",
|
|
34
34
|
]
|
|
@@ -93,7 +93,7 @@ def get_data_iterator(
|
|
|
93
93
|
cache_dir_name = tempfile.mkdtemp()
|
|
94
94
|
super().__init__(cache_prefix=os.path.join(cache_dir_name, "cache"))
|
|
95
95
|
|
|
96
|
-
def next(self, batch_consumer_fn) -> int: # type: ignore[no-untyped-def]
|
|
96
|
+
def next(self, batch_consumer_fn) -> bool | int: # type: ignore[no-untyped-def]
|
|
97
97
|
"""Advance the iterator by 1 step and pass the data to XGBoost's batch_consumer_fn.
|
|
98
98
|
This function is called by XGBoost during the construction of ``DMatrix``
|
|
99
99
|
|
|
@@ -101,7 +101,7 @@ def get_data_iterator(
|
|
|
101
101
|
batch_consumer_fn: batch consumer function
|
|
102
102
|
|
|
103
103
|
Returns:
|
|
104
|
-
0 if there is no more data, else 1.
|
|
104
|
+
False/0 if there is no more data, else True/1.
|
|
105
105
|
"""
|
|
106
106
|
while (self._df is None) or (self._df.shape[0] < self._batch_size):
|
|
107
107
|
# Read files and append data to temp df until batch size is reached.
|
|
@@ -117,7 +117,7 @@ def get_data_iterator(
|
|
|
117
117
|
|
|
118
118
|
if (self._df is None) or (self._df.shape[0] == 0):
|
|
119
119
|
# No more data
|
|
120
|
-
return
|
|
120
|
+
return False
|
|
121
121
|
|
|
122
122
|
# Slice the temp df and save the remainder in the temp df
|
|
123
123
|
batch_end_index = min(self._batch_size, self._df.shape[0])
|
|
@@ -133,8 +133,8 @@ def get_data_iterator(
|
|
|
133
133
|
func_args["weight"] = batch_df[self._sample_weight_col].squeeze()
|
|
134
134
|
|
|
135
135
|
batch_consumer_fn(**func_args)
|
|
136
|
-
# Return
|
|
137
|
-
return
|
|
136
|
+
# Return True to let XGBoost know we haven't seen all the files yet.
|
|
137
|
+
return True
|
|
138
138
|
|
|
139
139
|
def reset(self) -> None:
|
|
140
140
|
"""Reset the iterator to its beginning"""
|
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.
|
|
2
|
+
VERSION = "1.17.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snowflake-ml-python
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.17.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:
|
|
@@ -253,13 +253,13 @@ 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.
|
|
256
|
+
Requires-Dist: snowflake-connector-python[pandas]<4,>=3.17.0
|
|
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
|
|
260
260
|
Requires-Dist: tqdm<5
|
|
261
261
|
Requires-Dist: typing-extensions<5,>=4.1.0
|
|
262
|
-
Requires-Dist: xgboost<
|
|
262
|
+
Requires-Dist: xgboost<4
|
|
263
263
|
Provides-Extra: all
|
|
264
264
|
Requires-Dist: altair<6,>=5; extra == "all"
|
|
265
265
|
Requires-Dist: catboost<2,>=1.2.0; extra == "all"
|
|
@@ -406,6 +406,27 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
|
406
406
|
|
|
407
407
|
# Release History
|
|
408
408
|
|
|
409
|
+
## 1.17.0
|
|
410
|
+
|
|
411
|
+
### Bug Fixes
|
|
412
|
+
|
|
413
|
+
* ML Job: Added support for retrieving details of deleted jobs, including status, compute pool, and target instances.
|
|
414
|
+
|
|
415
|
+
### Behavior Changes
|
|
416
|
+
|
|
417
|
+
### New Features
|
|
418
|
+
|
|
419
|
+
* Support xgboost 3.x.
|
|
420
|
+
* ML Job: Overhauled the `MLJob.result()` API with broader cross-version
|
|
421
|
+
compatibility and support for additional data types, namely:
|
|
422
|
+
* Pandas DataFrames
|
|
423
|
+
* PyArrow Tables
|
|
424
|
+
* NumPy arrays
|
|
425
|
+
* NOTE: Requires `snowflake-ml-python>=1.17.0` to be installed inside remote container environment.
|
|
426
|
+
* ML Job: Enabled job submission v2 by default
|
|
427
|
+
* Jobs submitted using v2 will automatically use the latest Container Runtime image
|
|
428
|
+
* v1 behavior can be restored by setting environment variable `MLRS_USE_SUBMIT_JOB_V2` to `false`
|
|
429
|
+
|
|
409
430
|
## 1.16.0
|
|
410
431
|
|
|
411
432
|
### Bug Fixes
|
|
@@ -440,9 +461,10 @@ options = {
|
|
|
440
461
|
"function_type": "TABLE_FUNCTION",
|
|
441
462
|
"volatility": Volatility.VOLATILE,
|
|
442
463
|
},
|
|
464
|
+
},
|
|
443
465
|
}
|
|
444
466
|
|
|
445
|
-
|
|
467
|
+
```
|
|
446
468
|
|
|
447
469
|
## 1.15.0 (09-29-2025)
|
|
448
470
|
|
|
@@ -10,7 +10,7 @@ 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=9UkEbfQJuMoktQRwLQs1TMavYNPwvWxULqMN3SA-KnE,99
|
|
14
14
|
snowflake/ml/_internal/env.py,sha256=EY_2KVe8oR3LgKWdaeRb5rRU-NDNXJppPDsFJmMZUUY,265
|
|
15
15
|
snowflake/ml/_internal/env_utils.py,sha256=x6ID94g6FYoMX3afp0zoUHzBvuvPyiE2F6RDpxx5Cq0,30967
|
|
16
16
|
snowflake/ml/_internal/file_utils.py,sha256=7sA6loOeSfmGP4yx16P4usT9ZtRqG3ycnXu7_Tk7dOs,14206
|
|
@@ -29,8 +29,8 @@ snowflake/ml/_internal/exceptions/fileset_error_messages.py,sha256=dqPpRu0cKyQA_
|
|
|
29
29
|
snowflake/ml/_internal/exceptions/fileset_errors.py,sha256=pHwY7f5c6JH-RZDtkiWy8nICHKy4T5vvWs5cq5rPD_4,1030
|
|
30
30
|
snowflake/ml/_internal/exceptions/modeling_error_messages.py,sha256=M1s_PNHcOGlSDKD2kvSUQYsSaKHdHdnE74609LvF27c,749
|
|
31
31
|
snowflake/ml/_internal/exceptions/sql_error_codes.py,sha256=aEI3-gW7FeNahoPncdOaGGRBmPJmkCHK-a1o2e3c3PI,206
|
|
32
|
-
snowflake/ml/_internal/human_readable_id/adjectives.txt,sha256=
|
|
33
|
-
snowflake/ml/_internal/human_readable_id/animals.txt,sha256=
|
|
32
|
+
snowflake/ml/_internal/human_readable_id/adjectives.txt,sha256=n_nj9zvA09H3cn3DoZBIuu_4ki76S1hBiuhyfbjUr3g,812
|
|
33
|
+
snowflake/ml/_internal/human_readable_id/animals.txt,sha256=IycV3Cs9XgkCFo24MB3wDye2iBZHhF5YN_PFxXs3AOc,841
|
|
34
34
|
snowflake/ml/_internal/human_readable_id/hrid_generator.py,sha256=LYWB86qZgsVBvnc6Q5VjfDOmnGSQU3cTRKfId_nJSPY,1341
|
|
35
35
|
snowflake/ml/_internal/human_readable_id/hrid_generator_base.py,sha256=_Egc-L0DKWgug1WaJebLCayKcljr2WdPuqH5uIoR1Kg,4469
|
|
36
36
|
snowflake/ml/_internal/lineage/lineage_utils.py,sha256=-_PKuznsL_w38rVj3wXgbPdm6XkcbnABrU4v4GwZQcg,3426
|
|
@@ -108,24 +108,31 @@ snowflake/ml/fileset/fileset.py,sha256=ApMpHiiyzGRkyxQfJPdXPuKtw_wOXbOfQCXSH6pDw
|
|
|
108
108
|
snowflake/ml/fileset/sfcfs.py,sha256=FJFc9-gc0KXaNyc10ZovN_87aUCShb0WztVwa02t0io,15517
|
|
109
109
|
snowflake/ml/fileset/snowfs.py,sha256=uF5QluYtiJ-HezGIhF55dONi3t0E6N7ByaVAIAlM3nk,5133
|
|
110
110
|
snowflake/ml/fileset/stage_fs.py,sha256=V4pysouSKKDPLzuW3u_extxfvjkQa5OlwIRES9Srpzo,20151
|
|
111
|
-
snowflake/ml/jobs/__init__.py,sha256=
|
|
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=
|
|
114
|
-
snowflake/ml/jobs/manager.py,sha256=
|
|
113
|
+
snowflake/ml/jobs/job.py,sha256=62LDUUaOmcs9WJobgeQq4o4kT3sfj6SI3cgz5cQdRMs,26743
|
|
114
|
+
snowflake/ml/jobs/manager.py,sha256=nLLtXmfgqWO7K5T0JUSLSiU1sHo_wYQIfMJCs5mPypc,28732
|
|
115
|
+
snowflake/ml/jobs/_interop/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
+
snowflake/ml/jobs/_interop/data_utils.py,sha256=xUO5YlhUKFVCDtbjam5gP2lka3lfoknTLr7syNAVxK0,4074
|
|
117
|
+
snowflake/ml/jobs/_interop/dto_schema.py,sha256=NhoQ6WJa7uLO9VJojEENVVZhZMfL_G1VPPSSUYmmhO8,2750
|
|
118
|
+
snowflake/ml/jobs/_interop/exception_utils.py,sha256=ZCphBkaaNINFATXZmjPzzNLKZZxKvGPROZ2azU8w13g,16348
|
|
119
|
+
snowflake/ml/jobs/_interop/legacy.py,sha256=8BuC197e6nPmAzh4urYiuBuCNP-RlOlvWnWpSHTduqQ,9238
|
|
120
|
+
snowflake/ml/jobs/_interop/protocols.py,sha256=xfOXL25hxhhy3ULfZWOfEjX0XqSTxo5cOURPXt777W4,18175
|
|
121
|
+
snowflake/ml/jobs/_interop/results.py,sha256=nQ07XJ1BZEkPB4xa12pbGyaKqR8sWCoSzx0IKQlub4w,1714
|
|
122
|
+
snowflake/ml/jobs/_interop/utils.py,sha256=TWFkUcAYmb-fpTwEL8idkk3XxlZ8vLz4X_gyS78PSi4,5552
|
|
115
123
|
snowflake/ml/jobs/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
-
snowflake/ml/jobs/_utils/constants.py,sha256=
|
|
117
|
-
snowflake/ml/jobs/_utils/feature_flags.py,sha256=
|
|
124
|
+
snowflake/ml/jobs/_utils/constants.py,sha256=4XhBfvFATdQHQ-7CfdrFREFt0xt0T3m9wwQADlcn5dI,4009
|
|
125
|
+
snowflake/ml/jobs/_utils/feature_flags.py,sha256=c69OYFOZyXVmj87VKRh-rp_MP-3I1gJXhxBSiXAprbQ,1612
|
|
118
126
|
snowflake/ml/jobs/_utils/function_payload_utils.py,sha256=4LBaStMdhRxcqwRkwFje-WwiEKRWnBfkaOYouF3N3Kg,1308
|
|
119
|
-
snowflake/ml/jobs/_utils/
|
|
120
|
-
snowflake/ml/jobs/_utils/payload_utils.py,sha256=1Xon3jlBgzfv1SQgQkJ1ir3xt9PVviP8-UC6P-FOmwc,30807
|
|
127
|
+
snowflake/ml/jobs/_utils/payload_utils.py,sha256=GV3r7FE7h7BwEs3DBkVY3Mes0fuX9G3xu7HyHT3gkcY,30797
|
|
121
128
|
snowflake/ml/jobs/_utils/query_helper.py,sha256=1-XK-y4iukbR1693qAELprRbHmJDM4YoEBHov8IYbHU,1115
|
|
122
129
|
snowflake/ml/jobs/_utils/runtime_env_utils.py,sha256=fqa3ctf_CAOSv1zT__01Qp9T058mKgMjXuEkBZqKUqA,2247
|
|
123
|
-
snowflake/ml/jobs/_utils/spec_utils.py,sha256=
|
|
130
|
+
snowflake/ml/jobs/_utils/spec_utils.py,sha256=Ch-3iKezKWXgSJm-xpHOW7ZpMBjIZvSNiEZGL9CyA2w,16346
|
|
124
131
|
snowflake/ml/jobs/_utils/stage_utils.py,sha256=38-LsokaGx0NzlnP8CMRioClRz-3x6xhPiZIgl2CB9g,5224
|
|
125
|
-
snowflake/ml/jobs/_utils/types.py,sha256=
|
|
132
|
+
snowflake/ml/jobs/_utils/types.py,sha256=wK-VOc4MAkuDkrji--loSdF-SkPc0K0JLuQoYVrXHBw,2494
|
|
126
133
|
snowflake/ml/jobs/_utils/scripts/constants.py,sha256=YyIWZqQPYOTtgCY6SfyJjk2A98I5RQVmrOuLtET5Pqg,173
|
|
127
134
|
snowflake/ml/jobs/_utils/scripts/get_instance_ip.py,sha256=N2wJYMPlwg-hidwgHhDhiBWOE6TskqCfWLMRRNnZBQs,5776
|
|
128
|
-
snowflake/ml/jobs/_utils/scripts/mljob_launcher.py,sha256=
|
|
135
|
+
snowflake/ml/jobs/_utils/scripts/mljob_launcher.py,sha256=XcCyXYkwAAF3quPs0uoq_n-OiEYPYJtadKGsOFKBlTM,17005
|
|
129
136
|
snowflake/ml/jobs/_utils/scripts/signal_workers.py,sha256=AR1Pylkm4-FGh10WXfrCtcxaV0rI7IQ2ZiO0Li7zZ3U,7433
|
|
130
137
|
snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py,sha256=SeJ8v5XDriwHAjIGpcQkwVP-f-lO9QIdVjVD7Fkgafs,7893
|
|
131
138
|
snowflake/ml/lineage/__init__.py,sha256=8p1YGynC-qOxAZ8jZX2z84Reg5bv1NoJMoJmNJCrzI4,65
|
|
@@ -143,15 +150,15 @@ snowflake/ml/model/volatility.py,sha256=qu-wqe9oKkRwXwE2qkKygxTWzUypQYEk3UjsqOGR
|
|
|
143
150
|
snowflake/ml/model/_client/model/batch_inference_specs.py,sha256=FFzNvP-OHO1gFBfqXz89T5HMheFGfsx7P5_5Ze_QYvM,957
|
|
144
151
|
snowflake/ml/model/_client/model/inference_engine_utils.py,sha256=lOqZzySZygeWqHTNYGBYgpTRfEst9f7lX50Ku8k950g,1966
|
|
145
152
|
snowflake/ml/model/_client/model/model_impl.py,sha256=Yabrbir5vPMOnsVmQJ23YN7vqhi756Jcm6pfO8Aq92o,17469
|
|
146
|
-
snowflake/ml/model/_client/model/model_version_impl.py,sha256=
|
|
153
|
+
snowflake/ml/model/_client/model/model_version_impl.py,sha256=7D1sGqu8RCLMKP6LizYY4hbIXgDbBlGbIxpIsb_jUEQ,54757
|
|
147
154
|
snowflake/ml/model/_client/ops/metadata_ops.py,sha256=qpK6PL3OyfuhyOmpvLCpHLy6vCxbZbp1HlEvakFGwv4,4884
|
|
148
|
-
snowflake/ml/model/_client/ops/model_ops.py,sha256=
|
|
155
|
+
snowflake/ml/model/_client/ops/model_ops.py,sha256=sQ0t6plS5o_2qqnA48quYwJOZ0NlhgnZMarwrzSKwew,50599
|
|
149
156
|
snowflake/ml/model/_client/ops/service_ops.py,sha256=gUmYDvXnacachE9OK92HGYbZ7ec9WEsrDRsOgOckhbI,47036
|
|
150
157
|
snowflake/ml/model/_client/service/model_deployment_spec.py,sha256=Ro2kAM_rfMccMjW23RpP6qDPq090vAIUv_he-8GE68k,19487
|
|
151
158
|
snowflake/ml/model/_client/service/model_deployment_spec_schema.py,sha256=QpDso2bjx2eCRKIG4-ppc3z46B7hgYMZehOTRoR9IJs,2425
|
|
152
159
|
snowflake/ml/model/_client/sql/_base.py,sha256=Qrm8M92g3MHb-QnSLUlbd8iVKCRxLhG_zr5M2qmXwJ8,1473
|
|
153
160
|
snowflake/ml/model/_client/sql/model.py,sha256=nstZ8zR7MkXVEfhqLt7PWMik6dZr06nzq7VsF5NVNow,5840
|
|
154
|
-
snowflake/ml/model/_client/sql/model_version.py,sha256=
|
|
161
|
+
snowflake/ml/model/_client/sql/model_version.py,sha256=JE974ehlquitpDK9YHv94QklyereYk_vPiz64WYNXSk,23673
|
|
155
162
|
snowflake/ml/model/_client/sql/service.py,sha256=0aXyRDZIFCgBq6TEG6qdhc7wtCsmphpyBXuSoNyLmTw,11630
|
|
156
163
|
snowflake/ml/model/_client/sql/stage.py,sha256=1TWYIVoWIeNwhVG9uqwmNpmKcC6x45LrbxCtzJW7fi4,1214
|
|
157
164
|
snowflake/ml/model/_client/sql/tag.py,sha256=9sI0VoldKmsfToWSjMQddozPPGCxYUI6n0gPBiqd6x8,4333
|
|
@@ -163,11 +170,12 @@ snowflake/ml/model/_model_composer/model_method/function_generator.py,sha256=nnU
|
|
|
163
170
|
snowflake/ml/model/_model_composer/model_method/infer_function.py_template,sha256=olysEb_bE2C8CjIRAhm7qdr2mtgk77Tx45gnLRVQGFw,1511
|
|
164
171
|
snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template,sha256=8p8jkTOJA-mBt5cuGhcWSH4z7ySQ9xevC35UioCLkC8,1539
|
|
165
172
|
snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template,sha256=QT32N6akQDutLh00cXp2OD4WI6Gb7IGG1snsnrXNih8,1453
|
|
166
|
-
snowflake/ml/model/_model_composer/model_method/model_method.py,sha256=
|
|
173
|
+
snowflake/ml/model/_model_composer/model_method/model_method.py,sha256=0wAFFMro9gwhHsQ6EW1M2tPW_6WiXYNANTucaOdqUr4,8432
|
|
174
|
+
snowflake/ml/model/_model_composer/model_method/utils.py,sha256=RQi2qebBeE-0Y-jLYXiDWZU8nfvbnif9QbExeWiMmyI,1057
|
|
167
175
|
snowflake/ml/model/_model_composer/model_user_file/model_user_file.py,sha256=dYNgg8P9p6nRH47-OLxZIbt_Ja3t1VPGNQ0qJtpGuAw,1018
|
|
168
176
|
snowflake/ml/model/_packager/model_handler.py,sha256=qZB5FVRWZD5wDdm6vuuoXnDFar7i2nHarbe8iZRCLPo,2630
|
|
169
177
|
snowflake/ml/model/_packager/model_packager.py,sha256=6-1MnGUR8nxB86A13nCZcWbET_Q6fSEOlyfcbTv7xCI,6087
|
|
170
|
-
snowflake/ml/model/_packager/model_env/model_env.py,sha256=
|
|
178
|
+
snowflake/ml/model/_packager/model_env/model_env.py,sha256=xDDyRr8AzME0SRv2mQxzfh-blh2MH7Fz8H7R5HXiVJQ,21085
|
|
171
179
|
snowflake/ml/model/_packager/model_handlers/_base.py,sha256=OZhGv7nyej3PqaoBz021uGa40T06d9rv-kDcKUY3VnM,7152
|
|
172
180
|
snowflake/ml/model/_packager/model_handlers/_utils.py,sha256=DIN1oKCl4DytNcH1xP3fGl4BHaEmQ_RGoKuysFiWz7s,12599
|
|
173
181
|
snowflake/ml/model/_packager/model_handlers/catboost.py,sha256=dbI2QizGZS04l6ehgXb3oy5YSXrlwRHz8YENVefEbms,10676
|
|
@@ -189,12 +197,12 @@ snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12
|
|
|
189
197
|
snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py,sha256=0DxwZtXFgXpxb5LQEAfTUfEFV7zgbG4j3F-oNHLkTgE,769
|
|
190
198
|
snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py,sha256=MDOAGV6kML9sJh_hnYjnrPH4GtECP5DDCjaRT7NmYpU,768
|
|
191
199
|
snowflake/ml/model/_packager/model_meta/model_blob_meta.py,sha256=CzY_MhiSshKi9dWzXc4lrC9PysU0FCdHG2oRlz1vCb8,1943
|
|
192
|
-
snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=
|
|
193
|
-
snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=
|
|
200
|
+
snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=7FuL0nClHpd7kBLhSM6BJPd6JCdyXLo4dePGThpcxfg,20549
|
|
201
|
+
snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=dt9k2FoQkJYTHXhismvPkp6ijyRpPMJMy4rCuXgd9Hg,3818
|
|
194
202
|
snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py,sha256=8zTgq3n6TBXv7Vcwmf7b9wjK3m-9HHMsY0Qy1Rs-sZ4,1305
|
|
195
203
|
snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py,sha256=5butM-lyaDRhCAO2BaCOIQufpAxAfSAinsNuGqbbjMU,1029
|
|
196
204
|
snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py,sha256=cyZVvBGM3nF1IVqDKfYstLCchNO-ZhSkPvLM4aU7J5c,2066
|
|
197
|
-
snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py,sha256=
|
|
205
|
+
snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py,sha256=xVdhOAl8aj6B_zWHjrqq0YUQrgjZXL7SRdlazq682jo,904
|
|
198
206
|
snowflake/ml/model/_packager/model_runtime/model_runtime.py,sha256=xEf-S9QurEOeQzrNxlc-4-S_VkHsVO1eNS4UR0hWwHU,5495
|
|
199
207
|
snowflake/ml/model/_packager/model_task/model_task_utils.py,sha256=_nm3Irl5W6Oa8_OnJyp3bLeA9QAbV9ygGCsgHI70GX4,6641
|
|
200
208
|
snowflake/ml/model/_signatures/base_handler.py,sha256=4CTZKKbg4WIz_CmXjyVy8tKZW-5OFcz0J8XVPHm2dfQ,1269
|
|
@@ -220,7 +228,7 @@ snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer
|
|
|
220
228
|
snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py,sha256=HnsSmsXAeJrH9zVeq3CSziIaCUDxeWWx6kRyAK4qajM,6601
|
|
221
229
|
snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py,sha256=oXumJxQFMokoxsrXZ03X8NKLWr3yGuUGB3OM8qTTH4E,16416
|
|
222
230
|
snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py,sha256=xem3xtoOHi_HFoi85wvSx7F1BhzxVrGYqMhuyrFz4Ik,32919
|
|
223
|
-
snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py,sha256=
|
|
231
|
+
snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py,sha256=nfdUDS7tJY2qPbYCRG-p05v8l0vVZq010mOHfU90US0,17310
|
|
224
232
|
snowflake/ml/modeling/calibration/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
|
225
233
|
snowflake/ml/modeling/calibration/calibrated_classifier_cv.py,sha256=UfQ3LkyxPC2F8USLcofkiCPz_7uFXWx69pzr81JfE18,54177
|
|
226
234
|
snowflake/ml/modeling/cluster/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
|
@@ -442,8 +450,8 @@ snowflake/ml/utils/connection_params.py,sha256=NSBUgcs-DXPRHs1BKpxdSubbJx1yrFRlM
|
|
|
442
450
|
snowflake/ml/utils/html_utils.py,sha256=L4pzpvFd20SIk4rie2kTAtcQjbxBHfjKmxonMAT2OoA,7665
|
|
443
451
|
snowflake/ml/utils/sparse.py,sha256=zLBNh-ynhGpKH5TFtopk0YLkHGvv0yq1q-sV59YQKgg,3819
|
|
444
452
|
snowflake/ml/utils/sql_client.py,sha256=pSe2od6Pkh-8NwG3D-xqN76_uNf-ohOtVbT55HeQg1Y,668
|
|
445
|
-
snowflake_ml_python-1.
|
|
446
|
-
snowflake_ml_python-1.
|
|
447
|
-
snowflake_ml_python-1.
|
|
448
|
-
snowflake_ml_python-1.
|
|
449
|
-
snowflake_ml_python-1.
|
|
453
|
+
snowflake_ml_python-1.17.0.dist-info/licenses/LICENSE.txt,sha256=PdEp56Av5m3_kl21iFkVTX_EbHJKFGEdmYeIO1pL_Yk,11365
|
|
454
|
+
snowflake_ml_python-1.17.0.dist-info/METADATA,sha256=mhZyi2QLv4tmA0nmTKABH-c-VR8oFf5CWOSGJCMr8Fo,96492
|
|
455
|
+
snowflake_ml_python-1.17.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
456
|
+
snowflake_ml_python-1.17.0.dist-info/top_level.txt,sha256=TY0gFSHKDdZy3THb0FGomyikWQasEGldIR1O0HGOHVw,10
|
|
457
|
+
snowflake_ml_python-1.17.0.dist-info/RECORD,,
|
|
File without changes
|
{snowflake_ml_python-1.16.0.dist-info → snowflake_ml_python-1.17.0.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
|
File without changes
|