snowflake-ml-python 1.7.5__tar.gz → 1.8.1__tar.gz

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 (425) hide show
  1. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/CHANGELOG.md +299 -4
  2. {snowflake_ml_python-1.7.5/snowflake_ml_python.egg-info → snowflake_ml_python-1.8.1}/PKG-INFO +308 -12
  3. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/pyproject.toml +3 -3
  4. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_complete.py +58 -3
  5. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/file_utils.py +18 -4
  6. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/platform_capabilities.py +3 -0
  7. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/telemetry.py +4 -0
  8. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/fileset/fileset.py +0 -1
  9. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/jobs/_utils/constants.py +25 -1
  10. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/jobs/_utils/payload_utils.py +94 -20
  11. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/jobs/_utils/spec_utils.py +95 -31
  12. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/jobs/decorators.py +7 -0
  13. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/jobs/manager.py +20 -0
  14. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/model/model_version_impl.py +1 -1
  15. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/ops/model_ops.py +113 -17
  16. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/ops/service_ops.py +16 -5
  17. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/service/model_deployment_spec.py +7 -3
  18. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/sql/model_version.py +58 -0
  19. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/sql/service.py +10 -2
  20. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_composer.py +50 -3
  21. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +5 -2
  22. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +2 -1
  23. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_method/model_method.py +0 -1
  24. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_env/model_env.py +4 -1
  25. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py +28 -24
  26. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/keras.py +1 -5
  27. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/pytorch.py +50 -20
  28. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/sklearn.py +2 -8
  29. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +1 -2
  30. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/tensorflow.py +46 -26
  31. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/torchscript.py +49 -20
  32. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/xgboost.py +2 -2
  33. snowflake_ml_python-1.8.1/snowflake/ml/model/_packager/model_handlers_migrator/pytorch_migrator_2023_12_01.py +20 -0
  34. snowflake_ml_python-1.8.1/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py +19 -0
  35. snowflake_ml_python-1.8.1/snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py +20 -0
  36. snowflake_ml_python-1.8.1/snowflake/ml/model/_packager/model_meta/_packaging_requirements.py +1 -0
  37. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_meta/model_meta.py +5 -1
  38. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_meta/model_meta_schema.py +14 -0
  39. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_packager.py +3 -5
  40. snowflake_ml_python-1.8.1/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +1 -0
  41. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_runtime/model_runtime.py +4 -0
  42. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_signatures/builtins_handler.py +20 -9
  43. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_signatures/core.py +52 -31
  44. snowflake_ml_python-1.8.1/snowflake/ml/model/_signatures/dmatrix_handler.py +98 -0
  45. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_signatures/numpy_handler.py +9 -17
  46. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_signatures/pandas_handler.py +19 -30
  47. snowflake_ml_python-1.8.1/snowflake/ml/model/_signatures/pytorch_handler.py +120 -0
  48. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_signatures/snowpark_handler.py +0 -12
  49. snowflake_ml_python-1.8.1/snowflake/ml/model/_signatures/tensorflow_handler.py +134 -0
  50. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_signatures/utils.py +120 -8
  51. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/custom_model.py +13 -4
  52. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/model_signature.py +31 -13
  53. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/type_hints.py +13 -2
  54. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/estimator_utils.py +5 -1
  55. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/metrics/ranking.py +3 -0
  56. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/metrics/regression.py +3 -0
  57. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/k_bins_discretizer.py +1 -1
  58. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/registry/_manager/model_manager.py +55 -7
  59. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/registry/registry.py +59 -1
  60. snowflake_ml_python-1.8.1/snowflake/ml/version.py +1 -0
  61. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1/snowflake_ml_python.egg-info}/PKG-INFO +308 -12
  62. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake_ml_python.egg-info/SOURCES.txt +4 -0
  63. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake_ml_python.egg-info/requires.txt +6 -6
  64. snowflake_ml_python-1.7.5/snowflake/ml/model/_packager/model_meta/_packaging_requirements.py +0 -2
  65. snowflake_ml_python-1.7.5/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +0 -2
  66. snowflake_ml_python-1.7.5/snowflake/ml/model/_signatures/pytorch_handler.py +0 -104
  67. snowflake_ml_python-1.7.5/snowflake/ml/model/_signatures/tensorflow_handler.py +0 -140
  68. snowflake_ml_python-1.7.5/snowflake/ml/version.py +0 -1
  69. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/LICENSE.txt +0 -0
  70. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/README.md +0 -0
  71. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/setup.cfg +0 -0
  72. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/__init__.py +0 -0
  73. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_classify_text.py +0 -0
  74. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_embed_text_1024.py +0 -0
  75. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_embed_text_768.py +0 -0
  76. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_extract_answer.py +0 -0
  77. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_finetune.py +0 -0
  78. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_sentiment.py +0 -0
  79. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_sse_client.py +0 -0
  80. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_summarize.py +0 -0
  81. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_translate.py +0 -0
  82. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/cortex/_util.py +0 -0
  83. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/env.py +0 -0
  84. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/env_utils.py +0 -0
  85. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/exceptions/dataset_error_messages.py +0 -0
  86. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/exceptions/dataset_errors.py +0 -0
  87. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/exceptions/error_codes.py +0 -0
  88. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/exceptions/error_messages.py +0 -0
  89. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/exceptions/exceptions.py +0 -0
  90. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/exceptions/fileset_error_messages.py +0 -0
  91. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/exceptions/fileset_errors.py +0 -0
  92. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/exceptions/modeling_error_messages.py +0 -0
  93. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/exceptions/sql_error_codes.py +0 -0
  94. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/human_readable_id/adjectives.txt +0 -0
  95. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/human_readable_id/animals.txt +0 -0
  96. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/human_readable_id/hrid_generator.py +0 -0
  97. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/human_readable_id/hrid_generator_base.py +0 -0
  98. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/init_utils.py +0 -0
  99. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/lineage/lineage_utils.py +0 -0
  100. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/migrator_utils.py +0 -0
  101. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/relax_version_strategy.py +0 -0
  102. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/type_utils.py +0 -0
  103. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/db_utils.py +0 -0
  104. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/formatting.py +0 -0
  105. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/identifier.py +0 -0
  106. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/import_utils.py +0 -0
  107. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/jwt_generator.py +0 -0
  108. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/parallelize.py +0 -0
  109. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/pkg_version_utils.py +0 -0
  110. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/query_result_checker.py +0 -0
  111. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/result.py +0 -0
  112. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/service_logger.py +0 -0
  113. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/snowflake_env.py +0 -0
  114. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/snowpark_dataframe_utils.py +0 -0
  115. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/sql_identifier.py +0 -0
  116. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/table_manager.py +0 -0
  117. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/_internal/utils/temp_file_utils.py +0 -0
  118. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/data/__init__.py +0 -0
  119. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/data/_internal/arrow_ingestor.py +0 -0
  120. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/data/data_connector.py +0 -0
  121. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/data/data_ingestor.py +0 -0
  122. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/data/data_source.py +0 -0
  123. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/data/ingestor_utils.py +0 -0
  124. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/data/torch_utils.py +0 -0
  125. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/dataset/__init__.py +0 -0
  126. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/dataset/dataset.py +0 -0
  127. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/dataset/dataset_factory.py +0 -0
  128. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/dataset/dataset_metadata.py +0 -0
  129. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/dataset/dataset_reader.py +0 -0
  130. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/__init__.py +0 -0
  131. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/access_manager.py +0 -0
  132. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/entity.py +0 -0
  133. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/airline_features/entities.py +0 -0
  134. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/airline_features/features/plane_features.py +0 -0
  135. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/airline_features/features/weather_features.py +0 -0
  136. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/airline_features/source.yaml +0 -0
  137. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +0 -0
  138. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/citibike_trip_features/features/station_feature.py +0 -0
  139. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/citibike_trip_features/features/trip_feature.py +0 -0
  140. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +0 -0
  141. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/example_helper.py +0 -0
  142. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py +0 -0
  143. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/location_features.py +0 -0
  144. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/trip_features.py +0 -0
  145. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml +0 -0
  146. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/source_data/airline.yaml +0 -0
  147. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +0 -0
  148. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +0 -0
  149. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml +0 -0
  150. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +0 -0
  151. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/wine_quality_features/entities.py +0 -0
  152. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py +0 -0
  153. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py +0 -0
  154. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +0 -0
  155. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/feature_store.py +0 -0
  156. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/feature_store/feature_view.py +0 -0
  157. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/fileset/embedded_stage_fs.py +0 -0
  158. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/fileset/sfcfs.py +0 -0
  159. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/fileset/snowfs.py +0 -0
  160. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/fileset/stage_fs.py +0 -0
  161. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/jobs/__init__.py +0 -0
  162. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/jobs/_utils/types.py +0 -0
  163. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/jobs/job.py +0 -0
  164. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/lineage/__init__.py +0 -0
  165. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/lineage/lineage_node.py +0 -0
  166. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/__init__.py +0 -0
  167. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/model/model_impl.py +0 -0
  168. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/ops/metadata_ops.py +0 -0
  169. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +0 -0
  170. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/sql/_base.py +0 -0
  171. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/sql/model.py +0 -0
  172. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/sql/stage.py +0 -0
  173. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_client/sql/tag.py +0 -0
  174. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_method/constants.py +0 -0
  175. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_method/function_generator.py +0 -0
  176. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_method/infer_function.py_template +0 -0
  177. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +0 -0
  178. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template +0 -0
  179. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_model_composer/model_user_file/model_user_file.py +0 -0
  180. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handler.py +0 -0
  181. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/_base.py +0 -0
  182. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/_utils.py +0 -0
  183. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/catboost.py +0 -0
  184. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/custom.py +0 -0
  185. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/lightgbm.py +0 -0
  186. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/mlflow.py +0 -0
  187. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +0 -0
  188. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py +0 -0
  189. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12_01.py +0 -0
  190. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_meta/model_blob_meta.py +0 -0
  191. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py +0 -0
  192. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py +0 -0
  193. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py +0 -0
  194. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_packager/model_task/model_task_utils.py +0 -0
  195. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/_signatures/base_handler.py +0 -0
  196. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/model/models/huggingface_pipeline.py +0 -0
  197. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/constants.py +0 -0
  198. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py +0 -0
  199. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py +0 -0
  200. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/model_specifications.py +0 -0
  201. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/model_trainer.py +0 -0
  202. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -0
  203. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -0
  204. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +0 -0
  205. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py +0 -0
  206. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py +0 -0
  207. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py +0 -0
  208. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py +0 -0
  209. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/_internal/transformer_protocols.py +0 -0
  210. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/calibration/__init__.py +0 -0
  211. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +0 -0
  212. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/__init__.py +0 -0
  213. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/affinity_propagation.py +0 -0
  214. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/agglomerative_clustering.py +0 -0
  215. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/birch.py +0 -0
  216. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/bisecting_k_means.py +0 -0
  217. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/dbscan.py +0 -0
  218. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/feature_agglomeration.py +0 -0
  219. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/k_means.py +0 -0
  220. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/mean_shift.py +0 -0
  221. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/mini_batch_k_means.py +0 -0
  222. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/optics.py +0 -0
  223. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/spectral_biclustering.py +0 -0
  224. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/spectral_clustering.py +0 -0
  225. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/cluster/spectral_coclustering.py +0 -0
  226. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/compose/__init__.py +0 -0
  227. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/compose/column_transformer.py +0 -0
  228. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/compose/transformed_target_regressor.py +0 -0
  229. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/covariance/__init__.py +0 -0
  230. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/covariance/elliptic_envelope.py +0 -0
  231. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/covariance/empirical_covariance.py +0 -0
  232. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/covariance/graphical_lasso.py +0 -0
  233. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/covariance/graphical_lasso_cv.py +0 -0
  234. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/covariance/ledoit_wolf.py +0 -0
  235. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/covariance/min_cov_det.py +0 -0
  236. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/covariance/oas.py +0 -0
  237. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/covariance/shrunk_covariance.py +0 -0
  238. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/__init__.py +0 -0
  239. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/dictionary_learning.py +0 -0
  240. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/factor_analysis.py +0 -0
  241. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/fast_ica.py +0 -0
  242. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/incremental_pca.py +0 -0
  243. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/kernel_pca.py +0 -0
  244. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +0 -0
  245. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +0 -0
  246. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/pca.py +0 -0
  247. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/sparse_pca.py +0 -0
  248. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/decomposition/truncated_svd.py +0 -0
  249. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/discriminant_analysis/__init__.py +0 -0
  250. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +0 -0
  251. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +0 -0
  252. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/__init__.py +0 -0
  253. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/ada_boost_classifier.py +0 -0
  254. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/ada_boost_regressor.py +0 -0
  255. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/bagging_classifier.py +0 -0
  256. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/bagging_regressor.py +0 -0
  257. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/extra_trees_classifier.py +0 -0
  258. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/extra_trees_regressor.py +0 -0
  259. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +0 -0
  260. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +0 -0
  261. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +0 -0
  262. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +0 -0
  263. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/isolation_forest.py +0 -0
  264. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/random_forest_classifier.py +0 -0
  265. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/random_forest_regressor.py +0 -0
  266. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/stacking_regressor.py +0 -0
  267. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/voting_classifier.py +0 -0
  268. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/ensemble/voting_regressor.py +0 -0
  269. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/feature_selection/__init__.py +0 -0
  270. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/feature_selection/generic_univariate_select.py +0 -0
  271. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/feature_selection/select_fdr.py +0 -0
  272. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/feature_selection/select_fpr.py +0 -0
  273. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/feature_selection/select_fwe.py +0 -0
  274. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/feature_selection/select_k_best.py +0 -0
  275. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/feature_selection/select_percentile.py +0 -0
  276. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +0 -0
  277. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/feature_selection/variance_threshold.py +0 -0
  278. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/framework/_utils.py +0 -0
  279. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/framework/base.py +0 -0
  280. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/gaussian_process/__init__.py +0 -0
  281. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +0 -0
  282. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +0 -0
  283. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/impute/__init__.py +0 -0
  284. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/impute/iterative_imputer.py +0 -0
  285. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/impute/knn_imputer.py +0 -0
  286. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/impute/missing_indicator.py +0 -0
  287. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/impute/simple_imputer.py +0 -0
  288. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/kernel_approximation/__init__.py +0 -0
  289. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +0 -0
  290. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/kernel_approximation/nystroem.py +0 -0
  291. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +0 -0
  292. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +0 -0
  293. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +0 -0
  294. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/kernel_ridge/__init__.py +0 -0
  295. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +0 -0
  296. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/lightgbm/__init__.py +0 -0
  297. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/lightgbm/lgbm_classifier.py +0 -0
  298. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/lightgbm/lgbm_regressor.py +0 -0
  299. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/__init__.py +0 -0
  300. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/ard_regression.py +0 -0
  301. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/bayesian_ridge.py +0 -0
  302. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/elastic_net.py +0 -0
  303. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/elastic_net_cv.py +0 -0
  304. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/gamma_regressor.py +0 -0
  305. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/huber_regressor.py +0 -0
  306. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/lars.py +0 -0
  307. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/lars_cv.py +0 -0
  308. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/lasso.py +0 -0
  309. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/lasso_cv.py +0 -0
  310. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/lasso_lars.py +0 -0
  311. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/lasso_lars_cv.py +0 -0
  312. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/lasso_lars_ic.py +0 -0
  313. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/linear_regression.py +0 -0
  314. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/logistic_regression.py +0 -0
  315. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/logistic_regression_cv.py +0 -0
  316. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +0 -0
  317. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +0 -0
  318. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/multi_task_lasso.py +0 -0
  319. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +0 -0
  320. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +0 -0
  321. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +0 -0
  322. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +0 -0
  323. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/perceptron.py +0 -0
  324. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/poisson_regressor.py +0 -0
  325. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/ransac_regressor.py +0 -0
  326. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/ridge.py +0 -0
  327. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/ridge_classifier.py +0 -0
  328. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +0 -0
  329. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/ridge_cv.py +0 -0
  330. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/sgd_classifier.py +0 -0
  331. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +0 -0
  332. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/sgd_regressor.py +0 -0
  333. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/theil_sen_regressor.py +0 -0
  334. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/linear_model/tweedie_regressor.py +0 -0
  335. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/manifold/__init__.py +0 -0
  336. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/manifold/isomap.py +0 -0
  337. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/manifold/mds.py +0 -0
  338. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/manifold/spectral_embedding.py +0 -0
  339. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/manifold/tsne.py +0 -0
  340. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/metrics/__init__.py +0 -0
  341. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/metrics/classification.py +0 -0
  342. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/metrics/correlation.py +0 -0
  343. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/metrics/covariance.py +0 -0
  344. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/metrics/metrics_utils.py +0 -0
  345. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/mixture/__init__.py +0 -0
  346. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +0 -0
  347. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/mixture/gaussian_mixture.py +0 -0
  348. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/model_selection/__init__.py +0 -0
  349. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/model_selection/grid_search_cv.py +0 -0
  350. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/model_selection/randomized_search_cv.py +0 -0
  351. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/multiclass/__init__.py +0 -0
  352. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +0 -0
  353. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +0 -0
  354. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/multiclass/output_code_classifier.py +0 -0
  355. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/naive_bayes/__init__.py +0 -0
  356. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +0 -0
  357. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/naive_bayes/categorical_nb.py +0 -0
  358. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/naive_bayes/complement_nb.py +0 -0
  359. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/naive_bayes/gaussian_nb.py +0 -0
  360. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/naive_bayes/multinomial_nb.py +0 -0
  361. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/__init__.py +0 -0
  362. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +0 -0
  363. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +0 -0
  364. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/kernel_density.py +0 -0
  365. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/local_outlier_factor.py +0 -0
  366. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/nearest_centroid.py +0 -0
  367. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/nearest_neighbors.py +0 -0
  368. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +0 -0
  369. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +0 -0
  370. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +0 -0
  371. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neural_network/__init__.py +0 -0
  372. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neural_network/bernoulli_rbm.py +0 -0
  373. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neural_network/mlp_classifier.py +0 -0
  374. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/neural_network/mlp_regressor.py +0 -0
  375. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/parameters/disable_distributed_hpo.py +0 -0
  376. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/parameters/disable_model_tracer.py +0 -0
  377. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/parameters/enable_anonymous_sproc.py +0 -0
  378. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/pipeline/__init__.py +0 -0
  379. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/pipeline/pipeline.py +0 -0
  380. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/__init__.py +0 -0
  381. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/binarizer.py +0 -0
  382. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/label_encoder.py +0 -0
  383. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/max_abs_scaler.py +0 -0
  384. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/min_max_scaler.py +0 -0
  385. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/normalizer.py +0 -0
  386. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/one_hot_encoder.py +0 -0
  387. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/ordinal_encoder.py +0 -0
  388. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/polynomial_features.py +0 -0
  389. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/robust_scaler.py +0 -0
  390. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/preprocessing/standard_scaler.py +0 -0
  391. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/semi_supervised/__init__.py +0 -0
  392. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/semi_supervised/label_propagation.py +0 -0
  393. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/semi_supervised/label_spreading.py +0 -0
  394. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/svm/__init__.py +0 -0
  395. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/svm/linear_svc.py +0 -0
  396. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/svm/linear_svr.py +0 -0
  397. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/svm/nu_svc.py +0 -0
  398. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/svm/nu_svr.py +0 -0
  399. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/svm/svc.py +0 -0
  400. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/svm/svr.py +0 -0
  401. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/tree/__init__.py +0 -0
  402. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/tree/decision_tree_classifier.py +0 -0
  403. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/tree/decision_tree_regressor.py +0 -0
  404. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/tree/extra_tree_classifier.py +0 -0
  405. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/tree/extra_tree_regressor.py +0 -0
  406. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/xgboost/__init__.py +0 -0
  407. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/xgboost/xgb_classifier.py +0 -0
  408. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/xgboost/xgb_regressor.py +0 -0
  409. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/xgboost/xgbrf_classifier.py +0 -0
  410. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/modeling/xgboost/xgbrf_regressor.py +0 -0
  411. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/monitoring/_client/model_monitor_sql_client.py +0 -0
  412. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/monitoring/_client/queries/record_count.ssql +0 -0
  413. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/monitoring/_client/queries/rmse.ssql +0 -0
  414. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/monitoring/_manager/model_monitor_manager.py +0 -0
  415. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/monitoring/entities/model_monitor_config.py +0 -0
  416. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/monitoring/model_monitor.py +0 -0
  417. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/monitoring/model_monitor_version.py +0 -0
  418. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/monitoring/shap.py +0 -0
  419. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/registry/__init__.py +0 -0
  420. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/utils/authentication.py +0 -0
  421. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/utils/connection_params.py +0 -0
  422. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/utils/sparse.py +0 -0
  423. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake/ml/utils/sql_client.py +0 -0
  424. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake_ml_python.egg-info/dependency_links.txt +0 -0
  425. {snowflake_ml_python-1.7.5 → snowflake_ml_python-1.8.1}/snowflake_ml_python.egg-info/top_level.txt +0 -0
