snowflake-ml-python 1.5.4__py3-none-any.whl → 1.6.1__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 (100) hide show
  1. snowflake/cortex/__init__.py +2 -0
  2. snowflake/cortex/_classify_text.py +36 -0
  3. snowflake/cortex/_complete.py +66 -35
  4. snowflake/cortex/_util.py +4 -4
  5. snowflake/ml/_internal/env_utils.py +11 -5
  6. snowflake/ml/_internal/exceptions/modeling_error_messages.py +4 -1
  7. snowflake/ml/_internal/lineage/lineage_utils.py +4 -4
  8. snowflake/ml/_internal/telemetry.py +26 -2
  9. snowflake/ml/_internal/utils/pkg_version_utils.py +8 -22
  10. snowflake/ml/data/_internal/arrow_ingestor.py +284 -0
  11. snowflake/ml/data/data_connector.py +186 -0
  12. snowflake/ml/data/data_ingestor.py +45 -0
  13. snowflake/ml/data/data_source.py +23 -0
  14. snowflake/ml/data/ingestor_utils.py +62 -0
  15. snowflake/ml/data/torch_dataset.py +33 -0
  16. snowflake/ml/dataset/dataset.py +1 -13
  17. snowflake/ml/dataset/dataset_metadata.py +3 -1
  18. snowflake/ml/dataset/dataset_reader.py +23 -117
  19. snowflake/ml/feature_store/access_manager.py +7 -1
  20. snowflake/ml/feature_store/entity.py +19 -2
  21. snowflake/ml/feature_store/examples/airline_features/entities.py +16 -0
  22. snowflake/ml/feature_store/examples/airline_features/features/plane_features.py +31 -0
  23. snowflake/ml/feature_store/examples/airline_features/features/weather_features.py +42 -0
  24. snowflake/ml/feature_store/examples/airline_features/source.yaml +7 -0
  25. snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +20 -0
  26. snowflake/ml/feature_store/examples/citibike_trip_features/features/station_feature.py +37 -0
  27. snowflake/ml/feature_store/examples/citibike_trip_features/features/trip_feature.py +30 -0
  28. snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +7 -0
  29. snowflake/ml/feature_store/examples/example_helper.py +278 -0
  30. snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py +12 -0
  31. snowflake/ml/feature_store/examples/new_york_taxi_features/features/location_features.py +44 -0
  32. snowflake/ml/feature_store/examples/new_york_taxi_features/features/trip_features.py +36 -0
  33. snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml +9 -0
  34. snowflake/ml/feature_store/examples/source_data/airline.yaml +4 -0
  35. snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +36 -0
  36. snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +29 -0
  37. snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml +4 -0
  38. snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +32 -0
  39. snowflake/ml/feature_store/examples/wine_quality_features/entities.py +14 -0
  40. snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py +36 -0
  41. snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py +24 -0
  42. snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +8 -0
  43. snowflake/ml/feature_store/feature_store.py +637 -76
  44. snowflake/ml/feature_store/feature_view.py +316 -9
  45. snowflake/ml/fileset/stage_fs.py +18 -10
  46. snowflake/ml/lineage/lineage_node.py +1 -1
  47. snowflake/ml/model/_client/model/model_impl.py +11 -2
  48. snowflake/ml/model/_client/model/model_version_impl.py +171 -20
  49. snowflake/ml/model/_client/ops/model_ops.py +105 -27
  50. snowflake/ml/model/_client/ops/service_ops.py +121 -0
  51. snowflake/ml/model/_client/service/model_deployment_spec.py +95 -0
  52. snowflake/ml/model/_client/service/model_deployment_spec_schema.py +31 -0
  53. snowflake/ml/model/_client/sql/model_version.py +13 -4
  54. snowflake/ml/model/_client/sql/service.py +129 -0
  55. snowflake/ml/model/_deploy_client/image_builds/inference_server/main.py +2 -3
  56. snowflake/ml/model/_model_composer/model_composer.py +14 -14
  57. snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +33 -17
  58. snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +5 -1
  59. snowflake/ml/model/_model_composer/model_method/function_generator.py +3 -3
  60. snowflake/ml/model/_model_composer/model_method/infer_function.py_template +3 -32
  61. snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +3 -27
  62. snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template +3 -32
  63. snowflake/ml/model/_model_composer/model_method/model_method.py +5 -2
  64. snowflake/ml/model/_packager/model_env/model_env.py +7 -2
  65. snowflake/ml/model/_packager/model_handlers/_base.py +30 -3
  66. snowflake/ml/model/_packager/model_handlers/_utils.py +58 -1
  67. snowflake/ml/model/_packager/model_handlers/catboost.py +52 -3
  68. snowflake/ml/model/_packager/model_handlers/custom.py +6 -2
  69. snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py +9 -5
  70. snowflake/ml/model/_packager/model_handlers/lightgbm.py +80 -3
  71. snowflake/ml/model/_packager/model_handlers/llm.py +7 -3
  72. snowflake/ml/model/_packager/model_handlers/mlflow.py +8 -3
  73. snowflake/ml/model/_packager/model_handlers/pytorch.py +8 -3
  74. snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +8 -3
  75. snowflake/ml/model/_packager/model_handlers/sklearn.py +87 -4
  76. snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +7 -2
  77. snowflake/ml/model/_packager/model_handlers/tensorflow.py +9 -4
  78. snowflake/ml/model/_packager/model_handlers/torchscript.py +8 -3
  79. snowflake/ml/model/_packager/model_handlers/xgboost.py +71 -3
  80. snowflake/ml/model/_packager/model_meta/model_meta.py +32 -2
  81. snowflake/ml/model/_packager/model_meta/model_meta_schema.py +19 -0
  82. snowflake/ml/model/_packager/model_packager.py +2 -1
  83. snowflake/ml/model/_packager/model_runtime/model_runtime.py +7 -7
  84. snowflake/ml/model/model_signature.py +4 -4
  85. snowflake/ml/model/type_hints.py +2 -0
  86. snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +1 -1
  87. snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py +13 -1
  88. snowflake/ml/modeling/framework/base.py +28 -19
  89. snowflake/ml/modeling/impute/simple_imputer.py +26 -0
  90. snowflake/ml/modeling/pipeline/pipeline.py +7 -4
  91. snowflake/ml/registry/_manager/model_manager.py +16 -2
  92. snowflake/ml/registry/registry.py +100 -13
  93. snowflake/ml/utils/sql_client.py +22 -0
  94. snowflake/ml/version.py +1 -1
  95. {snowflake_ml_python-1.5.4.dist-info → snowflake_ml_python-1.6.1.dist-info}/METADATA +81 -2
  96. {snowflake_ml_python-1.5.4.dist-info → snowflake_ml_python-1.6.1.dist-info}/RECORD +99 -66
  97. {snowflake_ml_python-1.5.4.dist-info → snowflake_ml_python-1.6.1.dist-info}/WHEEL +1 -1
  98. snowflake/ml/_internal/lineage/data_source.py +0 -10
  99. {snowflake_ml_python-1.5.4.dist-info → snowflake_ml_python-1.6.1.dist-info}/LICENSE.txt +0 -0
  100. {snowflake_ml_python-1.5.4.dist-info → snowflake_ml_python-1.6.1.dist-info}/top_level.txt +0 -0
