snowflake-ml-python 1.53.0__tar.gz → 2.0.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.53.0 → snowflake_ml_python-2.0.0}/CHANGELOG.md +114 -1
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/PKG-INFO +132 -10
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/README.md +1 -1
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/pyproject.toml +8 -4
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/env_utils.py +13 -3
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/platform_capabilities.py +1 -1
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/telemetry.py +9 -5
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_source_info.py +30 -3
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/experiment_tracking.py +4 -3
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/aggregation.py +26 -1
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/feature_store.py +374 -263
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/feature_view.py +24 -22
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/metadata_manager.py +21 -6
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/online_service.py +118 -46
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/stream_config.py +10 -3
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/streaming_registration.py +42 -4
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/tile_sql_generator.py +29 -9
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/fileset/sfcfs.py +7 -8
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_interop/results.py +2 -5
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/scripts/get_instance_ip.py +4 -8
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +12 -15
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/type_utils.py +22 -21
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/decorators.py +6 -4
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/job.py +67 -62
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/job_definition.py +45 -26
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/manager.py +48 -41
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/__init__.py +2 -19
- snowflake_ml_python-2.0.0/snowflake/ml/model/_client/model/_loaded_model_telemetry.py +152 -0
- snowflake_ml_python-1.53.0/snowflake/ml/model/_client/model/batch_inference_task_v2.py → snowflake_ml_python-2.0.0/snowflake/ml/model/_client/model/batch_inference_task.py +9 -9
- snowflake_ml_python-2.0.0/snowflake/ml/model/_client/model/inference_engine_utils.py +20 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/model/model_version_impl.py +162 -380
- snowflake_ml_python-2.0.0/snowflake/ml/model/_client/model_spec/legacy_model_spec.py +74 -0
- snowflake_ml_python-2.0.0/snowflake/ml/model/_client/model_spec/model_extension_spec.py +171 -0
- snowflake_ml_python-2.0.0/snowflake/ml/model/_client/model_spec/model_extension_spec_schema.py +113 -0
- snowflake_ml_python-2.0.0/snowflake/ml/model/_client/model_spec/model_spec.py +71 -0
- snowflake_ml_python-2.0.0/snowflake/ml/model/_client/model_spec/model_spec_parser.py +38 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/ops/model_ops.py +187 -185
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/ops/service_ops.py +95 -290
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/service/model_deployment_spec.py +49 -183
- snowflake_ml_python-2.0.0/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +95 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/sql/model.py +63 -37
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/sql/model_version.py +49 -10
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/function_generator.py +6 -1
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/model_method.py +8 -2
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/utils.py +14 -4
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_env/model_env.py +4 -1
- snowflake_ml_python-2.0.0/snowflake/ml/model/_packager/model_handlers/peft_adapter.py +224 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +14 -8
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_meta/model_meta.py +17 -5
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_meta/model_meta_schema.py +11 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_packager.py +12 -8
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +1 -5
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_save_options.py +1 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/batch_inference/__init__.py +1 -1
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/models/huggingface.py +88 -1
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/models/huggingface_pipeline.py +24 -31
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/openai_signatures.py +2 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/type_hints.py +22 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/volatility.py +1 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/_internal/optional_dependency.py +133 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/calibration/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/cluster/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/compose/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/covariance/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/decomposition/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/discriminant_analysis/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/ensemble/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/feature_selection/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/gaussian_process/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/impute/__init__.py +15 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/kernel_approximation/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/kernel_ridge/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/lightgbm/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/linear_model/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/manifold/__init__.py +16 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/metrics/__init__.py +8 -1
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/mixture/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/model_selection/__init__.py +15 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/multiclass/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/naive_bayes/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/neighbors/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/neural_network/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/pipeline/__init__.py +15 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/preprocessing/__init__.py +15 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/semi_supervised/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/svm/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/tree/__init__.py +16 -0
- snowflake_ml_python-2.0.0/snowflake/ml/modeling/xgboost/__init__.py +16 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/registry/_manager/model_manager.py +299 -85
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/registry/_manager/model_parameter_reconciler.py +34 -29
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/registry/registry.py +14 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake_ml_python.egg-info/PKG-INFO +132 -10
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake_ml_python.egg-info/SOURCES.txt +8 -5
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake_ml_python.egg-info/requires.txt +19 -5
- snowflake_ml_python-1.53.0/snowflake/ml/model/_client/model/batch_inference_serialization.py +0 -58
- snowflake_ml_python-1.53.0/snowflake/ml/model/_client/model/batch_inference_specs.py +0 -153
- snowflake_ml_python-1.53.0/snowflake/ml/model/_client/model/batch_inference_task.py +0 -233
- snowflake_ml_python-1.53.0/snowflake/ml/model/_client/model/inference_engine_utils.py +0 -56
- snowflake_ml_python-1.53.0/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +0 -135
- snowflake_ml_python-1.53.0/snowflake/ml/model/batch/__init__.py +0 -23
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/calibration/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/cluster/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/compose/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/covariance/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/decomposition/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/discriminant_analysis/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/ensemble/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/feature_selection/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/gaussian_process/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/impute/__init__.py +0 -9
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/kernel_approximation/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/kernel_ridge/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/lightgbm/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/linear_model/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/manifold/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/mixture/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/model_selection/__init__.py +0 -9
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/multiclass/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/naive_bayes/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/neighbors/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/neural_network/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/pipeline/__init__.py +0 -9
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/preprocessing/__init__.py +0 -9
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/semi_supervised/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/svm/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/tree/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/modeling/xgboost/__init__.py +0 -8
- snowflake_ml_python-1.53.0/snowflake/ml/utils/connection_params.py +0 -205
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/LICENSE.txt +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/setup.cfg +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_classify_text.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_complete.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_embed_text_1024.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_embed_text_768.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_extract_answer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_finetune.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_sentiment.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_sse_client.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_summarize.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_translate.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/cortex/_util.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/env.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/exceptions/dataset_error_messages.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/exceptions/dataset_errors.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/exceptions/error_codes.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/exceptions/error_messages.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/exceptions/exceptions.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/exceptions/fileset_error_messages.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/exceptions/fileset_errors.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/exceptions/modeling_error_messages.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/exceptions/sql_error_codes.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/file_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/human_readable_id/adjectives.txt +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/human_readable_id/animals.txt +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/human_readable_id/hrid_generator.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/human_readable_id/hrid_generator_base.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/init_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/lineage/lineage_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/migrator_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/relax_version_strategy.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/type_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/db_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/formatting.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/identifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/import_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/jwt_generator.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/mixins.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/parallelize.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/pkg_version_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/query_result_checker.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/result.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/service_logger.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/snowflake_env.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/snowpark_dataframe_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/sql_identifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/table_manager.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/tee.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/temp_file_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/utils/url.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/data/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/data/_internal/arrow_ingestor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/data/data_connector.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/data/data_ingestor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/data/data_source.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/data/ingestor_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/data/torch_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/dataset/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/dataset/dataset.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/dataset/dataset_factory.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/dataset/dataset_metadata.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/dataset/dataset_reader.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_client/artifact.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_client/experiment_tracking_sql_client.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_entities/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_entities/experiment.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_entities/run.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_entities/run_metadata.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_experiment_info.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_logging/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_logging/experiment_logger.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_logging/experiment_logging_context.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/callback/keras.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/callback/lightgbm.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/callback/xgboost.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/_compute_fn_validation.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/access_manager.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/entity.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/airline_features/entities.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/airline_features/features/plane_features.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/airline_features/features/weather_features.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/airline_features/source.yaml +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/station_feature.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/trip_feature.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/example_helper.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/location_features.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/trip_features.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/source_data/airline.yaml +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/wine_quality_features/entities.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/feature.py +1 -1
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/feature_group.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/feature_view_append_only_validation.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/feature_view_refresh_freq.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/interval_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/online_service_http_client.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/realtime_config.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/realtime_dataset.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/realtime_dataset_udf.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/realtime_registration.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/request_source.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/spec/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/spec/builder.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/spec/enums.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/spec/models.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/spec/table_schema_evolution.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/feature_store/stream_source.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/fileset/embedded_stage_fs.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/fileset/fileset.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/fileset/snowfs.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/fileset/stage_fs.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_interop/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_interop/data_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_interop/dto_schema.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_interop/exception_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_interop/legacy.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_interop/protocols.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_interop/utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/arg_protocol.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/constants.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/feature_flags.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/payload_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/query_helper.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/runtime_env_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/scripts/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/scripts/constants.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/scripts/signal_workers.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/scripts/start_mlruntime.sh +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/scripts/startup.sh +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/jobs/_utils/stage_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/lineage/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/lineage/lineage_node.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/model/batch_inference_job_specs.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/model/model_impl.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/ops/deployment_step.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/ops/live_commit_naming.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/ops/metadata_ops.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/ops/param_ops.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/ops/param_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/service/import_model_spec_schema.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/service/inference_job_service_spec.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/sql/_base.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/sql/service.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/sql/stage.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_client/sql/tag.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/huggingface_lazy_uploader.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_composer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/constants.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/infer_function.py_template +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/infer_function_init_once.py_template +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/infer_partitioned_init_once.py_template +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_method/infer_table_function_init_once.py_template +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_model_composer/model_user_file/model_user_file.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/_base.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/catboost.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/custom.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_default.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_openai_chat_wrapper.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_task_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/audio_classification.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/audio_text_to_text.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/automatic_speech_recognition.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/conversational.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/document_question_answering.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/fill_mask.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_classification.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_feature_extraction.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_text_to_text.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_to_text.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/object_detection.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/question_answering.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/summarization.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/table_question_answering.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/text2text_generation.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/text_classification.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/text_generation.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/token_classification.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/translation.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/video_classification.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/video_text_to_text.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/visual_question_answering.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/zero_shot_audio_classification.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/zero_shot_image_classification.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/zero_shot_object_detection.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/huggingface/zero_shot_text_classification.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/keras.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/lightgbm.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/mlflow.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/prophet.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/pytorch.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/sklearn.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/tensorflow.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/torchscript.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers/xgboost.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers_migrator/pytorch_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_meta/model_blob_meta.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_meta/model_sample_input_data.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_runtime/model_runtime.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_packager/model_task/model_task_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/base_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/builtins_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/core.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/dmatrix_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/numpy_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/pandas_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/pytorch_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/snowpark_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/tensorflow_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/_signatures/utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/code_path.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/compute_pool.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/custom_model.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/event_handler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/inference_engine.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/model_signature.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/target_platform.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/model/task.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/estimator_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/model_specifications.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/model_trainer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/_internal/transformer_protocols.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/affinity_propagation.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/agglomerative_clustering.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/birch.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/bisecting_k_means.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/dbscan.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/feature_agglomeration.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/k_means.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/mean_shift.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/mini_batch_k_means.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/optics.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/spectral_biclustering.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/spectral_clustering.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/cluster/spectral_coclustering.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/compose/column_transformer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/compose/transformed_target_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/covariance/elliptic_envelope.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/covariance/empirical_covariance.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/covariance/graphical_lasso.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/covariance/graphical_lasso_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/covariance/ledoit_wolf.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/covariance/min_cov_det.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/covariance/oas.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/covariance/shrunk_covariance.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/dictionary_learning.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/factor_analysis.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/fast_ica.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/incremental_pca.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/kernel_pca.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/pca.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/sparse_pca.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/decomposition/truncated_svd.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/ada_boost_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/ada_boost_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/bagging_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/bagging_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/extra_trees_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/extra_trees_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/isolation_forest.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/random_forest_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/random_forest_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/stacking_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/voting_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/ensemble/voting_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/feature_selection/generic_univariate_select.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/feature_selection/select_fdr.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/feature_selection/select_fpr.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/feature_selection/select_fwe.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/feature_selection/select_k_best.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/feature_selection/select_percentile.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/feature_selection/variance_threshold.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/framework/_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/framework/base.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/impute/iterative_imputer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/impute/knn_imputer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/impute/missing_indicator.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/impute/simple_imputer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/kernel_approximation/nystroem.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/lightgbm/lgbm_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/lightgbm/lgbm_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/ard_regression.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/bayesian_ridge.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/elastic_net.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/gamma_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/huber_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/lars.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/lars_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/lasso.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/lasso_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/lasso_lars.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/lasso_lars_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/lasso_lars_ic.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/linear_regression.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/logistic_regression.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/logistic_regression_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/multi_task_lasso.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/perceptron.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/poisson_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/ransac_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/ridge.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/ridge_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/ridge_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/sgd_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/sgd_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/theil_sen_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/linear_model/tweedie_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/manifold/isomap.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/manifold/mds.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/manifold/spectral_embedding.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/manifold/tsne.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/metrics/classification.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/metrics/correlation.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/metrics/covariance.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/metrics/metrics_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/metrics/ranking.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/metrics/regression.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/mixture/gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/model_selection/grid_search_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/model_selection/randomized_search_cv.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/multiclass/output_code_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/naive_bayes/categorical_nb.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/naive_bayes/complement_nb.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/naive_bayes/gaussian_nb.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/naive_bayes/multinomial_nb.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neighbors/kernel_density.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neighbors/local_outlier_factor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neighbors/nearest_centroid.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neighbors/nearest_neighbors.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neural_network/bernoulli_rbm.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neural_network/mlp_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/neural_network/mlp_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/parameters/disable_distributed_hpo.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/parameters/disable_model_tracer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/parameters/enable_anonymous_sproc.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/pipeline/pipeline.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/binarizer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/k_bins_discretizer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/label_encoder.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/max_abs_scaler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/min_max_scaler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/normalizer.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/one_hot_encoder.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/ordinal_encoder.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/polynomial_features.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/robust_scaler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/preprocessing/standard_scaler.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/semi_supervised/label_propagation.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/semi_supervised/label_spreading.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/svm/linear_svc.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/svm/linear_svr.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/svm/nu_svc.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/svm/nu_svr.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/svm/svc.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/svm/svr.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/tree/decision_tree_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/tree/decision_tree_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/tree/extra_tree_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/tree/extra_tree_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/xgboost/xgb_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/xgboost/xgb_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/xgboost/xgbrf_classifier.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/modeling/xgboost/xgbrf_regressor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/monitoring/_client/model_monitor_sql_client.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/monitoring/_client/queries/record_count.ssql +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/monitoring/_client/queries/rmse.ssql +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/monitoring/_manager/model_monitor_manager.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/monitoring/entities/model_monitor_config.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/monitoring/explain_visualize.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/monitoring/model_monitor.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/monitoring/shap.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/registry/__init__.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/utils/authentication.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/utils/html_utils.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/utils/sparse.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/utils/sql_client.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/utils/stage_file.py +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake_ml_python.egg-info/dependency_links.txt +0 -0
- {snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake_ml_python.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,115 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
Release candidate for the `snowflake-ml-python` 2.0 major release. This is a breaking
|
|
6
|
+
release that removes deprecated APIs and slims down the default install footprint.
|
|
7
|
+
|
|
8
|
+
### New Features
|
|
9
|
+
|
|
10
|
+
* Feature Store: added `alter_online_service(size=...)`, which changes the size of an existing Online Service. The
|
|
11
|
+
call returns as soon as the request is recorded; the change runs in the background and can take hours on a large
|
|
12
|
+
Online Service, which keeps serving online reads and stream ingestion throughout. Poll
|
|
13
|
+
`get_online_service_status()` until `status` is `RUNNING` at the requested size.
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* Feature Store: `delete_feature_view` now drops the online feature table before the
|
|
18
|
+
offline dynamic table or view, so a dependent FeatureGroup (error 099940) does not
|
|
19
|
+
leave an orphaned offline object.
|
|
20
|
+
|
|
21
|
+
### Behavior Changes
|
|
22
|
+
|
|
23
|
+
* Registry: Models logged from a Snowflake Container Runtime notebook without an explicit
|
|
24
|
+
`target_platforms` now default to both Warehouse and Snowpark Container Services instead of
|
|
25
|
+
Snowpark Container Services only. Warehouse is no longer dropped from the default target
|
|
26
|
+
platforms.
|
|
27
|
+
* Dependencies: `scikit-learn`, `xgboost`, and `shap` are no longer required dependencies of
|
|
28
|
+
`snowflake-ml-python`. They are now optional extras. Install them with
|
|
29
|
+
`pip install snowflake-ml-python[scikit-learn]`, `[xgboost]`, `[shap]`, or `[all]` when using
|
|
30
|
+
the corresponding functionality. Extras are independent: `[xgboost]` and `[lightgbm]` install
|
|
31
|
+
only those libraries, not `scikit-learn`. Native XGBoost or LightGBM models (for example
|
|
32
|
+
logging to the Model Registry) only need `[xgboost]` or `[lightgbm]`.
|
|
33
|
+
`snowflake.ml.modeling` estimators always require `scikit-learn`, so the XGBoost and LightGBM
|
|
34
|
+
wrappers need `pip install "snowflake-ml-python[xgboost,scikit-learn]"` or
|
|
35
|
+
`"snowflake-ml-python[lightgbm,scikit-learn]"`.
|
|
36
|
+
* Feature Store: Added an optional `feature_store` extra. Install `snowflake-ml-python[feature_store]`
|
|
37
|
+
to pull in `httpx`, which is required for online feature serving reads. `httpx` is not installed by
|
|
38
|
+
the default `snowflake-ml-python` install. Conda users still need to install `httpx` separately
|
|
39
|
+
(for example `conda install httpx`) to use the online Feature Store.
|
|
40
|
+
* Modeling: Importing a `snowflake.ml.modeling` subpackage (for example
|
|
41
|
+
`snowflake.ml.modeling.linear_model`, `snowflake.ml.modeling.xgboost`,
|
|
42
|
+
`snowflake.ml.modeling.lightgbm`, or `snowflake.ml.modeling.preprocessing`) without the optional
|
|
43
|
+
dependencies it needs now raises an actionable `ImportError` that names only the missing
|
|
44
|
+
package(s), instead of a confusing missing-attribute error.
|
|
45
|
+
`scikit-learn` and `xgboost` are attributed to the 2.0 dependency change; `lightgbm` was
|
|
46
|
+
already an optional extra before 2.0.
|
|
47
|
+
|
|
48
|
+
### Deprecations
|
|
49
|
+
|
|
50
|
+
* Modeling: The `snowflake.ml.modeling` estimators and preprocessing transformers are deprecated and
|
|
51
|
+
will be removed in a future release. Importing a `snowflake.ml.modeling` subpackage now emits a
|
|
52
|
+
`DeprecationWarning`. Train models with the native scikit-learn, XGBoost, or LightGBM estimators
|
|
53
|
+
and log them to the Snowflake Model Registry (`snowflake.ml.registry`) instead.
|
|
54
|
+
|
|
55
|
+
### Breaking Changes
|
|
56
|
+
|
|
57
|
+
* Generic: Require python >= 3.10. Python 3.9 is no longer supported.
|
|
58
|
+
* Removed the deprecated `snowflake.ml.utils.connection_params.SnowflakeLoginOptions` public API
|
|
59
|
+
(deprecated since 1.8.5).
|
|
60
|
+
* Registry: `ModelVersion.run_batch` now runs on `EXECUTE INFERENCE JOB SERVICE`. The single
|
|
61
|
+
`job_spec` argument is replaced by the `resources_spec`, `inference_spec`, and `image_build_spec`
|
|
62
|
+
blocks, and input may be supplied as either a DataFrame (`X`) or an existing stage path
|
|
63
|
+
(`input_stage_location`). `output_spec.stage_location` is treated as a base: results are written
|
|
64
|
+
under a per-job subdirectory, `<stage_location>/<job_name>/`. `output_spec.base_stage_location`,
|
|
65
|
+
`job_spec.job_name_prefix`, and `job_spec.block` no longer exist.
|
|
66
|
+
* Registry: Removed the `snowflake.ml.model.batch` module. Use `snowflake.ml.model.batch_inference`,
|
|
67
|
+
which exports `BatchInferenceTask` alongside the input, output, resources, inference, and image
|
|
68
|
+
build spec classes.
|
|
69
|
+
* Feature Store: Feature views created before 1.42.0 that use the `last_distinct_n` or
|
|
70
|
+
`first_distinct_n` aggregation function can no longer be read offline. `generate_dataset`,
|
|
71
|
+
`generate_training_set`, `retrieve_feature_values`, and `read_feature_view` now raise a
|
|
72
|
+
`ValueError` for such feature views. Re-create the feature view to restore offline reads.
|
|
73
|
+
* Dependencies: `snowflake-snowpark-python` must now be `>=1.37.0`. Earlier releases import
|
|
74
|
+
`pkg_resources`, which `setuptools` removed in 82.0.0, so they fail to import in environments
|
|
75
|
+
with a current `setuptools`.
|
|
76
|
+
|
|
77
|
+
## 1.54.0 (2026-08-31)
|
|
78
|
+
|
|
79
|
+
### New Features
|
|
80
|
+
|
|
81
|
+
* Registry: `log_model(..., options={"case_sensitive": True})` and
|
|
82
|
+
`options={"max_batch_size": N}` apply those settings to all methods. Per-method
|
|
83
|
+
`method_options` still override the global values.
|
|
84
|
+
|
|
85
|
+
* Feature Store: `create_online_service` accepts a `size` kwarg naming the size to provision the Online
|
|
86
|
+
Service at, one of `"XS"`, `"S"`, `"M"`, `"L"`, `"XL"`, `"2XL"`, `"3XL"` (case-insensitive). When
|
|
87
|
+
omitted, the server-side default applies; accounts that cap the available size provision at their
|
|
88
|
+
cap. `get_online_service_status()` now reports the provisioned `size`, which is `None` for services
|
|
89
|
+
created before sizes were recorded.
|
|
90
|
+
|
|
91
|
+
* Experiment Tracking: Source provenance now also records the id of the enclosing ML job when a run is created from
|
|
92
|
+
inside one.
|
|
93
|
+
* ML Jobs: `submit_file`, `submit_directory`, `submit_from_stage`, and `@remote` accept a `comment` kwarg, attached as
|
|
94
|
+
the comment on the job service. When omitted, the comment defaults to the `application` name configured on the
|
|
95
|
+
session, so jobs submitted by a tool or partner integration remain attributable after the fact.
|
|
96
|
+
|
|
97
|
+
### Bug Fixes
|
|
98
|
+
|
|
99
|
+
* Feature Store: Feature View metadata tags carrying unknown keys (including a legacy `refresh_mode`)
|
|
100
|
+
no longer fail to deserialize; unknown keys are ignored on read and the tag still does not persist
|
|
101
|
+
`refresh_mode`.
|
|
102
|
+
* Registry: Fixed `ModelVersion.load()` failing with `ValueError: ... is not a valid SQL identifier`
|
|
103
|
+
when the model's owner role is a quoted identifier.
|
|
104
|
+
* Feature Store: Fixed FeatureStore.update_feature_view() failing with `SQL compilation error:
|
|
105
|
+
invalid value 'ADAPTIVE' for property 'REFRESH_MODE'` when enabling online storage for an existing
|
|
106
|
+
feature view.
|
|
107
|
+
|
|
108
|
+
### Behavior Changes
|
|
109
|
+
|
|
110
|
+
### Deprecations
|
|
111
|
+
|
|
112
|
+
## 1.53.0 (2026-08-24)
|
|
4
113
|
|
|
5
114
|
### New Features
|
|
6
115
|
|
|
@@ -29,6 +138,10 @@
|
|
|
29
138
|
|
|
30
139
|
### Bug Fixes
|
|
31
140
|
|
|
141
|
+
* Feature Store: online feature reads and stream ingestion no longer fail while the Online Service is
|
|
142
|
+
changing size (status `UPDATING_SIZE`). The service serves reads and writes throughout a size
|
|
143
|
+
change, which can take hours, so it is now treated as serviceable like `UPDATING` already was.
|
|
144
|
+
|
|
32
145
|
### Behavior Changes
|
|
33
146
|
|
|
34
147
|
* Feature Store: `register_feature_view` now records `FV_SOURCE_REFS` metadata for managed batch
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snowflake-ml-python
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.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:
|
|
@@ -220,7 +220,6 @@ Classifier: Intended Audience :: Information Technology
|
|
|
220
220
|
Classifier: Intended Audience :: System Administrators
|
|
221
221
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
222
222
|
Classifier: Operating System :: OS Independent
|
|
223
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
224
223
|
Classifier: Programming Language :: Python :: 3.10
|
|
225
224
|
Classifier: Programming Language :: Python :: 3.11
|
|
226
225
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -230,14 +229,13 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
230
229
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
231
230
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
232
231
|
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
233
|
-
Requires-Python: <3.14,>=3.
|
|
232
|
+
Requires-Python: <3.14,>=3.10
|
|
234
233
|
Description-Content-Type: text/markdown
|
|
235
234
|
License-File: LICENSE.txt
|
|
236
235
|
Requires-Dist: anyio<5,>=3.5.0
|
|
237
236
|
Requires-Dist: cachetools>=3.1.1
|
|
238
237
|
Requires-Dist: cloudpickle>=2.0.0
|
|
239
238
|
Requires-Dist: fsspec[http]<2026,>=2024.6.1
|
|
240
|
-
Requires-Dist: h2<5,>=4.3.0
|
|
241
239
|
Requires-Dist: importlib_resources<7,>=6.1.1
|
|
242
240
|
Requires-Dist: jinja2<4,>=3.1.0
|
|
243
241
|
Requires-Dist: numpy<3,>=1.23
|
|
@@ -250,34 +248,39 @@ Requires-Dist: pyjwt<3,>=2.0.0
|
|
|
250
248
|
Requires-Dist: pytimeparse<2,>=1.1.8
|
|
251
249
|
Requires-Dist: pyyaml<7,>=6.0
|
|
252
250
|
Requires-Dist: retrying<2,>=1.3.3
|
|
253
|
-
Requires-Dist: scikit-learn<1.9
|
|
254
251
|
Requires-Dist: scipy<2,>=1.9
|
|
255
|
-
Requires-Dist: shap<1,>=0.46.0
|
|
256
252
|
Requires-Dist: snowflake-connector-python[pandas]<5,>=3.17.3
|
|
257
|
-
Requires-Dist: snowflake-snowpark-python
|
|
253
|
+
Requires-Dist: snowflake-snowpark-python<2,>=1.37.0
|
|
258
254
|
Requires-Dist: sqlparse<1,>=0.4
|
|
259
255
|
Requires-Dist: tqdm<5
|
|
260
256
|
Requires-Dist: typing-extensions<5,>=4.1.0
|
|
261
|
-
Requires-Dist: xgboost<4
|
|
262
257
|
Provides-Extra: all
|
|
263
258
|
Requires-Dist: altair<7,>=5; extra == "all"
|
|
264
259
|
Requires-Dist: catboost<2,>=1.2.0; extra == "all"
|
|
260
|
+
Requires-Dist: h2<5,>=4.3.0; extra == "all"
|
|
261
|
+
Requires-Dist: httpx<1,>=0.28.1; extra == "all"
|
|
265
262
|
Requires-Dist: keras<4,>=2.0.0; extra == "all"
|
|
266
263
|
Requires-Dist: lightgbm<5,>=4.1.0; extra == "all"
|
|
267
264
|
Requires-Dist: mlflow<4,>=2.16.0; extra == "all"
|
|
268
265
|
Requires-Dist: prophet<2,>=1.1.0; extra == "all"
|
|
266
|
+
Requires-Dist: scikit-learn<1.9; extra == "all"
|
|
269
267
|
Requires-Dist: sentence-transformers<6,>=2.7.0; extra == "all"
|
|
270
268
|
Requires-Dist: sentencepiece<0.3,>=0.1.95; extra == "all"
|
|
269
|
+
Requires-Dist: shap<1,>=0.46.0; extra == "all"
|
|
271
270
|
Requires-Dist: streamlit<2,>=1.30.0; extra == "all"
|
|
272
271
|
Requires-Dist: tensorflow<3,>=2.17.0; extra == "all"
|
|
273
272
|
Requires-Dist: tokenizers<1,>=0.15.1; extra == "all"
|
|
274
273
|
Requires-Dist: torch<3,>=2.0.1; extra == "all"
|
|
275
274
|
Requires-Dist: torchdata<1,>=0.4; extra == "all"
|
|
276
275
|
Requires-Dist: transformers!=4.51.3,<6,>=4.39.3; extra == "all"
|
|
276
|
+
Requires-Dist: xgboost<4; extra == "all"
|
|
277
277
|
Provides-Extra: altair
|
|
278
278
|
Requires-Dist: altair<7,>=5; extra == "altair"
|
|
279
279
|
Provides-Extra: catboost
|
|
280
280
|
Requires-Dist: catboost<2,>=1.2.0; extra == "catboost"
|
|
281
|
+
Provides-Extra: feature-store
|
|
282
|
+
Requires-Dist: h2<5,>=4.3.0; extra == "feature-store"
|
|
283
|
+
Requires-Dist: httpx<1,>=0.28.1; extra == "feature-store"
|
|
281
284
|
Provides-Extra: keras
|
|
282
285
|
Requires-Dist: keras<4,>=2.0.0; extra == "keras"
|
|
283
286
|
Requires-Dist: tensorflow<3,>=2.17.0; extra == "keras"
|
|
@@ -296,6 +299,10 @@ Provides-Extra: mlflow
|
|
|
296
299
|
Requires-Dist: mlflow<4,>=2.16.0; extra == "mlflow"
|
|
297
300
|
Provides-Extra: prophet
|
|
298
301
|
Requires-Dist: prophet<2,>=1.1.0; extra == "prophet"
|
|
302
|
+
Provides-Extra: scikit-learn
|
|
303
|
+
Requires-Dist: scikit-learn<1.9; extra == "scikit-learn"
|
|
304
|
+
Provides-Extra: shap
|
|
305
|
+
Requires-Dist: shap<1,>=0.46.0; extra == "shap"
|
|
299
306
|
Provides-Extra: streamlit
|
|
300
307
|
Requires-Dist: streamlit<2,>=1.30.0; extra == "streamlit"
|
|
301
308
|
Provides-Extra: tensorflow
|
|
@@ -309,6 +316,8 @@ Requires-Dist: sentencepiece<0.3,>=0.1.95; extra == "transformers"
|
|
|
309
316
|
Requires-Dist: tokenizers<1,>=0.15.1; extra == "transformers"
|
|
310
317
|
Requires-Dist: torch<3,>=2.0.1; extra == "transformers"
|
|
311
318
|
Requires-Dist: transformers!=4.51.3,<6,>=4.39.3; extra == "transformers"
|
|
319
|
+
Provides-Extra: xgboost
|
|
320
|
+
Requires-Dist: xgboost<4; extra == "xgboost"
|
|
312
321
|
Dynamic: license-file
|
|
313
322
|
|
|
314
323
|
# Snowflake ML Python
|
|
@@ -370,7 +379,7 @@ In Snowflake Warehouse notebook environments, snowflake-ml-python can be install
|
|
|
370
379
|
Follow the [installation instructions](https://docs.snowflake.com/en/developer-guide/snowpark-ml/index#installing-snowpark-ml)
|
|
371
380
|
in the Snowflake documentation.
|
|
372
381
|
|
|
373
|
-
Python versions 3.
|
|
382
|
+
Python versions 3.10 to 3.13 are supported. You can use [miniconda](https://docs.conda.io/en/latest/miniconda.html) or
|
|
374
383
|
[anaconda](https://www.anaconda.com/) to create a Conda environment (recommended),
|
|
375
384
|
or [virtualenv](https://docs.python.org/3/tutorial/venv.html) to create a virtual environment.
|
|
376
385
|
|
|
@@ -416,7 +425,116 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
|
416
425
|
|
|
417
426
|
# Release History
|
|
418
427
|
|
|
419
|
-
##
|
|
428
|
+
## 2.0.0
|
|
429
|
+
|
|
430
|
+
Release candidate for the `snowflake-ml-python` 2.0 major release. This is a breaking
|
|
431
|
+
release that removes deprecated APIs and slims down the default install footprint.
|
|
432
|
+
|
|
433
|
+
### New Features
|
|
434
|
+
|
|
435
|
+
* Feature Store: added `alter_online_service(size=...)`, which changes the size of an existing Online Service. The
|
|
436
|
+
call returns as soon as the request is recorded; the change runs in the background and can take hours on a large
|
|
437
|
+
Online Service, which keeps serving online reads and stream ingestion throughout. Poll
|
|
438
|
+
`get_online_service_status()` until `status` is `RUNNING` at the requested size.
|
|
439
|
+
|
|
440
|
+
### Bug Fixes
|
|
441
|
+
|
|
442
|
+
* Feature Store: `delete_feature_view` now drops the online feature table before the
|
|
443
|
+
offline dynamic table or view, so a dependent FeatureGroup (error 099940) does not
|
|
444
|
+
leave an orphaned offline object.
|
|
445
|
+
|
|
446
|
+
### Behavior Changes
|
|
447
|
+
|
|
448
|
+
* Registry: Models logged from a Snowflake Container Runtime notebook without an explicit
|
|
449
|
+
`target_platforms` now default to both Warehouse and Snowpark Container Services instead of
|
|
450
|
+
Snowpark Container Services only. Warehouse is no longer dropped from the default target
|
|
451
|
+
platforms.
|
|
452
|
+
* Dependencies: `scikit-learn`, `xgboost`, and `shap` are no longer required dependencies of
|
|
453
|
+
`snowflake-ml-python`. They are now optional extras. Install them with
|
|
454
|
+
`pip install snowflake-ml-python[scikit-learn]`, `[xgboost]`, `[shap]`, or `[all]` when using
|
|
455
|
+
the corresponding functionality. Extras are independent: `[xgboost]` and `[lightgbm]` install
|
|
456
|
+
only those libraries, not `scikit-learn`. Native XGBoost or LightGBM models (for example
|
|
457
|
+
logging to the Model Registry) only need `[xgboost]` or `[lightgbm]`.
|
|
458
|
+
`snowflake.ml.modeling` estimators always require `scikit-learn`, so the XGBoost and LightGBM
|
|
459
|
+
wrappers need `pip install "snowflake-ml-python[xgboost,scikit-learn]"` or
|
|
460
|
+
`"snowflake-ml-python[lightgbm,scikit-learn]"`.
|
|
461
|
+
* Feature Store: Added an optional `feature_store` extra. Install `snowflake-ml-python[feature_store]`
|
|
462
|
+
to pull in `httpx`, which is required for online feature serving reads. `httpx` is not installed by
|
|
463
|
+
the default `snowflake-ml-python` install. Conda users still need to install `httpx` separately
|
|
464
|
+
(for example `conda install httpx`) to use the online Feature Store.
|
|
465
|
+
* Modeling: Importing a `snowflake.ml.modeling` subpackage (for example
|
|
466
|
+
`snowflake.ml.modeling.linear_model`, `snowflake.ml.modeling.xgboost`,
|
|
467
|
+
`snowflake.ml.modeling.lightgbm`, or `snowflake.ml.modeling.preprocessing`) without the optional
|
|
468
|
+
dependencies it needs now raises an actionable `ImportError` that names only the missing
|
|
469
|
+
package(s), instead of a confusing missing-attribute error.
|
|
470
|
+
`scikit-learn` and `xgboost` are attributed to the 2.0 dependency change; `lightgbm` was
|
|
471
|
+
already an optional extra before 2.0.
|
|
472
|
+
|
|
473
|
+
### Deprecations
|
|
474
|
+
|
|
475
|
+
* Modeling: The `snowflake.ml.modeling` estimators and preprocessing transformers are deprecated and
|
|
476
|
+
will be removed in a future release. Importing a `snowflake.ml.modeling` subpackage now emits a
|
|
477
|
+
`DeprecationWarning`. Train models with the native scikit-learn, XGBoost, or LightGBM estimators
|
|
478
|
+
and log them to the Snowflake Model Registry (`snowflake.ml.registry`) instead.
|
|
479
|
+
|
|
480
|
+
### Breaking Changes
|
|
481
|
+
|
|
482
|
+
* Generic: Require python >= 3.10. Python 3.9 is no longer supported.
|
|
483
|
+
* Removed the deprecated `snowflake.ml.utils.connection_params.SnowflakeLoginOptions` public API
|
|
484
|
+
(deprecated since 1.8.5).
|
|
485
|
+
* Registry: `ModelVersion.run_batch` now runs on `EXECUTE INFERENCE JOB SERVICE`. The single
|
|
486
|
+
`job_spec` argument is replaced by the `resources_spec`, `inference_spec`, and `image_build_spec`
|
|
487
|
+
blocks, and input may be supplied as either a DataFrame (`X`) or an existing stage path
|
|
488
|
+
(`input_stage_location`). `output_spec.stage_location` is treated as a base: results are written
|
|
489
|
+
under a per-job subdirectory, `<stage_location>/<job_name>/`. `output_spec.base_stage_location`,
|
|
490
|
+
`job_spec.job_name_prefix`, and `job_spec.block` no longer exist.
|
|
491
|
+
* Registry: Removed the `snowflake.ml.model.batch` module. Use `snowflake.ml.model.batch_inference`,
|
|
492
|
+
which exports `BatchInferenceTask` alongside the input, output, resources, inference, and image
|
|
493
|
+
build spec classes.
|
|
494
|
+
* Feature Store: Feature views created before 1.42.0 that use the `last_distinct_n` or
|
|
495
|
+
`first_distinct_n` aggregation function can no longer be read offline. `generate_dataset`,
|
|
496
|
+
`generate_training_set`, `retrieve_feature_values`, and `read_feature_view` now raise a
|
|
497
|
+
`ValueError` for such feature views. Re-create the feature view to restore offline reads.
|
|
498
|
+
* Dependencies: `snowflake-snowpark-python` must now be `>=1.37.0`. Earlier releases import
|
|
499
|
+
`pkg_resources`, which `setuptools` removed in 82.0.0, so they fail to import in environments
|
|
500
|
+
with a current `setuptools`.
|
|
501
|
+
|
|
502
|
+
## 1.54.0 (2026-08-31)
|
|
503
|
+
|
|
504
|
+
### New Features
|
|
505
|
+
|
|
506
|
+
* Registry: `log_model(..., options={"case_sensitive": True})` and
|
|
507
|
+
`options={"max_batch_size": N}` apply those settings to all methods. Per-method
|
|
508
|
+
`method_options` still override the global values.
|
|
509
|
+
|
|
510
|
+
* Feature Store: `create_online_service` accepts a `size` kwarg naming the size to provision the Online
|
|
511
|
+
Service at, one of `"XS"`, `"S"`, `"M"`, `"L"`, `"XL"`, `"2XL"`, `"3XL"` (case-insensitive). When
|
|
512
|
+
omitted, the server-side default applies; accounts that cap the available size provision at their
|
|
513
|
+
cap. `get_online_service_status()` now reports the provisioned `size`, which is `None` for services
|
|
514
|
+
created before sizes were recorded.
|
|
515
|
+
|
|
516
|
+
* Experiment Tracking: Source provenance now also records the id of the enclosing ML job when a run is created from
|
|
517
|
+
inside one.
|
|
518
|
+
* ML Jobs: `submit_file`, `submit_directory`, `submit_from_stage`, and `@remote` accept a `comment` kwarg, attached as
|
|
519
|
+
the comment on the job service. When omitted, the comment defaults to the `application` name configured on the
|
|
520
|
+
session, so jobs submitted by a tool or partner integration remain attributable after the fact.
|
|
521
|
+
|
|
522
|
+
### Bug Fixes
|
|
523
|
+
|
|
524
|
+
* Feature Store: Feature View metadata tags carrying unknown keys (including a legacy `refresh_mode`)
|
|
525
|
+
no longer fail to deserialize; unknown keys are ignored on read and the tag still does not persist
|
|
526
|
+
`refresh_mode`.
|
|
527
|
+
* Registry: Fixed `ModelVersion.load()` failing with `ValueError: ... is not a valid SQL identifier`
|
|
528
|
+
when the model's owner role is a quoted identifier.
|
|
529
|
+
* Feature Store: Fixed FeatureStore.update_feature_view() failing with `SQL compilation error:
|
|
530
|
+
invalid value 'ADAPTIVE' for property 'REFRESH_MODE'` when enabling online storage for an existing
|
|
531
|
+
feature view.
|
|
532
|
+
|
|
533
|
+
### Behavior Changes
|
|
534
|
+
|
|
535
|
+
### Deprecations
|
|
536
|
+
|
|
537
|
+
## 1.53.0 (2026-08-24)
|
|
420
538
|
|
|
421
539
|
### New Features
|
|
422
540
|
|
|
@@ -445,6 +563,10 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
|
445
563
|
|
|
446
564
|
### Bug Fixes
|
|
447
565
|
|
|
566
|
+
* Feature Store: online feature reads and stream ingestion no longer fail while the Online Service is
|
|
567
|
+
changing size (status `UPDATING_SIZE`). The service serves reads and writes throughout a size
|
|
568
|
+
change, which can take hours, so it is now treated as serviceable like `UPDATING` already was.
|
|
569
|
+
|
|
448
570
|
### Behavior Changes
|
|
449
571
|
|
|
450
572
|
* Feature Store: `register_feature_view` now records `FV_SOURCE_REFS` metadata for managed batch
|
|
@@ -57,7 +57,7 @@ In Snowflake Warehouse notebook environments, snowflake-ml-python can be install
|
|
|
57
57
|
Follow the [installation instructions](https://docs.snowflake.com/en/developer-guide/snowpark-ml/index#installing-snowpark-ml)
|
|
58
58
|
in the Snowflake documentation.
|
|
59
59
|
|
|
60
|
-
Python versions 3.
|
|
60
|
+
Python versions 3.10 to 3.13 are supported. You can use [miniconda](https://docs.conda.io/en/latest/miniconda.html) or
|
|
61
61
|
[anaconda](https://www.anaconda.com/) to create a Conda environment (recommended),
|
|
62
62
|
or [virtualenv](https://docs.python.org/3/tutorial/venv.html) to create a virtual environment.
|
|
63
63
|
|
|
@@ -5,10 +5,10 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "snowflake-ml-python"
|
|
7
7
|
description = "The machine learning client library that is used for interacting with Snowflake to build machine learning solutions."
|
|
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
|
-
requires-python = ">=3.
|
|
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.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
|
+
requires-python = ">=3.10, <3.14"
|
|
10
10
|
dynamic = [ "version", "readme",]
|
|
11
|
-
dependencies = [ "anyio>=3.5.0,<5", "cachetools>=3.1.1", "cloudpickle>=2.0.0", "fsspec[http]>=2024.6.1,<2026", "
|
|
11
|
+
dependencies = [ "anyio>=3.5.0,<5", "cachetools>=3.1.1", "cloudpickle>=2.0.0", "fsspec[http]>=2024.6.1,<2026", "importlib_resources>=6.1.1, <7", "jinja2>=3.1.0,<4", "numpy>=1.23,<3", "packaging>=20.9,<26", "pandas>=2.1.4,<3", "platformdirs<5", "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", "scipy>=1.9,<2", "snowflake-connector-python[pandas]>=3.17.3,<5", "snowflake-snowpark-python>=1.37.0,<2", "sqlparse>=0.4,<1", "tqdm<5", "typing-extensions>=4.1.0,<5",]
|
|
12
12
|
[[project.authors]]
|
|
13
13
|
name = "Snowflake, Inc"
|
|
14
14
|
email = "support@snowflake.com"
|
|
@@ -24,18 +24,22 @@ 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,<7", "catboost>=1.2.0, <2", "keras>=2.0.0,<4", "lightgbm>=4.1.0, <5", "mlflow>=2.16.0, <4", "prophet>=1.1.0, <2", "sentence-transformers>=2.7.0,<6", "sentencepiece>=0.1.95,<0.3", "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",]
|
|
27
|
+
all = [ "altair>=5,<7", "catboost>=1.2.0, <2", "h2>=4.3.0,<5", "httpx>=0.28.1,<1", "keras>=2.0.0,<4", "lightgbm>=4.1.0, <5", "mlflow>=2.16.0, <4", "prophet>=1.1.0, <2", "scikit-learn<1.9", "sentence-transformers>=2.7.0,<6", "sentencepiece>=0.1.95,<0.3", "shap>=0.46.0,<1", "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", "xgboost<4",]
|
|
28
28
|
altair = [ "altair>=5,<7",]
|
|
29
29
|
catboost = [ "catboost>=1.2.0, <2",]
|
|
30
|
+
feature_store = [ "h2>=4.3.0,<5", "httpx>=0.28.1,<1",]
|
|
30
31
|
keras = [ "keras>=2.0.0,<4", "tensorflow>=2.17.0,<3", "torch>=2.0.1,<3",]
|
|
31
32
|
lightgbm = [ "lightgbm>=4.1.0, <5",]
|
|
32
33
|
llm = [ "mlflow>=2.16.0, <4", "sentence-transformers>=2.7.0,<6", "sentencepiece>=0.1.95,<0.3", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "torchdata>=0.4,<1", "transformers>=4.39.3,!=4.51.3,<6",]
|
|
33
34
|
mlflow = [ "mlflow>=2.16.0, <4",]
|
|
34
35
|
prophet = [ "prophet>=1.1.0, <2",]
|
|
36
|
+
scikit-learn = [ "scikit-learn<1.9",]
|
|
37
|
+
shap = [ "shap>=0.46.0,<1",]
|
|
35
38
|
streamlit = [ "streamlit>=1.30.0,<2",]
|
|
36
39
|
tensorflow = [ "tensorflow>=2.17.0,<3",]
|
|
37
40
|
torch = [ "torch>=2.0.1,<3", "torchdata>=0.4,<1",]
|
|
38
41
|
transformers = [ "sentence-transformers>=2.7.0,<6", "sentencepiece>=0.1.95,<0.3", "tokenizers>=0.15.1,<1", "torch>=2.0.1,<3", "transformers>=4.39.3,!=4.51.3,<6",]
|
|
42
|
+
xgboost = [ "xgboost<4",]
|
|
39
43
|
|
|
40
44
|
[tool.setuptools.package-data]
|
|
41
45
|
"*" = [ "*",]
|
{snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/env_utils.py
RENAMED
|
@@ -689,22 +689,30 @@ def save_requirements_file(
|
|
|
689
689
|
path: pathlib.Path,
|
|
690
690
|
pip_deps: list[requirements.Requirement],
|
|
691
691
|
cuda_version: Optional[str] = None,
|
|
692
|
-
) ->
|
|
692
|
+
) -> list[str]:
|
|
693
693
|
"""Generate Python requirements.txt file in the given directory path.
|
|
694
694
|
|
|
695
695
|
Args:
|
|
696
696
|
path: Path to the requirements.txt file.
|
|
697
697
|
pip_deps: List of dependencies after validation.
|
|
698
698
|
cuda_version: Optional CUDA version for GPU models. If provided and torch is in
|
|
699
|
-
dependencies,
|
|
699
|
+
dependencies, pins torch to CUDA variant.
|
|
700
|
+
|
|
701
|
+
Returns:
|
|
702
|
+
List of extra pip index URLs (e.g. ``["https://download.pytorch.org/whl/cu124"]``)
|
|
703
|
+
that were NOT written to requirements.txt because SPCS rejects non-PEP-508 lines.
|
|
704
|
+
Callers should persist these via model metadata so the build step can apply them.
|
|
700
705
|
"""
|
|
701
706
|
assert path.suffix in [".txt"], "PIP requirement file should have extension of txt."
|
|
702
707
|
path.parent.mkdir(parents=True, exist_ok=True)
|
|
703
708
|
|
|
704
709
|
lines: list[str] = []
|
|
710
|
+
pip_extra_index_urls: list[str] = []
|
|
705
711
|
|
|
706
712
|
if cuda_version and _has_torch_dependency(pip_deps):
|
|
707
|
-
|
|
713
|
+
# Strip the "--extra-index-url " prefix to store just the URL.
|
|
714
|
+
raw = _get_pytorch_cuda_index_url(cuda_version)
|
|
715
|
+
pip_extra_index_urls.append(raw.removeprefix("--extra-index-url "))
|
|
708
716
|
pip_deps = _pin_torch_to_cuda_variant(pip_deps, cuda_version)
|
|
709
717
|
|
|
710
718
|
lines.extend(map(str, pip_deps))
|
|
@@ -712,6 +720,8 @@ def save_requirements_file(
|
|
|
712
720
|
with open(path, "w", encoding="utf-8") as out:
|
|
713
721
|
out.write("\n".join(lines))
|
|
714
722
|
|
|
723
|
+
return pip_extra_index_urls
|
|
724
|
+
|
|
715
725
|
|
|
716
726
|
def load_conda_env_file(
|
|
717
727
|
path: pathlib.Path,
|
|
@@ -84,7 +84,7 @@ class PlatformCapabilities:
|
|
|
84
84
|
return self._get_bool_feature(LIVE_COMMIT_PARAMETER, False)
|
|
85
85
|
|
|
86
86
|
def is_hidden_live_commit_enabled(self) -> bool:
|
|
87
|
-
return False
|
|
87
|
+
return self._get_bool_feature(HIDDEN_LIVE_COMMIT_PARAMETER, False)
|
|
88
88
|
|
|
89
89
|
def is_model_method_signature_parameters_enabled(self) -> bool:
|
|
90
90
|
return self._get_bool_feature(ENABLE_MODEL_METHOD_SIGNATURE_PARAMETERS, False)
|
{snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/_internal/telemetry.py
RENAMED
|
@@ -9,7 +9,8 @@ import sys
|
|
|
9
9
|
import time
|
|
10
10
|
import traceback
|
|
11
11
|
import types
|
|
12
|
-
from
|
|
12
|
+
from collections.abc import Iterable, Mapping
|
|
13
|
+
from typing import Any, Callable, Optional, TypeVar, Union, cast
|
|
13
14
|
|
|
14
15
|
from typing_extensions import ParamSpec
|
|
15
16
|
|
|
@@ -119,6 +120,7 @@ class TelemetryField(enum.Enum):
|
|
|
119
120
|
TYPE_FUNCTION_USAGE = "function_usage"
|
|
120
121
|
TYPE_SNOWML_SPCS_USAGE = "snowml_spcs_usage"
|
|
121
122
|
TYPE_SNOWML_PIPELINE_USAGE = "snowml_pipeline_usage"
|
|
123
|
+
TYPE_SNOWML_LOADED_MODEL_USAGE = "snowml_loaded_model_usage"
|
|
122
124
|
# message keys for telemetry
|
|
123
125
|
KEY_PROJECT = "project"
|
|
124
126
|
KEY_SUBPROJECT = "subproject"
|
|
@@ -717,6 +719,12 @@ def _extract_arg_value(field: str, sig: inspect.Signature, args: Any, kwargs: An
|
|
|
717
719
|
Tuple: First value indicates if `field` exists.
|
|
718
720
|
Second value is the extracted value if existed.
|
|
719
721
|
"""
|
|
722
|
+
# Check keyword arguments first. The field may have no named parameter of its own and instead be
|
|
723
|
+
# absorbed by a variadic keyword parameter (**kwargs), in which case the signature lookup below
|
|
724
|
+
# would not find it even though the caller passed a value.
|
|
725
|
+
if field in kwargs:
|
|
726
|
+
return True, kwargs[field]
|
|
727
|
+
|
|
720
728
|
if field not in sig.parameters:
|
|
721
729
|
return False, None
|
|
722
730
|
|
|
@@ -729,10 +737,6 @@ def _extract_arg_value(field: str, sig: inspect.Signature, args: Any, kwargs: An
|
|
|
729
737
|
if idx < len(args):
|
|
730
738
|
return True, args[idx]
|
|
731
739
|
|
|
732
|
-
# Check if value was passed as keyword argument
|
|
733
|
-
if field in kwargs:
|
|
734
|
-
return True, kwargs[field]
|
|
735
|
-
|
|
736
740
|
# Fall back to default value if available
|
|
737
741
|
if param.default is not inspect.Parameter.empty:
|
|
738
742
|
return True, param.default
|
{snowflake_ml_python-1.53.0 → snowflake_ml_python-2.0.0}/snowflake/ml/experiment/_source_info.py
RENAMED
|
@@ -44,6 +44,11 @@ _SNOWFLAKE_FILE_DOMAIN_TYPE_ENV = "SNOWFLAKE_FILE_DOMAIN_TYPE"
|
|
|
44
44
|
_SNOWFLAKE_FILE_DOMAIN_NAME_ENV = "SNOWFLAKE_FILE_DOMAIN_NAME"
|
|
45
45
|
_SNOWFLAKE_MAIN_FILE_PATH_ENV = "SNOWFLAKE_MAIN_FILE_PATH"
|
|
46
46
|
|
|
47
|
+
# Environment variable Snowflake injects into an ML job's container, carrying the
|
|
48
|
+
# job's fully-qualified id. Its presence is how we recognize that the run was
|
|
49
|
+
# created from inside an ML job.
|
|
50
|
+
_ML_JOB_ID_ENV = "MLRS_JOB_ID"
|
|
51
|
+
|
|
47
52
|
|
|
48
53
|
@dataclasses.dataclass(frozen=True)
|
|
49
54
|
class GitInfo:
|
|
@@ -72,6 +77,9 @@ class SourceInfo:
|
|
|
72
77
|
# ``entry_point``, not duplicated here.
|
|
73
78
|
snowflake_file_domain_type: Optional[str] = None
|
|
74
79
|
snowflake_file_domain_name: Optional[str] = None
|
|
80
|
+
# The fully-qualified id of the ML job this run was created from, taken from
|
|
81
|
+
# the environment. ``None`` when not running inside an ML job.
|
|
82
|
+
ml_job_id: Optional[str] = None
|
|
75
83
|
|
|
76
84
|
def is_empty(self) -> bool:
|
|
77
85
|
"""Return True when there is nothing useful to send."""
|
|
@@ -80,6 +88,7 @@ class SourceInfo:
|
|
|
80
88
|
and (self.git is None or self.git.is_empty())
|
|
81
89
|
and self.snowflake_file_domain_type is None
|
|
82
90
|
and self.snowflake_file_domain_name is None
|
|
91
|
+
and self.ml_job_id is None
|
|
83
92
|
)
|
|
84
93
|
|
|
85
94
|
def to_json_dict(self) -> dict[str, Any]:
|
|
@@ -92,8 +101,9 @@ class SourceInfo:
|
|
|
92
101
|
|
|
93
102
|
Returns:
|
|
94
103
|
A JSON-serializable dict whose keys (``entry_point``, ``git``,
|
|
95
|
-
``snowflake_file_domain_type``, ``snowflake_file_domain_name
|
|
96
|
-
included only when resolved. May be empty when
|
|
104
|
+
``snowflake_file_domain_type``, ``snowflake_file_domain_name``,
|
|
105
|
+
``ml_job_id``) are included only when resolved. May be empty when
|
|
106
|
+
nothing was collected.
|
|
97
107
|
"""
|
|
98
108
|
out: dict[str, Any] = {}
|
|
99
109
|
if self.entry_point is not None and "$$" not in self.entry_point:
|
|
@@ -110,6 +120,8 @@ class SourceInfo:
|
|
|
110
120
|
out["snowflake_file_domain_type"] = self.snowflake_file_domain_type
|
|
111
121
|
if self.snowflake_file_domain_name is not None and "$$" not in self.snowflake_file_domain_name:
|
|
112
122
|
out["snowflake_file_domain_name"] = self.snowflake_file_domain_name
|
|
123
|
+
if self.ml_job_id is not None and "$$" not in self.ml_job_id:
|
|
124
|
+
out["ml_job_id"] = self.ml_job_id
|
|
113
125
|
return out
|
|
114
126
|
|
|
115
127
|
@classmethod
|
|
@@ -121,24 +133,39 @@ class SourceInfo:
|
|
|
121
133
|
be resolved or collection failed.
|
|
122
134
|
"""
|
|
123
135
|
try:
|
|
136
|
+
# An ML job id is orthogonal to how the entry point is described, so
|
|
137
|
+
# it is resolved once and attached to whichever shape is returned.
|
|
138
|
+
ml_job_id = _collect_ml_job_id()
|
|
139
|
+
|
|
124
140
|
# Snowflake-managed files (notebooks or .py workspace files) describe
|
|
125
141
|
# the running file via environment variables rather than a resolvable
|
|
126
142
|
# local path, so they are handled first and independently of the
|
|
127
143
|
# git/notebook-path machinery.
|
|
128
144
|
snowflake_file = _collect_snowflake_file()
|
|
129
145
|
if snowflake_file is not None:
|
|
130
|
-
return snowflake_file
|
|
146
|
+
return dataclasses.replace(snowflake_file, ml_job_id=ml_job_id)
|
|
131
147
|
|
|
132
148
|
# Resolve the notebook once so entry-point and git agree on the same file.
|
|
133
149
|
notebook_path = _resolve_notebook_path() if _in_ipython_kernel() else None
|
|
134
150
|
return cls(
|
|
135
151
|
entry_point=_detect_entry_point(notebook_path),
|
|
136
152
|
git=_collect_git(notebook_path),
|
|
153
|
+
ml_job_id=ml_job_id,
|
|
137
154
|
)
|
|
138
155
|
except Exception:
|
|
139
156
|
return cls()
|
|
140
157
|
|
|
141
158
|
|
|
159
|
+
def _collect_ml_job_id() -> Optional[str]:
|
|
160
|
+
"""Collect the fully-qualified id of the enclosing ML job.
|
|
161
|
+
|
|
162
|
+
Returns:
|
|
163
|
+
The ML job id from the environment, or ``None`` when not running inside
|
|
164
|
+
an ML job (or when the server does not expose the id).
|
|
165
|
+
"""
|
|
166
|
+
return os.environ.get(_ML_JOB_ID_ENV) or None
|
|
167
|
+
|
|
168
|
+
|
|
142
169
|
def _collect_snowflake_file() -> Optional[SourceInfo]:
|
|
143
170
|
"""Collect source info when running inside a Snowflake-managed file.
|
|
144
171
|
|
|
@@ -63,9 +63,10 @@ class ExperimentTracking:
|
|
|
63
63
|
schema_name: The name of the schema. If None, the current schema of the session
|
|
64
64
|
will be used. If there is no active schema, the PUBLIC schema will be used. Defaults to None.
|
|
65
65
|
capture_source_info: If True, each new run records best-effort source provenance — the
|
|
66
|
-
entry-point filename
|
|
67
|
-
|
|
68
|
-
run creation. Defaults to
|
|
66
|
+
entry-point filename, any surrounding git commit, branch, and remote URL, and the id
|
|
67
|
+
of the enclosing ML job when running inside one. Set to False to skip collection
|
|
68
|
+
entirely. Collection is always non-fatal and never blocks run creation. Defaults to
|
|
69
|
+
True.
|
|
69
70
|
|
|
70
71
|
Raises:
|
|
71
72
|
ValueError: If no database is provided and no active database exists in the session.
|