snowflake-ml-python 1.31.0__tar.gz → 1.33.0__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 (490) hide show
  1. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/CHANGELOG.md +48 -2
  2. {snowflake_ml_python-1.31.0/snowflake_ml_python.egg-info → snowflake_ml_python-1.33.0}/PKG-INFO +55 -9
  3. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/pyproject.toml +3 -3
  4. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/env_utils.py +93 -4
  5. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_client/experiment_tracking_sql_client.py +30 -0
  6. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_entities/run.py +4 -2
  7. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_logging/experiment_logging_context.py +3 -0
  8. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/experiment_tracking.py +83 -4
  9. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/feature_store.py +183 -27
  10. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/feature_view.py +36 -1
  11. snowflake_ml_python-1.33.0/snowflake/ml/feature_store/request_source.py +35 -0
  12. snowflake_ml_python-1.33.0/snowflake/ml/feature_store/spec/__init__.py +29 -0
  13. snowflake_ml_python-1.33.0/snowflake/ml/feature_store/spec/builder.py +768 -0
  14. snowflake_ml_python-1.33.0/snowflake/ml/feature_store/spec/enums.py +48 -0
  15. snowflake_ml_python-1.33.0/snowflake/ml/feature_store/spec/models.py +288 -0
  16. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/stream_source.py +4 -6
  17. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/job.py +8 -1
  18. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/model/batch_inference_specs.py +3 -3
  19. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/model/model_version_impl.py +48 -3
  20. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/param_utils.py +2 -0
  21. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/service_ops.py +11 -2
  22. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/function_generator.py +3 -0
  23. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/infer_function.py_template +2 -2
  24. snowflake_ml_python-1.33.0/snowflake/ml/model/_model_composer/model_method/infer_function_init_once.py_template +106 -0
  25. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +2 -2
  26. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template +2 -2
  27. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/model_method.py +20 -17
  28. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_env/model_env.py +19 -4
  29. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/_utils.py +4 -0
  30. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/huggingface.py +113 -57
  31. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/prophet.py +8 -7
  32. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/pytorch.py +12 -10
  33. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/sklearn.py +25 -15
  34. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta/model_meta.py +3 -1
  35. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/core.py +19 -1
  36. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/utils.py +205 -0
  37. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/custom_model.py +24 -1
  38. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/model_signature.py +24 -3
  39. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/type_hints.py +4 -0
  40. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/version.py +1 -1
  41. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0/snowflake_ml_python.egg-info}/PKG-INFO +55 -9
  42. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake_ml_python.egg-info/SOURCES.txt +6 -0
  43. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake_ml_python.egg-info/requires.txt +6 -6
  44. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/LICENSE.txt +0 -0
  45. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/README.md +0 -0
  46. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/setup.cfg +0 -0
  47. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/__init__.py +0 -0
  48. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_classify_text.py +0 -0
  49. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_complete.py +0 -0
  50. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_embed_text_1024.py +0 -0
  51. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_embed_text_768.py +0 -0
  52. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_extract_answer.py +0 -0
  53. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_finetune.py +0 -0
  54. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_sentiment.py +0 -0
  55. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_sse_client.py +0 -0
  56. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_summarize.py +0 -0
  57. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_translate.py +0 -0
  58. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_util.py +0 -0
  59. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/env.py +0 -0
  60. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/dataset_error_messages.py +0 -0
  61. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/dataset_errors.py +0 -0
  62. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/error_codes.py +0 -0
  63. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/error_messages.py +0 -0
  64. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/exceptions.py +0 -0
  65. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/fileset_error_messages.py +0 -0
  66. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/fileset_errors.py +0 -0
  67. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/modeling_error_messages.py +0 -0
  68. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/sql_error_codes.py +0 -0
  69. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/file_utils.py +0 -0
  70. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/human_readable_id/adjectives.txt +0 -0
  71. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/human_readable_id/animals.txt +0 -0
  72. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/human_readable_id/hrid_generator.py +0 -0
  73. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/human_readable_id/hrid_generator_base.py +0 -0
  74. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/init_utils.py +0 -0
  75. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/lineage/lineage_utils.py +0 -0
  76. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/migrator_utils.py +0 -0
  77. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/platform_capabilities.py +0 -0
  78. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/relax_version_strategy.py +0 -0
  79. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/telemetry.py +0 -0
  80. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/type_utils.py +0 -0
  81. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/connection_params.py +0 -0
  82. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/db_utils.py +0 -0
  83. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/formatting.py +0 -0
  84. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/identifier.py +0 -0
  85. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/import_utils.py +0 -0
  86. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/jwt_generator.py +0 -0
  87. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/mixins.py +0 -0
  88. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/parallelize.py +0 -0
  89. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/pkg_version_utils.py +0 -0
  90. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/query_result_checker.py +0 -0
  91. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/result.py +0 -0
  92. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/service_logger.py +0 -0
  93. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/snowflake_env.py +0 -0
  94. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/snowpark_dataframe_utils.py +0 -0
  95. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/sql_identifier.py +0 -0
  96. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/table_manager.py +0 -0
  97. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/tee.py +0 -0
  98. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/temp_file_utils.py +0 -0
  99. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/url.py +0 -0
  100. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/__init__.py +0 -0
  101. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/_internal/arrow_ingestor.py +0 -0
  102. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/data_connector.py +0 -0
  103. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/data_ingestor.py +0 -0
  104. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/data_source.py +0 -0
  105. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/ingestor_utils.py +0 -0
  106. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/torch_utils.py +0 -0
  107. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/__init__.py +0 -0
  108. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/dataset.py +0 -0
  109. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/dataset_factory.py +0 -0
  110. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/dataset_metadata.py +0 -0
  111. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/dataset_reader.py +0 -0
  112. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/__init__.py +0 -0
  113. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_client/artifact.py +0 -0
  114. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_entities/__init__.py +0 -0
  115. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_entities/experiment.py +0 -0
  116. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_entities/run_metadata.py +0 -0
  117. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_experiment_info.py +0 -0
  118. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_logging/__init__.py +0 -0
  119. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_logging/experiment_logger.py +0 -0
  120. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/callback/keras.py +0 -0
  121. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/callback/lightgbm.py +0 -0
  122. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/callback/xgboost.py +0 -0
  123. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/utils.py +0 -0
  124. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/__init__.py +0 -0
  125. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/access_manager.py +0 -0
  126. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/aggregation.py +0 -0
  127. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/entity.py +0 -0
  128. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/airline_features/entities.py +0 -0
  129. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/airline_features/features/plane_features.py +0 -0
  130. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/airline_features/features/weather_features.py +0 -0
  131. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/airline_features/source.yaml +0 -0
  132. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +0 -0
  133. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/station_feature.py +0 -0
  134. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/trip_feature.py +0 -0
  135. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +0 -0
  136. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/example_helper.py +0 -0
  137. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py +0 -0
  138. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/location_features.py +0 -0
  139. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/trip_features.py +0 -0
  140. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml +0 -0
  141. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/source_data/airline.yaml +0 -0
  142. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +0 -0
  143. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +0 -0
  144. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml +0 -0
  145. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +0 -0
  146. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/wine_quality_features/entities.py +0 -0
  147. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py +0 -0
  148. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py +0 -0
  149. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +0 -0
  150. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/feature.py +0 -0
  151. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/metadata_manager.py +0 -0
  152. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/tile_sql_generator.py +0 -0
  153. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/embedded_stage_fs.py +0 -0
  154. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/fileset.py +0 -0
  155. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/sfcfs.py +0 -0
  156. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/snowfs.py +0 -0
  157. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/stage_fs.py +0 -0
  158. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/__init__.py +0 -0
  159. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/__init__.py +0 -0
  160. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/data_utils.py +0 -0
  161. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/dto_schema.py +0 -0
  162. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/exception_utils.py +0 -0
  163. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/legacy.py +0 -0
  164. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/protocols.py +0 -0
  165. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/results.py +0 -0
  166. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/utils.py +0 -0
  167. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/__init__.py +0 -0
  168. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/arg_protocol.py +0 -0
  169. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/constants.py +0 -0
  170. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/feature_flags.py +0 -0
  171. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/payload_utils.py +0 -0
  172. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/query_helper.py +0 -0
  173. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/runtime_env_utils.py +0 -0
  174. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/constants.py +0 -0
  175. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/get_instance_ip.py +0 -0
  176. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +0 -0
  177. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/signal_workers.py +0 -0
  178. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/start_mlruntime.sh +0 -0
  179. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/startup.sh +0 -0
  180. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py +0 -0
  181. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/stage_utils.py +0 -0
  182. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/type_utils.py +0 -0
  183. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/decorators.py +0 -0
  184. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/job_definition.py +0 -0
  185. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/manager.py +0 -0
  186. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/lineage/__init__.py +0 -0
  187. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/lineage/lineage_node.py +0 -0
  188. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/__init__.py +0 -0
  189. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/model/inference_engine_utils.py +0 -0
  190. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/model/model_impl.py +0 -0
  191. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/deployment_step.py +0 -0
  192. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/metadata_ops.py +0 -0
  193. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/model_ops.py +0 -0
  194. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/service/import_model_spec_schema.py +0 -0
  195. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/service/model_deployment_spec.py +0 -0
  196. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +0 -0
  197. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/_base.py +0 -0
  198. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/model.py +0 -0
  199. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/model_version.py +0 -0
  200. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/service.py +0 -0
  201. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/stage.py +0 -0
  202. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/tag.py +0 -0
  203. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_composer.py +0 -0
  204. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +0 -0
  205. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +0 -0
  206. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/constants.py +0 -0
  207. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/utils.py +0 -0
  208. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_user_file/model_user_file.py +0 -0
  209. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handler.py +0 -0
  210. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/_base.py +0 -0
  211. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/catboost.py +0 -0
  212. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/custom.py +0 -0
  213. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/keras.py +0 -0
  214. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/lightgbm.py +0 -0
  215. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/mlflow.py +0 -0
  216. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +0 -0
  217. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +0 -0
  218. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/tensorflow.py +0 -0
  219. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/torchscript.py +0 -0
  220. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/xgboost.py +0 -0
  221. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py +0 -0
  222. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers_migrator/pytorch_migrator_2023_12_01.py +0 -0
  223. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12_01.py +0 -0
  224. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py +0 -0
  225. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py +0 -0
  226. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta/model_blob_meta.py +0 -0
  227. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta/model_meta_schema.py +0 -0
  228. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py +0 -0
  229. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py +0 -0
  230. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py +0 -0
  231. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_packager.py +0 -0
  232. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +0 -0
  233. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_runtime/model_runtime.py +0 -0
  234. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_task/model_task_utils.py +0 -0
  235. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/base_handler.py +0 -0
  236. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/builtins_handler.py +0 -0
  237. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/dmatrix_handler.py +0 -0
  238. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/numpy_handler.py +0 -0
  239. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/pandas_handler.py +0 -0
  240. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/pytorch_handler.py +0 -0
  241. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/snowpark_handler.py +0 -0
  242. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/tensorflow_handler.py +0 -0
  243. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/batch/__init__.py +0 -0
  244. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/code_path.py +0 -0
  245. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/compute_pool.py +0 -0
  246. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/event_handler.py +0 -0
  247. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/inference_engine.py +0 -0
  248. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/models/huggingface.py +0 -0
  249. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/models/huggingface_pipeline.py +0 -0
  250. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/openai_signatures.py +0 -0
  251. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/target_platform.py +0 -0
  252. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/task.py +0 -0
  253. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/volatility.py +0 -0
  254. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/estimator_utils.py +0 -0
  255. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py +0 -0
  256. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py +0 -0
  257. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/model_specifications.py +0 -0
  258. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/model_trainer.py +0 -0
  259. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -0
  260. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -0
  261. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +0 -0
  262. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py +0 -0
  263. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py +0 -0
  264. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py +0 -0
  265. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py +0 -0
  266. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/transformer_protocols.py +0 -0
  267. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/calibration/__init__.py +0 -0
  268. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +0 -0
  269. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/__init__.py +0 -0
  270. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/affinity_propagation.py +0 -0
  271. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/agglomerative_clustering.py +0 -0
  272. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/birch.py +0 -0
  273. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/bisecting_k_means.py +0 -0
  274. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/dbscan.py +0 -0
  275. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/feature_agglomeration.py +0 -0
  276. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/k_means.py +0 -0
  277. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/mean_shift.py +0 -0
  278. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/mini_batch_k_means.py +0 -0
  279. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/optics.py +0 -0
  280. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/spectral_biclustering.py +0 -0
  281. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/spectral_clustering.py +0 -0
  282. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/spectral_coclustering.py +0 -0
  283. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/compose/__init__.py +0 -0
  284. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/compose/column_transformer.py +0 -0
  285. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/compose/transformed_target_regressor.py +0 -0
  286. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/__init__.py +0 -0
  287. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/elliptic_envelope.py +0 -0
  288. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/empirical_covariance.py +0 -0
  289. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/graphical_lasso.py +0 -0
  290. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/graphical_lasso_cv.py +0 -0
  291. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/ledoit_wolf.py +0 -0
  292. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/min_cov_det.py +0 -0
  293. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/oas.py +0 -0
  294. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/shrunk_covariance.py +0 -0
  295. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/__init__.py +0 -0
  296. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/dictionary_learning.py +0 -0
  297. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/factor_analysis.py +0 -0
  298. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/fast_ica.py +0 -0
  299. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/incremental_pca.py +0 -0
  300. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/kernel_pca.py +0 -0
  301. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +0 -0
  302. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +0 -0
  303. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/pca.py +0 -0
  304. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/sparse_pca.py +0 -0
  305. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/truncated_svd.py +0 -0
  306. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/discriminant_analysis/__init__.py +0 -0
  307. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +0 -0
  308. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +0 -0
  309. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/__init__.py +0 -0
  310. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/ada_boost_classifier.py +0 -0
  311. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/ada_boost_regressor.py +0 -0
  312. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/bagging_classifier.py +0 -0
  313. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/bagging_regressor.py +0 -0
  314. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/extra_trees_classifier.py +0 -0
  315. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/extra_trees_regressor.py +0 -0
  316. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +0 -0
  317. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +0 -0
  318. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +0 -0
  319. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +0 -0
  320. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/isolation_forest.py +0 -0
  321. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/random_forest_classifier.py +0 -0
  322. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/random_forest_regressor.py +0 -0
  323. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/stacking_regressor.py +0 -0
  324. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/voting_classifier.py +0 -0
  325. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/voting_regressor.py +0 -0
  326. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/__init__.py +0 -0
  327. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/generic_univariate_select.py +0 -0
  328. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_fdr.py +0 -0
  329. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_fpr.py +0 -0
  330. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_fwe.py +0 -0
  331. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_k_best.py +0 -0
  332. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_percentile.py +0 -0
  333. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +0 -0
  334. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/variance_threshold.py +0 -0
  335. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/framework/_utils.py +0 -0
  336. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/framework/base.py +0 -0
  337. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/gaussian_process/__init__.py +0 -0
  338. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +0 -0
  339. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +0 -0
  340. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/__init__.py +0 -0
  341. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/iterative_imputer.py +0 -0
  342. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/knn_imputer.py +0 -0
  343. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/missing_indicator.py +0 -0
  344. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/simple_imputer.py +0 -0
  345. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/__init__.py +0 -0
  346. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +0 -0
  347. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/nystroem.py +0 -0
  348. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +0 -0
  349. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +0 -0
  350. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +0 -0
  351. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_ridge/__init__.py +0 -0
  352. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +0 -0
  353. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/lightgbm/__init__.py +0 -0
  354. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/lightgbm/lgbm_classifier.py +0 -0
  355. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/lightgbm/lgbm_regressor.py +0 -0
  356. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/__init__.py +0 -0
  357. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ard_regression.py +0 -0
  358. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/bayesian_ridge.py +0 -0
  359. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/elastic_net.py +0 -0
  360. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/elastic_net_cv.py +0 -0
  361. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/gamma_regressor.py +0 -0
  362. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/huber_regressor.py +0 -0
  363. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lars.py +0 -0
  364. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lars_cv.py +0 -0
  365. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso.py +0 -0
  366. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso_cv.py +0 -0
  367. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso_lars.py +0 -0
  368. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso_lars_cv.py +0 -0
  369. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso_lars_ic.py +0 -0
  370. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/linear_regression.py +0 -0
  371. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/logistic_regression.py +0 -0
  372. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/logistic_regression_cv.py +0 -0
  373. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +0 -0
  374. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +0 -0
  375. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/multi_task_lasso.py +0 -0
  376. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +0 -0
  377. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +0 -0
  378. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +0 -0
  379. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +0 -0
  380. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/perceptron.py +0 -0
  381. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/poisson_regressor.py +0 -0
  382. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ransac_regressor.py +0 -0
  383. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ridge.py +0 -0
  384. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ridge_classifier.py +0 -0
  385. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +0 -0
  386. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ridge_cv.py +0 -0
  387. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/sgd_classifier.py +0 -0
  388. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +0 -0
  389. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/sgd_regressor.py +0 -0
  390. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/theil_sen_regressor.py +0 -0
  391. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/tweedie_regressor.py +0 -0
  392. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/__init__.py +0 -0
  393. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/isomap.py +0 -0
  394. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/mds.py +0 -0
  395. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/spectral_embedding.py +0 -0
  396. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/tsne.py +0 -0
  397. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/__init__.py +0 -0
  398. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/classification.py +0 -0
  399. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/correlation.py +0 -0
  400. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/covariance.py +0 -0
  401. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/metrics_utils.py +0 -0
  402. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/ranking.py +0 -0
  403. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/regression.py +0 -0
  404. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/mixture/__init__.py +0 -0
  405. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +0 -0
  406. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/mixture/gaussian_mixture.py +0 -0
  407. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/model_selection/__init__.py +0 -0
  408. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/model_selection/grid_search_cv.py +0 -0
  409. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/model_selection/randomized_search_cv.py +0 -0
  410. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/multiclass/__init__.py +0 -0
  411. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +0 -0
  412. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +0 -0
  413. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/multiclass/output_code_classifier.py +0 -0
  414. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/__init__.py +0 -0
  415. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +0 -0
  416. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/categorical_nb.py +0 -0
  417. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/complement_nb.py +0 -0
  418. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/gaussian_nb.py +0 -0
  419. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/multinomial_nb.py +0 -0
  420. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/__init__.py +0 -0
  421. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +0 -0
  422. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +0 -0
  423. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/kernel_density.py +0 -0
  424. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/local_outlier_factor.py +0 -0
  425. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/nearest_centroid.py +0 -0
  426. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/nearest_neighbors.py +0 -0
  427. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +0 -0
  428. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +0 -0
  429. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +0 -0
  430. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neural_network/__init__.py +0 -0
  431. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neural_network/bernoulli_rbm.py +0 -0
  432. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neural_network/mlp_classifier.py +0 -0
  433. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neural_network/mlp_regressor.py +0 -0
  434. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/parameters/disable_distributed_hpo.py +0 -0
  435. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/parameters/disable_model_tracer.py +0 -0
  436. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/parameters/enable_anonymous_sproc.py +0 -0
  437. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/pipeline/__init__.py +0 -0
  438. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/pipeline/pipeline.py +0 -0
  439. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/__init__.py +0 -0
  440. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/binarizer.py +0 -0
  441. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/k_bins_discretizer.py +0 -0
  442. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/label_encoder.py +0 -0
  443. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/max_abs_scaler.py +0 -0
  444. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/min_max_scaler.py +0 -0
  445. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/normalizer.py +0 -0
  446. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/one_hot_encoder.py +0 -0
  447. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/ordinal_encoder.py +0 -0
  448. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/polynomial_features.py +0 -0
  449. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/robust_scaler.py +0 -0
  450. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/standard_scaler.py +0 -0
  451. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/semi_supervised/__init__.py +0 -0
  452. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/semi_supervised/label_propagation.py +0 -0
  453. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/semi_supervised/label_spreading.py +0 -0
  454. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/__init__.py +0 -0
  455. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/linear_svc.py +0 -0
  456. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/linear_svr.py +0 -0
  457. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/nu_svc.py +0 -0
  458. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/nu_svr.py +0 -0
  459. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/svc.py +0 -0
  460. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/svr.py +0 -0
  461. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/__init__.py +0 -0
  462. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/decision_tree_classifier.py +0 -0
  463. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/decision_tree_regressor.py +0 -0
  464. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/extra_tree_classifier.py +0 -0
  465. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/extra_tree_regressor.py +0 -0
  466. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/__init__.py +0 -0
  467. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/xgb_classifier.py +0 -0
  468. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/xgb_regressor.py +0 -0
  469. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/xgbrf_classifier.py +0 -0
  470. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/xgbrf_regressor.py +0 -0
  471. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/_client/model_monitor_sql_client.py +0 -0
  472. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/_client/queries/record_count.ssql +0 -0
  473. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/_client/queries/rmse.ssql +0 -0
  474. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/_manager/model_monitor_manager.py +0 -0
  475. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/entities/model_monitor_config.py +0 -0
  476. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/explain_visualize.py +0 -0
  477. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/model_monitor.py +0 -0
  478. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/shap.py +0 -0
  479. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/registry/__init__.py +0 -0
  480. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/registry/_manager/model_manager.py +0 -0
  481. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/registry/_manager/model_parameter_reconciler.py +0 -0
  482. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/registry/registry.py +0 -0
  483. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/authentication.py +0 -0
  484. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/connection_params.py +0 -0
  485. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/html_utils.py +0 -0
  486. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/sparse.py +0 -0
  487. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/sql_client.py +0 -0
  488. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/stage_file.py +0 -0
  489. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake_ml_python.egg-info/dependency_links.txt +0 -0
  490. {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake_ml_python.egg-info/top_level.txt +0 -0
@@ -1,6 +1,52 @@
1
1
  # Release History
2
2
 
3
- ## 1.31.0
3
+ ## 1.33.0
4
+
5
+ ### New Features
6
+
7
+ * Registry: Extended `ParamSpec` support to PyTorch models. Parameters declared in the model signature
8
+ can now be passed at inference time, matching the existing support for custom models.
9
+ * Registry (PrPr): Added `model_init_once` model save option to `log_model`. When set to `True`, the
10
+ model is loaded once per worker process at startup, eliminating model-loading overhead. Defaults to `False`.
11
+ * Experiment Tracking live logging is out of private preview
12
+ and will become generally available over the next few weeks.
13
+ * Registry: Bumped `transformers` upper bound to `<6`, adding compatibility with Hugging Face Transformers v5.
14
+
15
+ ### Bug Fixes
16
+
17
+ * Experiment Tracking live logging: Fixed a bug where the tracebacks for uncaught exceptions were not logged when
18
+ the code was running in a `with exp.start_run()` block.
19
+ * Registry: Fixed a thread leak in `create_service(block=True)` where the log-streaming thread could outlive the
20
+ error handler when service deployment fails.
21
+
22
+ ### Behavior Changes
23
+
24
+ ### Deprecations
25
+
26
+ ## 1.32.0 (2026-03-26)
27
+
28
+ ### New Features
29
+
30
+ * Registry: Extended `ParamSpec` support to scikit-learn models. Parameters declared in the model signature
31
+ can now be passed at inference time, matching the existing support for custom models.
32
+ * Registry: `infer_signature()` now accepts a `dict` for the `params` argument (e.g.,
33
+ `params={"temperature": 0.7, "max_tokens": 100}`), automatically inferring `ParamSpec` objects
34
+ from the Python value types. The existing `Sequence[BaseParamSpec]` form is still supported.
35
+
36
+ ### Bug Fixes
37
+
38
+ * Experiment Tracking live logging (PrPr): Fixed a bug where the tracebacks for uncaught exceptions were not logged
39
+ when the code was running inside Snowflake notebooks.
40
+
41
+ ### Behavior Changes
42
+
43
+ * Registry: The models from `huggingface.TransformersPipeline` and `transformers.Pipeline` will default to safetensors
44
+ file format by default by using `safe_serialization=True` parameter to the `save_pretrained` call. This creates
45
+ safetensors files instead of PyTorch binaries or pt files, addressing security vulnerability CVE-2025-32434.
46
+
47
+ ### Deprecations
48
+
49
+ ## 1.31.0 (2026-03-19)
4
50
 
5
51
  ### New Features
6
52
 
@@ -18,7 +64,7 @@
18
64
  * Registry: Fixed a bug where invalid parameter types (e.g., passing a string to an integer parameter)
19
65
  were silently coerced instead of raising an error. Parameters are now strictly validated against their
20
66
  declared types before inference. This may break code that relied on the silent coercion behavior
21
- (e.g., `model.run(max_tokens="100")` or `model.run(some_int_param=True)`).
67
+ (e.g., `mv.run(..., params={"max_tokens": "100"})` or `mv.run(..., params={"some_int_param": True})`).
22
68
  * ML Job: Fixed explicitly named `MLJobDefinition` objects so they can be overwritten in place and invoked
23
69
  repeatedly without job name collisions; the `generate_suffix` argument has been removed.
24
70
  * Experiment Tracking live logging (PrPr): Fixed a bug that generated too many lines of log that consist entirely of
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: snowflake-ml-python
3
- Version: 1.31.0
3
+ Version: 1.33.0
4
4
  Summary: The machine learning client library that is used for interacting with Snowflake to build machine learning solutions.
5
5
  Author-email: "Snowflake, Inc" <support@snowflake.com>
6
6
  License:
@@ -266,14 +266,14 @@ Requires-Dist: keras<4,>=2.0.0; extra == "all"
266
266
  Requires-Dist: lightgbm<5,>=4.1.0; extra == "all"
267
267
  Requires-Dist: mlflow<3,>=2.16.0; extra == "all"
268
268
  Requires-Dist: prophet<2,>=1.1.0; extra == "all"
269
- Requires-Dist: sentence-transformers<4,>=2.7.0; extra == "all"
269
+ Requires-Dist: sentence-transformers<6,>=2.7.0; extra == "all"
270
270
  Requires-Dist: sentencepiece<0.2.0,>=0.1.95; extra == "all"
271
271
  Requires-Dist: streamlit<2,>=1.30.0; extra == "all"
272
272
  Requires-Dist: tensorflow<3,>=2.17.0; extra == "all"
273
273
  Requires-Dist: tokenizers<1,>=0.15.1; extra == "all"
274
274
  Requires-Dist: torch<3,>=2.0.1; extra == "all"
275
275
  Requires-Dist: torchdata<1,>=0.4; extra == "all"
276
- Requires-Dist: transformers!=4.51.3,<5,>=4.39.3; extra == "all"
276
+ Requires-Dist: transformers!=4.51.3,<6,>=4.39.3; extra == "all"
277
277
  Provides-Extra: altair
278
278
  Requires-Dist: altair<6,>=5; extra == "altair"
279
279
  Provides-Extra: catboost
@@ -286,12 +286,12 @@ Provides-Extra: lightgbm
286
286
  Requires-Dist: lightgbm<5,>=4.1.0; extra == "lightgbm"
287
287
  Provides-Extra: llm
288
288
  Requires-Dist: mlflow<3,>=2.16.0; extra == "llm"
289
- Requires-Dist: sentence-transformers<4,>=2.7.0; extra == "llm"
289
+ Requires-Dist: sentence-transformers<6,>=2.7.0; extra == "llm"
290
290
  Requires-Dist: sentencepiece<0.2.0,>=0.1.95; extra == "llm"
291
291
  Requires-Dist: tokenizers<1,>=0.15.1; extra == "llm"
292
292
  Requires-Dist: torch<3,>=2.0.1; extra == "llm"
293
293
  Requires-Dist: torchdata<1,>=0.4; extra == "llm"
294
- Requires-Dist: transformers!=4.51.3,<5,>=4.39.3; extra == "llm"
294
+ Requires-Dist: transformers!=4.51.3,<6,>=4.39.3; extra == "llm"
295
295
  Provides-Extra: mlflow
296
296
  Requires-Dist: mlflow<3,>=2.16.0; extra == "mlflow"
297
297
  Provides-Extra: prophet
@@ -304,11 +304,11 @@ Provides-Extra: torch
304
304
  Requires-Dist: torch<3,>=2.0.1; extra == "torch"
305
305
  Requires-Dist: torchdata<1,>=0.4; extra == "torch"
306
306
  Provides-Extra: transformers
307
- Requires-Dist: sentence-transformers<4,>=2.7.0; extra == "transformers"
307
+ Requires-Dist: sentence-transformers<6,>=2.7.0; extra == "transformers"
308
308
  Requires-Dist: sentencepiece<0.2.0,>=0.1.95; extra == "transformers"
309
309
  Requires-Dist: tokenizers<1,>=0.15.1; extra == "transformers"
310
310
  Requires-Dist: torch<3,>=2.0.1; extra == "transformers"
311
- Requires-Dist: transformers!=4.51.3,<5,>=4.39.3; extra == "transformers"
311
+ Requires-Dist: transformers!=4.51.3,<6,>=4.39.3; extra == "transformers"
312
312
  Dynamic: license-file
313
313
 
314
314
  # Snowflake ML Python
@@ -416,7 +416,53 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
416
416
 
417
417
  # Release History
418
418
 
419
- ## 1.31.0
419
+ ## 1.33.0
420
+
421
+ ### New Features
422
+
423
+ * Registry: Extended `ParamSpec` support to PyTorch models. Parameters declared in the model signature
424
+ can now be passed at inference time, matching the existing support for custom models.
425
+ * Registry (PrPr): Added `model_init_once` model save option to `log_model`. When set to `True`, the
426
+ model is loaded once per worker process at startup, eliminating model-loading overhead. Defaults to `False`.
427
+ * Experiment Tracking live logging is out of private preview
428
+ and will become generally available over the next few weeks.
429
+ * Registry: Bumped `transformers` upper bound to `<6`, adding compatibility with Hugging Face Transformers v5.
430
+
431
+ ### Bug Fixes
432
+
433
+ * Experiment Tracking live logging: Fixed a bug where the tracebacks for uncaught exceptions were not logged when
434
+ the code was running in a `with exp.start_run()` block.
435
+ * Registry: Fixed a thread leak in `create_service(block=True)` where the log-streaming thread could outlive the
436
+ error handler when service deployment fails.
437
+
438
+ ### Behavior Changes
439
+
440
+ ### Deprecations
441
+
442
+ ## 1.32.0 (2026-03-26)
443
+
444
+ ### New Features
445
+
446
+ * Registry: Extended `ParamSpec` support to scikit-learn models. Parameters declared in the model signature
447
+ can now be passed at inference time, matching the existing support for custom models.
448
+ * Registry: `infer_signature()` now accepts a `dict` for the `params` argument (e.g.,
449
+ `params={"temperature": 0.7, "max_tokens": 100}`), automatically inferring `ParamSpec` objects
450
+ from the Python value types. The existing `Sequence[BaseParamSpec]` form is still supported.
451
+
452
+ ### Bug Fixes
453
+
454
+ * Experiment Tracking live logging (PrPr): Fixed a bug where the tracebacks for uncaught exceptions were not logged
455
+ when the code was running inside Snowflake notebooks.
456
+
457
+ ### Behavior Changes
458
+
459
+ * Registry: The models from `huggingface.TransformersPipeline` and `transformers.Pipeline` will default to safetensors
460
+ file format by default by using `safe_serialization=True` parameter to the `save_pretrained` call. This creates
461
+ safetensors files instead of PyTorch binaries or pt files, addressing security vulnerability CVE-2025-32434.
462
+
463
+ ### Deprecations
464
+
465
+ ## 1.31.0 (2026-03-19)
420
466
 
421
467
  ### New Features
422
468
 
@@ -434,7 +480,7 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
434
480
  * Registry: Fixed a bug where invalid parameter types (e.g., passing a string to an integer parameter)
435
481
  were silently coerced instead of raising an error. Parameters are now strictly validated against their
436
482
  declared types before inference. This may break code that relied on the silent coercion behavior
437
- (e.g., `model.run(max_tokens="100")` or `model.run(some_int_param=True)`).
483
+ (e.g., `mv.run(..., params={"max_tokens": "100"})` or `mv.run(..., params={"some_int_param": True})`).
438
484
  * ML Job: Fixed explicitly named `MLJobDefinition` objects so they can be overwritten in place and invoked
439
485
  repeatedly without job name collisions; the `generate_suffix` argument has been removed.
440
486
  * Experiment Tracking live logging (PrPr): Fixed a bug that generated too many lines of log that consist entirely of
@@ -24,18 +24,18 @@ Issues = "https://github.com/snowflakedb/snowflake-ml-python/issues"
24
24
  Changelog = "https://github.com/snowflakedb/snowflake-ml-python/blob/master/CHANGELOG.md"
25
25
 
26
26
  [project.optional-dependencies]
27
- all = [ "altair>=5,<6", "catboost>=1.2.0, <2", "keras>=2.0.0,<4", "lightgbm>=4.1.0, <5", "mlflow>=2.16.0, <3", "prophet>=1.1.0, <2", "sentence-transformers>=2.7.0,<4", "sentencepiece>=0.1.95,<0.2.0", "streamlit>=1.30.0,<2", "tensorflow>=2.17.0,<3", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "torchdata>=0.4,<1", "transformers>=4.39.3,<5,!=4.51.3",]
27
+ all = [ "altair>=5,<6", "catboost>=1.2.0, <2", "keras>=2.0.0,<4", "lightgbm>=4.1.0, <5", "mlflow>=2.16.0, <3", "prophet>=1.1.0, <2", "sentence-transformers>=2.7.0,<6", "sentencepiece>=0.1.95,<0.2.0", "streamlit>=1.30.0,<2", "tensorflow>=2.17.0,<3", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "torchdata>=0.4,<1", "transformers>=4.39.3,!=4.51.3,<6",]
28
28
  altair = [ "altair>=5,<6",]
29
29
  catboost = [ "catboost>=1.2.0, <2",]
30
30
  keras = [ "keras>=2.0.0,<4", "tensorflow>=2.17.0,<3", "torch>=2.0.1,<3",]
31
31
  lightgbm = [ "lightgbm>=4.1.0, <5",]
32
- llm = [ "mlflow>=2.16.0, <3", "sentence-transformers>=2.7.0,<4", "sentencepiece>=0.1.95,<0.2.0", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "torchdata>=0.4,<1", "transformers>=4.39.3,<5,!=4.51.3",]
32
+ llm = [ "mlflow>=2.16.0, <3", "sentence-transformers>=2.7.0,<6", "sentencepiece>=0.1.95,<0.2.0", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "torchdata>=0.4,<1", "transformers>=4.39.3,!=4.51.3,<6",]
33
33
  mlflow = [ "mlflow>=2.16.0, <3",]
34
34
  prophet = [ "prophet>=1.1.0, <2",]
35
35
  streamlit = [ "streamlit>=1.30.0,<2",]
36
36
  tensorflow = [ "tensorflow>=2.17.0,<3",]
37
37
  torch = [ "torch>=2.0.1,<3", "torchdata>=0.4,<1",]
38
- transformers = [ "sentence-transformers>=2.7.0,<4", "sentencepiece>=0.1.95,<0.2.0", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "transformers>=4.39.3,<5,!=4.51.3",]
38
+ transformers = [ "sentence-transformers>=2.7.0,<6", "sentencepiece>=0.1.95,<0.2.0", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "transformers>=4.39.3,!=4.51.3,<6",]
39
39
 
40
40
  [tool.setuptools.package-data]
41
41
  "*" = [ "*",]
@@ -591,18 +591,104 @@ def save_conda_env_file(
591
591
  yaml.safe_dump(env, stream=f, default_flow_style=False)
592
592
 
593
593
 
594
- def save_requirements_file(path: pathlib.Path, pip_deps: list[requirements.Requirement]) -> None:
594
+ def _get_pytorch_cuda_suffix(cuda_version: str) -> str:
595
+ """Get PyTorch CUDA wheel suffix (e.g., '124') for the specified CUDA version.
596
+
597
+ Args:
598
+ cuda_version: CUDA version string.
599
+
600
+ Returns:
601
+ The CUDA suffix for PyTorch wheels.
602
+ """
603
+ parsed = version.parse(cuda_version)
604
+ return f"{parsed.major}{parsed.minor}"
605
+
606
+
607
+ def _get_pytorch_cuda_index_url(cuda_version: str) -> str:
608
+ """Get PyTorch CUDA index URL for the specified CUDA version.
609
+
610
+ Args:
611
+ cuda_version: CUDA version string.
612
+
613
+ Returns:
614
+ The --extra-index-url argument for pip/uv.
615
+ """
616
+ cuda_suffix = _get_pytorch_cuda_suffix(cuda_version)
617
+ return f"--extra-index-url https://download.pytorch.org/whl/cu{cuda_suffix}"
618
+
619
+
620
+ def _pin_torch_to_cuda_variant(
621
+ pip_deps: list[requirements.Requirement], cuda_version: str
622
+ ) -> list[requirements.Requirement]:
623
+ """Pin torch requirement to the CUDA variant (e.g., torch==2.5.0+cu124).
624
+
625
+ PyTorch CUDA wheels use local version identifiers like +cu124 to distinguish
626
+ CUDA-enabled builds from CPU-only builds.
627
+
628
+ Args:
629
+ pip_deps: Validated pip requirements.
630
+ cuda_version: CUDA version string (e.g., "12.4", "12.4.1").
631
+
632
+ Returns:
633
+ A new list of requirements with ``torch==X.Y.Z`` rewritten to ``torch==X.Y.Z+cu...``
634
+ when the requirement is exactly pinned and has no ``+cu`` suffix yet.
635
+ """
636
+ cuda_suffix = _get_pytorch_cuda_suffix(cuda_version)
637
+ result = []
638
+
639
+ for req in pip_deps:
640
+ if req.name != "torch":
641
+ result.append(req)
642
+ continue
643
+
644
+ # Extract pinned version (e.g., ==2.5.0)
645
+ pinned_version = next((s.version for s in req.specifier if s.operator == "=="), None)
646
+
647
+ # Skip if not pinned or already has +cu suffix
648
+ if not pinned_version or "+cu" in pinned_version:
649
+ result.append(req)
650
+ continue
651
+
652
+ # Create new requirement with CUDA local version
653
+ new_req = requirements.Requirement(f"torch=={pinned_version}+cu{cuda_suffix}")
654
+ new_req.extras = req.extras
655
+ new_req.marker = req.marker
656
+ result.append(new_req)
657
+
658
+ return result
659
+
660
+
661
+ def _has_torch_dependency(pip_deps: list[requirements.Requirement]) -> bool:
662
+ """Check if torch is in the pip dependencies."""
663
+ return any(dep.name == "torch" for dep in pip_deps)
664
+
665
+
666
+ def save_requirements_file(
667
+ path: pathlib.Path,
668
+ pip_deps: list[requirements.Requirement],
669
+ cuda_version: Optional[str] = None,
670
+ ) -> None:
595
671
  """Generate Python requirements.txt file in the given directory path.
596
672
 
597
673
  Args:
598
674
  path: Path to the requirements.txt file.
599
- pip_deps: List of dependencies string after validated.
675
+ pip_deps: List of dependencies after validation.
676
+ cuda_version: Optional CUDA version for GPU models. If provided and torch is in
677
+ dependencies, adds PyTorch CUDA index URL and pins torch to CUDA variant.
600
678
  """
601
679
  assert path.suffix in [".txt"], "PIP requirement file should have extension of txt."
602
680
  path.parent.mkdir(parents=True, exist_ok=True)
603
- requirements = "\n".join(map(str, pip_deps))
681
+
682
+ lines: list[str] = []
683
+
684
+ if cuda_version and _has_torch_dependency(pip_deps):
685
+ lines.append(_get_pytorch_cuda_index_url(cuda_version))
686
+ pip_deps = _pin_torch_to_cuda_variant(pip_deps, cuda_version)
687
+
688
+ lines.extend(map(str, pip_deps))
689
+
604
690
  with open(path, "w", encoding="utf-8") as out:
605
- out.write(requirements)
691
+ out.write("\n".join(lines))
606
692
 
607
693
 
608
694
  def load_conda_env_file(
@@ -702,6 +788,9 @@ def load_requirements_file(path: pathlib.Path) -> list[requirements.Requirement]
702
788
  with open(path, encoding="utf-8") as f:
703
789
  reqs = f.readlines()
704
790
 
791
+ # Filter out pip options
792
+ reqs = [line for line in reqs if line.strip() and not line.strip().startswith(("-", "#"))]
793
+
705
794
  return validate_pip_requirement_string_list(reqs)
706
795
 
707
796
 
@@ -203,6 +203,36 @@ class ExperimentTrackingSQLClient(_base._BaseSQLClient):
203
203
  self._session, f"SHOW RUNS {like_clause} IN EXPERIMENT {experiment_fqn}"
204
204
  ).validate()
205
205
 
206
+ @telemetry.send_api_usage_telemetry(project=telemetry.TelemetryProject.EXPERIMENT_TRACKING.value)
207
+ def show_run_metrics_in_experiment(
208
+ self,
209
+ *,
210
+ experiment_name: sql_identifier.SqlIdentifier,
211
+ run_name: Optional[sql_identifier.SqlIdentifier] = None,
212
+ like: Optional[str] = None,
213
+ ) -> list[row.Row]:
214
+ experiment_fqn = self.fully_qualified_object_name(self._database_name, self._schema_name, experiment_name)
215
+ run_name_clause = f"RUN {run_name}" if run_name else ""
216
+ like_clause = f"LIKE '{like}'" if like else ""
217
+ return query_result_checker.SqlResultValidator(
218
+ self._session, f"SHOW RUN METRICS {like_clause} IN EXPERIMENT {experiment_fqn} {run_name_clause}"
219
+ ).validate()
220
+
221
+ @telemetry.send_api_usage_telemetry(project=telemetry.TelemetryProject.EXPERIMENT_TRACKING.value)
222
+ def show_run_parameters_in_experiment(
223
+ self,
224
+ *,
225
+ experiment_name: sql_identifier.SqlIdentifier,
226
+ run_name: Optional[sql_identifier.SqlIdentifier] = None,
227
+ like: Optional[str] = None,
228
+ ) -> list[row.Row]:
229
+ experiment_fqn = self.fully_qualified_object_name(self._database_name, self._schema_name, experiment_name)
230
+ run_name_clause = f"RUN {run_name}" if run_name else ""
231
+ like_clause = f"LIKE '{like}'" if like else ""
232
+ return query_result_checker.SqlResultValidator(
233
+ self._session, f"SHOW RUN PARAMETERS {like_clause} IN EXPERIMENT {experiment_fqn} {run_name_clause}"
234
+ ).validate()
235
+
206
236
  def _build_snow_uri(
207
237
  self, experiment_name: sql_identifier.SqlIdentifier, run_name: sql_identifier.SqlIdentifier, artifact_path: str
208
238
  ) -> str:
@@ -38,10 +38,12 @@ class Run:
38
38
  self,
39
39
  exc_type: Optional[type[BaseException]],
40
40
  exc_value: Optional[BaseException],
41
- traceback: Optional[types.TracebackType],
41
+ tb: Optional[types.TracebackType],
42
42
  ) -> None:
43
- self._patcher.__exit__(exc_type, exc_value, traceback)
43
+ self._patcher.__exit__(exc_type, exc_value, tb)
44
44
  if self._experiment_tracking._run is self:
45
+ if exc_type is not None:
46
+ self._experiment_tracking._try_log_exception(exc_type, exc_value, tb)
45
47
  self._experiment_tracking.end_run()
46
48
 
47
49
  def _get_experiment_info(self) -> experiment_info.ExperimentInfo:
@@ -1,5 +1,6 @@
1
1
  import contextlib
2
2
  from dataclasses import dataclass
3
+ from typing import Any, Callable, Optional
3
4
 
4
5
  from snowflake.ml._internal.utils import tee
5
6
  from snowflake.ml.experiment._logging.experiment_logger import ExperimentLogger
@@ -11,3 +12,5 @@ class ExperimentLoggingContext:
11
12
  stderr_logger: ExperimentLogger
12
13
  stdout_ctx: contextlib.redirect_stdout[tee.OutputTee]
13
14
  stderr_ctx: contextlib.redirect_stderr[tee.OutputTee]
15
+ ipython_instance: Optional[Any]
16
+ original_showtraceback: Optional[Callable[..., None]]
@@ -2,11 +2,13 @@ import contextlib
2
2
  import functools
3
3
  import json
4
4
  import sys
5
+ import traceback
5
6
  import warnings
7
+ from collections.abc import Callable
8
+ from types import TracebackType
6
9
  from typing import Any, Optional, Union
7
10
  from urllib.parse import quote
8
11
 
9
- import snowflake.snowpark._internal.utils as snowpark_utils
10
12
  from snowflake import snowpark
11
13
  from snowflake.ml import model as ml_model, registry
12
14
  from snowflake.ml._internal import env_utils
@@ -535,7 +537,6 @@ class ExperimentTracking:
535
537
  target_path=local_dir,
536
538
  )