@@ -1,18 +1,19 @@
1
- snowflake/cortex/__init__.py,sha256=CDjClvxuVO5feVi3EgdYMU0RIO89UO72g-hqjvfPiI4,400
2
- snowflake/cortex/_complete.py,sha256=79WiddAYdMs8m2tHnRJ3OV01WdxYu6yZsW8PEuvsh5Y,10246
1
+ snowflake/cortex/__init__.py,sha256=Xw7skAa3Eeo0pq2q8gwekpvP_yZbHetNjB2mC1gqnsM,477
2
+ snowflake/cortex/_classify_text.py,sha256=lKV_J0TMDgaDCytpHsi8zo2N-aiWW5I8t1PcYiuNovo,1297
3
+ snowflake/cortex/_complete.py,sha256=UD9WB9w7VIpEfXu0iylYfcnmBxNScTZdLBbdA4Y3O64,11309
3
4
  snowflake/cortex/_extract_answer.py,sha256=-ZvpnI6i4QmCkgxIEC8QGPlOQzKMVO5abgouXMf6wTw,1301
4
5
  snowflake/cortex/_sentiment.py,sha256=yhV4T9GW-tcxkg_OYd-hbYHsbjHIYzRjbsmYuzXMPzU,1189
5
6
  snowflake/cortex/_sse_client.py,sha256=_GGmxskEQPVJ2bE3LHySnPFl29CP4YGM4_xmR_Kk-WA,2485
6
7
  snowflake/cortex/_summarize.py,sha256=raDFAb31penzEtOtqQv8wQS69MsRt_B75VQ5cDHegbE,1018
7
8
  snowflake/cortex/_translate.py,sha256=QqngDJ9ijB5wCObSVWMfY2FQzk4S02M85PEAKr_Alrk,1363
8
- snowflake/cortex/_util.py,sha256=5G8N3iLlyEN_cqRKEabW2em6x8y768XFxrcFurrDMX0,2111
9
- snowflake/ml/version.py,sha256=iIDybYLB9gFebNDKdRllkCJ7KAxZctaCoWfqMEK3Qu4,16
9
+ snowflake/cortex/_util.py,sha256=5Y_hwZxW_Tygv8TNO7f5b3jvG9HeRwO8l9wv5sZOjCE,2150
10
+ snowflake/ml/version.py,sha256=rQH70QeFNTuY0lzDGmsyz-fsdJFWxWUO1P1iJBAR12k,16
10
11
  snowflake/ml/_internal/env.py,sha256=kCrJTRnqQ97VGUVI1cWUPD8HuBWeL5vOOtwUR0NB9Mg,161
11
- snowflake/ml/_internal/env_utils.py,sha256=HK5Ug5-gChiUv_z84BDjAuE9eHImrWRsX4Y7wJFApfk,27758
12
+ snowflake/ml/_internal/env_utils.py,sha256=cNh9cMO1tEl2jf7VPIJy-st2O625DkDiELTH6dqqW3Y,28033
12
13
  snowflake/ml/_internal/file_utils.py,sha256=OyXHv-UcItiip1YgLnab6etonUQkYuyDtmplZA0CaoU,13622
13
14
  snowflake/ml/_internal/init_utils.py,sha256=U-oPOtyVf22hCwDH_CH2uDr9yuN6Mr3kwQ_yRAs1mcM,2696
14
15
  snowflake/ml/_internal/migrator_utils.py,sha256=k3erO8x3YJcX6nkKeyJAUNGg1qjE3RFmD-W6dtLzIH0,161
15
- snowflake/ml/_internal/telemetry.py,sha256=2X9qQWkxKVTp0JKkgQr7tzCpu_Qeiy9p9zrRpnACckE,23843
16
+ snowflake/ml/_internal/telemetry.py,sha256=-1girD2luwy0PAfBtobuaRxQZr2YNW-bxYnAw2nFpe4,24702
16
17
  snowflake/ml/_internal/type_utils.py,sha256=0AjimiQoAPHGnpLV_zCR6vlMR5lJ8CkZkKFwiUHYDCo,2168
17
18
  snowflake/ml/_internal/container_services/image_registry/credential.py,sha256=nShNgIb2yNu9w6vceOY3aSgjpuOoi0spWWmvgEafPSk,3291
18
19
  snowflake/ml/_internal/container_services/image_registry/http_client.py,sha256=JAkZmI9szd3BeAB6bpSlfCWAmQOSGKVO3zrV_0QP6-I,5448
@@ -25,20 +26,19 @@ snowflake/ml/_internal/exceptions/error_messages.py,sha256=vF9XOWJoBuKvFxBkGcDel
25
26
  snowflake/ml/_internal/exceptions/exceptions.py,sha256=ub0fthrNTVoKhpj1pXnKRfO1Gqnmbe7wY51vaoEOp5M,1653
26
27
  snowflake/ml/_internal/exceptions/fileset_error_messages.py,sha256=dqPpRu0cKyQA_0gahvbizgQBTwNhnwveN286JrJLvi8,419
27
28
  snowflake/ml/_internal/exceptions/fileset_errors.py,sha256=pHwY7f5c6JH-RZDtkiWy8nICHKy4T5vvWs5cq5rPD_4,1030
28
- snowflake/ml/_internal/exceptions/modeling_error_messages.py,sha256=q1Nh7KvnUebdKCwwAPmotdAVS578CgAXcfDOfKoweVw,665
29
+ snowflake/ml/_internal/exceptions/modeling_error_messages.py,sha256=M1s_PNHcOGlSDKD2kvSUQYsSaKHdHdnE74609LvF27c,749
29
30
  snowflake/ml/_internal/exceptions/sql_error_codes.py,sha256=aEI3-gW7FeNahoPncdOaGGRBmPJmkCHK-a1o2e3c3PI,206
30
31
  snowflake/ml/_internal/human_readable_id/adjectives.txt,sha256=5o4MbVeHoELAqyLpyuKleOKR47jPjC_nKoziOIZMwT0,804
31
32
  snowflake/ml/_internal/human_readable_id/animals.txt,sha256=GDLzMwzxiL07PhIMxw4t89bhYqqg0bQfPiuQT8VNeME,837
32
33
  snowflake/ml/_internal/human_readable_id/hrid_generator.py,sha256=LYWB86qZgsVBvnc6Q5VjfDOmnGSQU3cTRKfId_nJSPY,1341
33
34
  snowflake/ml/_internal/human_readable_id/hrid_generator_base.py,sha256=D1yoVG1vmAFUhWQ5xCRRU6HCCBPbXHpOXagFd0jK0O8,4519
34
- snowflake/ml/_internal/lineage/data_source.py,sha256=D24FdR6Wq_PdUuCsBDvSMCr5CfHqpMamrc8-F5iZVJ0,214
35
- snowflake/ml/_internal/lineage/lineage_utils.py,sha256=-eO01yjER2qGYvaS-2SD9oxmWN52vrk3VEWlduHZO78,3415
35
+ snowflake/ml/_internal/lineage/lineage_utils.py,sha256=kxWW7fkSf1HiUQSks3VlzWyntpt4o_pbptXcpQHtnk8,3432
36
36
  snowflake/ml/_internal/utils/formatting.py,sha256=PswZ6Xas7sx3Ok1MBLoH2o7nfXOxaJqpUPg_UqXrQb8,3676
