snowflake-ml-python 1.8.5__py3-none-any.whl → 1.9.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/telemetry.py +6 -9
- snowflake/ml/_internal/utils/connection_params.py +196 -0
- snowflake/ml/_internal/utils/identifier.py +1 -1
- snowflake/ml/_internal/utils/mixins.py +61 -0
- snowflake/ml/jobs/__init__.py +2 -0
- snowflake/ml/jobs/_utils/constants.py +3 -2
- snowflake/ml/jobs/_utils/function_payload_utils.py +43 -0
- snowflake/ml/jobs/_utils/interop_utils.py +63 -4
- snowflake/ml/jobs/_utils/payload_utils.py +89 -40
- snowflake/ml/jobs/_utils/query_helper.py +9 -0
- snowflake/ml/jobs/_utils/scripts/constants.py +19 -3
- snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +8 -26
- snowflake/ml/jobs/_utils/spec_utils.py +29 -5
- snowflake/ml/jobs/_utils/stage_utils.py +119 -0
- snowflake/ml/jobs/_utils/types.py +5 -1
- snowflake/ml/jobs/decorators.py +20 -28
- snowflake/ml/jobs/job.py +197 -61
- snowflake/ml/jobs/manager.py +253 -121
- snowflake/ml/model/_client/model/model_impl.py +58 -0
- snowflake/ml/model/_client/model/model_version_impl.py +90 -0
- snowflake/ml/model/_client/ops/model_ops.py +18 -6
- snowflake/ml/model/_client/ops/service_ops.py +23 -6
- snowflake/ml/model/_client/service/model_deployment_spec_schema.py +2 -0
- snowflake/ml/model/_client/sql/service.py +68 -20
- snowflake/ml/model/_client/sql/stage.py +5 -2
- snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +38 -10
- snowflake/ml/model/_packager/model_env/model_env.py +35 -27
- snowflake/ml/model/_packager/model_handlers/pytorch.py +5 -1
- snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +103 -73
- snowflake/ml/model/_packager/model_meta/model_meta.py +3 -1
- snowflake/ml/model/_signatures/core.py +24 -0
- snowflake/ml/model/_signatures/snowpark_handler.py +55 -3
- snowflake/ml/model/target_platform.py +11 -0
- snowflake/ml/model/task.py +9 -0
- snowflake/ml/model/type_hints.py +5 -13
- snowflake/ml/modeling/metrics/metrics_utils.py +2 -0
- snowflake/ml/monitoring/explain_visualize.py +2 -2
- snowflake/ml/monitoring/model_monitor.py +0 -4
- snowflake/ml/registry/_manager/model_manager.py +30 -15
- snowflake/ml/registry/registry.py +144 -47
- snowflake/ml/utils/connection_params.py +1 -1
- snowflake/ml/utils/html_utils.py +263 -0
- snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.8.5.dist-info → snowflake_ml_python-1.9.0.dist-info}/METADATA +64 -19
- {snowflake_ml_python-1.8.5.dist-info → snowflake_ml_python-1.9.0.dist-info}/RECORD +48 -41
- snowflake/ml/monitoring/model_monitor_version.py +0 -1
- {snowflake_ml_python-1.8.5.dist-info → snowflake_ml_python-1.9.0.dist-info}/WHEEL +0 -0
- {snowflake_ml_python-1.8.5.dist-info → snowflake_ml_python-1.9.0.dist-info}/licenses/LICENSE.txt +0 -0
- {snowflake_ml_python-1.8.5.dist-info → snowflake_ml_python-1.9.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.9.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:
|
@@ -408,6 +408,49 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
408
408
|
|
409
409
|
# Release History
|
410
410
|
|
411
|
+
## 1.9.0
|
412
|
+
|
413
|
+
### Bug Fixes
|
414
|
+
|
415
|
+
- Registry: Fixed bug causing snowpark to pandas dataframe conversion to fail when `QUOTED_IDENTIFIERS_IGNORE_CASE`
|
416
|
+
parameter is enabled
|
417
|
+
- Registry: Fixed duplicate UserWarning logs during model packaging
|
418
|
+
|
419
|
+
### Behavior Changes
|
420
|
+
|
421
|
+
- ML Job: The `list_jobs()` API has been modified. The `scope` parameter has been removed,
|
422
|
+
optional `database` and `schema` parameters have been added, the return type has changed
|
423
|
+
from `snowpark.DataFrame` to `pandas.DataFrame`, and the returned columns have been updated
|
424
|
+
to `name`, `status`, `message`, `database_name`, `schema_name`, `owner`, `compute_pool`,
|
425
|
+
`target_instances`, `created_time`, and `completed_time`.
|
426
|
+
- Registry: Set `relax_version` to false when pip_requirements are specified while logging model
|
427
|
+
- Registry: UserWarning will now be raised based on specified target_platforms (addresses spurious warnings)
|
428
|
+
|
429
|
+
### New Features
|
430
|
+
|
431
|
+
- Registry: `target_platforms` supports `TargetPlatformMode`: `WAREHOUSE_ONLY`, `SNOWPARK_CONTAINER_SERVICES_ONLY`,
|
432
|
+
or `BOTH_WAREHOUSE_AND_SNOWPARK_CONTAINER_SERVICES`.
|
433
|
+
- Registry: Introduce `snowflake.ml.model.target_platform.TargetPlatform`, target platform constants, and
|
434
|
+
`snowflake.ml.model.task.Task`.
|
435
|
+
- ML Job: Single-node ML Jobs are now in GA. Multi-node support is now in PuPr
|
436
|
+
- Moved less frequently used job submission parameters to `**kwargs`
|
437
|
+
- Platform metrics are now enabled by default
|
438
|
+
- `list_jobs()` behavior changed, see [Behavior Changes](#behavior-changes) for more info
|
439
|
+
|
440
|
+
## 1.8.6
|
441
|
+
|
442
|
+
### Bug Fixes
|
443
|
+
|
444
|
+
- Fixed fatal errors from internal telemetry wrappers.
|
445
|
+
|
446
|
+
### New Features
|
447
|
+
|
448
|
+
- Registry: Add service container info to logs.
|
449
|
+
- ML Job (PuPr): Add new `submit_from_stage()` API for submitting a payload from an existing stage path.
|
450
|
+
- ML Job (PuPr): Add support for `snowpark.Session` objects in the argument list of
|
451
|
+
`@remote` decorated functions. `Session` object will be injected from context in
|
452
|
+
the job execution environment.
|
453
|
+
|
411
454
|
## 1.8.5
|
412
455
|
|
413
456
|
### Bug Fixes
|
@@ -417,16 +460,21 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
417
460
|
- Explainability: bump minimum streamlit version down to 1.30
|
418
461
|
- Modeling: Make XGBoost a required dependency (xgboost is not a required dependency in snowflake-ml-python 1.8.4).
|
419
462
|
|
420
|
-
###
|
463
|
+
### Behavior Changes
|
421
464
|
|
422
|
-
- ML Job: Rename argument `num_instances` to `target_instances` in job submission APIs and
|
465
|
+
- ML Job (Multi-node PrPr): Rename argument `num_instances` to `target_instances` in job submission APIs and
|
423
466
|
change type from `Optional[int]` to `int`
|
424
467
|
|
425
468
|
### New Features
|
426
469
|
|
427
470
|
- Registry: No longer checks if the snowflake-ml-python version is available in the Snowflake Conda channel when logging
|
428
471
|
an SPCS-only model.
|
429
|
-
- ML Job: Add `min_instances` argument to the job decorator to allow waiting for workers to be ready.
|
472
|
+
- ML Job (PuPr): Add `min_instances` argument to the job decorator to allow waiting for workers to be ready.
|
473
|
+
- ML Job (PuPr): Adjust polling behavior to reduce number of SQL calls.
|
474
|
+
|
475
|
+
### Deprecations
|
476
|
+
|
477
|
+
- `SnowflakeLoginOptions` is deprecated and will be removed in a future release.
|
430
478
|
|
431
479
|
## 1.8.4 (2025-05-12)
|
432
480
|
|
@@ -437,32 +485,29 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
437
485
|
- Registry: Fixed a bug when logging pytroch and tensorflow models that caused
|
438
486
|
`UnboundLocalError: local variable 'multiple_inputs' referenced before assignment`.
|
439
487
|
|
440
|
-
###
|
488
|
+
### Behavior Changes
|
441
489
|
|
442
|
-
- ML Job
|
443
|
-
|
490
|
+
- ML Job (PuPr) Updated property `id` to be fully qualified name; Introduced new property `name`
|
491
|
+
to represent the ML Job name
|
492
|
+
- ML Job (PuPr) Modified `list_jobs()` to return ML Job `name` instead of `id`
|
444
493
|
- Registry: Error in `log_model` if `enable_explainability` is True and model is only deployed to
|
445
494
|
Snowpark Container Services, instead of just user warning.
|
446
495
|
|
447
496
|
### New Features
|
448
497
|
|
449
|
-
- ML Job: Extend `@remote` function decorator, `submit_file()` and `submit_directory()` to accept `database` and
|
498
|
+
- ML Job (PuPr): Extend `@remote` function decorator, `submit_file()` and `submit_directory()` to accept `database` and
|
450
499
|
`schema` parameters
|
451
|
-
- ML Job: Support querying by fully qualified name in `get_job()`
|
500
|
+
- ML Job (PuPr): Support querying by fully qualified name in `get_job()`
|
452
501
|
- Explainability: Added visualization functions to `snowflake.ml.monitoring` to plot explanations in notebooks.
|
453
502
|
- Explainability: Support explain for categorical transforms for sklearn pipeline
|
454
503
|
- Support categorical type for `xgboost.DMatrix` inputs.
|
455
504
|
|
456
505
|
## 1.8.3
|
457
506
|
|
458
|
-
### Bug Fixes
|
459
|
-
|
460
|
-
### Behavior Change
|
461
|
-
|
462
507
|
### New Features
|
463
508
|
|
464
509
|
- Registry: Default to the runtime cuda version if available when logging a GPU model in Container Runtime.
|
465
|
-
- ML Job: Added `as_list` argument to `MLJob.get_logs()` to enable retrieving logs
|
510
|
+
- ML Job (PuPr): Added `as_list` argument to `MLJob.get_logs()` to enable retrieving logs
|
466
511
|
as a list of strings
|
467
512
|
- Registry: Support `ModelVersion.run_job` to run inference with a single-node Snowpark Container Services job.
|
468
513
|
- DataConnector: Removed PrPr decorators
|
@@ -473,11 +518,11 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
473
518
|
### New Features
|
474
519
|
|
475
520
|
- ML Job now available as a PuPr feature
|
476
|
-
-
|
477
|
-
|
478
|
-
|
479
|
-
-
|
480
|
-
|
521
|
+
- Add ability to retrieve results for `@remote` decorated functions using
|
522
|
+
new `MLJobWithResult.result()` API, which will return the unpickled result
|
523
|
+
or raise an exception if the job execution failed.
|
524
|
+
- Pre-created Snowpark Session is now available inside job payloads using
|
525
|
+
`snowflake.snowpark.context.get_active_session()`
|
481
526
|
- Registry: Introducing `save_location` to `log_model` using the `options` argument.
|
482
527
|
User's can provide the path to write the model version's files that get stored in Snowflake's stage.
|
483
528
|
|
@@ -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=UTrGrSYSFfbGixnYeTcCTHPZkoH52lAVaVnxGidBygY,98
|
14
14
|
snowflake/ml/_internal/env.py,sha256=EY_2KVe8oR3LgKWdaeRb5rRU-NDNXJppPDsFJmMZUUY,265
|
15
15
|
snowflake/ml/_internal/env_utils.py,sha256=tzz8BziiwJEnZwkzDEYCMO20Sb-mnXwDtSakGfgG--M,29364
|
16
16
|
snowflake/ml/_internal/file_utils.py,sha256=7sA6loOeSfmGP4yx16P4usT9ZtRqG3ycnXu7_Tk7dOs,14206
|
@@ -18,7 +18,7 @@ snowflake/ml/_internal/init_utils.py,sha256=WhrlvS-xcmKErSpwg6cUk6XDQ5lQcwDqPJnU
|
|
18
18
|
snowflake/ml/_internal/migrator_utils.py,sha256=k3erO8x3YJcX6nkKeyJAUNGg1qjE3RFmD-W6dtLzIH0,161
|
19
19
|
snowflake/ml/_internal/platform_capabilities.py,sha256=2l3GeuKIbeoMh5m3z1mWx7niWsnPvNTSVrlK5bnRNpk,5290
|
20
20
|
snowflake/ml/_internal/relax_version_strategy.py,sha256=MYEIZrx1HfKNhl9Na3GN50ipX8c0MKIj9nwxjB0IC0Y,484
|
21
|
-
snowflake/ml/_internal/telemetry.py,sha256=
|
21
|
+
snowflake/ml/_internal/telemetry.py,sha256=7obh4QrCvtgVa5QW2_5nMBRv-K-DZrUlDx_Exzn86FI,31788
|
22
22
|
snowflake/ml/_internal/type_utils.py,sha256=fGnxGx9Tb9G1Fh9EaD23CxChx0Jfc4KnRZv-M-Dcblk,2197
|
23
23
|
snowflake/ml/_internal/exceptions/dataset_error_messages.py,sha256=h7uGJbxBM6se-TW_64LKGGGdBCbwflzbBnmijWKX3Gc,285
|
24
24
|
snowflake/ml/_internal/exceptions/dataset_errors.py,sha256=TqESe8cDfWurJdv5X0DOwgzBfHCEqga_F3WQipYbdqg,741
|
@@ -34,11 +34,13 @@ snowflake/ml/_internal/human_readable_id/animals.txt,sha256=GDLzMwzxiL07PhIMxw4t
|
|
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
|
37
|
+
snowflake/ml/_internal/utils/connection_params.py,sha256=ejtI-_vYt7tpxCZKjOBzuGyrOxh251xc-ekahQP9XZ4,8196
|
37
38
|
snowflake/ml/_internal/utils/db_utils.py,sha256=HlxdMrgV8UpnxvfKDM-ZR5N566eWZLC-mE291ByrPEQ,1662
|
38
39
|
snowflake/ml/_internal/utils/formatting.py,sha256=PswZ6Xas7sx3Ok1MBLoH2o7nfXOxaJqpUPg_UqXrQb8,3676
|
39
|
-
snowflake/ml/_internal/utils/identifier.py,sha256=
|
40
|
+
snowflake/ml/_internal/utils/identifier.py,sha256=HrcCBOyn93fRjMj4K1YJG37ONtw7e3EZnt29LzhEgLA,12586
|
40
41
|
snowflake/ml/_internal/utils/import_utils.py,sha256=msvUDaCcJpAcNCS-5Ynz4F1CvUhXjRsuZyOv1rN6Yhk,3213
|
41
42
|
snowflake/ml/_internal/utils/jwt_generator.py,sha256=bj7Ltnw68WjRcxtV9t5xrTRvV5ETnvovB-o3Y8QWNBg,5357
|
43
|
+
snowflake/ml/_internal/utils/mixins.py,sha256=ZE76Oc7EEbPtlwtm1oALozKdjQATE4n3WzhkNQeiUZg,2847
|
42
44
|
snowflake/ml/_internal/utils/parallelize.py,sha256=l8Zjo-hp8zqoLgHxBlpz9Zmn2Z-MRQ0fS_NnrR4jWR8,4522
|
43
45
|
snowflake/ml/_internal/utils/pkg_version_utils.py,sha256=EaY_3IsVOZ9BCH28F5VLjp-0AiEqDlL7L715vkPsgrY,5149
|
44
46
|
snowflake/ml/_internal/utils/query_result_checker.py,sha256=1PR41Xn9BUIXvp-UmJ9FgEbj8WfgU7RUhz3PqvvVQ5E,10656
|
@@ -93,18 +95,21 @@ snowflake/ml/fileset/fileset.py,sha256=ApMpHiiyzGRkyxQfJPdXPuKtw_wOXbOfQCXSH6pDw
|
|
93
95
|
snowflake/ml/fileset/sfcfs.py,sha256=FJFc9-gc0KXaNyc10ZovN_87aUCShb0WztVwa02t0io,15517
|
94
96
|
snowflake/ml/fileset/snowfs.py,sha256=uF5QluYtiJ-HezGIhF55dONi3t0E6N7ByaVAIAlM3nk,5133
|
95
97
|
snowflake/ml/fileset/stage_fs.py,sha256=V4pysouSKKDPLzuW3u_extxfvjkQa5OlwIRES9Srpzo,20151
|
96
|
-
snowflake/ml/jobs/__init__.py,sha256=
|
97
|
-
snowflake/ml/jobs/decorators.py,sha256=
|
98
|
-
snowflake/ml/jobs/job.py,sha256=
|
99
|
-
snowflake/ml/jobs/manager.py,sha256=
|
100
|
-
snowflake/ml/jobs/_utils/constants.py,sha256=
|
101
|
-
snowflake/ml/jobs/_utils/
|
102
|
-
snowflake/ml/jobs/_utils/
|
103
|
-
snowflake/ml/jobs/_utils/
|
104
|
-
snowflake/ml/jobs/_utils/
|
105
|
-
snowflake/ml/jobs/_utils/
|
98
|
+
snowflake/ml/jobs/__init__.py,sha256=v-v9-SA1Vy-M98B31-NlqJgpI6uEg9jEEghJLub1RUY,468
|
99
|
+
snowflake/ml/jobs/decorators.py,sha256=mQgdWvvCwD7q79cSFKZHKegXGh2j1u8WM64UD3lCKr4,3428
|
100
|
+
snowflake/ml/jobs/job.py,sha256=0DXIl8CM7Ld9_GQOo0r5cAChf48j8uiGX1ye9MdvYMw,21945
|
101
|
+
snowflake/ml/jobs/manager.py,sha256=XjKGQPVO1i1nzyAx3KPiQY37Mstz-O5Qr-UFZaSlqqc,21384
|
102
|
+
snowflake/ml/jobs/_utils/constants.py,sha256=tFZzFcWNA1okEjhjrfsDwa9ugb2qVdhk3csVOwk95E8,3642
|
103
|
+
snowflake/ml/jobs/_utils/function_payload_utils.py,sha256=4LBaStMdhRxcqwRkwFje-WwiEKRWnBfkaOYouF3N3Kg,1308
|
104
|
+
snowflake/ml/jobs/_utils/interop_utils.py,sha256=7mODMTjKCLXkJloACG6_9b2wvmRgjXF0Jx3wpWYyJeA,21413
|
105
|
+
snowflake/ml/jobs/_utils/payload_utils.py,sha256=Fjf5mZpgsleZsPA9lFJELnb80mEB3Lkwb0sYiU2xmnM,24362
|
106
|
+
snowflake/ml/jobs/_utils/query_helper.py,sha256=vCRA3TqSo77L0xJcDjGhojxAD6SHDPLDVh4HGqOJx1Q,386
|
107
|
+
snowflake/ml/jobs/_utils/spec_utils.py,sha256=bwAvRiV4VUffWC1iFQO8kIv9q__11WFeXjnSPr9bB1Y,13254
|
108
|
+
snowflake/ml/jobs/_utils/stage_utils.py,sha256=RrJPKHFBmEqOoRe3Lr9ypq0A-tuf8uqmfzxAy-yo9o4,4053
|
109
|
+
snowflake/ml/jobs/_utils/types.py,sha256=l4onybhHhW1hhsbtXVhJ_RmzptClAPHY-fZRTIIcSLY,1087
|
110
|
+
snowflake/ml/jobs/_utils/scripts/constants.py,sha256=PtqQp-KFUjsBBoQIs5TyphmauYJzd5R1m4L31FOWBr0,912
|
106
111
|
snowflake/ml/jobs/_utils/scripts/get_instance_ip.py,sha256=DmWs5cVpNmUcrqnwhrUvxE5PycDWFN88Pdut8vFDHPg,5293
|
107
|
-
snowflake/ml/jobs/_utils/scripts/mljob_launcher.py,sha256=
|
112
|
+
snowflake/ml/jobs/_utils/scripts/mljob_launcher.py,sha256=cFWzd5qzpvKiZYiw69A05XFoYQKeYdOPCaw7p1Qrj5c,9398
|
108
113
|
snowflake/ml/jobs/_utils/scripts/signal_workers.py,sha256=AR1Pylkm4-FGh10WXfrCtcxaV0rI7IQ2ZiO0Li7zZ3U,7433
|
109
114
|
snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py,sha256=SeJ8v5XDriwHAjIGpcQkwVP-f-lO9QIdVjVD7Fkgafs,7893
|
110
115
|
snowflake/ml/lineage/__init__.py,sha256=8p1YGynC-qOxAZ8jZX2z84Reg5bv1NoJMoJmNJCrzI4,65
|
@@ -112,22 +117,24 @@ snowflake/ml/lineage/lineage_node.py,sha256=jCxCwQRvUkH-5nyF1PvdKAyRombOjWDYs5ZJ
|
|
112
117
|
snowflake/ml/model/__init__.py,sha256=EvPtblqPN6_T6dyVfaYUxCfo_M7D2CQ1OR5giIH4TsQ,314
|
113
118
|
snowflake/ml/model/custom_model.py,sha256=fDhMObqlyzD_qQG1Bq6HHkBN1w3Qzg9e81JWPiqRfc4,12249
|
114
119
|
snowflake/ml/model/model_signature.py,sha256=bVRdMx4JEj31gLe2dr10y7aVy9fPDfPlcKYlE1NBOeQ,32265
|
115
|
-
snowflake/ml/model/
|
116
|
-
snowflake/ml/model/
|
117
|
-
snowflake/ml/model/
|
120
|
+
snowflake/ml/model/target_platform.py,sha256=H5d-wtuKQyVlq9x33vPtYZAlR5ka0ytcKRYgwlKl0bQ,390
|
121
|
+
snowflake/ml/model/task.py,sha256=Zp5JaLB-YfX5p_HSaw81P3J7UnycQq5EMa87A35VOaQ,286
|
122
|
+
snowflake/ml/model/type_hints.py,sha256=F0EW6lbSpZyv5prXc7HBZkPga6LeeCdBpV59CfLdUI4,9309
|
123
|
+
snowflake/ml/model/_client/model/model_impl.py,sha256=Yabrbir5vPMOnsVmQJ23YN7vqhi756Jcm6pfO8Aq92o,17469
|
124
|
+
snowflake/ml/model/_client/model/model_version_impl.py,sha256=TGBSIr4JrdxSfFZyd9G0jW4CKW0aP-ReY4ZNb05CJyY,47033
|
118
125
|
snowflake/ml/model/_client/ops/metadata_ops.py,sha256=qpK6PL3OyfuhyOmpvLCpHLy6vCxbZbp1HlEvakFGwv4,4884
|
119
|
-
snowflake/ml/model/_client/ops/model_ops.py,sha256=
|
120
|
-
snowflake/ml/model/_client/ops/service_ops.py,sha256=
|
126
|
+
snowflake/ml/model/_client/ops/model_ops.py,sha256=z3T71w9ZNIU5eEA5G59Ous59WzEBs3YBcPO1_zeMI8M,48586
|
127
|
+
snowflake/ml/model/_client/ops/service_ops.py,sha256=LqwuIYwlT0RDinM9dUzPBF3v5ZoZZ5KcaJymEDboObQ,29401
|
121
128
|
snowflake/ml/model/_client/service/model_deployment_spec.py,sha256=V1j1WJ-gYrXN9SBsbg-908MbsJejl86rmaXHg4-tZiw,17508
|
122
|
-
snowflake/ml/model/_client/service/model_deployment_spec_schema.py,sha256=
|
129
|
+
snowflake/ml/model/_client/service/model_deployment_spec_schema.py,sha256=sQ13qPYSe3Po-gZDT0ZCOa3-n6zdK1ggln5AcrCY1tw,1948
|
123
130
|
snowflake/ml/model/_client/sql/_base.py,sha256=Qrm8M92g3MHb-QnSLUlbd8iVKCRxLhG_zr5M2qmXwJ8,1473
|
124
131
|
snowflake/ml/model/_client/sql/model.py,sha256=nstZ8zR7MkXVEfhqLt7PWMik6dZr06nzq7VsF5NVNow,5840
|
125
132
|
snowflake/ml/model/_client/sql/model_version.py,sha256=QwzFlDH5laTqK2qF7SJQSbt28DgspWj3R11l-yD1Da0,23496
|
126
|
-
snowflake/ml/model/_client/sql/service.py,sha256=
|
127
|
-
snowflake/ml/model/_client/sql/stage.py,sha256=
|
133
|
+
snowflake/ml/model/_client/sql/service.py,sha256=i8BDpFs7AJQ8D8UXcE4rW_iNJbXGUYtiL_B6KfJKs-Q,12327
|
134
|
+
snowflake/ml/model/_client/sql/stage.py,sha256=2gxYNtmEXricwxeACVUr63OUDCy_iQvCi-kRT4qQtBA,887
|
128
135
|
snowflake/ml/model/_client/sql/tag.py,sha256=9sI0VoldKmsfToWSjMQddozPPGCxYUI6n0gPBiqd6x8,4333
|
129
136
|
snowflake/ml/model/_model_composer/model_composer.py,sha256=SJyaw8Pcp-n_VYLEraIxrispRYMkIU90DuEisZj4z-U,11631
|
130
|
-
snowflake/ml/model/_model_composer/model_manifest/model_manifest.py,sha256=
|
137
|
+
snowflake/ml/model/_model_composer/model_manifest/model_manifest.py,sha256=Ux7YBWhnv_jsyzV0Z2bAab7kWRjt1Dz_fa2Nh1Vwh-8,10628
|
131
138
|
snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py,sha256=eqv-4-tvA9Lgrp7kQAQGS_CJVR9D6uOd8-SxADNOkeM,2887
|
132
139
|
snowflake/ml/model/_model_composer/model_method/constants.py,sha256=hoJwIopSdZiYn0fGq15_NiirC0l02d5LEs2D-4J_tPk,35
|
133
140
|
snowflake/ml/model/_model_composer/model_method/function_generator.py,sha256=nnUJki3bJVCTF3gZ-usZW3xQ6wwlJ08EfNsPAgsnI3s,2625
|
@@ -138,7 +145,7 @@ snowflake/ml/model/_model_composer/model_method/model_method.py,sha256=NhTAkjRlf
|
|
138
145
|
snowflake/ml/model/_model_composer/model_user_file/model_user_file.py,sha256=dYNgg8P9p6nRH47-OLxZIbt_Ja3t1VPGNQ0qJtpGuAw,1018
|
139
146
|
snowflake/ml/model/_packager/model_handler.py,sha256=qZB5FVRWZD5wDdm6vuuoXnDFar7i2nHarbe8iZRCLPo,2630
|
140
147
|
snowflake/ml/model/_packager/model_packager.py,sha256=FBuepy_W8ZTd4gsQHLnCj-EhO0H2wvjL556YRKOKsO8,6061
|
141
|
-
snowflake/ml/model/_packager/model_env/model_env.py,sha256=
|
148
|
+
snowflake/ml/model/_packager/model_env/model_env.py,sha256=tWZVz0KOt5CixAk5P317XzdejNPbN3EG_oWlIg-9EC0,19571
|
142
149
|
snowflake/ml/model/_packager/model_handlers/_base.py,sha256=OZhGv7nyej3PqaoBz021uGa40T06d9rv-kDcKUY3VnM,7152
|
143
150
|
snowflake/ml/model/_packager/model_handlers/_utils.py,sha256=8y-LfiBfoj2txQD4Yh_GM0eEEOrm1S0R1149J5z31O0,12572
|
144
151
|
snowflake/ml/model/_packager/model_handlers/catboost.py,sha256=dbI2QizGZS04l6ehgXb3oy5YSXrlwRHz8YENVefEbms,10676
|
@@ -147,10 +154,10 @@ snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py,sha256=dBxSq
|
|
147
154
|
snowflake/ml/model/_packager/model_handlers/keras.py,sha256=JKBCiJEjc41zaoEhsen7rnlyPo2RBuEqG9Vq6JR_Cq0,8696
|
148
155
|
snowflake/ml/model/_packager/model_handlers/lightgbm.py,sha256=DAFMiqpXEUmKqeq5rgn5j6rtuwScNnuiMUBwS4OyC7Q,11074
|
149
156
|
snowflake/ml/model/_packager/model_handlers/mlflow.py,sha256=xSpoXO0UOfBUpzx2W1O8P2WF0Xi1vrZ_J-DdgzQG0o8,9177
|
150
|
-
snowflake/ml/model/_packager/model_handlers/pytorch.py,sha256=
|
157
|
+
snowflake/ml/model/_packager/model_handlers/pytorch.py,sha256=mF-pzH1kqL7egpYA3kP1NVwOLNPYdOViEkywdzRXYJc,9867
|
151
158
|
snowflake/ml/model/_packager/model_handlers/sentence_transformers.py,sha256=sKp-bt-fAnruDMZJ5cN6F_m9dJRY0G2FjJ4-KjNLgcg,11380
|
152
159
|
snowflake/ml/model/_packager/model_handlers/sklearn.py,sha256=dH6S7FhJBqVOWPPXyEhN9Kj9tzDdDrD0phaGacoXQ14,18094
|
153
|
-
snowflake/ml/model/_packager/model_handlers/snowmlmodel.py,sha256=
|
160
|
+
snowflake/ml/model/_packager/model_handlers/snowmlmodel.py,sha256=uvz-hosuNbtcQFprnS8GzjnM8fWULBDMRbXq8immW9Q,18352
|
154
161
|
snowflake/ml/model/_packager/model_handlers/tensorflow.py,sha256=2J2XWYOC70axWaoNJa9aQLMyjLAKIskrT31t_LgqcIk,11350
|
155
162
|
snowflake/ml/model/_packager/model_handlers/torchscript.py,sha256=3IbMoVGlBR-RsQAdYZxjAz1ST-jDMQIyhhdwM5e3NeE,9531
|
156
163
|
snowflake/ml/model/_packager/model_handlers/xgboost.py,sha256=Nj80oPwvg1Ng9Nfdtf1nRxyBdStoyz9CVe4jPqksxuk,12190
|
@@ -160,7 +167,7 @@ snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12
|
|
160
167
|
snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py,sha256=0DxwZtXFgXpxb5LQEAfTUfEFV7zgbG4j3F-oNHLkTgE,769
|
161
168
|
snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py,sha256=MDOAGV6kML9sJh_hnYjnrPH4GtECP5DDCjaRT7NmYpU,768
|
162
169
|
snowflake/ml/model/_packager/model_meta/model_blob_meta.py,sha256=CzY_MhiSshKi9dWzXc4lrC9PysU0FCdHG2oRlz1vCb8,1943
|
163
|
-
snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=
|
170
|
+
snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=CctjNVwdC7ghVIPqbhb62t43SOFsmk2j2FdoZMZ8KXs,20063
|
164
171
|
snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=e4TUbWl998xQOZUzEWvb9CrUyHwGHBGb0TNbtezAeQ0,3707
|
165
172
|
snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py,sha256=8zTgq3n6TBXv7Vcwmf7b9wjK3m-9HHMsY0Qy1Rs-sZ4,1305
|
166
173
|
snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py,sha256=5butM-lyaDRhCAO2BaCOIQufpAxAfSAinsNuGqbbjMU,1029
|
@@ -170,12 +177,12 @@ snowflake/ml/model/_packager/model_runtime/model_runtime.py,sha256=CDjbfBvZNrW6A
|
|
170
177
|
snowflake/ml/model/_packager/model_task/model_task_utils.py,sha256=_nm3Irl5W6Oa8_OnJyp3bLeA9QAbV9ygGCsgHI70GX4,6641
|
171
178
|
snowflake/ml/model/_signatures/base_handler.py,sha256=4CTZKKbg4WIz_CmXjyVy8tKZW-5OFcz0J8XVPHm2dfQ,1269
|
172
179
|
snowflake/ml/model/_signatures/builtins_handler.py,sha256=ItWb8xNDDvIhDlmfUFCHOnUllvKZSTsny7_mRwks_Lc,3135
|
173
|
-
snowflake/ml/model/_signatures/core.py,sha256=
|
180
|
+
snowflake/ml/model/_signatures/core.py,sha256=mmqw9_H3DUDV8lzA2ZoatagJvoS0OsSZipGOuJoZQ4Y,21951
|
174
181
|
snowflake/ml/model/_signatures/dmatrix_handler.py,sha256=ldcWqadJ9fJp9cOaZ3Mn-hTSj8W_laXszlkWb0zpifw,4137
|
175
182
|
snowflake/ml/model/_signatures/numpy_handler.py,sha256=xy7mBEAs9U5eM8F51NLabLbWXRmyQUffhVweO6jmLBA,5461
|
176
183
|
snowflake/ml/model/_signatures/pandas_handler.py,sha256=rYgSaqdh8d-w22e_ZDt4kCFCkPWEhs-KwL9wyoLUacI,10704
|
177
184
|
snowflake/ml/model/_signatures/pytorch_handler.py,sha256=Xy-ITCCX_EgHcyIIqeYSDUIvE2kiqECa8swy1hmohyc,5036
|
178
|
-
snowflake/ml/model/_signatures/snowpark_handler.py,sha256=
|
185
|
+
snowflake/ml/model/_signatures/snowpark_handler.py,sha256=YOBC_Wx-H8bQ967A47nYgqcqLjEA15FbZK69TyAEgvU,7590
|
179
186
|
snowflake/ml/model/_signatures/tensorflow_handler.py,sha256=_yrvMg-w_jJoYuyrGXKPX4Dv7Vt8z1e6xIKiWGuZcc4,5660
|
180
187
|
snowflake/ml/model/_signatures/utils.py,sha256=WLaHpb-4BPB7IBFg2sOkH2N7AojXt2PQR7M8hmtNkXA,17164
|
181
188
|
snowflake/ml/model/models/huggingface_pipeline.py,sha256=7tYyhcqLATtzidWBAnip0qSsUstqtLBaiCUO78qgMvY,10311
|
@@ -326,7 +333,7 @@ snowflake/ml/modeling/metrics/__init__.py,sha256=1lc1DCVNeo7D-gvvCjmpI5tFIIrOsEd
|
|
326
333
|
snowflake/ml/modeling/metrics/classification.py,sha256=E-Dx3xSmZQrF_MXf2BHAjrDstbCXVyU5g6x6CeizosQ,66411
|
327
334
|
snowflake/ml/modeling/metrics/correlation.py,sha256=Roi17Sx5F81VlJaLQTeBAe5qZ7sZYc31UkIuC6z4qkQ,4803
|
328
335
|
snowflake/ml/modeling/metrics/covariance.py,sha256=HxJK1mwyt6lMSg8yonHFQ8IxAEa62MHeb1M3eHEtqlk,4672
|
329
|
-
snowflake/ml/modeling/metrics/metrics_utils.py,sha256=
|
336
|
+
snowflake/ml/modeling/metrics/metrics_utils.py,sha256=XuAjYfL437LCeBY8RMElunk8jgVzemAgln573JzS3Qk,13315
|
330
337
|
snowflake/ml/modeling/metrics/ranking.py,sha256=znjIIRkGqnGzid7BAGhBowGHbau7mTV5gc-RY_HVfoQ,17760
|
331
338
|
snowflake/ml/modeling/metrics/regression.py,sha256=TcqnADqfL9_1XY47HQeul09t3DMPBkPSVtHP5Z9SyV4,26043
|
332
339
|
snowflake/ml/modeling/mixture/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
|
@@ -396,9 +403,8 @@ snowflake/ml/modeling/xgboost/xgb_classifier.py,sha256=SF5F4elDdHmt8Wtth8BIH2Sc6
|
|
396
403
|
snowflake/ml/modeling/xgboost/xgb_regressor.py,sha256=5x-N1Yym0OfF3D7lHNzLByaazc4aoDNVmCQ-TgbYOGg,63580
|
397
404
|
snowflake/ml/modeling/xgboost/xgbrf_classifier.py,sha256=H3SAtx-2mIwS3N_ltBXVHlbLeYun5TtdBBN_goeKrBg,64253
|
398
405
|
snowflake/ml/modeling/xgboost/xgbrf_regressor.py,sha256=Up3rbL7pfeglVKx920UpLhBzHxteXLTWHqIk5WX9iPY,63778
|
399
|
-
snowflake/ml/monitoring/explain_visualize.py,sha256=
|
400
|
-
snowflake/ml/monitoring/model_monitor.py,sha256
|
401
|
-
snowflake/ml/monitoring/model_monitor_version.py,sha256=TlmDJZDE0lCVatRaBRgXIjzDF538nrMIc-zWj9MM_nk,46
|
406
|
+
snowflake/ml/monitoring/explain_visualize.py,sha256=ANxEBUN09OxEyyyRwz4uspOw2wtAZxw75BOlLBX70Bo,15789
|
407
|
+
snowflake/ml/monitoring/model_monitor.py,sha256=-PlqiIc3R2a_eh789KaeApbK-RV4VUfRucWGqjKhOKs,1885
|
402
408
|
snowflake/ml/monitoring/shap.py,sha256=Dp9nYquPEZjxMTW62YYA9g9qUdmCEFxcSk7ejvOP7PE,3597
|
403
409
|
snowflake/ml/monitoring/_client/model_monitor_sql_client.py,sha256=Ke1fsN4347APII-EETEBY7hTydY9MRgQubinCE6eI_U,12700
|
404
410
|
snowflake/ml/monitoring/_client/queries/record_count.ssql,sha256=Bd1uNMwhPKqPyrDd5ug8iY493t9KamJjrlo82OAfmjY,335
|
@@ -406,14 +412,15 @@ snowflake/ml/monitoring/_client/queries/rmse.ssql,sha256=OEJiSStRz9-qKoZaFvmubtY
|
|
406
412
|
snowflake/ml/monitoring/_manager/model_monitor_manager.py,sha256=0jpT1-aRU2tsxSM87I-C2kfJeLevCgM-a-OwU_-VUdI,10302
|
407
413
|
snowflake/ml/monitoring/entities/model_monitor_config.py,sha256=1W6TFTPicC6YAbjD7A0w8WMhWireyUxyuEy0RQXmqyY,1787
|
408
414
|
snowflake/ml/registry/__init__.py,sha256=XdPQK9ejYkSJVrSQ7HD3jKQO0hKq2mC4bPCB6qrtH3U,76
|
409
|
-
snowflake/ml/registry/registry.py,sha256=
|
410
|
-
snowflake/ml/registry/_manager/model_manager.py,sha256=
|
415
|
+
snowflake/ml/registry/registry.py,sha256=D87X05zQG4HRkWX3SF0Zf_2Pn2PwDixx-9i4btuVkBU,34932
|
416
|
+
snowflake/ml/registry/_manager/model_manager.py,sha256=rqtpWL6epksv7k1syOoQUTFKApmSuzArGfsEbEx6tfE,18811
|
411
417
|
snowflake/ml/utils/authentication.py,sha256=E1at4TIAQRDZDsMXSbrKvSJaT6_kSYJBkkr37vU9P2s,2606
|
412
|
-
snowflake/ml/utils/connection_params.py,sha256=
|
418
|
+
snowflake/ml/utils/connection_params.py,sha256=JuadbzKlgDZLZ5vJ9cnyAiSitvZT9jGSfSSNjIY9P1Q,8282
|
419
|
+
snowflake/ml/utils/html_utils.py,sha256=L4pzpvFd20SIk4rie2kTAtcQjbxBHfjKmxonMAT2OoA,7665
|
413
420
|
snowflake/ml/utils/sparse.py,sha256=zLBNh-ynhGpKH5TFtopk0YLkHGvv0yq1q-sV59YQKgg,3819
|
414
421
|
snowflake/ml/utils/sql_client.py,sha256=pSe2od6Pkh-8NwG3D-xqN76_uNf-ohOtVbT55HeQg1Y,668
|
415
|
-
snowflake_ml_python-1.
|
416
|
-
snowflake_ml_python-1.
|
417
|
-
snowflake_ml_python-1.
|
418
|
-
snowflake_ml_python-1.
|
419
|
-
snowflake_ml_python-1.
|
422
|
+
snowflake_ml_python-1.9.0.dist-info/licenses/LICENSE.txt,sha256=PdEp56Av5m3_kl21iFkVTX_EbHJKFGEdmYeIO1pL_Yk,11365
|
423
|
+
snowflake_ml_python-1.9.0.dist-info/METADATA,sha256=H98YP36JCenEz7IdiYeStZWdsP0ourCqqBFD2RZ1_sg,87105
|
424
|
+
snowflake_ml_python-1.9.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
425
|
+
snowflake_ml_python-1.9.0.dist-info/top_level.txt,sha256=TY0gFSHKDdZy3THb0FGomyikWQasEGldIR1O0HGOHVw,10
|
426
|
+
snowflake_ml_python-1.9.0.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
SNOWFLAKE_ML_MONITORING_MIN_VERSION = "1.7.0"
|
File without changes
|
{snowflake_ml_python-1.8.5.dist-info → snowflake_ml_python-1.9.0.dist-info}/licenses/LICENSE.txt
RENAMED
File without changes
|
File without changes
|