537
539
 
538
- @snowpark_utils.private_preview(version="1.30.0")
539
540
  def set_live_logging_status(self, enabled: bool) -> None:
540
541
  """
541
542
  Enable or disable live logging. When enabled, stdout and stderr are captured and logged to persistent storage.
@@ -617,6 +618,72 @@ class ExperimentTracking:
617
618
  self._run = None
618
619
  self._unpatch_stdout_and_stderr()
619
620
 
621
+ def _try_patch_ipython_showtraceback(
622
+ self, stderr_logger: experiment_logging.ExperimentLogger
623
+ ) -> tuple[Any, Optional[Callable[..., None]]]:
624
+ try:
625
+ from IPython import get_ipython
626
+
627
+ ip = get_ipython()
628
+ if ip:
629
+ original_showtraceback = ip._showtraceback
630
+
631
+ def _patched_showtraceback(
632
+ etype: type[BaseException],
633
+ evalue: Optional[BaseException],
634
+ stb: list[str],
635
+ ) -> None:
636
+ try:
637
+ text = ip.InteractiveTB.stb2text(stb)
638
+ stderr_logger.write(text)
639
+ stderr_logger.flush()
640
+ except Exception:
641
+ pass
642
+ if original_showtraceback is not None: # for mypy
643
+ original_showtraceback(etype, evalue, stb)
644
+
645
+ ip._showtraceback = _patched_showtraceback
646
+
647
+ return ip, original_showtraceback
648
+
649
+ except Exception:
650
+ pass # Never let IPython patching break logging setup
651
+
652
+ return None, None
653
+
654
+ def _try_log_exception(
655
+ self,
656
+ exc_type: type[BaseException],
657
+ exc_value: Optional[BaseException],
658
+ exc_tb: Optional[TracebackType],
659
+ ) -> None:
660
+ """Append a traceback to the stderr logger before unpatching.
661
+
662
+ On exception, `Run.__exit__` ends the run and restores `sys.stderr` before the
663
+ interpreter prints the traceback for the exception, so the default traceback path
664
+ never reaches the stderr logger.
665
+
666
+ Args:
667
+ exc_type: The type of the exception.
668
+ exc_value: The value of the exception.
669
+ exc_tb: The traceback of the exception.
670
+ """
671
+ if self._logging_context is None:
672
+ return
673
+ ip = self._logging_context.ipython_instance
674
+ if ip:
675
+ try:
676
+ stb = ip.InteractiveTB.structured_traceback(exc_type, exc_value, exc_tb)
677
+ text = ip.InteractiveTB.stb2text(stb)
678
+ self._logging_context.stderr_logger.write(text)
679
+ self._logging_context.stderr_logger.flush()
680
+ return
681
+ except Exception:
682
+ pass
683
+ err_msg = "".join(traceback.format_exception(exc_type, exc_value, exc_tb))
684
+ self._logging_context.stderr_logger.write(err_msg)
685
+ self._logging_context.stderr_logger.flush()
686
+
620
687
  def _patch_stdout_and_stderr(self) -> None:
621
688
  if not self._live_logging_enabled:
622
689
  return
@@ -626,6 +693,8 @@ class ExperimentTracking:
626
693
 
627
694
  assert self._experiment is not None and self._run is not None # for mypy
628
695
  stdout_logger, stderr_logger, stdout_ctx, stderr_ctx = None, None, None, None # for exception handling
696
+ ip: Any = None
697
+ original_showtraceback: Optional[Callable[..., None]] = None
629
698
  try:
630
699
  exp_id = self._sql_client.get_experiment_id(self._experiment.name)
631
700
  run_id = self._sql_client.get_run_id(
@@ -636,15 +705,23 @@ class ExperimentTracking:
636
705
  stderr_logger = experiment_logging.ExperimentLogger(exp_id=exp_id, run_id=run_id, stream="STDERR")
637
706
  stdout_ctx = contextlib.redirect_stdout(tee.OutputTee(sys.stdout, stdout_logger))
638
707
  stderr_ctx = contextlib.redirect_stderr(tee.OutputTee(sys.stderr, stderr_logger))
708
+ stdout_ctx.__enter__()
709
+ stderr_ctx.__enter__()
710
+
711
+ ip, original_showtraceback = self._try_patch_ipython_showtraceback(stderr_logger)
712
+
639
713
  self._logging_context = experiment_logging.ExperimentLoggingContext(
640
714
  stdout_logger=stdout_logger,
641
715
  stderr_logger=stderr_logger,
642
716
  stdout_ctx=stdout_ctx,
643
717
  stderr_ctx=stderr_ctx,
718
+ ipython_instance=ip,
719
+ original_showtraceback=original_showtraceback,
644
720
  )
645
- stdout_ctx.__enter__()
646
- stderr_ctx.__enter__()
721
+
647
722
  except Exception as e:
723
+ if ip:
724
+ ip._showtraceback = original_showtraceback
648
725
  if stdout_ctx:
649
726
  stdout_ctx.__exit__(None, None, None)
650
727
  if stderr_ctx:
@@ -661,6 +738,8 @@ class ExperimentTracking:
661
738
 
662
739
  def _unpatch_stdout_and_stderr(self) -> None:
663
740
  if self._logging_context:
741
+ if self._logging_context.ipython_instance:
742
+ self._logging_context.ipython_instance._showtraceback = self._logging_context.original_showtraceback
664
743
  self._logging_context.stdout_ctx.__exit__(None, None, None)
665
744
  self._logging_context.stderr_ctx.__exit__(None, None, None)
666
745
  self._logging_context.stdout_logger.close()