37
37
  snowflake/ml/_internal/utils/identifier.py,sha256=jlvTl2mjzvuMgNgTU2jBlfQ6TR21t3Q1C-mujeO-Rtc,11375
38
38
  snowflake/ml/_internal/utils/import_utils.py,sha256=eexwIe7auT17s4aVxAns7se0_K15rcq3O17MkIvDpPI,2068
39
39
  snowflake/ml/_internal/utils/log_stream_processor.py,sha256=pBf8ycEamhHjEzUT55Rx_tFqSkYRpD5Dt71Mx9ZdaS8,1001
40
40
  snowflake/ml/_internal/utils/parallelize.py,sha256=Q6_-P2t4DoYNO8DyC1kOl7H3qNL-bUK6EgtlQ_b5ThY,4534
41
- snowflake/ml/_internal/utils/pkg_version_utils.py,sha256=tpu6B0HKpbT-svvU2Pbz7zNqzg-jgoSmwYvtTzXYyzw,5857
41
+ snowflake/ml/_internal/utils/pkg_version_utils.py,sha256=FwdLHFhxi3CAQQduGjFavEBmkD9Ra6ZTkt6Eub-WoSA,5168
42
42
  snowflake/ml/_internal/utils/query_result_checker.py,sha256=h1nbUImdB9lSNCON3uIA0xCm8_JrS-TE-jQXJJs9WfU,10668
43
43
  snowflake/ml/_internal/utils/result.py,sha256=59Sz6MvhjakUNiONwg9oi2544AmORCJR3XyWTxY2vP0,2405
44
44
  snowflake/ml/_internal/utils/retryable_http.py,sha256=1GCuQkTGO4sX-VRbjy31e4_VgUjqsp5Lh2v5tSJjVK8,1321
@@ -50,39 +50,71 @@ snowflake/ml/_internal/utils/sql_identifier.py,sha256=ZcRjSfpovsqaY7S8bFB6z44z28
50
50
  snowflake/ml/_internal/utils/table_manager.py,sha256=jHGfl0YSqhFLL7DOOQkjUMzTmLkqFDIM7Gs0LBQw8BM,4384
51
51
  snowflake/ml/_internal/utils/temp_file_utils.py,sha256=0-HTjXdxVt0kE6XcgyvRvY0btflWlmotP2bMXVpFJPA,1553
52
52
  snowflake/ml/_internal/utils/uri.py,sha256=pvskcWoeS0M66DaU2XlJzK9wce55z4J5dn5kTy_-Tqs,2828
53
+ snowflake/ml/data/data_connector.py,sha256=I_cFprDeT55MzJh6mVZHBvktMicHC33N4DU1kFcKklQ,7534
54
+ snowflake/ml/data/data_ingestor.py,sha256=Nrj5l0cVnoXWI6Ilig-r_pGS902xkZATbqh3OsV53NI,1017
55
+ snowflake/ml/data/data_source.py,sha256=dRemXGi_HHQdn6gaNkxxGJixnQPuUYFDP8NBjmB_ZMk,518
56
+ snowflake/ml/data/ingestor_utils.py,sha256=oeUb631XgG7XBJxoqeGcY-ormEjyESj_Iu74Vc6GQqQ,2352
57
+ snowflake/ml/data/torch_dataset.py,sha256=OFB0X-p121DT5VPy614_Vt5alfBP3Szj2zLiVFIPRC4,1190
58
+ snowflake/ml/data/_internal/arrow_ingestor.py,sha256=hjk0jbf-QOGAr-PE9Vwu8MNVPd9lc8bAkM51QzyCNqE,12157
53
59
  snowflake/ml/dataset/__init__.py,sha256=nESj7YEI2u90Oxyit_hKCQMWb7N1BlEM3Ho2Fm0MfHo,274
54
- snowflake/ml/dataset/dataset.py,sha256=bRaUgiqSSHfVsET6-rm60jSdEf7ZDAKgFD-Zqsquh_c,21596
60
+ snowflake/ml/dataset/dataset.py,sha256=NNwEyfHwyZ0ZRwp6poBxZE982RjAFUfN645yDFTdmUI,21188
55
61
  snowflake/ml/dataset/dataset_factory.py,sha256=Fym4ICK-B1j6Om4ENwWxEvryq3ZKoCslBSZDBenmjOo,1615
56
- snowflake/ml/dataset/dataset_metadata.py,sha256=lvaYd1sNOgWcXD1q_-J7fQZ0ndOC8guR9IgKpChBcFA,3992
57
- snowflake/ml/dataset/dataset_reader.py,sha256=TKitOC7YBk3yZ9axL9nI1paSI2ooSqBn4zw5eOYpCGY,8061
62
+ snowflake/ml/dataset/dataset_metadata.py,sha256=tWR3fa2WG3Kj2btKMbg51l5jX68qm1rfXRswU0IDYTg,4157
63
+ snowflake/ml/dataset/dataset_reader.py,sha256=e-IRbxbxFfNbsglmqtzhV_wYFsEflBW6-U_krbfXPpw,4371
58
64
  snowflake/ml/feature_store/__init__.py,sha256=VKBVkS050WNF8rcqNqwFfNXa_B9GZjcUpuibOGsUSls,423
