snowflake-ml-python 1.8.4__tar.gz → 1.8.6__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.8.4 → snowflake_ml_python-1.8.6}/CHANGELOG.md +34 -5
- {snowflake_ml_python-1.8.4/snowflake_ml_python.egg-info → snowflake_ml_python-1.8.6}/PKG-INFO +40 -13
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/pyproject.toml +3 -4
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/telemetry.py +42 -16
- {snowflake_ml_python-1.8.4/snowflake/ml → snowflake_ml_python-1.8.6/snowflake/ml/_internal}/utils/connection_params.py +8 -5
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/data/data_connector.py +1 -1
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/__init__.py +2 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/constants.py +12 -2
- snowflake_ml_python-1.8.6/snowflake/ml/jobs/_utils/function_payload_utils.py +43 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/interop_utils.py +1 -1
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/payload_utils.py +95 -39
- snowflake_ml_python-1.8.6/snowflake/ml/jobs/_utils/scripts/constants.py +26 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +67 -2
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/spec_utils.py +30 -6
- snowflake_ml_python-1.8.6/snowflake/ml/jobs/_utils/stage_utils.py +119 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/types.py +5 -1
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/decorators.py +10 -7
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/job.py +176 -28
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/manager.py +119 -26
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/model/model_impl.py +58 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/model/model_version_impl.py +90 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/ops/model_ops.py +6 -3
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/ops/service_ops.py +24 -7
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/service/model_deployment_spec.py +11 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/sql/model_version.py +1 -1
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/sql/service.py +73 -28
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/sql/stage.py +5 -2
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_composer.py +3 -1
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/sklearn.py +1 -1
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +103 -73
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +3 -2
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/core.py +24 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/monitoring/explain_visualize.py +160 -22
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/monitoring/model_monitor.py +0 -4
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/registry/registry.py +34 -14
- snowflake_ml_python-1.8.6/snowflake/ml/utils/connection_params.py +199 -0
- snowflake_ml_python-1.8.6/snowflake/ml/utils/html_utils.py +263 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6/snowflake_ml_python.egg-info}/PKG-INFO +40 -13
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake_ml_python.egg-info/SOURCES.txt +4 -1
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake_ml_python.egg-info/requires.txt +5 -8
- snowflake_ml_python-1.8.4/snowflake/ml/jobs/_utils/scripts/constants.py +0 -4
- snowflake_ml_python-1.8.4/snowflake/ml/monitoring/model_monitor_version.py +0 -1
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/LICENSE.txt +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/README.md +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/setup.cfg +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_classify_text.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_complete.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_embed_text_1024.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_embed_text_768.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_extract_answer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_finetune.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_sentiment.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_sse_client.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_summarize.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_translate.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/cortex/_util.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/env.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/env_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/exceptions/dataset_error_messages.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/exceptions/dataset_errors.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/exceptions/error_codes.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/exceptions/error_messages.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/exceptions/exceptions.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/exceptions/fileset_error_messages.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/exceptions/fileset_errors.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/exceptions/modeling_error_messages.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/exceptions/sql_error_codes.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/file_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/human_readable_id/adjectives.txt +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/human_readable_id/animals.txt +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/human_readable_id/hrid_generator.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/human_readable_id/hrid_generator_base.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/init_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/lineage/lineage_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/migrator_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/platform_capabilities.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/relax_version_strategy.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/type_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/db_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/formatting.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/identifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/import_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/jwt_generator.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/parallelize.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/pkg_version_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/query_result_checker.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/result.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/service_logger.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/snowflake_env.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/snowpark_dataframe_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/sql_identifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/table_manager.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/_internal/utils/temp_file_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/data/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/data/_internal/arrow_ingestor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/data/data_ingestor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/data/data_source.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/data/ingestor_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/data/torch_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/dataset/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/dataset/dataset.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/dataset/dataset_factory.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/dataset/dataset_metadata.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/dataset/dataset_reader.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/access_manager.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/entity.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/airline_features/entities.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/airline_features/features/plane_features.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/airline_features/features/weather_features.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/airline_features/source.yaml +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/citibike_trip_features/features/station_feature.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/citibike_trip_features/features/trip_feature.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/example_helper.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/location_features.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/trip_features.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/source_data/airline.yaml +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/wine_quality_features/entities.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/feature_store.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/feature_store/feature_view.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/fileset/embedded_stage_fs.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/fileset/fileset.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/fileset/sfcfs.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/fileset/snowfs.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/fileset/stage_fs.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/scripts/get_instance_ip.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/scripts/signal_workers.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/lineage/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/lineage/lineage_node.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/ops/metadata_ops.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/sql/_base.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/sql/model.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_client/sql/tag.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_method/constants.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_method/function_generator.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_method/infer_function.py_template +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_method/model_method.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_model_composer/model_user_file/model_user_file.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_env/model_env.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/_base.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/catboost.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/custom.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/keras.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/lightgbm.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/mlflow.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/pytorch.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/tensorflow.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/torchscript.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers/xgboost.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers_migrator/pytorch_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_meta/model_blob_meta.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_meta/model_meta.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_meta/model_meta_schema.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_packager.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_runtime/model_runtime.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_packager/model_task/model_task_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/base_handler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/builtins_handler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/dmatrix_handler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/numpy_handler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/pandas_handler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/pytorch_handler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/snowpark_handler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/tensorflow_handler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/_signatures/utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/custom_model.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/model_signature.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/models/huggingface_pipeline.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/model/type_hints.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/estimator_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/model_specifications.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/model_trainer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/_internal/transformer_protocols.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/calibration/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/affinity_propagation.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/agglomerative_clustering.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/birch.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/bisecting_k_means.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/dbscan.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/feature_agglomeration.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/k_means.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/mean_shift.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/mini_batch_k_means.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/optics.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/spectral_biclustering.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/spectral_clustering.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/cluster/spectral_coclustering.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/compose/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/compose/column_transformer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/compose/transformed_target_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/covariance/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/covariance/elliptic_envelope.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/covariance/empirical_covariance.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/covariance/graphical_lasso.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/covariance/graphical_lasso_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/covariance/ledoit_wolf.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/covariance/min_cov_det.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/covariance/oas.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/covariance/shrunk_covariance.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/dictionary_learning.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/factor_analysis.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/fast_ica.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/incremental_pca.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/kernel_pca.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/pca.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/sparse_pca.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/decomposition/truncated_svd.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/discriminant_analysis/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/ada_boost_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/ada_boost_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/bagging_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/bagging_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/extra_trees_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/extra_trees_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/isolation_forest.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/random_forest_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/random_forest_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/stacking_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/voting_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/ensemble/voting_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/feature_selection/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/feature_selection/generic_univariate_select.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/feature_selection/select_fdr.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/feature_selection/select_fpr.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/feature_selection/select_fwe.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/feature_selection/select_k_best.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/feature_selection/select_percentile.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/feature_selection/variance_threshold.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/framework/_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/framework/base.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/gaussian_process/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/impute/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/impute/iterative_imputer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/impute/knn_imputer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/impute/missing_indicator.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/impute/simple_imputer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/kernel_approximation/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/kernel_approximation/nystroem.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/kernel_ridge/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/lightgbm/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/lightgbm/lgbm_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/lightgbm/lgbm_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/ard_regression.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/bayesian_ridge.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/elastic_net.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/gamma_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/huber_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/lars.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/lars_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/lasso.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/lasso_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/lasso_lars.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/lasso_lars_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/lasso_lars_ic.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/linear_regression.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/logistic_regression.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/logistic_regression_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/multi_task_lasso.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/perceptron.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/poisson_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/ransac_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/ridge.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/ridge_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/ridge_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/sgd_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/sgd_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/theil_sen_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/linear_model/tweedie_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/manifold/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/manifold/isomap.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/manifold/mds.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/manifold/spectral_embedding.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/manifold/tsne.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/metrics/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/metrics/classification.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/metrics/correlation.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/metrics/covariance.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/metrics/metrics_utils.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/metrics/ranking.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/metrics/regression.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/mixture/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/mixture/gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/model_selection/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/model_selection/grid_search_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/model_selection/randomized_search_cv.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/multiclass/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/multiclass/output_code_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/naive_bayes/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/naive_bayes/categorical_nb.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/naive_bayes/complement_nb.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/naive_bayes/gaussian_nb.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/naive_bayes/multinomial_nb.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/kernel_density.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/local_outlier_factor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/nearest_centroid.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/nearest_neighbors.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neural_network/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neural_network/bernoulli_rbm.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neural_network/mlp_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/neural_network/mlp_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/parameters/disable_distributed_hpo.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/parameters/disable_model_tracer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/parameters/enable_anonymous_sproc.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/pipeline/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/pipeline/pipeline.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/binarizer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/k_bins_discretizer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/label_encoder.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/max_abs_scaler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/min_max_scaler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/normalizer.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/one_hot_encoder.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/ordinal_encoder.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/polynomial_features.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/robust_scaler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/preprocessing/standard_scaler.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/semi_supervised/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/semi_supervised/label_propagation.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/semi_supervised/label_spreading.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/svm/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/svm/linear_svc.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/svm/linear_svr.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/svm/nu_svc.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/svm/nu_svr.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/svm/svc.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/svm/svr.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/tree/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/tree/decision_tree_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/tree/decision_tree_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/tree/extra_tree_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/tree/extra_tree_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/xgboost/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/xgboost/xgb_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/xgboost/xgb_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/xgboost/xgbrf_classifier.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/modeling/xgboost/xgbrf_regressor.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/monitoring/_client/model_monitor_sql_client.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/monitoring/_client/queries/record_count.ssql +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/monitoring/_client/queries/rmse.ssql +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/monitoring/_manager/model_monitor_manager.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/monitoring/entities/model_monitor_config.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/monitoring/shap.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/registry/__init__.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/registry/_manager/model_manager.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/utils/authentication.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/utils/sparse.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/utils/sql_client.py +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake_ml_python.egg-info/dependency_links.txt +0 -0
- {snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake_ml_python.egg-info/top_level.txt +0 -0
@@ -1,6 +1,39 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
-
## 1.8.
|
3
|
+
## 1.8.6
|
4
|
+
|
5
|
+
### Bug Fixes
|
6
|
+
|
7
|
+
### New Features
|
8
|
+
|
9
|
+
- Registry: Add service container info to logs.
|
10
|
+
|
11
|
+
## 1.8.5
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
- Registry: Fixed a bug when listing and deleting container services.
|
16
|
+
- Registry: Fixed explainability issue with scikit-learn pipelines, skipping explain function creation.
|
17
|
+
- Explainability: bump minimum streamlit version down to 1.30
|
18
|
+
- Modeling: Make XGBoost a required dependency (xgboost is not a required dependency in snowflake-ml-python 1.8.4).
|
19
|
+
|
20
|
+
### Breaking change
|
21
|
+
|
22
|
+
- ML Job: Rename argument `num_instances` to `target_instances` in job submission APIs and
|
23
|
+
change type from `Optional[int]` to `int`
|
24
|
+
|
25
|
+
### New Features
|
26
|
+
|
27
|
+
- Registry: No longer checks if the snowflake-ml-python version is available in the Snowflake Conda channel when logging
|
28
|
+
an SPCS-only model.
|
29
|
+
- ML Job: Add `min_instances` argument to the job decorator to allow waiting for workers to be ready.
|
30
|
+
- ML Job: Adjust polling behavior to reduce number of SQL calls.
|
31
|
+
|
32
|
+
### Deprecations
|
33
|
+
|
34
|
+
- `SnowflakeLoginOptions` is deprecated and will be removed in a future release.
|
35
|
+
|
36
|
+
## 1.8.4 (2025-05-12)
|
4
37
|
|
5
38
|
### Bug Fixes
|
6
39
|
|
@@ -27,10 +60,6 @@
|
|
27
60
|
|
28
61
|
## 1.8.3
|
29
62
|
|
30
|
-
### Bug Fixes
|
31
|
-
|
32
|
-
### Behavior Change
|
33
|
-
|
34
63
|
### New Features
|
35
64
|
|
36
65
|
- Registry: Default to the runtime cuda version if available when logging a GPU model in Container Runtime.
|
{snowflake_ml_python-1.8.4/snowflake_ml_python.egg-info → snowflake_ml_python-1.8.6}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: snowflake-ml-python
|
3
|
-
Version: 1.8.
|
3
|
+
Version: 1.8.6
|
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:
|
@@ -242,7 +242,7 @@ Requires-Dist: fsspec[http]<2026,>=2024.6.1
|
|
242
242
|
Requires-Dist: importlib_resources<7,>=6.1.1
|
243
243
|
Requires-Dist: numpy<2,>=1.23
|
244
244
|
Requires-Dist: packaging<25,>=20.9
|
245
|
-
Requires-Dist: pandas<3,>=1.
|
245
|
+
Requires-Dist: pandas<3,>=2.1.4
|
246
246
|
Requires-Dist: pyarrow
|
247
247
|
Requires-Dist: pydantic<3,>=2.8.2
|
248
248
|
Requires-Dist: pyjwt<3,>=2.0.0
|
@@ -253,11 +253,12 @@ Requires-Dist: s3fs<2026,>=2024.6.1
|
|
253
253
|
Requires-Dist: scikit-learn<1.6
|
254
254
|
Requires-Dist: scipy<2,>=1.9
|
255
255
|
Requires-Dist: shap<1,>=0.46.0
|
256
|
-
Requires-Dist: snowflake-connector-python[pandas]<4,>=3.
|
256
|
+
Requires-Dist: snowflake-connector-python[pandas]<4,>=3.15.0
|
257
257
|
Requires-Dist: snowflake-snowpark-python!=1.26.0,<2,>=1.17.0
|
258
258
|
Requires-Dist: snowflake.core<2,>=1.0.2
|
259
259
|
Requires-Dist: sqlparse<1,>=0.4
|
260
260
|
Requires-Dist: typing-extensions<5,>=4.1.0
|
261
|
+
Requires-Dist: xgboost<3,>=1.7.3
|
261
262
|
Provides-Extra: all
|
262
263
|
Requires-Dist: altair<6,>=5; extra == "all"
|
263
264
|
Requires-Dist: catboost<2,>=1.2.0; extra == "all"
|
@@ -266,13 +267,12 @@ Requires-Dist: lightgbm<5,>=4.1.0; extra == "all"
|
|
266
267
|
Requires-Dist: mlflow<3,>=2.16.0; extra == "all"
|
267
268
|
Requires-Dist: sentence-transformers<4,>=2.7.0; extra == "all"
|
268
269
|
Requires-Dist: sentencepiece<0.2.0,>=0.1.95; extra == "all"
|
269
|
-
Requires-Dist: streamlit<2,>=1.
|
270
|
+
Requires-Dist: streamlit<2,>=1.30.0; extra == "all"
|
270
271
|
Requires-Dist: tensorflow<3,>=2.17.0; extra == "all"
|
271
272
|
Requires-Dist: tokenizers<1,>=0.15.1; extra == "all"
|
272
273
|
Requires-Dist: torch<3,>=2.0.1; extra == "all"
|
273
274
|
Requires-Dist: torchdata<1,>=0.4; extra == "all"
|
274
275
|
Requires-Dist: transformers<5,>=4.39.3; extra == "all"
|
275
|
-
Requires-Dist: xgboost<3,>=1.7.3; extra == "all"
|
276
276
|
Provides-Extra: altair
|
277
277
|
Requires-Dist: altair<6,>=5; extra == "altair"
|
278
278
|
Provides-Extra: catboost
|
@@ -286,7 +286,7 @@ Requires-Dist: lightgbm<5,>=4.1.0; extra == "lightgbm"
|
|
286
286
|
Provides-Extra: mlflow
|
287
287
|
Requires-Dist: mlflow<3,>=2.16.0; extra == "mlflow"
|
288
288
|
Provides-Extra: streamlit
|
289
|
-
Requires-Dist: streamlit<2,>=1.
|
289
|
+
Requires-Dist: streamlit<2,>=1.30.0; extra == "streamlit"
|
290
290
|
Provides-Extra: tensorflow
|
291
291
|
Requires-Dist: tensorflow<3,>=2.17.0; extra == "tensorflow"
|
292
292
|
Provides-Extra: torch
|
@@ -298,8 +298,6 @@ Requires-Dist: sentencepiece<0.2.0,>=0.1.95; extra == "transformers"
|
|
298
298
|
Requires-Dist: tokenizers<1,>=0.15.1; extra == "transformers"
|
299
299
|
Requires-Dist: torch<3,>=2.0.1; extra == "transformers"
|
300
300
|
Requires-Dist: transformers<5,>=4.39.3; extra == "transformers"
|
301
|
-
Provides-Extra: xgboost
|
302
|
-
Requires-Dist: xgboost<3,>=1.7.3; extra == "xgboost"
|
303
301
|
Dynamic: license-file
|
304
302
|
|
305
303
|
# Snowpark ML
|
@@ -410,7 +408,40 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
410
408
|
|
411
409
|
# Release History
|
412
410
|
|
413
|
-
## 1.8.
|
411
|
+
## 1.8.6
|
412
|
+
|
413
|
+
### Bug Fixes
|
414
|
+
|
415
|
+
### New Features
|
416
|
+
|
417
|
+
- Registry: Add service container info to logs.
|
418
|
+
|
419
|
+
## 1.8.5
|
420
|
+
|
421
|
+
### Bug Fixes
|
422
|
+
|
423
|
+
- Registry: Fixed a bug when listing and deleting container services.
|
424
|
+
- Registry: Fixed explainability issue with scikit-learn pipelines, skipping explain function creation.
|
425
|
+
- Explainability: bump minimum streamlit version down to 1.30
|
426
|
+
- Modeling: Make XGBoost a required dependency (xgboost is not a required dependency in snowflake-ml-python 1.8.4).
|
427
|
+
|
428
|
+
### Breaking change
|
429
|
+
|
430
|
+
- ML Job: Rename argument `num_instances` to `target_instances` in job submission APIs and
|
431
|
+
change type from `Optional[int]` to `int`
|
432
|
+
|
433
|
+
### New Features
|
434
|
+
|
435
|
+
- Registry: No longer checks if the snowflake-ml-python version is available in the Snowflake Conda channel when logging
|
436
|
+
an SPCS-only model.
|
437
|
+
- ML Job: Add `min_instances` argument to the job decorator to allow waiting for workers to be ready.
|
438
|
+
- ML Job: Adjust polling behavior to reduce number of SQL calls.
|
439
|
+
|
440
|
+
### Deprecations
|
441
|
+
|
442
|
+
- `SnowflakeLoginOptions` is deprecated and will be removed in a future release.
|
443
|
+
|
444
|
+
## 1.8.4 (2025-05-12)
|
414
445
|
|
415
446
|
### Bug Fixes
|
416
447
|
|
@@ -437,10 +468,6 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
437
468
|
|
438
469
|
## 1.8.3
|
439
470
|
|
440
|
-
### Bug Fixes
|
441
|
-
|
442
|
-
### Behavior Change
|
443
|
-
|
444
471
|
### New Features
|
445
472
|
|
446
473
|
- Registry: Default to the runtime cuda version if available when logging a GPU model in Container Runtime.
|
@@ -8,7 +8,7 @@ description = "The machine learning client library that is used for interacting
|
|
8
8
|
classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: Other Environment", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Database", "Topic :: Software Development", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Scientific/Engineering :: Information Analysis",]
|
9
9
|
requires-python = ">=3.9, <3.13"
|
10
10
|
dynamic = [ "version", "readme",]
|
11
|
-
dependencies = [ "absl-py>=0.15,<2", "anyio>=3.5.0,<5", "cachetools>=3.1.1,<6", "cloudpickle>=2.0.0", "cryptography", "fsspec[http]>=2024.6.1,<2026", "importlib_resources>=6.1.1, <7", "numpy>=1.23,<2", "packaging>=20.9,<25", "pandas>=1.
|
11
|
+
dependencies = [ "absl-py>=0.15,<2", "anyio>=3.5.0,<5", "cachetools>=3.1.1,<6", "cloudpickle>=2.0.0", "cryptography", "fsspec[http]>=2024.6.1,<2026", "importlib_resources>=6.1.1, <7", "numpy>=1.23,<2", "packaging>=20.9,<25", "pandas>=2.1.4,<3", "pyarrow", "pydantic>=2.8.2, <3", "pyjwt>=2.0.0, <3", "pytimeparse>=1.1.8,<2", "pyyaml>=6.0,<7", "retrying>=1.3.3,<2", "s3fs>=2024.6.1,<2026", "scikit-learn<1.6", "scipy>=1.9,<2", "shap>=0.46.0,<1", "snowflake-connector-python[pandas]>=3.15.0,<4", "snowflake-snowpark-python>=1.17.0,<2,!=1.26.0", "snowflake.core>=1.0.2,<2", "sqlparse>=0.4,<1", "typing-extensions>=4.1.0,<5", "xgboost>=1.7.3,<3",]
|
12
12
|
[[project.authors]]
|
13
13
|
name = "Snowflake, Inc"
|
14
14
|
email = "support@snowflake.com"
|
@@ -24,17 +24,16 @@ 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", "sentence-transformers>=2.7.0,<4", "sentencepiece>=0.1.95,<0.2.0", "streamlit>=1.
|
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", "sentence-transformers>=2.7.0,<4", "sentencepiece>=0.1.95,<0.2.0", "streamlit>=1.30.0,<2", "tensorflow>=2.17.0,<3", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "torchdata>=0.4,<1", "transformers>=4.39.3,<5",]
|
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
32
|
mlflow = [ "mlflow>=2.16.0, <3",]
|
33
|
-
streamlit = [ "streamlit>=1.
|
33
|
+
streamlit = [ "streamlit>=1.30.0,<2",]
|
34
34
|
tensorflow = [ "tensorflow>=2.17.0,<3",]
|
35
35
|
torch = [ "torch>=2.0.1,<3", "torchdata>=0.4,<1",]
|
36
36
|
transformers = [ "sentence-transformers>=2.7.0,<4", "sentencepiece>=0.1.95,<0.2.0", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "transformers>=4.39.3,<5",]
|
37
|
-
xgboost = [ "xgboost>=1.7.3,<3",]
|
38
37
|
|
39
38
|
[tool.setuptools.package-data]
|
40
39
|
"*" = [ "*",]
|
@@ -4,6 +4,7 @@ import enum
|
|
4
4
|
import functools
|
5
5
|
import inspect
|
6
6
|
import operator
|
7
|
+
import os
|
7
8
|
import sys
|
8
9
|
import time
|
9
10
|
import traceback
|
@@ -13,7 +14,7 @@ from typing import Any, Callable, Iterable, Mapping, Optional, TypeVar, Union, c
|
|
13
14
|
from typing_extensions import ParamSpec
|
14
15
|
|
15
16
|
from snowflake import connector
|
16
|
-
from snowflake.connector import telemetry as connector_telemetry, time_util
|
17
|
+
from snowflake.connector import connect, telemetry as connector_telemetry, time_util
|
17
18
|
from snowflake.ml import version as snowml_version
|
18
19
|
from snowflake.ml._internal import env
|
19
20
|
from snowflake.ml._internal.exceptions import (
|
@@ -37,6 +38,37 @@ _Args = ParamSpec("_Args")
|
|
37
38
|
_ReturnValue = TypeVar("_ReturnValue")
|
38
39
|
|
39
40
|
|
41
|
+
def _get_login_token() -> Union[str, bytes]:
|
42
|
+
with open("/snowflake/session/token") as f:
|
43
|
+
return f.read()
|
44
|
+
|
45
|
+
|
46
|
+
def _get_snowflake_connection() -> Optional[connector.SnowflakeConnection]:
|
47
|
+
conn = None
|
48
|
+
if os.getenv("SNOWFLAKE_HOST") is not None and os.getenv("SNOWFLAKE_ACCOUNT") is not None:
|
49
|
+
try:
|
50
|
+
conn = connect(
|
51
|
+
host=os.getenv("SNOWFLAKE_HOST"),
|
52
|
+
account=os.getenv("SNOWFLAKE_ACCOUNT"),
|
53
|
+
token=_get_login_token(),
|
54
|
+
authenticator="oauth",
|
55
|
+
)
|
56
|
+
except Exception:
|
57
|
+
# Failed to get a new SnowflakeConnection in SPCS. Fall back to using the active session.
|
58
|
+
# This will work in some cases once SPCS enables multiple authentication modes, and users select any auth.
|
59
|
+
pass
|
60
|
+
|
61
|
+
if conn is None:
|
62
|
+
try:
|
63
|
+
active_session = next(iter(session._get_active_sessions()))
|
64
|
+
conn = active_session._conn._conn if active_session.telemetry_enabled else None
|
65
|
+
except snowpark_exceptions.SnowparkSessionException:
|
66
|
+
# Failed to get an active session. No connection available.
|
67
|
+
pass
|
68
|
+
|
69
|
+
return conn
|
70
|
+
|
71
|
+
|
40
72
|
@enum.unique
|
41
73
|
class TelemetryProject(enum.Enum):
|
42
74
|
MLOPS = "MLOps"
|
@@ -378,13 +410,14 @@ def send_custom_usage(
|
|
378
410
|
data: Optional[dict[str, Any]] = None,
|
379
411
|
**kwargs: Any,
|
380
412
|
) -> None:
|
381
|
-
|
382
|
-
assert active_session, "Missing active session object"
|
413
|
+
conn = _get_snowflake_connection()
|
383
414
|
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
415
|
+
# Send telemetry if Snowflake connection is available.
|
416
|
+
if conn is not None:
|
417
|
+
client = _SourceTelemetryClient(conn=conn, project=project, subproject=subproject)
|
418
|
+
common_metrics = client._create_basic_telemetry_data(telemetry_type=telemetry_type)
|
419
|
+
data = {**common_metrics, TelemetryField.KEY_DATA.value: data, **kwargs}
|
420
|
+
client._send(msg=data)
|
388
421
|
|
389
422
|
|
390
423
|
def send_api_usage_telemetry(
|
@@ -501,7 +534,6 @@ def send_api_usage_telemetry(
|
|
501
534
|
return update_stmt_params_if_snowpark_df(result, statement_params)
|
502
535
|
|
503
536
|
# prioritize `conn_attr_name` over the active session
|
504
|
-
telemetry_enabled = True
|
505
537
|
if conn_attr_name:
|
506
538
|
# raise AttributeError if conn attribute does not exist in `self`
|
507
539
|
conn = operator.attrgetter(conn_attr_name)(args[0])
|
@@ -509,16 +541,10 @@ def send_api_usage_telemetry(
|
|
509
541
|
raise TypeError(
|
510
542
|
f"Expected a conn object of type {' or '.join(_CONNECTION_TYPES.keys())} but got {type(conn)}"
|
511
543
|
)
|
512
|
-
# get an active session
|
513
544
|
else:
|
514
|
-
|
515
|
-
active_session = next(iter(session._get_active_sessions()))
|
516
|
-
conn = active_session._conn._conn
|
517
|
-
telemetry_enabled = active_session.telemetry_enabled
|
518
|
-
except snowpark_exceptions.SnowparkSessionException:
|
519
|
-
conn = None
|
545
|
+
conn = _get_snowflake_connection()
|
520
546
|
|
521
|
-
if conn is None
|
547
|
+
if conn is None:
|
522
548
|
# Telemetry not enabled, just execute without our additional telemetry logic
|
523
549
|
try:
|
524
550
|
return ctx.run(execute_func_with_statement_params)
|
@@ -6,8 +6,6 @@ from absl import logging
|
|
6
6
|
from cryptography.hazmat import backends
|
7
7
|
from cryptography.hazmat.primitives import serialization
|
8
8
|
|
9
|
-
from snowflake import snowpark
|
10
|
-
|
11
9
|
_DEFAULT_CONNECTION_FILE = "~/.snowsql/config"
|
12
10
|
|
13
11
|
|
@@ -113,6 +111,10 @@ def _load_from_snowsql_config_file(connection_name: str, login_file: str = "") -
|
|
113
111
|
|
114
112
|
config = configparser.ConfigParser(inline_comment_prefixes="#")
|
115
113
|
|
114
|
+
snowflake_connection_name = os.getenv("SNOWFLAKE_CONNECTION_NAME")
|
115
|
+
if snowflake_connection_name is not None:
|
116
|
+
connection_name = snowflake_connection_name
|
117
|
+
|
116
118
|
if connection_name:
|
117
119
|
if not connection_name.startswith("connections."):
|
118
120
|
connection_name = "connections." + connection_name
|
@@ -132,7 +134,6 @@ def _load_from_snowsql_config_file(connection_name: str, login_file: str = "") -
|
|
132
134
|
return conn_params
|
133
135
|
|
134
136
|
|
135
|
-
@snowpark._internal.utils.private_preview(version="0.2.0")
|
136
137
|
def SnowflakeLoginOptions(connection_name: str = "", login_file: Optional[str] = None) -> dict[str, Union[str, bytes]]:
|
137
138
|
"""Returns a dict that can be used directly into snowflake python connector or Snowpark session config.
|
138
139
|
|
@@ -153,9 +154,11 @@ def SnowflakeLoginOptions(connection_name: str = "", login_file: Optional[str] =
|
|
153
154
|
Ideally one should have a snowsql config file. Read more here:
|
154
155
|
https://docs.snowflake.com/en/user-guide/snowsql-start.html#configuring-default-connection-settings
|
155
156
|
|
157
|
+
If snowsql config file does not exist, it tries auth from env variables.
|
158
|
+
|
156
159
|
Args:
|
157
|
-
connection_name: Name of the connection to look for inside the config file. If
|
158
|
-
it
|
160
|
+
connection_name: Name of the connection to look for inside the config file. If environment variable
|
161
|
+
SNOWFLAKE_CONNECTION_NAME is provided, it will override the input connection_name.
|
159
162
|
login_file: If provided, this is used as config file instead of default one (_DEFAULT_CONNECTION_FILE).
|
160
163
|
|
161
164
|
Returns:
|
@@ -249,7 +249,7 @@ class DataConnector:
|
|
249
249
|
|
250
250
|
# Switch to use Runtime's Data Ingester if running in ML runtime
|
251
251
|
# Fail silently if the data ingester is not found
|
252
|
-
if env.IN_ML_RUNTIME and os.getenv(env.USE_OPTIMIZED_DATA_INGESTOR):
|
252
|
+
if env.IN_ML_RUNTIME and os.getenv(env.USE_OPTIMIZED_DATA_INGESTOR, "").lower() in ("true", "1"):
|
253
253
|
try:
|
254
254
|
from runtime_external_entities import get_ingester_class
|
255
255
|
|
{snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/constants.py
RENAMED
@@ -5,6 +5,8 @@ from snowflake.ml.jobs._utils.types import ComputeResources
|
|
5
5
|
DEFAULT_CONTAINER_NAME = "main"
|
6
6
|
PAYLOAD_DIR_ENV_VAR = "MLRS_PAYLOAD_DIR"
|
7
7
|
RESULT_PATH_ENV_VAR = "MLRS_RESULT_PATH"
|
8
|
+
MIN_INSTANCES_ENV_VAR = "MLRS_MIN_INSTANCES"
|
9
|
+
RUNTIME_IMAGE_TAG_ENV_VAR = "MLRS_CONTAINER_IMAGE_TAG"
|
8
10
|
MEMORY_VOLUME_NAME = "dshm"
|
9
11
|
STAGE_VOLUME_NAME = "stage-volume"
|
10
12
|
STAGE_VOLUME_MOUNT_PATH = "/mnt/app"
|
@@ -13,7 +15,7 @@ STAGE_VOLUME_MOUNT_PATH = "/mnt/app"
|
|
13
15
|
DEFAULT_IMAGE_REPO = "/snowflake/images/snowflake_images"
|
14
16
|
DEFAULT_IMAGE_CPU = "st_plat/runtime/x86/runtime_image/snowbooks"
|
15
17
|
DEFAULT_IMAGE_GPU = "st_plat/runtime/x86/generic_gpu/runtime_image/snowbooks"
|
16
|
-
DEFAULT_IMAGE_TAG = "1.2
|
18
|
+
DEFAULT_IMAGE_TAG = "1.4.2"
|
17
19
|
DEFAULT_ENTRYPOINT_PATH = "func.py"
|
18
20
|
|
19
21
|
# Percent of container memory to allocate for /dev/shm volume
|
@@ -37,16 +39,24 @@ RAY_PORTS = {
|
|
37
39
|
# Node health check configuration
|
38
40
|
# TODO(SNOW-1937020): Revisit the health check configuration
|
39
41
|
ML_RUNTIME_HEALTH_CHECK_PORT = "5001"
|
42
|
+
ENABLE_HEALTH_CHECKS_ENV_VAR = "ENABLE_HEALTH_CHECKS"
|
40
43
|
ENABLE_HEALTH_CHECKS = "false"
|
41
44
|
|
42
45
|
# Job status polling constants
|
43
46
|
JOB_POLL_INITIAL_DELAY_SECONDS = 0.1
|
44
|
-
JOB_POLL_MAX_DELAY_SECONDS =
|
47
|
+
JOB_POLL_MAX_DELAY_SECONDS = 30
|
45
48
|
|
46
49
|
# Magic attributes
|
47
50
|
IS_MLJOB_REMOTE_ATTR = "_is_mljob_remote_callable"
|
48
51
|
RESULT_PATH_DEFAULT_VALUE = "mljob_result.pkl"
|
49
52
|
|
53
|
+
# Log start and end messages
|
54
|
+
LOG_START_MSG = "--------------------------------\nML job started\n--------------------------------"
|
55
|
+
LOG_END_MSG = "--------------------------------\nML job finished\n--------------------------------"
|
56
|
+
|
57
|
+
# Default setting for verbose logging in get_log function
|
58
|
+
DEFAULT_VERBOSE_LOG = False
|
59
|
+
|
50
60
|
# Compute pool resource information
|
51
61
|
# TODO: Query Snowflake for resource information instead of relying on this hardcoded
|
52
62
|
# table from https://docs.snowflake.com/en/sql-reference/sql/create-compute-pool
|
@@ -0,0 +1,43 @@
|
|
1
|
+
import inspect
|
2
|
+
from typing import Any, Callable, Optional
|
3
|
+
|
4
|
+
from snowflake import snowpark
|
5
|
+
from snowflake.snowpark import context as sp_context
|
6
|
+
|
7
|
+
|
8
|
+
class FunctionPayload:
|
9
|
+
def __init__(
|
10
|
+
self,
|
11
|
+
func: Callable[..., Any],
|
12
|
+
session: Optional[snowpark.Session] = None,
|
13
|
+
session_argument: str = "",
|
14
|
+
*args: Any,
|
15
|
+
**kwargs: Any
|
16
|
+
) -> None:
|
17
|
+
self.function = func
|
18
|
+
self.args = args
|
19
|
+
self.kwargs = kwargs
|
20
|
+
self._session = session
|
21
|
+
self._session_argument = session_argument
|
22
|
+
|
23
|
+
@property
|
24
|
+
def session(self) -> Optional[snowpark.Session]:
|
25
|
+
return self._session
|
26
|
+
|
27
|
+
def __getstate__(self) -> dict[str, Any]:
|
28
|
+
"""Customize pickling to exclude session."""
|
29
|
+
state = self.__dict__.copy()
|
30
|
+
state["_session"] = None
|
31
|
+
return state
|
32
|
+
|
33
|
+
def __setstate__(self, state: dict[str, Any]) -> None:
|
34
|
+
"""Restore session from context during unpickling."""
|
35
|
+
self.__dict__.update(state)
|
36
|
+
self._session = sp_context.get_active_session()
|
37
|
+
|
38
|
+
def __call__(self) -> Any:
|
39
|
+
sig = inspect.signature(self.function)
|
40
|
+
bound = sig.bind_partial(*self.args, **self.kwargs)
|
41
|
+
bound.arguments[self._session_argument] = self._session
|
42
|
+
|
43
|
+
return self.function(*bound.args, **bound.kwargs)
|
{snowflake_ml_python-1.8.4 → snowflake_ml_python-1.8.6}/snowflake/ml/jobs/_utils/interop_utils.py
RENAMED
@@ -80,7 +80,7 @@ def fetch_result(session: snowpark.Session, result_path: str) -> ExecutionResult
|
|
80
80
|
# TODO: Check if file exists
|
81
81
|
with session.file.get_stream(result_path) as result_stream:
|
82
82
|
return ExecutionResult.from_dict(pickle.load(result_stream))
|
83
|
-
except (sp_exceptions.SnowparkSQLException, TypeError,
|
83
|
+
except (sp_exceptions.SnowparkSQLException, pickle.UnpicklingError, TypeError, ImportError):
|
84
84
|
# Fall back to JSON result if loading pickled result fails for any reason
|
85
85
|
result_json_path = os.path.splitext(result_path)[0] + ".json"
|
86
86
|
with session.file.get_stream(result_json_path) as result_stream:
|