snowflake-ml-python 1.32.0__tar.gz → 1.34.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.32.0 → snowflake_ml_python-1.34.0}/CHANGELOG.md +48 -1
- {snowflake_ml_python-1.32.0/snowflake_ml_python.egg-info → snowflake_ml_python-1.34.0}/PKG-INFO +55 -8
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/pyproject.toml +3 -3
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/env_utils.py +93 -4
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/platform_capabilities.py +3 -5
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_client/experiment_tracking_sql_client.py +78 -2
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_entities/run.py +4 -2
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/experiment_tracking.py +119 -4
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/__init__.py +2 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/aggregation.py +12 -118
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/feature_store.py +310 -33
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/feature_view.py +263 -42
- snowflake_ml_python-1.34.0/snowflake/ml/feature_store/interval_utils.py +126 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/metadata_manager.py +90 -0
- snowflake_ml_python-1.34.0/snowflake/ml/feature_store/request_source.py +35 -0
- snowflake_ml_python-1.34.0/snowflake/ml/feature_store/spec/__init__.py +29 -0
- snowflake_ml_python-1.34.0/snowflake/ml/feature_store/spec/builder.py +776 -0
- snowflake_ml_python-1.34.0/snowflake/ml/feature_store/spec/enums.py +48 -0
- snowflake_ml_python-1.34.0/snowflake/ml/feature_store/spec/models.py +288 -0
- snowflake_ml_python-1.34.0/snowflake/ml/feature_store/stream_config.py +276 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/stream_source.py +4 -6
- snowflake_ml_python-1.34.0/snowflake/ml/feature_store/streaming_registration.py +462 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/tile_sql_generator.py +20 -39
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/fileset/sfcfs.py +5 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/manager.py +2 -2
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/model/batch_inference_specs.py +16 -4
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/model/model_version_impl.py +32 -12
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/ops/param_utils.py +2 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/ops/service_ops.py +45 -7
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/service/model_deployment_spec.py +14 -9
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +2 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/sql/model_version.py +4 -4
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/sql/service.py +3 -3
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_method/function_generator.py +3 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_method/infer_function.py_template +2 -2
- snowflake_ml_python-1.34.0/snowflake/ml/model/_model_composer/model_method/infer_function_init_once.py_template +106 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +2 -2
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template +2 -2
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_method/model_method.py +20 -17
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_env/model_env.py +4 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/custom.py +1 -1
- snowflake_ml_python-1.34.0/snowflake/ml/model/_packager/model_handlers/huggingface/__init__.py +22 -0
- snowflake_ml_python-1.32.0/snowflake/ml/model/_packager/model_handlers/huggingface.py → snowflake_ml_python-1.34.0/snowflake/ml/model/_packager/model_handlers/huggingface/_handler.py +85 -380
- snowflake_ml_python-1.34.0/snowflake/ml/model/_packager/model_handlers/huggingface/_openai_chat_wrapper.py +287 -0
- snowflake_ml_python-1.34.0/snowflake/ml/model/_packager/model_handlers/huggingface/_utils.py +60 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/prophet.py +8 -7
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/pytorch.py +12 -10
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +1 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/torchscript.py +19 -10
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_meta/model_blob_meta.py +1 -5
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_meta/model_meta.py +6 -4
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_task/model_task_utils.py +1 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/core.py +20 -2
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/snowpark_handler.py +1 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/utils.py +87 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/custom_model.py +6 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/type_hints.py +4 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/one_hot_encoder.py +3 -3
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/ordinal_encoder.py +1 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/registry/_manager/model_parameter_reconciler.py +0 -15
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/registry/registry.py +14 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0/snowflake_ml_python.egg-info}/PKG-INFO +55 -8
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake_ml_python.egg-info/SOURCES.txt +13 -1
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake_ml_python.egg-info/requires.txt +6 -6
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/LICENSE.txt +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/README.md +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/setup.cfg +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_classify_text.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_complete.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_embed_text_1024.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_embed_text_768.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_extract_answer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_finetune.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_sentiment.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_sse_client.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_summarize.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_translate.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/cortex/_util.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/env.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/exceptions/dataset_error_messages.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/exceptions/dataset_errors.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/exceptions/error_codes.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/exceptions/error_messages.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/exceptions/exceptions.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/exceptions/fileset_error_messages.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/exceptions/fileset_errors.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/exceptions/modeling_error_messages.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/exceptions/sql_error_codes.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/file_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/human_readable_id/adjectives.txt +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/human_readable_id/animals.txt +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/human_readable_id/hrid_generator.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/human_readable_id/hrid_generator_base.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/init_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/lineage/lineage_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/migrator_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/relax_version_strategy.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/telemetry.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/type_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/db_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/formatting.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/identifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/import_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/jwt_generator.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/mixins.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/parallelize.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/pkg_version_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/query_result_checker.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/result.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/service_logger.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/snowflake_env.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/snowpark_dataframe_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/sql_identifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/table_manager.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/tee.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/temp_file_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/_internal/utils/url.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/data/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/data/_internal/arrow_ingestor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/data/data_connector.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/data/data_ingestor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/data/data_source.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/data/ingestor_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/data/torch_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/dataset/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/dataset/dataset.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/dataset/dataset_factory.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/dataset/dataset_metadata.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/dataset/dataset_reader.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_client/artifact.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_entities/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_entities/experiment.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_entities/run_metadata.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_experiment_info.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_logging/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_logging/experiment_logger.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/_logging/experiment_logging_context.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/callback/keras.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/callback/lightgbm.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/callback/xgboost.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/experiment/utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/access_manager.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/entity.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/airline_features/entities.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/airline_features/features/plane_features.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/airline_features/features/weather_features.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/airline_features/source.yaml +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/station_feature.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/trip_feature.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/example_helper.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/location_features.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/trip_features.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/source_data/airline.yaml +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/wine_quality_features/entities.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/feature.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/fileset/embedded_stage_fs.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/fileset/fileset.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/fileset/snowfs.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/fileset/stage_fs.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_interop/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_interop/data_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_interop/dto_schema.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_interop/exception_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_interop/legacy.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_interop/protocols.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_interop/results.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_interop/utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/arg_protocol.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/constants.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/feature_flags.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/payload_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/query_helper.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/runtime_env_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/scripts/constants.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/scripts/get_instance_ip.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/scripts/signal_workers.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/scripts/start_mlruntime.sh +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/scripts/startup.sh +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/stage_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/_utils/type_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/decorators.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/job.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/jobs/job_definition.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/lineage/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/lineage/lineage_node.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/__init__.py +2 -2
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/model/inference_engine_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/model/model_impl.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/ops/deployment_step.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/ops/metadata_ops.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/ops/model_ops.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/service/import_model_spec_schema.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/sql/_base.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/sql/model.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/sql/stage.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_client/sql/tag.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_composer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_method/constants.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_method/utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_model_composer/model_user_file/model_user_file.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/_base.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/catboost.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/keras.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/lightgbm.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/mlflow.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/sklearn.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/tensorflow.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers/xgboost.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers_migrator/pytorch_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_meta/model_meta_schema.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_packager.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_packager/model_runtime/model_runtime.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/base_handler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/builtins_handler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/dmatrix_handler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/numpy_handler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/pandas_handler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/pytorch_handler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/_signatures/tensorflow_handler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/batch/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/code_path.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/compute_pool.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/event_handler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/inference_engine.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/model_signature.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/models/huggingface.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/models/huggingface_pipeline.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/openai_signatures.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/target_platform.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/task.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/model/volatility.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/estimator_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/model_specifications.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/model_trainer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/_internal/transformer_protocols.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/calibration/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/affinity_propagation.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/agglomerative_clustering.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/birch.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/bisecting_k_means.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/dbscan.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/feature_agglomeration.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/k_means.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/mean_shift.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/mini_batch_k_means.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/optics.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/spectral_biclustering.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/spectral_clustering.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/cluster/spectral_coclustering.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/compose/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/compose/column_transformer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/compose/transformed_target_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/covariance/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/covariance/elliptic_envelope.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/covariance/empirical_covariance.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/covariance/graphical_lasso.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/covariance/graphical_lasso_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/covariance/ledoit_wolf.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/covariance/min_cov_det.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/covariance/oas.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/covariance/shrunk_covariance.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/dictionary_learning.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/factor_analysis.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/fast_ica.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/incremental_pca.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/kernel_pca.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/pca.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/sparse_pca.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/decomposition/truncated_svd.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/discriminant_analysis/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/ada_boost_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/ada_boost_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/bagging_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/bagging_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/extra_trees_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/extra_trees_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/isolation_forest.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/random_forest_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/random_forest_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/stacking_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/voting_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/ensemble/voting_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/feature_selection/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/feature_selection/generic_univariate_select.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/feature_selection/select_fdr.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/feature_selection/select_fpr.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/feature_selection/select_fwe.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/feature_selection/select_k_best.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/feature_selection/select_percentile.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/feature_selection/variance_threshold.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/framework/_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/framework/base.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/gaussian_process/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/impute/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/impute/iterative_imputer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/impute/knn_imputer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/impute/missing_indicator.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/impute/simple_imputer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/kernel_approximation/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/kernel_approximation/nystroem.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/kernel_ridge/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/lightgbm/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/lightgbm/lgbm_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/lightgbm/lgbm_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/ard_regression.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/bayesian_ridge.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/elastic_net.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/gamma_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/huber_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/lars.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/lars_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/lasso.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/lasso_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/lasso_lars.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/lasso_lars_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/lasso_lars_ic.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/linear_regression.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/logistic_regression.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/logistic_regression_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/multi_task_lasso.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/perceptron.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/poisson_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/ransac_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/ridge.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/ridge_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/ridge_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/sgd_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/sgd_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/theil_sen_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/linear_model/tweedie_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/manifold/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/manifold/isomap.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/manifold/mds.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/manifold/spectral_embedding.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/manifold/tsne.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/metrics/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/metrics/classification.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/metrics/correlation.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/metrics/covariance.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/metrics/metrics_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/metrics/ranking.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/metrics/regression.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/mixture/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/mixture/gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/model_selection/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/model_selection/grid_search_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/model_selection/randomized_search_cv.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/multiclass/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/multiclass/output_code_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/naive_bayes/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/naive_bayes/categorical_nb.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/naive_bayes/complement_nb.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/naive_bayes/gaussian_nb.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/naive_bayes/multinomial_nb.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/kernel_density.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/local_outlier_factor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/nearest_centroid.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/nearest_neighbors.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neural_network/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neural_network/bernoulli_rbm.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neural_network/mlp_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/neural_network/mlp_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/parameters/disable_distributed_hpo.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/parameters/disable_model_tracer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/parameters/enable_anonymous_sproc.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/pipeline/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/pipeline/pipeline.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/binarizer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/k_bins_discretizer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/label_encoder.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/max_abs_scaler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/min_max_scaler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/normalizer.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/polynomial_features.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/robust_scaler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/preprocessing/standard_scaler.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/semi_supervised/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/semi_supervised/label_propagation.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/semi_supervised/label_spreading.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/svm/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/svm/linear_svc.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/svm/linear_svr.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/svm/nu_svc.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/svm/nu_svr.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/svm/svc.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/svm/svr.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/tree/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/tree/decision_tree_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/tree/decision_tree_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/tree/extra_tree_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/tree/extra_tree_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/xgboost/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/xgboost/xgb_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/xgboost/xgb_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/xgboost/xgbrf_classifier.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/modeling/xgboost/xgbrf_regressor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/monitoring/_client/model_monitor_sql_client.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/monitoring/_client/queries/record_count.ssql +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/monitoring/_client/queries/rmse.ssql +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/monitoring/_manager/model_monitor_manager.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/monitoring/entities/model_monitor_config.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/monitoring/explain_visualize.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/monitoring/model_monitor.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/monitoring/shap.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/registry/__init__.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/registry/_manager/model_manager.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/utils/authentication.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/utils/html_utils.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/utils/sparse.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/utils/sql_client.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/utils/stage_file.py +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake_ml_python.egg-info/dependency_links.txt +0 -0
- {snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake_ml_python.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,50 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.34.0
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
* Experiment Tracking: Added `list_params` and `list_metrics` methods to retrieve parameters and metrics
|
|
8
|
+
for runs within an experiment. Both methods return a Dataframe and accept an optional `run_name` argument
|
|
9
|
+
to filter to a specific run.
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Feature Store: Fixed `generate_dataset()`/`generate_training_set()` SQL generation for Unicode and case-sensitive
|
|
14
|
+
identifiers (for example Japanese column names), ensuring columns are quoted exactly once and preventing SQL
|
|
15
|
+
compilation errors such as `unexpected '<column_name>'`.
|
|
16
|
+
|
|
17
|
+
### Behavior Changes
|
|
18
|
+
|
|
19
|
+
* Registry: `enable_explainability=True` is now allowed for SPCS-only and non-warehouse-runnable models. Previously
|
|
20
|
+
this raised a `ValueError`.
|
|
21
|
+
|
|
22
|
+
### Deprecations
|
|
23
|
+
|
|
24
|
+
## 1.33.0 (2026-03-31)
|
|
25
|
+
|
|
26
|
+
### New Features
|
|
27
|
+
|
|
28
|
+
* Registry: Extended `ParamSpec` support to PyTorch models. Parameters declared in the model signature
|
|
29
|
+
can now be passed at inference time, matching the existing support for custom models.
|
|
30
|
+
* Registry (PrPr): Added `model_init_once` model save option to `log_model`. When set to `True`, the
|
|
31
|
+
model is loaded once per worker process at startup, eliminating model-loading overhead. Defaults to `False`.
|
|
32
|
+
* Experiment Tracking live logging is out of private preview
|
|
33
|
+
and will become generally available over the next few weeks.
|
|
34
|
+
* Registry: Bumped `transformers` upper bound to `<6`, adding compatibility with Hugging Face Transformers v5.
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* Experiment Tracking live logging: Fixed a bug where the tracebacks for uncaught exceptions were not logged when
|
|
39
|
+
the code was running in a `with exp.start_run()` block.
|
|
40
|
+
* Registry: Fixed a thread leak in `create_service(block=True)` where the log-streaming thread could outlive the
|
|
41
|
+
error handler when service deployment fails.
|
|
42
|
+
|
|
43
|
+
### Behavior Changes
|
|
44
|
+
|
|
45
|
+
### Deprecations
|
|
46
|
+
|
|
47
|
+
## 1.32.0 (2026-03-26)
|
|
4
48
|
|
|
5
49
|
### New Features
|
|
6
50
|
|
|
@@ -101,6 +145,9 @@
|
|
|
101
145
|
|
|
102
146
|
### Behavior Changes
|
|
103
147
|
|
|
148
|
+
* Dependencies: Removed `snowflake.core` as a runtime dependency. If you use `snowflake.core` (e.g.,
|
|
149
|
+
`TaskDag`, `Root`, `Task`), add `snowflake.core` explicitly to your dependencies.
|
|
150
|
+
|
|
104
151
|
### Deprecations
|
|
105
152
|
|
|
106
153
|
## 1.28.0 (2026-02-17)
|
{snowflake_ml_python-1.32.0/snowflake_ml_python.egg-info → snowflake_ml_python-1.34.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.34.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,51 @@ 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.34.0
|
|
420
|
+
|
|
421
|
+
### New Features
|
|
422
|
+
|
|
423
|
+
* Experiment Tracking: Added `list_params` and `list_metrics` methods to retrieve parameters and metrics
|
|
424
|
+
for runs within an experiment. Both methods return a Dataframe and accept an optional `run_name` argument
|
|
425
|
+
to filter to a specific run.
|
|
426
|
+
|
|
427
|
+
### Bug Fixes
|
|
428
|
+
|
|
429
|
+
* Feature Store: Fixed `generate_dataset()`/`generate_training_set()` SQL generation for Unicode and case-sensitive
|
|
430
|
+
identifiers (for example Japanese column names), ensuring columns are quoted exactly once and preventing SQL
|
|
431
|
+
compilation errors such as `unexpected '<column_name>'`.
|
|
432
|
+
|
|
433
|
+
### Behavior Changes
|
|
434
|
+
|
|
435
|
+
* Registry: `enable_explainability=True` is now allowed for SPCS-only and non-warehouse-runnable models. Previously
|
|
436
|
+
this raised a `ValueError`.
|
|
437
|
+
|
|
438
|
+
### Deprecations
|
|
439
|
+
|
|
440
|
+
## 1.33.0 (2026-03-31)
|
|
441
|
+
|
|
442
|
+
### New Features
|
|
443
|
+
|
|
444
|
+
* Registry: Extended `ParamSpec` support to PyTorch models. Parameters declared in the model signature
|
|
445
|
+
can now be passed at inference time, matching the existing support for custom models.
|
|
446
|
+
* Registry (PrPr): Added `model_init_once` model save option to `log_model`. When set to `True`, the
|
|
447
|
+
model is loaded once per worker process at startup, eliminating model-loading overhead. Defaults to `False`.
|
|
448
|
+
* Experiment Tracking live logging is out of private preview
|
|
449
|
+
and will become generally available over the next few weeks.
|
|
450
|
+
* Registry: Bumped `transformers` upper bound to `<6`, adding compatibility with Hugging Face Transformers v5.
|
|
451
|
+
|
|
452
|
+
### Bug Fixes
|
|
453
|
+
|
|
454
|
+
* Experiment Tracking live logging: Fixed a bug where the tracebacks for uncaught exceptions were not logged when
|
|
455
|
+
the code was running in a `with exp.start_run()` block.
|
|
456
|
+
* Registry: Fixed a thread leak in `create_service(block=True)` where the log-streaming thread could outlive the
|
|
457
|
+
error handler when service deployment fails.
|
|
458
|
+
|
|
459
|
+
### Behavior Changes
|
|
460
|
+
|
|
461
|
+
### Deprecations
|
|
462
|
+
|
|
463
|
+
## 1.32.0 (2026-03-26)
|
|
420
464
|
|
|
421
465
|
### New Features
|
|
422
466
|
|
|
@@ -517,6 +561,9 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
|
517
561
|
|
|
518
562
|
### Behavior Changes
|
|
519
563
|
|
|
564
|
+
* Dependencies: Removed `snowflake.core` as a runtime dependency. If you use `snowflake.core` (e.g.,
|
|
565
|
+
`TaskDag`, `Root`, `Task`), add `snowflake.core` explicitly to your dependencies.
|
|
566
|
+
|
|
520
567
|
### Deprecations
|
|
521
568
|
|
|
522
569
|
## 1.28.0 (2026-02-17)
|
|
@@ -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.32.0 → snowflake_ml_python-1.34.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
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import json
|
|
2
2
|
import logging
|
|
3
3
|
from contextlib import contextmanager
|
|
4
|
-
from typing import Any, Optional
|
|
4
|
+
from typing import Any, Iterator, Optional
|
|
5
5
|
|
|
6
6
|
from packaging import version
|
|
7
7
|
|
|
@@ -57,13 +57,11 @@ class PlatformCapabilities:
|
|
|
57
57
|
def clear_mock_features(cls) -> None:
|
|
58
58
|
cls._mock_features = None
|
|
59
59
|
|
|
60
|
-
# For contextmanager, we need to have return type Iterator[Never]. However, Never type is introduced only in
|
|
61
|
-
# Python 3.11. So, we are ignoring the type for this method.
|
|
62
60
|
_dummy_features: dict[str, Any] = {"dummy": "dummy"}
|
|
63
61
|
|
|
64
|
-
@classmethod
|
|
62
|
+
@classmethod
|
|
65
63
|
@contextmanager
|
|
66
|
-
def mock_features(cls, features: dict[str, Any] = _dummy_features) -> None:
|
|
64
|
+
def mock_features(cls, features: dict[str, Any] = _dummy_features) -> Iterator[None]:
|
|
67
65
|
logger.debug(f"Setting mock features: {features}")
|
|
68
66
|
cls.set_mock_features(features)
|
|
69
67
|
try:
|
|
@@ -1,16 +1,62 @@
|
|
|
1
|
-
from typing import Optional
|
|
1
|
+
from typing import Any, Optional
|
|
2
2
|
|
|
3
3
|
from snowflake.ml._internal import telemetry
|
|
4
4
|
from snowflake.ml._internal.utils import query_result_checker, sql_identifier
|
|
5
5
|
from snowflake.ml.experiment._client import artifact
|
|
6
6
|
from snowflake.ml.model._client.sql import _base
|
|
7
7
|
from snowflake.ml.utils import sql_client
|
|
8
|
-
from snowflake.snowpark import file_operation, row, session
|
|
8
|
+
from snowflake.snowpark import dataframe, file_operation, row, session, types
|
|
9
9
|
|
|
10
10
|
RUN_NAME_COL_NAME = "name"
|
|
11
11
|
RUN_METADATA_COL_NAME = "metadata"
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
def pivot_run_attributes(
|
|
15
|
+
sp_session: session.Session,
|
|
16
|
+
rows: list[row.Row],
|
|
17
|
+
run_names: list[str],
|
|
18
|
+
cast_value: Optional[type] = None,
|
|
19
|
+
) -> dataframe.DataFrame:
|
|
20
|
+
"""Pivot SHOW RUN METRICS/PARAMETERS rows into one row per run.
|
|
21
|
+
|
|
22
|
+
Each row is expected to have "run_name", "name", and "value" keys.
|
|
23
|
+
Returns a Snowpark DataFrame with a "run_name" column and one column per distinct
|
|
24
|
+
attribute name (sorted alphabetically). Runs present in ``run_names`` but absent
|
|
25
|
+
from ``rows`` appear with all-NULL attribute columns.
|
|
26
|
+
|
|
27
|
+
Args:
|
|
28
|
+
sp_session: Snowpark session used to create the result DataFrame.
|
|
29
|
+
rows: Collected rows from a SHOW RUN METRICS/PARAMETERS command.
|
|
30
|
+
run_names: Exhaustive list of run names (from SHOW RUNS) to include in the output.
|
|
31
|
+
cast_value: If provided, cast each value with this callable (e.g. ``float`` for metrics).
|
|
32
|
+
Values that fail to cast are set to ``None``.
|
|
33
|
+
|
|
34
|
+
Returns:
|
|
35
|
+
A Snowpark DataFrame with a "run_name" column and one column per distinct attribute name.
|
|
36
|
+
"""
|
|
37
|
+
pivoted: dict[str, dict[str, Any]] = {name: {} for name in run_names}
|
|
38
|
+
attr_names: set[str] = set()
|
|
39
|
+
for r in rows:
|
|
40
|
+
d = r.as_dict()
|
|
41
|
+
value = d["value"]
|
|
42
|
+
if cast_value is not None:
|
|
43
|
+
try:
|
|
44
|
+
value = cast_value(value)
|
|
45
|
+
except (ValueError, TypeError):
|
|
46
|
+
value = None
|
|
47
|
+
pivoted.setdefault(d["run_name"], {})[d["name"]] = value
|
|
48
|
+
attr_names.add(d["name"])
|
|
49
|
+
|
|
50
|
+
col_order = sorted(attr_names)
|
|
51
|
+
data = [[run_name] + [attrs.get(c) for c in col_order] for run_name, attrs in pivoted.items()]
|
|
52
|
+
value_type = types.DoubleType() if cast_value is float else types.StringType()
|
|
53
|
+
schema = types.StructType(
|
|
54
|
+
[types.StructField('"run_name"', types.StringType())]
|
|
55
|
+
+ [types.StructField(f'"{c}"', value_type) for c in col_order]
|
|
56
|
+
)
|
|
57
|
+
return sp_session.create_dataframe(data, schema=schema)
|
|
58
|
+
|
|
59
|
+
|
|
14
60
|
class ExperimentTrackingSQLClient(_base._BaseSQLClient):
|
|
15
61
|
def __init__(
|
|
16
62
|
self,
|
|
@@ -203,6 +249,36 @@ class ExperimentTrackingSQLClient(_base._BaseSQLClient):
|
|
|
203
249
|
self._session, f"SHOW RUNS {like_clause} IN EXPERIMENT {experiment_fqn}"
|
|
204
250
|
).validate()
|
|
205
251
|
|
|
252
|
+
@telemetry.send_api_usage_telemetry(project=telemetry.TelemetryProject.EXPERIMENT_TRACKING.value)
|
|
253
|
+
def show_run_metrics_in_experiment(
|
|
254
|
+
self,
|
|
255
|
+
*,
|
|
256
|
+
experiment_name: sql_identifier.SqlIdentifier,
|
|
257
|
+
run_name: Optional[sql_identifier.SqlIdentifier] = None,
|
|
258
|
+
like: Optional[str] = None,
|
|
259
|
+
) -> list[row.Row]:
|
|
260
|
+
experiment_fqn = self.fully_qualified_object_name(self._database_name, self._schema_name, experiment_name)
|
|
261
|
+
run_name_clause = f"RUN {run_name}" if run_name else ""
|
|
262
|
+
like_clause = f"LIKE '{like}'" if like else ""
|
|
263
|
+
return query_result_checker.SqlResultValidator(
|
|
264
|
+
self._session, f"SHOW RUN METRICS {like_clause} IN EXPERIMENT {experiment_fqn} {run_name_clause}"
|
|
265
|
+
).validate()
|
|
266
|
+
|
|
267
|
+
@telemetry.send_api_usage_telemetry(project=telemetry.TelemetryProject.EXPERIMENT_TRACKING.value)
|
|
268
|
+
def show_run_parameters_in_experiment(
|
|
269
|
+
self,
|
|
270
|
+
*,
|
|
271
|
+
experiment_name: sql_identifier.SqlIdentifier,
|
|
272
|
+
run_name: Optional[sql_identifier.SqlIdentifier] = None,
|
|
273
|
+
like: Optional[str] = None,
|
|
274
|
+
) -> list[row.Row]:
|
|
275
|
+
experiment_fqn = self.fully_qualified_object_name(self._database_name, self._schema_name, experiment_name)
|
|
276
|
+
run_name_clause = f"RUN {run_name}" if run_name else ""
|
|
277
|
+
like_clause = f"LIKE '{like}'" if like else ""
|
|
278
|
+
return query_result_checker.SqlResultValidator(
|
|
279
|
+
self._session, f"SHOW RUN PARAMETERS {like_clause} IN EXPERIMENT {experiment_fqn} {run_name_clause}"
|
|
280
|
+
).validate()
|
|
281
|
+
|
|
206
282
|
def _build_snow_uri(
|
|
207
283
|
self, experiment_name: sql_identifier.SqlIdentifier, run_name: sql_identifier.SqlIdentifier, artifact_path: str
|
|
208
284
|
) -> str:
|
{snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.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:
|
|
@@ -2,12 +2,13 @@ import contextlib
|
|
|
2
2
|
import functools
|
|
3
3
|
import json
|
|
4
4
|
import sys
|
|
5
|
+
import traceback
|
|
5
6
|
import warnings
|
|
6
7
|
from collections.abc import Callable
|
|
8
|
+
from types import TracebackType
|
|
7
9
|
from typing import Any, Optional, Union
|
|
8
10
|
from urllib.parse import quote
|
|
9
11
|
|
|
10
|
-
import snowflake.snowpark._internal.utils as snowpark_utils
|
|
11
12
|
from snowflake import snowpark
|
|
12
13
|
from snowflake.ml import model as ml_model, registry
|
|
13
14
|
from snowflake.ml._internal import env_utils
|
|
@@ -477,6 +478,89 @@ class ExperimentTracking:
|
|
|
477
478
|
file_path=file_path,
|
|
478
479
|
)
|
|
479
480
|
|
|
481
|
+
def list_metrics(self, run_name: Optional[str] = None) -> snowpark.DataFrame:
|
|
482
|
+
"""
|
|
483
|
+
List metrics for runs within the current experiment.
|
|
484
|
+
|
|
485
|
+
When a metric is logged at multiple steps, the returned value corresponds to the highest step.
|
|
486
|
+
|
|
487
|
+
The returned DataFrame has a ``run_name`` column (str) and one float column per distinct metric name.
|
|
488
|
+
Runs that did not log a given metric have ``NULL`` for that column.
|
|
489
|
+
|
|
490
|
+
Example output::
|
|
491
|
+
|
|
492
|
+
run_name accuracy loss f1
|
|
493
|
+
0 RUN_1 0.95 0.05 0.90
|
|
494
|
+
1 RUN_2 0.90 0.10 NULL
|
|
495
|
+
|
|
496
|
+
Args:
|
|
497
|
+
run_name: Name of the run to list metrics from. If None, lists metrics for all runs in the current
|
|
498
|
+
experiment.
|
|
499
|
+
|
|
500
|
+
Returns:
|
|
501
|
+
A Snowpark DataFrame (one row per run). Use ``.to_pandas()`` for a pandas DataFrame or
|
|
502
|
+
``.collect()`` for a list of Row objects.
|
|
503
|
+
|
|
504
|
+
Raises:
|
|
505
|
+
RuntimeError: If no experiment is currently set.
|
|
506
|
+
"""
|
|
507
|
+
if not self._experiment:
|
|
508
|
+
raise RuntimeError("No experiment set. Please use the `set_experiment` method before listing metrics.")
|
|
509
|
+
|
|
510
|
+
if run_name:
|
|
511
|
+
run_names = [run_name]
|
|
512
|
+
else:
|
|
513
|
+
runs = self._sql_client.show_runs_in_experiment(experiment_name=self._experiment.name)
|
|
514
|
+
run_names = [r[sql_client.RUN_NAME_COL_NAME] for r in runs]
|
|
515
|
+
|
|
516
|
+
rows = self._sql_client.show_run_metrics_in_experiment(
|
|
517
|
+
experiment_name=self._experiment.name,
|
|
518
|
+
run_name=sql_identifier.SqlIdentifier(run_name) if run_name else None,
|
|
519
|
+
)
|
|
520
|
+
|
|
521
|
+
return sql_client.pivot_run_attributes(self._session, rows, run_names=run_names, cast_value=float)
|
|
522
|
+
|
|
523
|
+
def list_params(self, run_name: Optional[str] = None) -> snowpark.DataFrame:
|
|
524
|
+
"""
|
|
525
|
+
List parameters for runs within the current experiment.
|
|
526
|
+
|
|
527
|
+
The returned DataFrame has a ``run_name`` column (str) and one string column per distinct parameter name.
|
|
528
|
+
Use ``.cast()`` for numeric comparisons on parameter values. Runs that did not log a given parameter
|
|
529
|
+
have ``NULL`` for that column.
|
|
530
|
+
|
|
531
|
+
Example output::
|
|
532
|
+
|
|
533
|
+
run_name learning_rate batch_size optimizer
|
|
534
|
+
0 RUN_1 0.01 32 adam
|
|
535
|
+
1 RUN_2 0.02 64 NULL
|
|
536
|
+
|
|
537
|
+
Args:
|
|
538
|
+
run_name: Name of the run to list parameters from. If None, lists parameters for all runs in the current
|
|
539
|
+
experiment.
|
|
540
|
+
|
|
541
|
+
Returns:
|
|
542
|
+
A Snowpark DataFrame (one row per run). Use ``.to_pandas()`` for a pandas DataFrame or
|
|
543
|
+
``.collect()`` for a list of Row objects.
|
|
544
|
+
|
|
545
|
+
Raises:
|
|
546
|
+
RuntimeError: If no experiment is currently set.
|
|
547
|
+
"""
|
|
548
|
+
if not self._experiment:
|
|
549
|
+
raise RuntimeError("No experiment set. Please use the `set_experiment` method before listing parameters.")
|
|
550
|
+
|
|
551
|
+
if run_name:
|
|
552
|
+
run_names = [run_name]
|
|
553
|
+
else:
|
|
554
|
+
runs = self._sql_client.show_runs_in_experiment(experiment_name=self._experiment.name)
|
|
555
|
+
run_names = [r[sql_client.RUN_NAME_COL_NAME] for r in runs]
|
|
556
|
+
|
|
557
|
+
rows = self._sql_client.show_run_parameters_in_experiment(
|
|
558
|
+
experiment_name=self._experiment.name,
|
|
559
|
+
run_name=sql_identifier.SqlIdentifier(run_name) if run_name else None,
|
|
560
|
+
)
|
|
561
|
+
|
|
562
|
+
return sql_client.pivot_run_attributes(self._session, rows, run_names=run_names)
|
|
563
|
+
|
|
480
564
|
def list_artifacts(
|
|
481
565
|
self,
|
|
482
566
|
run_name: str,
|
|
@@ -536,7 +620,6 @@ class ExperimentTracking:
|
|
|
536
620
|
target_path=local_dir,
|
|
537
621
|
)
|
|
538
622
|
|
|
539
|
-
@snowpark_utils.private_preview(version="1.30.0")
|
|
540
623
|
def set_live_logging_status(self, enabled: bool) -> None:
|
|
541
624
|
"""
|
|
542
625
|
Enable or disable live logging. When enabled, stdout and stderr are captured and logged to persistent storage.
|
|
@@ -599,7 +682,6 @@ class ExperimentTracking:
|
|
|
599
682
|
scheme: str = "https",
|
|
600
683
|
host: str = "app.snowflake.com",
|
|
601
684
|
) -> None:
|
|
602
|
-
|
|
603
685
|
experiment_url = (
|
|
604
686
|
f"{scheme}://{host}/_deeplink/#/experiments"
|
|
605
687
|
f"/databases/{quote(str(self._database_name))}"
|
|
@@ -635,7 +717,7 @@ class ExperimentTracking:
|
|
|
635
717
|
) -> None:
|
|
636
718
|
try:
|
|
637
719
|
text = ip.InteractiveTB.stb2text(stb)
|
|
638
|
-
stderr_logger.write(text
|
|
720
|
+
stderr_logger.write(text)
|
|
639
721
|
stderr_logger.flush()
|
|
640
722
|
except Exception:
|
|
641
723
|
pass
|
|
@@ -651,6 +733,39 @@ class ExperimentTracking:
|
|
|
651
733
|
|
|
652
734
|
return None, None
|
|
653
735
|
|
|
736
|
+
def _try_log_exception(
|
|
737
|
+
self,
|
|
738
|
+
exc_type: type[BaseException],
|
|
739
|
+
exc_value: Optional[BaseException],
|
|
740
|
+
exc_tb: Optional[TracebackType],
|
|
741
|
+
) -> None:
|
|
742
|
+
"""Append a traceback to the stderr logger before unpatching.
|
|
743
|
+
|
|
744
|
+
On exception, `Run.__exit__` ends the run and restores `sys.stderr` before the
|
|
745
|
+
interpreter prints the traceback for the exception, so the default traceback path
|
|
746
|
+
never reaches the stderr logger.
|
|
747
|
+
|
|
748
|
+
Args:
|
|
749
|
+
exc_type: The type of the exception.
|
|
750
|
+
exc_value: The value of the exception.
|
|
751
|
+
exc_tb: The traceback of the exception.
|
|
752
|
+
"""
|
|
753
|
+
if self._logging_context is None:
|
|
754
|
+
return
|
|
755
|
+
ip = self._logging_context.ipython_instance
|
|
756
|
+
if ip:
|
|
757
|
+
try:
|
|
758
|
+
stb = ip.InteractiveTB.structured_traceback(exc_type, exc_value, exc_tb)
|
|
759
|
+
text = ip.InteractiveTB.stb2text(stb)
|
|
760
|
+
self._logging_context.stderr_logger.write(text)
|
|
761
|
+
self._logging_context.stderr_logger.flush()
|
|
762
|
+
return
|
|
763
|
+
except Exception:
|
|
764
|
+
pass
|
|
765
|
+
err_msg = "".join(traceback.format_exception(exc_type, exc_value, exc_tb))
|
|
766
|
+
self._logging_context.stderr_logger.write(err_msg)
|
|
767
|
+
self._logging_context.stderr_logger.flush()
|
|
768
|
+
|
|
654
769
|
def _patch_stdout_and_stderr(self) -> None:
|
|
655
770
|
if not self._live_logging_enabled:
|
|
656
771
|
return
|
{snowflake_ml_python-1.32.0 → snowflake_ml_python-1.34.0}/snowflake/ml/feature_store/__init__.py
RENAMED
|
@@ -5,6 +5,7 @@ from snowflake.ml._internal import init_utils
|
|
|
5
5
|
from .access_manager import setup_feature_store
|
|
6
6
|
from .feature import Feature
|
|
7
7
|
from .feature_view import RollupConfig
|
|
8
|
+
from .stream_config import StreamConfig
|
|
8
9
|
from .stream_source import StreamSource
|
|
9
10
|
|
|
10
11
|
pkg_dir = os.path.dirname(__file__)
|
|
@@ -17,5 +18,6 @@ __all__ = list(exportable_classes.keys()) + [
|
|
|
17
18
|
"setup_feature_store",
|
|
18
19
|
"Feature",
|
|
19
20
|
"RollupConfig",
|
|
21
|
+
"StreamConfig",
|
|
20
22
|
"StreamSource",
|
|
21
23
|
]
|