59
- snowflake/ml/feature_store/access_manager.py,sha256=QqAgOQ2r2JxR4CXuFiCeQ8JWk-YdPCC_QrM1boa5nsU,10607
60
- snowflake/ml/feature_store/entity.py,sha256=dCpzLC3jrt5wDHqFYJXbAYkMiZ0zEmiVDMGkks6MXkA,3378
61
- snowflake/ml/feature_store/feature_store.py,sha256=RfwlPLFJgYlx3mX2PBdztFdUabpLQw4AU5UjmrC-45k,87179
62
- snowflake/ml/feature_store/feature_view.py,sha256=YcAKOv2B8jZpEJVzIObMdiU1s8WA7Lfpzm0zxH3Oers,21200
65
+ snowflake/ml/feature_store/access_manager.py,sha256=WBRRzmUUB_K9_xX6duv4tFExb7d4RksO_7FZjzEtoww,10696
66
+ snowflake/ml/feature_store/entity.py,sha256=A65FOGlljREUG8IRMSN84v1x2uTeVGCM4NqKXO2Ui8w,4059
67
+ snowflake/ml/feature_store/feature_store.py,sha256=Yqpypd-Mn0SyyRXNZ69zPKu02wydDl3Yie78KD9Td-E,112134
68
+ snowflake/ml/feature_store/feature_view.py,sha256=nUBO5niA-eZYkWe4-XrnMt5gIZ6MlGsqT_SKJX78HF4,34226
69
+ snowflake/ml/feature_store/examples/example_helper.py,sha256=hVaPrjtMsMxJ804vTzjrI5cvyyPLx2ExZi2P9Qfg4z0,12248
70
+ snowflake/ml/feature_store/examples/airline_features/entities.py,sha256=V2xVZpHFgGA92Kyd9hCWa2YoiRhH5m6HAgvnh126Nqo,463
71
+ snowflake/ml/feature_store/examples/airline_features/source.yaml,sha256=kzl8ukOK8OuSPsxChEgJ9SPyPnzC-fPHqZC4O6aqd5o,247
72
+ snowflake/ml/feature_store/examples/airline_features/features/plane_features.py,sha256=qVYEGKt7DMioZvf20b3-RNtJOQVYUyWANCdk-CdOyuU,1015
73
+ snowflake/ml/feature_store/examples/airline_features/features/weather_features.py,sha256=A5hkWOQ3CTQfaJaUQ1VsB2Ne8LmIrM9DPyrMX0EOHvI,1634
74
+ snowflake/ml/feature_store/examples/citibike_trip_features/entities.py,sha256=SE8Zx3xqFJk65Tqori4nh0KOPwEY3baMoFsVAYM1e7c,449
75
+ snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml,sha256=gutDfijhGkBu1w4r1286JnuO4EhbuRPKwoHisYlt8Yw,229
76
+ snowflake/ml/feature_store/examples/citibike_trip_features/features/station_feature.py,sha256=3I95LMBEo5lXlaztPhjF_MVUmYXUZ9Xaz8ZmQpT0Cxk,1369
77
+ snowflake/ml/feature_store/examples/citibike_trip_features/features/trip_feature.py,sha256=LChqltsCBwD8diJN-Qno7a_gOBTwz6qCPm6qTmYSICc,1194
78
+ snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py,sha256=J5oragmf6UvwruMjHhtrlzcBP-rA3Fyqv9VOJAT4goU,396
79
+ snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml,sha256=0DShPCG972klJjHod0qkXrT7zkw45B3YCZs5U-x4Pv4,338
80
+ snowflake/ml/feature_store/examples/new_york_taxi_features/features/location_features.py,sha256=ycjBkYxOnvpmToGsoTwohBEPgzzlZnm2wkDeYMUKJKY,1728
81
+ snowflake/ml/feature_store/examples/new_york_taxi_features/features/trip_features.py,sha256=RgDl2KX0y8f3B_yKNg6Tf64CsG6_ItcWoCFWScXhjz4,1273
82
+ snowflake/ml/feature_store/examples/source_data/airline.yaml,sha256=CZV416oTTM6hWCK2GPdb38Q8AR3CGIxAZwXrbP9KT_E,152
83
+ snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml,sha256=OaQwNzUHasgGgy8oIOHVRJ5tg7nnKs11hqDSZYs5-U0,923
84
+ snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml,sha256=ENAIRcrRmdIplKJP8A5nhXdWSQRNTeQH4ghIT9boE8o,711
85
+ snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml,sha256=1PkEybh_ieP-HZme9YPuAf6-pL4D6-6dzNlqdZpH8fk,142
86
+ snowflake/ml/feature_store/examples/source_data/winequality_red.yaml,sha256=03qIwx_7KA-56HwKqshSOFCGOvLnQibR_Iv2zprz_Vs,741
87
+ snowflake/ml/feature_store/examples/wine_quality_features/entities.py,sha256=Hk593l6dqruvgcPRcSGKf2UGVQ9CPxmD547UuZ7QCnU,294
88
+ snowflake/ml/feature_store/examples/wine_quality_features/source.yaml,sha256=dPs0nzf4poLhxDVEydb2Ff3mpRCWQ_L4jCoPO7HV4QA,241
89
+ snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py,sha256=fqZWuCjVQ_AX0gIO-HCjzDMVwj749e23Lx2Mg25gX88,1432
90
+ snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py,sha256=xtq3BdvVqTkP17aw0aCizF2EHmmBVeZOD7UMul2z4hs,990
63
91
  snowflake/ml/fileset/embedded_stage_fs.py,sha256=AYa0vRiqQTvi1Z86tAeID_Mxl3kgxbhi35A0o_-DJF0,6003
64
92
  snowflake/ml/fileset/fileset.py,sha256=yfYFZL2b1vYqL0zs6m9_hmjzyP3TAGTINNz6hF1yalQ,26196
65
93
  snowflake/ml/fileset/parquet_parser.py,sha256=sjyRB59cGBzSzvbcYLvu_ApMPtrR-zwZsQkxekMR4FA,6884
66
94
  snowflake/ml/fileset/sfcfs.py,sha256=a77UJFz5Ve9s_26QpcOOoFNOBIKN91KmhYVTQkafn0c,15344
67
95
  snowflake/ml/fileset/snowfs.py,sha256=uF5QluYtiJ-HezGIhF55dONi3t0E6N7ByaVAIAlM3nk,5133
68
- snowflake/ml/fileset/stage_fs.py,sha256=Xo7oijoVAbpdWNF_bXsxeXJ-6DBwQ15lrUY7-kJTo4A,19478
96
+ snowflake/ml/fileset/stage_fs.py,sha256=9v6TybA8pbQ9n1vp6Sh4Ds2LwPW2M_EGoAhGsBEeLVs,20068
69
97
  snowflake/ml/fileset/tf_dataset.py,sha256=K8jafWBsyRaIYEmxaYAYNDj3dLApK82cg0Mlx52jX8I,3849
70
98
  snowflake/ml/fileset/torch_datapipe.py,sha256=O2irHckqLzPDnXemEbAEjc3ZCVnLufPdPbt9WKYiBp0,2386
71
99
  snowflake/ml/lineage/__init__.py,sha256=8p1YGynC-qOxAZ8jZX2z84Reg5bv1NoJMoJmNJCrzI4,65
72
- snowflake/ml/lineage/lineage_node.py,sha256=7GwA7XZzKt93XVo1RyzjOQLev3Phs0afAo_v2EpD20k,5535
100
+ snowflake/ml/lineage/lineage_node.py,sha256=ac_TYngOt7Q_o_JgZQWysREyAzy12j3Q15xgMkAltgk,5576
73
101
  snowflake/ml/model/__init__.py,sha256=KgZmgLHXmkmEU5Q7pzYQlpfvIll4SRTSiT9s4RjeleI,393
74
102
  snowflake/ml/model/_api.py,sha256=u2VUcZ0OK4b8DtlqB_IMaT8EWt_onRVaw3VaWAm4OA4,22329
75
103
  snowflake/ml/model/custom_model.py,sha256=Nu9kNa9pDFXmLN1Ipv4bc_htG0lPeWKD0AQ2Ma2-wK0,9172
76
104
  snowflake/ml/model/deploy_platforms.py,sha256=r6cS3gTNWG9i4P00fHehY6Q8eBiNva6501OTyp_E5m0,144