@@ -1,9 +1,306 @@
1
1
  # Release History
2
2
 
3
- ## 1.7.5
3
+ ## 1.8.1
4
+
5
+ ### Bug Fixes
6
+
7
+ - Registry: Fix a bug that caused `unsupported model type` error while logging a sklearn model with `score_samples`
8
+ inference method.
9
+ - Registry: Fix a bug that model inference service creation fails on an existing and suspended service.
10
+
11
+ ### Behavior Change
12
+
13
+ ### New Features
14
+
15
+ - ML Job (PrPr): Update Container Runtime image version to `1.0.1`
16
+ - ML Job (PrPr): Add `enable_metrics` argument to job submission APIs to enable publishing service metrics to Event Table.
17
+ See [Accessing Event Table service metrics](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/monitoring-services#accessing-event-table-service-metrics)
18
+ for retrieving published metrics
19
+ and [Costs of telemetry data collection](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-tracing-billing)
20
+ for cost implications.
21
+ - Registry: When creating a copy of a `ModelVersion` with `log_model`, raise an exception if unsupported arguments are provided.
22
+
23
+ ## 1.8.0
24
+
25
+ ### Bug Fixes
26
+
27
+ - Modeling: Fix a bug in some metrics that allowed an unsupported version of numpy to be installed
28
+ automatically in the stored procedure, resulting in a numpy error on execution
29
+ - Registry: Fix a bug that leads to incorrect `Model is does not have _is_inference_api` error message when assigning
30
+ a supported model as a property of a CustomModel.
31
+ - Registry: Fix a bug that inference is not working when models with more than 500 input features
32
+ are deployed to SPCS.
33
+
34
+ ### Behavior Change
35
+
36
+ - Registry: With FeatureGroupSpec support, auto inferred model signature for `transformers.Pipeline` models have been
37
+ updated, including:
38
+ - Signature for fill-mask task has been changed from
39
+
40
+ ```python
41
+ ModelSignature(
42
+ inputs=[
43
+ FeatureSpec(name="inputs", dtype=DataType.STRING),
44
+ ],
45
+ outputs=[
46
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
47
+ ],
48
+ )
49
+ ```
50
+
51
+ to
52
+
53
+ ```python
54
+ ModelSignature(
55
+ inputs=[
56
+ FeatureSpec(name="inputs", dtype=DataType.STRING),
57
+ ],
58
+ outputs=[
59
+ FeatureGroupSpec(
60
+ name="outputs",
61
+ specs=[
62
+ FeatureSpec(name="sequence", dtype=DataType.STRING),
63
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
64
+ FeatureSpec(name="token", dtype=DataType.INT64),
65
+ FeatureSpec(name="token_str", dtype=DataType.STRING),
66
+ ],
67
+ shape=(-1,),
68
+ ),
69
+ ],
70
+ )
71
+ ```
72
+
73
+ - Signature for token-classification task has been changed from
74
+
75
+ ```python
76
+ ModelSignature(
77
+ inputs=[
78
+ FeatureSpec(name="inputs", dtype=DataType.STRING),
79
+ ],
80
+ outputs=[
81
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
82
+ ],
83
+ )
84
+ ```
85
+
86
+ to
87
+
88
+ ```python
89
+ ModelSignature(
90
+ inputs=[FeatureSpec(name="inputs", dtype=DataType.STRING)],
91
+ outputs=[
92
+ FeatureGroupSpec(
93
+ name="outputs",
94
+ specs=[
95
+ FeatureSpec(name="word", dtype=DataType.STRING),
96
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
97
+ FeatureSpec(name="entity", dtype=DataType.STRING),
98
+ FeatureSpec(name="index", dtype=DataType.INT64),
99
+ FeatureSpec(name="start", dtype=DataType.INT64),
100
+ FeatureSpec(name="end", dtype=DataType.INT64),
101
+ ],
102
+ shape=(-1,),
103
+ ),
104
+ ],
105
+ )
106
+ ```
107
+
108
+ - Signature for question-answering task when top_k is larger than 1 has been changed from
109
+
110
+ ```python
111
+ ModelSignature(
112
+ inputs=[
113
+ FeatureSpec(name="question", dtype=DataType.STRING),
114
+ FeatureSpec(name="context", dtype=DataType.STRING),
115
+ ],
116
+ outputs=[
117
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
118
+ ],
119
+ )
120
+ ```
121
+
122
+ to
123
+
124
+ ```python
125
+ ModelSignature(
126
+ inputs=[
127
+ FeatureSpec(name="question", dtype=DataType.STRING),
128
+ FeatureSpec(name="context", dtype=DataType.STRING),
129
+ ],
130
+ outputs=[
131
+ FeatureGroupSpec(
132
+ name="answers",
133
+ specs=[
134
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
135
+ FeatureSpec(name="start", dtype=DataType.INT64),
136
+ FeatureSpec(name="end", dtype=DataType.INT64),
137
+ FeatureSpec(name="answer", dtype=DataType.STRING),
138
+ ],
139
+ shape=(-1,),
140
+ ),
141
+ ],
142
+ )
143
+ ```
144
+
145
+ - Signature for text-classification task when top_k is `None` has been changed from
146
+
147
+ ```python
148
+ ModelSignature(
149
+ inputs=[
150
+ FeatureSpec(name="text", dtype=DataType.STRING),
151
+ FeatureSpec(name="text_pair", dtype=DataType.STRING),
152
+ ],
153
+ outputs=[
154
+ FeatureSpec(name="label", dtype=DataType.STRING),
155
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
156
+ ],
157
+ )
158
+ ```
159
+
160
+ to
161
+
162
+ ```python
163
+ ModelSignature(
164
+ inputs=[
165
+ FeatureSpec(name="text", dtype=DataType.STRING),
166
+ ],
167
+ outputs=[
168
+ FeatureSpec(name="label", dtype=DataType.STRING),
169
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
170
+ ],
171
+ )
172
+ ```
173
+
174
+ - Signature for text-classification task when top_k is not `None` has been changed from
175
+
176
+ ```python
177
+ ModelSignature(
178
+ inputs=[
179
+ FeatureSpec(name="text", dtype=DataType.STRING),
180
+ FeatureSpec(name="text_pair", dtype=DataType.STRING),
181
+ ],
182
+ outputs=[
183
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
184
+ ],
185
+ )
186
+ ```
187
+
188
+ to
189
+
190
+ ```python
191
+ ModelSignature(
192
+ inputs=[
193
+ FeatureSpec(name="text", dtype=DataType.STRING),
194
+ ],
195
+ outputs=[
196
+ FeatureGroupSpec(
197
+ name="labels",
198
+ specs=[
199
+ FeatureSpec(name="label", dtype=DataType.STRING),
200
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
201
+ ],
202
+ shape=(-1,),
203
+ ),
204
+ ],
205
+ )
206
+ ```
207
+
208
+ - Signature for text-generation task has been changed from
209
+
210
+ ```python
211
+ ModelSignature(
212
+ inputs=[FeatureSpec(name="inputs", dtype=DataType.STRING)],
213
+ outputs=[
214
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
215
+ ],
216
+ )
217
+ ```
218
+
219
+ to
220
+
221
+ ```python
222
+ ModelSignature(
223
+ inputs=[
224
+ FeatureGroupSpec(
225
+ name="inputs",
226
+ specs=[
227
+ FeatureSpec(name="role", dtype=DataType.STRING),
228
+ FeatureSpec(name="content", dtype=DataType.STRING),
229
+ ],
230
+ shape=(-1,),
231
+ ),
232
+ ],
233
+ outputs=[
234
+ FeatureGroupSpec(
235
+ name="outputs",
236
+ specs=[
237
+ FeatureSpec(name="generated_text", dtype=DataType.STRING),
238
+ ],
239
+ shape=(-1,),
240
+ )
241
+ ],
242
+ )
243
+ ```
244
+
245
+ - Registry: PyTorch and TensorFlow models now expect a single tensor input/output by default when logging to Model
246
+ Registry. To use multiple tensors (previous behavior), set `options={"multiple_inputs": True}`.
247
+
248
+ Example with single tensor input:
249
+
250
+ ```python
251
+ import torch
252
+
253
+ class TorchModel(torch.nn.Module):
254
+ def __init__(self, n_input: int, n_hidden: int, n_out: int, dtype: torch.dtype = torch.float32) -> None:
255
+ super().__init__()
256
+ self.model = torch.nn.Sequential(
257
+ torch.nn.Linear(n_input, n_hidden, dtype=dtype),
258
+ torch.nn.ReLU(),
259
+ torch.nn.Linear(n_hidden, n_out, dtype=dtype),
260
+ torch.nn.Sigmoid(),
261
+ )
262
+
263
+ def forward(self, tensor: torch.Tensor) -> torch.Tensor:
264
+ return cast(torch.Tensor, self.model(tensor))
265
+
266
+ # Sample usage:
267
+ data_x = torch.rand(size=(batch_size, n_input))
268
+
269
+ # Log model with single tensor
270
+ reg.log_model(
271
+ model=model,
272
+ ...,
273
+ sample_input_data=data_x
274
+ )
275
+
276
+ # Run inference with single tensor
277
+ mv.run(data_x)
278
+ ```
279
+
280
+ For multiple tensor inputs/outputs, use:
281
+
282
+ ```python
283
+ reg.log_model(
284
+ model=model,
285
+ ...,
286
+ sample_input_data=[data_x_1, data_x_2],
287
+ options={"multiple_inputs": True}
288
+ )
289
+ ```
290
+
291
+ - Registry: Default `enable_explainability` to False when the model can be deployed to Snowpark Container Services.
292
+
293
+ ### New Features
294
+
295
+ - Registry: Added support to single `torch.Tensor`, `tensorflow.Tensor` and `tensorflow.Variable` as input or output
296
+ data.
297
+ - Registry: Support [`xgboost.DMatrix`](https://xgboost.readthedocs.io/en/stable/python/python_api.html#xgboost.DMatrix)
298
+ datatype for XGBoost models.
299
+
300
+ ## 1.7.5 (03-06-2025)
4
301
 
5
302
  - Support Python 3.12.
6
- - Explainability: Support native and snowml sklearn pipeline
303
+ - Explainability: Support native and snowflake.ml.modeling sklearn pipeline
7
304
 
8
305
  ### Bug Fixes
9
306
 
@@ -20,8 +317,6 @@
20
317
  `ValueError(f"{self.entrypoint} must be a subpath of {self.source}")`
21
318
  - ML Job (PrPr): Fixed a bug in Ray cluster startup config which caused certain Runtime APIs to fail
22
319
 
23
- ### Behavior Change
24
-
25
320
  ### New Features
26
321
 
27
322
  - Registry: Added support for handling Hugging Face model configurations with auto-mapping functionality.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: snowflake-ml-python
3
- Version: 1.7.5
3
+ Version: 1.8.1
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:
@@ -236,7 +236,7 @@ License-File: LICENSE.txt
236
236
  Requires-Dist: absl-py<2,>=0.15
237
237
  Requires-Dist: anyio<5,>=3.5.0
238
238
  Requires-Dist: cachetools<6,>=3.1.1
239
- Requires-Dist: cloudpickle>=2.0.0
239
+ Requires-Dist: cloudpickle<3,>=2.0.0
240
240
  Requires-Dist: cryptography
241
241
  Requires-Dist: fsspec[http]<2026,>=2024.6.1
242
242
  Requires-Dist: importlib_resources<7,>=6.1.1
@@ -251,7 +251,7 @@ Requires-Dist: retrying<2,>=1.3.3
251
251
  Requires-Dist: s3fs<2026,>=2024.6.1
252
252
  Requires-Dist: scikit-learn<1.6,>=1.4
253
253
  Requires-Dist: scipy<2,>=1.9
254
- Requires-Dist: snowflake-connector-python[pandas]<4,>=3.5.0
254
+ Requires-Dist: snowflake-connector-python[pandas]<4,>=3.12.0
255
255
  Requires-Dist: snowflake-snowpark-python!=1.26.0,<2,>=1.17.0
256
256
  Requires-Dist: sqlparse<1,>=0.4
257
257
  Requires-Dist: typing-extensions<5,>=4.1.0
@@ -261,14 +261,14 @@ Requires-Dist: catboost<2,>=1.2.0; extra == "all"
261
261
  Requires-Dist: keras<4,>=2.0.0; extra == "all"
262
262
  Requires-Dist: lightgbm<5,>=4.1.0; extra == "all"
263
263
  Requires-Dist: mlflow<3,>=2.16.0; extra == "all"
264
- Requires-Dist: sentence-transformers<3,>=2.7.0; extra == "all"
264
+ Requires-Dist: sentence-transformers<4,>=2.7.0; extra == "all"
265
265
  Requires-Dist: sentencepiece<0.2.0,>=0.1.95; extra == "all"
266
266
  Requires-Dist: shap<1,>=0.46.0; extra == "all"
267
267
  Requires-Dist: tensorflow<3,>=2.17.0; extra == "all"
268
268
  Requires-Dist: tokenizers<1,>=0.15.1; extra == "all"
269
269
  Requires-Dist: torch<3,>=2.0.1; extra == "all"
270
270
  Requires-Dist: torchdata<1,>=0.4; extra == "all"
271
- Requires-Dist: transformers<5,>=4.37.2; extra == "all"
271
+ Requires-Dist: transformers<5,>=4.39.3; extra == "all"
272
272
  Provides-Extra: catboost
273
273
  Requires-Dist: catboost<2,>=1.2.0; extra == "catboost"
274
274
  Provides-Extra: keras
@@ -287,11 +287,12 @@ Provides-Extra: torch
287
287
  Requires-Dist: torch<3,>=2.0.1; extra == "torch"
288
288
  Requires-Dist: torchdata<1,>=0.4; extra == "torch"
289
289
  Provides-Extra: transformers
290
- Requires-Dist: sentence-transformers<3,>=2.7.0; extra == "transformers"
290
+ Requires-Dist: sentence-transformers<4,>=2.7.0; extra == "transformers"
291
291
  Requires-Dist: sentencepiece<0.2.0,>=0.1.95; extra == "transformers"
292
292
  Requires-Dist: tokenizers<1,>=0.15.1; extra == "transformers"
293
293
  Requires-Dist: torch<3,>=2.0.1; extra == "transformers"
294
- Requires-Dist: transformers<5,>=4.37.2; extra == "transformers"
294
+ Requires-Dist: transformers<5,>=4.39.3; extra == "transformers"
295
+ Dynamic: license-file
295
296
 
296
297
  # Snowpark ML
297
298
 
@@ -401,10 +402,307 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
401
402
 
402
403
  # Release History
403
404
 
404
- ## 1.7.5
405
+ ## 1.8.1
406
+
407
+ ### Bug Fixes
408
+
409
+ - Registry: Fix a bug that caused `unsupported model type` error while logging a sklearn model with `score_samples`
410
+ inference method.
411
+ - Registry: Fix a bug that model inference service creation fails on an existing and suspended service.
412
+
413
+ ### Behavior Change
414
+
415
+ ### New Features
416
+
417
+ - ML Job (PrPr): Update Container Runtime image version to `1.0.1`
418
+ - ML Job (PrPr): Add `enable_metrics` argument to job submission APIs to enable publishing service metrics to Event Table.
419
+ See [Accessing Event Table service metrics](https://docs.snowflake.com/en/developer-guide/snowpark-container-services/monitoring-services#accessing-event-table-service-metrics)
420
+ for retrieving published metrics
421
+ and [Costs of telemetry data collection](https://docs.snowflake.com/en/developer-guide/logging-tracing/logging-tracing-billing)
422
+ for cost implications.
423
+ - Registry: When creating a copy of a `ModelVersion` with `log_model`, raise an exception if unsupported arguments are provided.
424
+
425
+ ## 1.8.0
426
+
427
+ ### Bug Fixes
428
+
429
+ - Modeling: Fix a bug in some metrics that allowed an unsupported version of numpy to be installed
430
+ automatically in the stored procedure, resulting in a numpy error on execution
431
+ - Registry: Fix a bug that leads to incorrect `Model is does not have _is_inference_api` error message when assigning
432
+ a supported model as a property of a CustomModel.
433
+ - Registry: Fix a bug that inference is not working when models with more than 500 input features
434
+ are deployed to SPCS.
435
+
436
+ ### Behavior Change
437
+
438
+ - Registry: With FeatureGroupSpec support, auto inferred model signature for `transformers.Pipeline` models have been
439
+ updated, including:
440
+ - Signature for fill-mask task has been changed from
441
+
442
+ ```python
443
+ ModelSignature(
444
+ inputs=[
445
+ FeatureSpec(name="inputs", dtype=DataType.STRING),
446
+ ],
447
+ outputs=[
448
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
449
+ ],
450
+ )
451
+ ```
452
+
453
+ to
454
+
455
+ ```python
456
+ ModelSignature(
457
+ inputs=[
458
+ FeatureSpec(name="inputs", dtype=DataType.STRING),
459
+ ],
460
+ outputs=[
461
+ FeatureGroupSpec(
462
+ name="outputs",
463
+ specs=[
464
+ FeatureSpec(name="sequence", dtype=DataType.STRING),
465
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
466
+ FeatureSpec(name="token", dtype=DataType.INT64),
467
+ FeatureSpec(name="token_str", dtype=DataType.STRING),
468
+ ],
469
+ shape=(-1,),
470
+ ),
471
+ ],
472
+ )
473
+ ```
474
+
475
+ - Signature for token-classification task has been changed from
476
+
477
+ ```python
478
+ ModelSignature(
479
+ inputs=[
480
+ FeatureSpec(name="inputs", dtype=DataType.STRING),
481
+ ],
482
+ outputs=[
483
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
484
+ ],
485
+ )
486
+ ```
487
+
488
+ to
489
+
490
+ ```python
491
+ ModelSignature(
492
+ inputs=[FeatureSpec(name="inputs", dtype=DataType.STRING)],
493
+ outputs=[
494
+ FeatureGroupSpec(
495
+ name="outputs",
496
+ specs=[
497
+ FeatureSpec(name="word", dtype=DataType.STRING),
498
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
499
+ FeatureSpec(name="entity", dtype=DataType.STRING),
500
+ FeatureSpec(name="index", dtype=DataType.INT64),
501
+ FeatureSpec(name="start", dtype=DataType.INT64),
502
+ FeatureSpec(name="end", dtype=DataType.INT64),
503
+ ],
504
+ shape=(-1,),
505
+ ),
506
+ ],
507
+ )
508
+ ```
509
+
510
+ - Signature for question-answering task when top_k is larger than 1 has been changed from
511
+
512
+ ```python
513
+ ModelSignature(
514
+ inputs=[
515
+ FeatureSpec(name="question", dtype=DataType.STRING),
516
+ FeatureSpec(name="context", dtype=DataType.STRING),
517
+ ],
518
+ outputs=[
519
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
520
+ ],
521
+ )
522
+ ```
523
+
524
+ to
525
+
526
+ ```python
527
+ ModelSignature(
528
+ inputs=[
529
+ FeatureSpec(name="question", dtype=DataType.STRING),
530
+ FeatureSpec(name="context", dtype=DataType.STRING),
531
+ ],
532
+ outputs=[
533
+ FeatureGroupSpec(
534
+ name="answers",
535
+ specs=[
536
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
537
+ FeatureSpec(name="start", dtype=DataType.INT64),
538
+ FeatureSpec(name="end", dtype=DataType.INT64),
539
+ FeatureSpec(name="answer", dtype=DataType.STRING),
540
+ ],
541
+ shape=(-1,),
542
+ ),
543
+ ],
544
+ )
545
+ ```
546
+
547
+ - Signature for text-classification task when top_k is `None` has been changed from
548
+
549
+ ```python
550
+ ModelSignature(
551
+ inputs=[
552
+ FeatureSpec(name="text", dtype=DataType.STRING),
553
+ FeatureSpec(name="text_pair", dtype=DataType.STRING),
554
+ ],
555
+ outputs=[
556
+ FeatureSpec(name="label", dtype=DataType.STRING),
557
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
558
+ ],
559
+ )
560
+ ```
561
+
562
+ to
563
+
564
+ ```python
565
+ ModelSignature(
566
+ inputs=[
567
+ FeatureSpec(name="text", dtype=DataType.STRING),
568
+ ],
569
+ outputs=[
570
+ FeatureSpec(name="label", dtype=DataType.STRING),
571
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
572
+ ],
573
+ )
574
+ ```
575
+
576
+ - Signature for text-classification task when top_k is not `None` has been changed from
577
+
578
+ ```python
579
+ ModelSignature(
580
+ inputs=[
581
+ FeatureSpec(name="text", dtype=DataType.STRING),
582
+ FeatureSpec(name="text_pair", dtype=DataType.STRING),
583
+ ],
584
+ outputs=[
585
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
586
+ ],
587
+ )
588
+ ```
589
+
590
+ to
591
+
592
+ ```python
593
+ ModelSignature(
594
+ inputs=[
595
+ FeatureSpec(name="text", dtype=DataType.STRING),
596
+ ],
597
+ outputs=[
598
+ FeatureGroupSpec(
599
+ name="labels",
600
+ specs=[
601
+ FeatureSpec(name="label", dtype=DataType.STRING),
602
+ FeatureSpec(name="score", dtype=DataType.DOUBLE),
603
+ ],
604
+ shape=(-1,),
605
+ ),
606
+ ],
607
+ )
608
+ ```
609
+
610
+ - Signature for text-generation task has been changed from
611
+
612
+ ```python
613
+ ModelSignature(
614
+ inputs=[FeatureSpec(name="inputs", dtype=DataType.STRING)],
615
+ outputs=[
616
+ FeatureSpec(name="outputs", dtype=DataType.STRING),
617
+ ],
618
+ )
619
+ ```
620
+
621
+ to
622
+
623
+ ```python
624
+ ModelSignature(
625
+ inputs=[
626
+ FeatureGroupSpec(
627
+ name="inputs",
628
+ specs=[
629
+ FeatureSpec(name="role", dtype=DataType.STRING),
630
+ FeatureSpec(name="content", dtype=DataType.STRING),
631
+ ],
632
+ shape=(-1,),
633
+ ),
634
+ ],
635
+ outputs=[
636
+ FeatureGroupSpec(
637
+ name="outputs",
638
+ specs=[
639
+ FeatureSpec(name="generated_text", dtype=DataType.STRING),
640
+ ],
641
+ shape=(-1,),
642
+ )
643
+ ],
644
+ )
645
+ ```
646
+
647
+ - Registry: PyTorch and TensorFlow models now expect a single tensor input/output by default when logging to Model
648
+ Registry. To use multiple tensors (previous behavior), set `options={"multiple_inputs": True}`.
649
+
650
+ Example with single tensor input:
651
+
652
+ ```python
653
+ import torch
654
+
655
+ class TorchModel(torch.nn.Module):
656
+ def __init__(self, n_input: int, n_hidden: int, n_out: int, dtype: torch.dtype = torch.float32) -> None:
657
+ super().__init__()
658
+ self.model = torch.nn.Sequential(
659
+ torch.nn.Linear(n_input, n_hidden, dtype=dtype),
660
+ torch.nn.ReLU(),
661
+ torch.nn.Linear(n_hidden, n_out, dtype=dtype),
662
+ torch.nn.Sigmoid(),
663
+ )
664
+
665
+ def forward(self, tensor: torch.Tensor) -> torch.Tensor:
666
+ return cast(torch.Tensor, self.model(tensor))
667
+
668
+ # Sample usage:
669
+ data_x = torch.rand(size=(batch_size, n_input))
670
+
671
+ # Log model with single tensor
672
+ reg.log_model(
673
+ model=model,
674
+ ...,
675
+ sample_input_data=data_x
676
+ )
677
+
678
+ # Run inference with single tensor
679
+ mv.run(data_x)
680
+ ```
681
+
682
+ For multiple tensor inputs/outputs, use:
683
+
684
+ ```python
685
+ reg.log_model(
686
+ model=model,
687
+ ...,
688
+ sample_input_data=[data_x_1, data_x_2],
689
+ options={"multiple_inputs": True}
690
+ )
691
+ ```
692
+
693
+ - Registry: Default `enable_explainability` to False when the model can be deployed to Snowpark Container Services.
694
+
695
+ ### New Features
696
+
697
+ - Registry: Added support to single `torch.Tensor`, `tensorflow.Tensor` and `tensorflow.Variable` as input or output
698
+ data.
699
+ - Registry: Support [`xgboost.DMatrix`](https://xgboost.readthedocs.io/en/stable/python/python_api.html#xgboost.DMatrix)
700
+ datatype for XGBoost models.
701
+
702
+ ## 1.7.5 (03-06-2025)
405
703
 
406
704
  - Support Python 3.12.
407
- - Explainability: Support native and snowml sklearn pipeline
705
+ - Explainability: Support native and snowflake.ml.modeling sklearn pipeline
408
706
 
409
707
  ### Bug Fixes
410
708
 
@@ -421,8 +719,6 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
421
719
  `ValueError(f"{self.entrypoint} must be a subpath of {self.source}")`
422
720
  - ML Job (PrPr): Fixed a bug in Ray cluster startup config which caused certain Runtime APIs to fail
423
721
 
424
- ### Behavior Change
425
-
426
722
  ### New Features
427
723
 
428
724
  - Registry: Added support for handling Hugging Face model configurations with auto-mapping functionality.