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.
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/CHANGELOG.md +48 -2
- {snowflake_ml_python-1.31.0/snowflake_ml_python.egg-info → snowflake_ml_python-1.33.0}/PKG-INFO +55 -9
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/pyproject.toml +3 -3
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/env_utils.py +93 -4
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_client/experiment_tracking_sql_client.py +30 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_entities/run.py +4 -2
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_logging/experiment_logging_context.py +3 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/experiment_tracking.py +83 -4
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/feature_store.py +183 -27
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/feature_view.py +36 -1
- snowflake_ml_python-1.33.0/snowflake/ml/feature_store/request_source.py +35 -0
- snowflake_ml_python-1.33.0/snowflake/ml/feature_store/spec/__init__.py +29 -0
- snowflake_ml_python-1.33.0/snowflake/ml/feature_store/spec/builder.py +768 -0
- snowflake_ml_python-1.33.0/snowflake/ml/feature_store/spec/enums.py +48 -0
- snowflake_ml_python-1.33.0/snowflake/ml/feature_store/spec/models.py +288 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/stream_source.py +4 -6
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/job.py +8 -1
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/model/batch_inference_specs.py +3 -3
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/model/model_version_impl.py +48 -3
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/param_utils.py +2 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/service_ops.py +11 -2
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/function_generator.py +3 -0
- {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
- snowflake_ml_python-1.33.0/snowflake/ml/model/_model_composer/model_method/infer_function_init_once.py_template +106 -0
- {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
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/model_method.py +20 -17
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_env/model_env.py +19 -4
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/_utils.py +4 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/huggingface.py +113 -57
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/prophet.py +8 -7
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/pytorch.py +12 -10
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/sklearn.py +25 -15
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta/model_meta.py +3 -1
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/core.py +19 -1
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/utils.py +205 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/custom_model.py +24 -1
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/model_signature.py +24 -3
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/type_hints.py +4 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0/snowflake_ml_python.egg-info}/PKG-INFO +55 -9
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake_ml_python.egg-info/SOURCES.txt +6 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake_ml_python.egg-info/requires.txt +6 -6
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/LICENSE.txt +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/README.md +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/setup.cfg +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_classify_text.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_complete.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_embed_text_1024.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_embed_text_768.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_extract_answer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_finetune.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_sentiment.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_sse_client.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_summarize.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_translate.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/cortex/_util.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/env.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/dataset_error_messages.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/dataset_errors.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/error_codes.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/error_messages.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/exceptions.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/fileset_error_messages.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/fileset_errors.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/modeling_error_messages.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/exceptions/sql_error_codes.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/file_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/human_readable_id/adjectives.txt +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/human_readable_id/animals.txt +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/human_readable_id/hrid_generator.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/human_readable_id/hrid_generator_base.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/init_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/lineage/lineage_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/migrator_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/platform_capabilities.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/relax_version_strategy.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/telemetry.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/type_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/db_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/formatting.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/identifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/import_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/jwt_generator.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/mixins.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/parallelize.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/pkg_version_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/query_result_checker.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/result.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/service_logger.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/snowflake_env.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/snowpark_dataframe_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/sql_identifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/table_manager.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/tee.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/temp_file_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/utils/url.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/_internal/arrow_ingestor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/data_connector.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/data_ingestor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/data_source.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/ingestor_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/data/torch_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/dataset.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/dataset_factory.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/dataset_metadata.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/dataset/dataset_reader.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_client/artifact.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_entities/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_entities/experiment.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_entities/run_metadata.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_experiment_info.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_logging/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_logging/experiment_logger.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/callback/keras.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/callback/lightgbm.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/callback/xgboost.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/access_manager.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/aggregation.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/entity.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/airline_features/entities.py +0 -0
- {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
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/airline_features/source.yaml +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +0 -0
- {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
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/example_helper.py +0 -0
- {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
- {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
- {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
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/source_data/airline.yaml +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +0 -0
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/wine_quality_features/entities.py +0 -0
- {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
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/feature.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/metadata_manager.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/feature_store/tile_sql_generator.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/embedded_stage_fs.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/fileset.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/sfcfs.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/snowfs.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/fileset/stage_fs.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/data_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/dto_schema.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/exception_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/legacy.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/protocols.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/results.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_interop/utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/arg_protocol.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/constants.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/feature_flags.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/payload_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/query_helper.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/runtime_env_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/constants.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/get_instance_ip.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/signal_workers.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/start_mlruntime.sh +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/startup.sh +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/stage_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/_utils/type_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/decorators.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/job_definition.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/jobs/manager.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/lineage/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/lineage/lineage_node.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/model/inference_engine_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/model/model_impl.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/deployment_step.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/metadata_ops.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/ops/model_ops.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/service/import_model_spec_schema.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/service/model_deployment_spec.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/_base.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/model.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/model_version.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/service.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/stage.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_client/sql/tag.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_composer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +0 -0
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/constants.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_model_composer/model_method/utils.py +0 -0
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/_base.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/catboost.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/custom.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/keras.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/lightgbm.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/mlflow.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/tensorflow.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/torchscript.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers/xgboost.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py +0 -0
- {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
- {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
- {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
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta/model_blob_meta.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta/model_meta_schema.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_packager.py +0 -0
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_runtime/model_runtime.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_packager/model_task/model_task_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/base_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/builtins_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/dmatrix_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/numpy_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/pandas_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/pytorch_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/snowpark_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/_signatures/tensorflow_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/batch/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/code_path.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/compute_pool.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/event_handler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/inference_engine.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/models/huggingface.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/models/huggingface_pipeline.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/openai_signatures.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/target_platform.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/task.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/model/volatility.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/estimator_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/model_specifications.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/model_trainer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +0 -0
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py +0 -0
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/_internal/transformer_protocols.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/calibration/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/affinity_propagation.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/agglomerative_clustering.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/birch.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/bisecting_k_means.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/dbscan.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/feature_agglomeration.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/k_means.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/mean_shift.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/mini_batch_k_means.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/optics.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/spectral_biclustering.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/spectral_clustering.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/cluster/spectral_coclustering.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/compose/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/compose/column_transformer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/compose/transformed_target_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/elliptic_envelope.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/empirical_covariance.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/graphical_lasso.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/graphical_lasso_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/ledoit_wolf.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/min_cov_det.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/oas.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/covariance/shrunk_covariance.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/dictionary_learning.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/factor_analysis.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/fast_ica.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/incremental_pca.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/kernel_pca.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/pca.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/sparse_pca.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/decomposition/truncated_svd.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/discriminant_analysis/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/ada_boost_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/ada_boost_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/bagging_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/bagging_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/extra_trees_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/extra_trees_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/isolation_forest.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/random_forest_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/random_forest_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/stacking_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/voting_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/ensemble/voting_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/generic_univariate_select.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_fdr.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_fpr.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_fwe.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_k_best.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/select_percentile.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/feature_selection/variance_threshold.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/framework/_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/framework/base.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/gaussian_process/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/iterative_imputer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/knn_imputer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/missing_indicator.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/impute/simple_imputer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/nystroem.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_ridge/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/lightgbm/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/lightgbm/lgbm_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/lightgbm/lgbm_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ard_regression.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/bayesian_ridge.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/elastic_net.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/gamma_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/huber_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lars.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lars_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso_lars.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso_lars_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/lasso_lars_ic.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/linear_regression.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/logistic_regression.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/logistic_regression_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +0 -0
- {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
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/multi_task_lasso.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/perceptron.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/poisson_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ransac_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ridge.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ridge_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/ridge_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/sgd_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/sgd_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/theil_sen_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/linear_model/tweedie_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/isomap.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/mds.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/spectral_embedding.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/manifold/tsne.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/classification.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/correlation.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/covariance.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/metrics_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/ranking.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/metrics/regression.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/mixture/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/mixture/gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/model_selection/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/model_selection/grid_search_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/model_selection/randomized_search_cv.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/multiclass/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/multiclass/output_code_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/categorical_nb.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/complement_nb.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/gaussian_nb.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/naive_bayes/multinomial_nb.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/kernel_density.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/local_outlier_factor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/nearest_centroid.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/nearest_neighbors.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neural_network/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neural_network/bernoulli_rbm.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neural_network/mlp_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/neural_network/mlp_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/parameters/disable_distributed_hpo.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/parameters/disable_model_tracer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/parameters/enable_anonymous_sproc.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/pipeline/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/pipeline/pipeline.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/binarizer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/k_bins_discretizer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/label_encoder.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/max_abs_scaler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/min_max_scaler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/normalizer.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/one_hot_encoder.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/ordinal_encoder.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/polynomial_features.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/robust_scaler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/preprocessing/standard_scaler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/semi_supervised/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/semi_supervised/label_propagation.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/semi_supervised/label_spreading.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/linear_svc.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/linear_svr.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/nu_svc.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/nu_svr.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/svc.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/svm/svr.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/decision_tree_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/decision_tree_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/extra_tree_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/tree/extra_tree_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/xgb_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/xgb_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/xgbrf_classifier.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/modeling/xgboost/xgbrf_regressor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/_client/model_monitor_sql_client.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/_client/queries/record_count.ssql +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/_client/queries/rmse.ssql +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/_manager/model_monitor_manager.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/entities/model_monitor_config.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/explain_visualize.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/model_monitor.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/monitoring/shap.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/registry/__init__.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/registry/_manager/model_manager.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/registry/_manager/model_parameter_reconciler.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/registry/registry.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/authentication.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/html_utils.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/sparse.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/sql_client.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/utils/stage_file.py +0 -0
- {snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake_ml_python.egg-info/dependency_links.txt +0 -0
- {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.
|
|
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., `
|
|
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
|
{snowflake_ml_python-1.31.0/snowflake_ml_python.egg-info → snowflake_ml_python-1.33.0}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snowflake-ml-python
|
|
3
|
-
Version: 1.
|
|
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<
|
|
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,<
|
|
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<
|
|
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,<
|
|
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<
|
|
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,<
|
|
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.
|
|
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., `
|
|
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,<
|
|
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,<
|
|
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,<
|
|
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
|
"*" = [ "*",]
|
{snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/_internal/env_utils.py
RENAMED
|
@@ -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
|
|
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
|
|
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
|
-
|
|
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(
|
|
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:
|
{snowflake_ml_python-1.31.0 → snowflake_ml_python-1.33.0}/snowflake/ml/experiment/_entities/run.py
RENAMED
|
@@ -38,10 +38,12 @@ class Run:
|
|
|
38
38
|
self,
|
|
39
39
|
exc_type: Optional[type[BaseException]],
|
|
40
40
|
exc_value: Optional[BaseException],
|
|
41
|
-
|
|
41
|
+
tb: Optional[types.TracebackType],
|
|
42
42
|
) -> None:
|
|
43
|
-
self._patcher.__exit__(exc_type, exc_value,
|
|
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
|
-
|
|
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()
|