77
- snowflake/ml/model/model_signature.py,sha256=ZnkgY-6BL7gNGRPXJTgK0EbZ6RQ7hDJjiDxsPNXHKi4,29453
78
- snowflake/ml/model/type_hints.py,sha256=MSQ0ZnrIZ4ViCrihE8JE-PeQ5qG2BE9CiKzQ1n8ZTfk,14040
79
- snowflake/ml/model/_client/model/model_impl.py,sha256=QC3h0v0kfbfUIia2z6f0AE2b1SRI8OFxxhOxd1wJeOI,15036
80
- snowflake/ml/model/_client/model/model_version_impl.py,sha256=g64uvaCbowz4b-b53DRzV-lX9KJA9bTiW5GvpqBHRH8,20850
105
+ snowflake/ml/model/model_signature.py,sha256=Iwll4_VbcDtDX0otGS_NVd0gKSdcHQ_OJbZxNNGMRFg,29473
106
+ snowflake/ml/model/type_hints.py,sha256=LD8BVvh6vJy9jvnDpzuBkHZFUXmwPqRNCwzFKVOriGM,14133
107
+ snowflake/ml/model/_client/model/model_impl.py,sha256=pqjK8mSZIQJ_30tRWWFPIo8X35InSVoAunXlQNtSJEM,15369
108
+ snowflake/ml/model/_client/model/model_version_impl.py,sha256=8C8PXBYZEp11ZjLxdEunzyHp6QKRTnz9cu95jERomuI,27873
81
109
  snowflake/ml/model/_client/ops/metadata_ops.py,sha256=7cGx8zYzye2_cvZnyGxoukPtT6Q-Kexd-s4yeZmpmj8,4890
82
- snowflake/ml/model/_client/ops/model_ops.py,sha256=-QMtGhdi4qdmro7Dub-bt6ZkZ_XSTVQi8a7EFpH24r4,33470
110
+ snowflake/ml/model/_client/ops/model_ops.py,sha256=_Mj9ULvXq8cRd65ELcvj08XIZ4uBa0Pv51K5rQI3Wdc,36749
111
+ snowflake/ml/model/_client/ops/service_ops.py,sha256=U1-dHCXLZuiJFxfhpOGx_vsld4zfEYXqsJmYJ6x-Qak,4898
112
+ snowflake/ml/model/_client/service/model_deployment_spec.py,sha256=vw9HQtAipGutgDZJ7JcBRrJg2ufL75qqSvNTplW230Q,4103
113
+ snowflake/ml/model/_client/service/model_deployment_spec_schema.py,sha256=3LrA8UiLWkwzzaxzdo5RCHsY-3Az5dCXy_a8qBrPbTs,762
83
114
  snowflake/ml/model/_client/sql/_base.py,sha256=pN5hxyC0gGzEJgZh2FBHLU0Y6iIoLcebHoE7wTpoUZQ,1252
84
115
  snowflake/ml/model/_client/sql/model.py,sha256=kdglOjmrOsFZYoEu63-BfyLXgnWBe7RrwkknalDKDkQ,5783
85
- snowflake/ml/model/_client/sql/model_version.py,sha256=lguEWCQDdbc_QsUW7FNv-mO2bi5a0BEQSnrDB-fYheE,19989
116
+ snowflake/ml/model/_client/sql/model_version.py,sha256=hkxmpUR0fiVcecnsJ3W-zkwREr6cV_AQggpMJap2os8,20366
117
+ snowflake/ml/model/_client/sql/service.py,sha256=kpjjOVqhmY6N-24vIQ1ICxCAjcHYe0mbyG-IACqcUGk,5376
86
118
  snowflake/ml/model/_client/sql/stage.py,sha256=hrCh9P9F4l5R0hLr2r-wLDIEc4XYHMFdX1wNRveMVt0,819
87
119
  snowflake/ml/model/_client/sql/tag.py,sha256=pwwrcyPtSnkUfDzL3M8kqM0KSx7CaTtgty3HDhVC9vg,4345
88
120
  snowflake/ml/model/_deploy_client/image_builds/base_image_builder.py,sha256=clCaoO0DZam4X79UtQV1ZuMQtTezAJkhLu9ViAX18Xk,302
@@ -90,7 +122,7 @@ snowflake/ml/model/_deploy_client/image_builds/client_image_builder.py,sha256=G7
90
122
  snowflake/ml/model/_deploy_client/image_builds/docker_context.py,sha256=7uhAJsHsk7LbiZv_w3xOCE2O88rTUVnS3_B6OAz-JG4,6129
91
123
  snowflake/ml/model/_deploy_client/image_builds/gunicorn_run.sh,sha256=1pntXgqFthW4gdomqlyWx9CJF-Wqv8VMoLkgSiTHEJ0,1578
92
124
  snowflake/ml/model/_deploy_client/image_builds/server_image_builder.py,sha256=SNXqUBkI_tPAgdnLrQW10smG_7O_DGwAuK3dLFE-wJA,10095
93
- snowflake/ml/model/_deploy_client/image_builds/inference_server/main.py,sha256=xtEm1fklRGR9euMCwR9FsAL38LSnBqDWkIVv_stnRIw,11021
125
+ snowflake/ml/model/_deploy_client/image_builds/inference_server/main.py,sha256=dC-02DfGfij5IwnhuVxj-oN_a85n54o7txNLL2_r4Z4,10977
94
126
  snowflake/ml/model/_deploy_client/image_builds/templates/dockerfile_template,sha256=8jYNmQfGw7bJgHCEd3iK9Tj68ne_x5U0hWhgKqPxEXw,1783
95
127
  snowflake/ml/model/_deploy_client/image_builds/templates/image_build_job_spec_template,sha256=g8mEvpJmwQ9OnAkZomeErPQ6h4OJ5NdtRCoylyIp7f4,1225
96
128
  snowflake/ml/model/_deploy_client/image_builds/templates/kaniko_shell_script_template,sha256=nEK7fqo_XHJEVKLNe--EkES4oiDm7M5E9CacxGItFU0,3633
@@ -103,43 +135,43 @@ snowflake/ml/model/_deploy_client/utils/constants.py,sha256=Ip_2GgsCYRXj_mD4MUdk
103
135
  snowflake/ml/model/_deploy_client/utils/snowservice_client.py,sha256=k0SulzWdttRvJkyuXM59aluEVgQg8Qd7XZUUpEBKuO4,11671
104
136
  snowflake/ml/model/_deploy_client/warehouse/deploy.py,sha256=yZR9M76oh6JbPQJHb6t3wGO3wuD04w0zLEXiEyZW_tg,8358
105
137
  snowflake/ml/model/_deploy_client/warehouse/infer_template.py,sha256=1THMd6JX1nW-OozECyxXbn9HJXDgNBUIdhfC9ODPDWY,3011
106
- snowflake/ml/model/_model_composer/model_composer.py,sha256=LOqvBYHTGSlCkBOnwf6T_gqxJXh76OptHF_tOHvfvac,7731
107
- snowflake/ml/model/_model_composer/model_manifest/model_manifest.py,sha256=m-pRrR05L1MX20SHeehJccIr3U0_mEohhNEFL1Rr_OM,5899
108
- snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py,sha256=PsRVrOt15Zr-t2K64_GK5aHjTWN4yLgixRqaYchY2rA,2530
109
- snowflake/ml/model/_model_composer/model_method/function_generator.py,sha256=4jeAtbsZFbD6jhonr1tIKuNO5WCa5R6lu5s_ZTAauUg,2561
110
- snowflake/ml/model/_model_composer/model_method/infer_function.py_template,sha256=QpQXAIKDs9cotLOL0JdI6xLet1QJU7KtaF7O10nDQcs,2291
111
- snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template,sha256=4m-nOYWr35tHw4FdjSLlJL7Qr-cr4xdZiUlRnXFNDLk,2266
112
- snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template,sha256=L_aWZ0hRHgcbGXlM-qeqVCjJr4OrB18qKqVA4BydNRg,2291
113
- snowflake/ml/model/_model_composer/model_method/model_method.py,sha256=5N_j_HsOhrZkxYiosUlBexB2Pak9KuSPd823M3y0m2Y,6782
138
+ snowflake/ml/model/_model_composer/model_composer.py,sha256=U4n6S4J4YtLxkNVurOhziH6p1HacOCHjYgK__gAFtKQ,7850
139
+ snowflake/ml/model/_model_composer/model_manifest/model_manifest.py,sha256=wrcEFMzybkVQZNsCwOKQ5HHVd0Q6_M9WnahPuJ4XvrY,6715
140
+ snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py,sha256=JF9IPpSrXoyCdFnqidCN67HUqo6MV0CchXzi3klURII,2675
141
+ snowflake/ml/model/_model_composer/model_method/function_generator.py,sha256=2cE463GKWAJCrqEYD1s8IPzd3iPu0X0eQ12NnXQhGBM,2556
142
+ snowflake/ml/model/_model_composer/model_method/infer_function.py_template,sha256=eQ-FLUGt5r0P9UtDwWFoqSJzGeLBvwEMoHAbe8aCNsE,1418
143
+ snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template,sha256=L5R04QeoW6dH1PdEy3qo1LS478rTmvvRmrwlgqVwimg,1504
144
+ snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template,sha256=NUDSyFFAdEZEWtSkvYxkU9vB-NTjcTg6sjkrNpcmF6A,1418
145
+ snowflake/ml/model/_model_composer/model_method/model_method.py,sha256=4RfjJ_0Y8NUmI9YpmBqxBT2xk_yQ0RIzznaKGHlS6jU,7076
114
146
  snowflake/ml/model/_packager/model_handler.py,sha256=wMPGOegXx5GgiSA81gbKpfODosdj2mvD1bFbeN4OmNc,2642
115
- snowflake/ml/model/_packager/model_packager.py,sha256=mbIN3NzvF6akwJ86zBjOn6pJyNPDHaUBT0ohpAtHMGo,5980
116
- snowflake/ml/model/_packager/model_env/model_env.py,sha256=3FTftb2OMqCjushFLBISbF6E4z2CQ8G_rNewf-ahVGQ,18312
117
- snowflake/ml/model/_packager/model_handlers/_base.py,sha256=aJ-d3HOlMog0egz9f8P4tPmSNQ_IKCJV1b7SnHCmoa0,6041
118
- snowflake/ml/model/_packager/model_handlers/_utils.py,sha256=Za44AtkP1ktNstg6LXl26uUqODkAmQybcG_Za_hlZaQ,2623
119
- snowflake/ml/model/_packager/model_handlers/catboost.py,sha256=253KNSePi248WKqBZHLugwVx3T0bAvQGFjtuLVhWPCg,8160
120
- snowflake/ml/model/_packager/model_handlers/custom.py,sha256=aqhvRFzmgAxpzRQdMxwrMzBXsjr-q9489Vwf_Y_eXM4,7805
121
- snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py,sha256=VQIvkvGZBSZ8bg8QKAyRJ5xvmjL0qi9A3s3ml7mtjjI,20296
122
- snowflake/ml/model/_packager/model_handlers/lightgbm.py,sha256=Uh2mHRlj5SYWfDDfVFJi9tij8JuIV0tDts4VSnlsjuw,8455
123
- snowflake/ml/model/_packager/model_handlers/llm.py,sha256=rPsTXrA70Va8vV0wHKj8O3fwrh24HppRHxyWGIIe3lY,10770
124
- snowflake/ml/model/_packager/model_handlers/mlflow.py,sha256=h0FUuuq5y4M_1eRe7klDNCudDaw_YuE_v1kwrOX5FH0,9026
125
- snowflake/ml/model/_packager/model_handlers/pytorch.py,sha256=bL6CJApzBUZ903Ays0mQ2ONvn5Qnn01zP40GPThQbCA,8039
126
- snowflake/ml/model/_packager/model_handlers/sentence_transformers.py,sha256=6pAnXmVhHt4UKEM4eLDC8hxY1OMEm4Gx_TbirQetaMA,9083
127
- snowflake/ml/model/_packager/model_handlers/sklearn.py,sha256=BT5dQsdudIi3qTAIvEYgHDVw-oJap4BdKkaTM4m6Woc,8226
128
- snowflake/ml/model/_packager/model_handlers/snowmlmodel.py,sha256=Y9wqTMc7ODEuhOAf3FQrDstaT_4wxWzntVYAcEa106g,7977
129
- snowflake/ml/model/_packager/model_handlers/tensorflow.py,sha256=OFhh3QRI085F0dpn4iLpxZtCKnotAEcztrv4Sh4AAGM,8191
130
- snowflake/ml/model/_packager/model_handlers/torchscript.py,sha256=3fQ4z8fJE-MjKuIBVLeNXZp7vpQzw00Wk1W3rSe_Xm4,8118
131
- snowflake/ml/model/_packager/model_handlers/xgboost.py,sha256=joheYlYo-E3F0R5BxhR7el1la8qLv4ZkAR3d8eXAQMA,8882
147
+ snowflake/ml/model/_packager/model_packager.py,sha256=q0iQSeV5jRJyPC-3TKqqqRbxvKHFmPPuOPYSYtoMY5c,6090
148
+ snowflake/ml/model/_packager/model_env/model_env.py,sha256=BXj-YTyWtj_g-8YLN-lqMVAhoS5jE-ZEVIIi8X1EKoc,18485
149
+ snowflake/ml/model/_packager/model_handlers/_base.py,sha256=qQS1ZSz1Ikdj0TvyLU9n8K6KAj-PknL4s801qpnWodo,7164
150
+ snowflake/ml/model/_packager/model_handlers/_utils.py,sha256=XpVZM8KjCjy7swfWFb0TpKC6uqAqTL1nZbFdJ8DM8ng,4653
151
+ snowflake/ml/model/_packager/model_handlers/catboost.py,sha256=AcAu3MrqLTaqusocrH8B3S1Qd0UyBdxa6Wqbn9kn67k,10710
152
+ snowflake/ml/model/_packager/model_handlers/custom.py,sha256=59IxqxXvaG3g6NlVEPv8Irw2tBK4k5yLNosXNZJGS4o,8059
153
+ snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py,sha256=mIOJaiqxhRVAMl08X0cs_4KvkH2zDDR4MM2rJUllp0E,20552
154
+ snowflake/ml/model/_packager/model_handlers/lightgbm.py,sha256=uE2SE7qvDcpIUZ8Il_ZBDVT6kpFOP9ED8l1dm7dRTJU,12098
155
+ snowflake/ml/model/_packager/model_handlers/llm.py,sha256=_qzjoJna6yWcu1AVC8K8pFgkL1dxYQ5Sh2Ad8kT1fRY,11020
156
+ snowflake/ml/model/_packager/model_handlers/mlflow.py,sha256=ZJ1Tb6hQhaYv5z2DZUm4d4QSzNf2uFScFy_sZFdjlVA,9280
157
+ snowflake/ml/model/_packager/model_handlers/pytorch.py,sha256=DDcf85xisPLT1PyXdmPrjJpIIepkdmWNXCOpT_dCncw,8294
158
+ snowflake/ml/model/_packager/model_handlers/sentence_transformers.py,sha256=bBqJxXPzF8COgprUPnujHKpPEjOVVNH1E1VG_h8-5V0,9351
159
+ snowflake/ml/model/_packager/model_handlers/sklearn.py,sha256=Rk3Eiv44vBm2ng_Sjk_W1m3m_PLCxl8dJGniBxsylqo,12287
160
+ snowflake/ml/model/_packager/model_handlers/snowmlmodel.py,sha256=IEOuUkNaJMn6c69Npa5yMHV_z1BW8cA-yJ4U8AIFsQM,8237
161
+ snowflake/ml/model/_packager/model_handlers/tensorflow.py,sha256=OhqC4GcmDDz4IOgDITLnG7KFY3zVtzOJX3wAtLv0bI0,8448
162
+ snowflake/ml/model/_packager/model_handlers/torchscript.py,sha256=V9nGa0DaS1jxqudwEhGZR-MhAHuXWQevTXX-gjJRT0c,8378
163
+ snowflake/ml/model/_packager/model_handlers/xgboost.py,sha256=vI8ppGJQ46Bemq9vw_rOM-KvZwLzeGoHrPtSxbigolQ,12579
132
164
  snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py,sha256=BZo14UrywGZM1kTqzN4VFQcYjl7dggDp1U90ZBCMuOg,1409
133
165
  snowflake/ml/model/_packager/model_meta/_core_requirements.py,sha256=z0WnMVFR9RySEpldoPrDsMgSrSW8EOiTaylnTsBwhe4,265
134
166
  snowflake/ml/model/_packager/model_meta/_packaging_requirements.py,sha256=TfJNtrfyZoNiJZYFfmTbmiWMlXKM-QxkOBIJVFvPit0,44
135
167
  snowflake/ml/model/_packager/model_meta/model_blob_meta.py,sha256=GmiqqI-XVjrOX7cSa5GKerKhfHptlsg74MKqTGwJ5Jk,1949
136
- snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=BlBOQF7lPhK9pUK48bwGytXpnTlW53B_8XeLS7YJgtY,18100
137
- snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=yN5-rbOsjT8vm5SgKoM-GFygxGwQzuKZMbYRxujjiGU,2531
168
+ snowflake/ml/model/_packager/model_meta/model_meta.py,sha256=FggDJ-5zN_4kkFvq5_MLBq2HtrJ2HeIP9A6KM9e0f2M,19962
169
+ snowflake/ml/model/_packager/model_meta/model_meta_schema.py,sha256=jbjagr5d04W4vco9Fh8BrcpDo_keFVm5DGn2iDs1Khs,3041
138
170
  snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py,sha256=SORlqpPbOeBg6dvJ3DidHeLVi0w9YF0Zv4tC0Kbc20g,1311
139
171
  snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py,sha256=nf6PWDH_gvX_OiS4A-G6BzyCLFEG4dASU0t5JTsijM4,1041
140
172
  snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py,sha256=qEPzdCw_FzExMbPuyFHupeWlYD88yejLdcmkPwjJzDk,2070
141
173
  snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py,sha256=fRPGbrnq67PRo3e_uVk01TKZ7AZKYM-_lryePkNk5AY,239
142
- snowflake/ml/model/_packager/model_runtime/model_runtime.py,sha256=5Wo_MW_ub00t_TNi438tcjHY7Fi_8NI6gmrDzVxO45I,4723
174
+ snowflake/ml/model/_packager/model_runtime/model_runtime.py,sha256=J9oS2x5ZSJb3dQM98xyBrxcsIwx1vyOu6lc0HQCzlFU,4790
143
175
  snowflake/ml/model/_signatures/base_handler.py,sha256=WwBfe-83Y0m-HcDx1YSYCGwanIe0fb2MWhTeXc1IeJI,1304
144
176
  snowflake/ml/model/_signatures/builtins_handler.py,sha256=nF-2ptQjeu7ikO72_d14jk1N6BVbmy-mjtZ9I1c7-Qg,2741
145
177
  snowflake/ml/model/_signatures/core.py,sha256=xj4QwfVixzpUjVMfN1-d2l8LMi7b6qH7QvnvD3oMxSw,18480
@@ -162,8 +194,8 @@ snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py,sha256=
162
194
  snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py,sha256=MyTRkBV3zbDeO7HJaWrKYT3KkVqW51Q0AX2BbUtN4og,5737
163
195
  snowflake/ml/modeling/_internal/ml_runtime_implementations/ml_runtime_handlers.py,sha256=fgm1DpBBO0qUo2fXFwuN2uFAyTFhcIhT5_bC326VTVw,5544
164
196
  snowflake/ml/modeling/_internal/ml_runtime_implementations/ml_runtime_trainer.py,sha256=lM1vYwpJ1jgTh8vnuyMp4tnFibM6UFf50W1IpPWwUWE,2535
165
- snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py,sha256=sC3nlhrSV39uSfe01eMsCXc13bNFUf3evRYhJ7SRS0g,54651
166
- snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py,sha256=YN8I_U_7_hL42o5_7NnEYY05aiuwgdO4Q2Iw__7Qa_w,6180
197
+ snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py,sha256=6U7rHVgn_RqDyuwJ4hkNpDwQ2sbp4CFv4UZ-Eis0kbM,54650
198
+ snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py,sha256=HnsSmsXAeJrH9zVeq3CSziIaCUDxeWWx6kRyAK4qajM,6601
167
199
  snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py,sha256=Iqk8y4ltjfwDfrBOHmmvYRGyNzR3ZokQNukByUyH8NU,15516
168
200
  snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py,sha256=BVUHR4k5uQzVTddXvfDgzm9nZ_ZnkDg4SxTM69yV9a8,33588
169
201
  snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py,sha256=JHAo8u7myo1ZF1g1Ia_E2GDnPJqGdunl7ezma9mtANI,17333
@@ -236,7 +268,7 @@ snowflake/ml/modeling/feature_selection/select_percentile.py,sha256=Uh_WEWjInPma
236
268
  snowflake/ml/modeling/feature_selection/sequential_feature_selector.py,sha256=EgCyX3pdkdVeOByVvgiqgfTlbmTmJdrxKEWCydrONg8,50789
237
269
  snowflake/ml/modeling/feature_selection/variance_threshold.py,sha256=KWlDhy65YXAyt3qS2nqOuAYVxtV8gnS1bSjEUFyazjI,47725
238
270
  snowflake/ml/modeling/framework/_utils.py,sha256=7k9iU5zAWa4ZpMZlg8KfSMi4vH3o69w5aAh5RTRNdZ4,10203
239
- snowflake/ml/modeling/framework/base.py,sha256=gGsQLJJQcFvtRn_6uhiB5UB3bV0HFiijJpkBvvDyFUU,31156
271
+ snowflake/ml/modeling/framework/base.py,sha256=Q1Yq8SesnpVWdtRGc6rbuz9T3hcT0eRjl2ZiWGyWAeQ,31954
240
272
  snowflake/ml/modeling/gaussian_process/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
241
273
  snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py,sha256=04H5iTImclnaG3QYJRSfnRQfBl2EfNnheJXlhzeuu-c,53347
242
274
  snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py,sha256=I33qYg_R8NDieFBJvd12mpCpe6jxy-fNhqwelw8e5uQ,52412
@@ -244,7 +276,7 @@ snowflake/ml/modeling/impute/__init__.py,sha256=dYtqk_GD_hAAZjGfH1maWlZQ30h4hu_K
244
276
  snowflake/ml/modeling/impute/iterative_imputer.py,sha256=9RXx_881cjE1D_Ge-4XcCuL-PHs7w-PwhKyazd669lc,54249
245
277
  snowflake/ml/modeling/impute/knn_imputer.py,sha256=ok-sB6aF1Myilb7obFQFec4RoWv790E984yeup32cWQ,49965
246
278
  snowflake/ml/modeling/impute/missing_indicator.py,sha256=Teuf0BKOr3i6RmmW4K7UBMGIHOkg4-NPu-XOiyFp1-s,48822
247
- snowflake/ml/modeling/impute/simple_imputer.py,sha256=Y-oSvi8CXOyBJSCkLoNZNjdZ_NVwjvQhaOmxvgo2HAY,19847
279
+ snowflake/ml/modeling/impute/simple_imputer.py,sha256=T1niXlhS2vWbhF5IQ2k7qlBXKmvYVC3y1aKq73dCaBs,20946
248
280
  snowflake/ml/modeling/kernel_approximation/__init__.py,sha256=rY5qSOkHj59bHiTV6LhBiEhUA0StoCb0ACNR2vkV4v0,297
249
281
  snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py,sha256=iYAZ8PxMQ4yurlSYdk5v0daPSyo_bXBZBbbatm721jY,47853
250
282
  snowflake/ml/modeling/kernel_approximation/nystroem.py,sha256=ghFz9Tt3S4qSb2V7yG5Idzgf4leJNvovQO7JscUUSRQ,49624
@@ -337,7 +369,7 @@ snowflake/ml/modeling/neural_network/mlp_regressor.py,sha256=gUa_VVRgGUhEhRTNHoD
337
369
  snowflake/ml/modeling/parameters/disable_distributed_hpo.py,sha256=jyjlLPrtnDSQxlTTM0ayMjWKVL_IP3snd--yeXK5htY,221
338
370
  snowflake/ml/modeling/parameters/enable_anonymous_sproc.py,sha256=7FUdfhLbEGEocdd5XZ-7MFYMzOva58qI1dPDurPt7fw,207
339
371
  snowflake/ml/modeling/pipeline/__init__.py,sha256=dYtqk_GD_hAAZjGfH1maWlZQ30h4hu_KGaf-_y9_AD8,298
340
- snowflake/ml/modeling/pipeline/pipeline.py,sha256=_4LPhCL9fdG2h1IDMgdo2ht7E0Dfi4nHbC8hupgP9zk,46521
372
+ snowflake/ml/modeling/pipeline/pipeline.py,sha256=HMHGwBsRRRRsJCJwqTUmRei3f5Ipk8MxoI2xcdm66-M,46719
341
373
  snowflake/ml/modeling/preprocessing/__init__.py,sha256=dYtqk_GD_hAAZjGfH1maWlZQ30h4hu_KGaf-_y9_AD8,298
342
374
  snowflake/ml/modeling/preprocessing/binarizer.py,sha256=MrgSVTw9RpajyYe0dzai-qnpdOb3Zq0SfJRpHJjpnoY,7383
343
375
  snowflake/ml/modeling/preprocessing/k_bins_discretizer.py,sha256=FdIy8mpjsiMqWsUL07S27T-JNDVgE2bvNUJf4HcBik4,21533
@@ -378,12 +410,13 @@ snowflake/ml/registry/_schema.py,sha256=GOA427_mVKkq9RWRENHuqDimRS0SmmP4EWThNCu1
378
410
  snowflake/ml/registry/_schema_upgrade_plans.py,sha256=LxZNXYGjGG-NmB7w7_SxgaJpZuXUO66XVMuh04oL6SI,4209
379
411
  snowflake/ml/registry/_schema_version_manager.py,sha256=-9wGH-7ELSZxp7-fW7hXTMqkJSIebXdSpwwgzdvnoYs,6922
380
412
  snowflake/ml/registry/model_registry.py,sha256=x42wR2lEyW99NnG8auNPOowg34bF87ksXQqrjMFd7Pw,84795
381
- snowflake/ml/registry/registry.py,sha256=2Ud9MWTFKFE-VO3ByGwiml8kTBu2GcjnceK93PyM2Uw,11210
382
- snowflake/ml/registry/_manager/model_manager.py,sha256=grUa1d55mFbvvG5J32JZWEIvcj4nKhX30xx1Yt1V6Ys,10274
413
+ snowflake/ml/registry/registry.py,sha256=cU-LLTkQuCz9iwaTEj6-oxDzn8f7_CRcrmbg5SX62i8,16812
414
+ snowflake/ml/registry/_manager/model_manager.py,sha256=Ae3zN2QUUvRXj1AAW6OEz_LI9oCdKXq6mtT0lP6cl2w,11013
383
415
  snowflake/ml/utils/connection_params.py,sha256=JRpQppuWRk6bhdLzVDhMfz3Y6yInobFNLHmIBaXD7po,8005
384
416
  snowflake/ml/utils/sparse.py,sha256=XqDQkw39Ml6YIknswdkvFIwUwBk_GBXAbP8IACfPENg,3817
385
- snowflake_ml_python-1.5.4.dist-info/LICENSE.txt,sha256=PdEp56Av5m3_kl21iFkVTX_EbHJKFGEdmYeIO1pL_Yk,11365
386
- snowflake_ml_python-1.5.4.dist-info/METADATA,sha256=Z9gtPGVQ35nk8HRTBe6ssGQ9kbg668PnrkjabJTxKZI,54910
387
- snowflake_ml_python-1.5.4.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
388
- snowflake_ml_python-1.5.4.dist-info/top_level.txt,sha256=TY0gFSHKDdZy3THb0FGomyikWQasEGldIR1O0HGOHVw,10
389
- snowflake_ml_python-1.5.4.dist-info/RECORD,,
417
+ snowflake/ml/utils/sql_client.py,sha256=z4Rhi7pQz3s9cyu_Uzfr3deCnrkCdFh9IYIvicsuwdc,692
418
+ snowflake_ml_python-1.6.1.dist-info/LICENSE.txt,sha256=PdEp56Av5m3_kl21iFkVTX_EbHJKFGEdmYeIO1pL_Yk,11365
419
+ snowflake_ml_python-1.6.1.dist-info/METADATA,sha256=3-jr4oyLTyw__yT1G2LFXNpX5uApvH0kdXCWFNWQd7c,59475
420
+ snowflake_ml_python-1.6.1.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
421
+ snowflake_ml_python-1.6.1.dist-info/top_level.txt,sha256=TY0gFSHKDdZy3THb0FGomyikWQasEGldIR1O0HGOHVw,10
422
+ snowflake_ml_python-1.6.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.3.0)
2
+ Generator: setuptools (72.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,10 +0,0 @@
1
- import dataclasses
2
- from typing import List, Optional
3
-
4
-
5
- @dataclasses.dataclass(frozen=True)
6
- class DataSource:
7
- fully_qualified_name: str
8
- version: str
9
- url: str
10
- exclude_cols: Optional[List[str]] = None