snowflake-ml-python 1.41.0__tar.gz → 1.43.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.41.0 → snowflake_ml_python-1.43.0}/CHANGELOG.md +87 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/PKG-INFO +90 -3
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/pyproject.toml +1 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/env_utils.py +11 -9
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/_compute_fn_validation.py +1 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_group.py +10 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_store.py +275 -78
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_view.py +54 -9
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/metadata_manager.py +220 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/realtime_registration.py +17 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/spec/builder.py +272 -15
- snowflake_ml_python-1.43.0/snowflake/ml/feature_store/spec/enums.py +127 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/spec/models.py +141 -3
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/stream_config.py +20 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/stream_source.py +13 -6
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/streaming_registration.py +12 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/tile_sql_generator.py +333 -50
- snowflake_ml_python-1.43.0/snowflake/ml/jobs/_interop/__init__.py +12 -0
- snowflake_ml_python-1.43.0/snowflake/ml/jobs/_utils/scripts/__init__.py +13 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/get_instance_ip.py +1 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +2 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/signal_workers.py +25 -17
- snowflake_ml_python-1.43.0/snowflake/ml/jobs/_utils/scripts/signal_workers_test.py +209 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py +8 -5
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/stage_utils.py +1 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/job.py +30 -7
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/job_definition.py +0 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/__init__.py +5 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/inference_engine_utils.py +2 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/model_version_impl.py +18 -6
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/model_ops.py +16 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/service_ops.py +74 -23
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/service/model_deployment_spec.py +0 -4
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/service.py +42 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_handler.py +14 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/question_answering.py +7 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/summarization.py +7 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/text2text_generation.py +7 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/translation.py +7 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/keras.py +3 -3
- snowflake_ml_python-1.43.0/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +984 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta/model_meta.py +21 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta/model_meta_schema.py +5 -1
- snowflake_ml_python-1.43.0/snowflake/ml/model/_packager/model_meta/model_sample_input_data.py +251 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_packager.py +14 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +2 -1
- snowflake_ml_python-1.43.0/snowflake/ml/model/_packager/model_save_options.py +140 -0
- snowflake_ml_python-1.43.0/snowflake/ml/model/inference_engine.py +37 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/models/huggingface.py +101 -5
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/models/huggingface_pipeline.py +5 -2
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/type_hints.py +13 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/registry/_manager/model_manager.py +18 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/registry/registry.py +10 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/PKG-INFO +90 -3
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/SOURCES.txt +4 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/requires.txt +2 -1
- snowflake_ml_python-1.41.0/snowflake/ml/feature_store/spec/enums.py +0 -49
- snowflake_ml_python-1.41.0/snowflake/ml/jobs/_utils/__init__.py +0 -0
- snowflake_ml_python-1.41.0/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +0 -517
- snowflake_ml_python-1.41.0/snowflake/ml/model/inference_engine.py +0 -6
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/LICENSE.txt +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/README.md +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/setup.cfg +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_classify_text.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_complete.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_embed_text_1024.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_embed_text_768.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_extract_answer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_finetune.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_sentiment.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_sse_client.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_summarize.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_translate.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_util.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/env.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/dataset_error_messages.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/dataset_errors.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/error_codes.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/error_messages.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/exceptions.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/fileset_error_messages.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/fileset_errors.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/modeling_error_messages.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/sql_error_codes.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/file_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/human_readable_id/adjectives.txt +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/human_readable_id/animals.txt +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/human_readable_id/hrid_generator.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/human_readable_id/hrid_generator_base.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/init_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/lineage/lineage_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/migrator_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/platform_capabilities.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/relax_version_strategy.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/telemetry.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/type_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/db_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/formatting.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/identifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/import_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/jwt_generator.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/mixins.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/parallelize.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/pkg_version_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/query_result_checker.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/result.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/service_logger.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/snowflake_env.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/snowpark_dataframe_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/sql_identifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/table_manager.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/tee.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/temp_file_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/url.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/_internal/arrow_ingestor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/data_connector.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/data_ingestor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/data_source.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/ingestor_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/torch_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/dataset.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/dataset_factory.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/dataset_metadata.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/dataset_reader.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_client/artifact.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_client/experiment_tracking_sql_client.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_entities/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_entities/experiment.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_entities/run.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_entities/run_metadata.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_experiment_info.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_logging/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_logging/experiment_logger.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_logging/experiment_logging_context.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/callback/keras.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/callback/lightgbm.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/callback/xgboost.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/experiment_tracking.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/access_manager.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/aggregation.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/entity.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/airline_features/entities.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/airline_features/features/plane_features.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/airline_features/features/weather_features.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/airline_features/source.yaml +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/station_feature.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/trip_feature.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/example_helper.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/location_features.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/trip_features.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/airline.yaml +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/wine_quality_features/entities.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_view_append_only_validation.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_view_refresh_freq.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/interval_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/online_service.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/online_service_http_client.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/realtime_config.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/realtime_dataset.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/realtime_dataset_udf.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/request_source.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/spec/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/spec/table_schema_evolution.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/embedded_stage_fs.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/fileset.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/sfcfs.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/snowfs.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/stage_fs.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/data_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/dto_schema.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/exception_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/legacy.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/protocols.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/results.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/utils.py +0 -0
- {snowflake_ml_python-1.41.0/snowflake/ml/jobs/_interop → snowflake_ml_python-1.43.0/snowflake/ml/jobs/_utils}/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/arg_protocol.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/constants.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/feature_flags.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/payload_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/query_helper.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/runtime_env_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/constants.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/start_mlruntime.sh +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/startup.sh +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/type_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/decorators.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/manager.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/lineage/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/lineage/lineage_node.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/batch_inference_serialization.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/batch_inference_specs.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/batch_inference_task.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/model_impl.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/deployment_step.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/metadata_ops.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/param_ops.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/param_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/service/import_model_spec_schema.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/_base.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/model.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/model_version.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/stage.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/tag.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_composer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/constants.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/function_generator.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/infer_function.py_template +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/infer_function_init_once.py_template +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/infer_partitioned_init_once.py_template +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/infer_table_function_init_once.py_template +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/model_method.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_user_file/model_user_file.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_env/model_env.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/_base.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/catboost.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/custom.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_default.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_openai_chat_wrapper.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_task_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/audio_classification.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/audio_text_to_text.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/automatic_speech_recognition.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/conversational.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/document_question_answering.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/fill_mask.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_classification.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_feature_extraction.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_text_to_text.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_to_text.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/object_detection.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/table_question_answering.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/text_classification.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/text_generation.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/token_classification.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/video_classification.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/video_text_to_text.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/visual_question_answering.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/zero_shot_audio_classification.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/zero_shot_image_classification.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/zero_shot_object_detection.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/zero_shot_text_classification.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/lightgbm.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/mlflow.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/prophet.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/pytorch.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/sklearn.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/tensorflow.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/torchscript.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/xgboost.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers_migrator/pytorch_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta/model_blob_meta.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_runtime/model_runtime.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_task/model_task_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/base_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/builtins_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/core.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/dmatrix_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/numpy_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/pandas_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/pytorch_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/snowpark_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/tensorflow_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/batch/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/code_path.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/compute_pool.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/custom_model.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/event_handler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/model_signature.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/openai_signatures.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/target_platform.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/task.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/volatility.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/estimator_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/model_specifications.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/model_trainer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/transformer_protocols.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/calibration/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/affinity_propagation.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/agglomerative_clustering.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/birch.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/bisecting_k_means.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/dbscan.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/feature_agglomeration.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/k_means.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/mean_shift.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/mini_batch_k_means.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/optics.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/spectral_biclustering.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/spectral_clustering.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/spectral_coclustering.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/compose/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/compose/column_transformer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/compose/transformed_target_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/elliptic_envelope.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/empirical_covariance.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/graphical_lasso.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/graphical_lasso_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/ledoit_wolf.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/min_cov_det.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/oas.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/shrunk_covariance.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/dictionary_learning.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/factor_analysis.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/fast_ica.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/incremental_pca.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/kernel_pca.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/pca.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/sparse_pca.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/truncated_svd.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/discriminant_analysis/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/ada_boost_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/ada_boost_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/bagging_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/bagging_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/extra_trees_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/extra_trees_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/isolation_forest.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/random_forest_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/random_forest_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/stacking_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/voting_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/voting_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/generic_univariate_select.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_fdr.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_fpr.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_fwe.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_k_best.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_percentile.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/variance_threshold.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/framework/_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/framework/base.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/gaussian_process/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/iterative_imputer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/knn_imputer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/missing_indicator.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/simple_imputer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/nystroem.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_ridge/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/lightgbm/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/lightgbm/lgbm_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/lightgbm/lgbm_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ard_regression.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/bayesian_ridge.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/elastic_net.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/gamma_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/huber_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lars.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lars_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso_lars.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso_lars_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso_lars_ic.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/linear_regression.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/logistic_regression.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/logistic_regression_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/multi_task_lasso.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/perceptron.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/poisson_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ransac_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ridge.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ridge_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ridge_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/sgd_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/sgd_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/theil_sen_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/tweedie_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/isomap.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/mds.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/spectral_embedding.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/tsne.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/classification.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/correlation.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/covariance.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/metrics_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/ranking.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/regression.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/mixture/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/mixture/gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/model_selection/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/model_selection/grid_search_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/model_selection/randomized_search_cv.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/multiclass/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/multiclass/output_code_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/categorical_nb.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/complement_nb.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/gaussian_nb.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/multinomial_nb.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/kernel_density.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/local_outlier_factor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/nearest_centroid.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/nearest_neighbors.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neural_network/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neural_network/bernoulli_rbm.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neural_network/mlp_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neural_network/mlp_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/parameters/disable_distributed_hpo.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/parameters/disable_model_tracer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/parameters/enable_anonymous_sproc.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/pipeline/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/pipeline/pipeline.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/binarizer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/k_bins_discretizer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/label_encoder.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/max_abs_scaler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/min_max_scaler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/normalizer.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/one_hot_encoder.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/ordinal_encoder.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/polynomial_features.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/robust_scaler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/standard_scaler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/semi_supervised/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/semi_supervised/label_propagation.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/semi_supervised/label_spreading.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/linear_svc.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/linear_svr.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/nu_svc.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/nu_svr.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/svc.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/svr.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/decision_tree_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/decision_tree_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/extra_tree_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/extra_tree_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/xgb_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/xgb_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/xgbrf_classifier.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/xgbrf_regressor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/_client/model_monitor_sql_client.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/_client/queries/record_count.ssql +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/_client/queries/rmse.ssql +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/_manager/model_monitor_manager.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/entities/model_monitor_config.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/explain_visualize.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/model_monitor.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/shap.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/registry/__init__.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/registry/_manager/model_parameter_reconciler.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/authentication.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/html_utils.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/sparse.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/sql_client.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/stage_file.py +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/dependency_links.txt +0 -0
- {snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,84 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.43.0
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
* Registry: `inference_engine_options["engine"]` now accepts case-insensitive strings in addition to
|
|
8
|
+
`InferenceEngine` enum members. Supported values are `"vllm"` and `"python_generic"` (for example,
|
|
9
|
+
`"vLLM"`, `"VLLM"`, and `"PYTHON_GENERIC"` are all accepted). This applies to `ModelVersion.create_service()`
|
|
10
|
+
and `ModelVersion.run_batch()`.
|
|
11
|
+
|
|
12
|
+
```python
|
|
13
|
+
from snowflake.ml.registry import Registry
|
|
14
|
+
|
|
15
|
+
registry = Registry(session)
|
|
16
|
+
mv = registry.get_model("my_model").version("v1")
|
|
17
|
+
|
|
18
|
+
mv.create_service(
|
|
19
|
+
service_name="my_vllm_service",
|
|
20
|
+
service_compute_pool="GPU_COMPUTE_POOL",
|
|
21
|
+
gpu_requests="1",
|
|
22
|
+
inference_engine_options={
|
|
23
|
+
"engine": "vLLM",
|
|
24
|
+
"engine_args_override": ["--max-model-len=4096"],
|
|
25
|
+
},
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
job = mv.run_batch(
|
|
29
|
+
compute_pool="GPU_COMPUTE_POOL",
|
|
30
|
+
X=input_df,
|
|
31
|
+
output_spec=output_spec,
|
|
32
|
+
inference_engine_options={
|
|
33
|
+
"engine": "python_generic",
|
|
34
|
+
},
|
|
35
|
+
)
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
* Registry: Fixed `explain()` failing with type mismatch errors when passing a Snowpark DataFrame.
|
|
41
|
+
Snowpark DataFrame columns are now explicitly cast to match model signature types before SQL
|
|
42
|
+
generation. Table functions (used by `explain`) enforce stricter type coercion than scalar functions
|
|
43
|
+
(used by `predict`), so columns that were implicitly coerced for `predict` would be rejected by
|
|
44
|
+
`explain`.
|
|
45
|
+
|
|
46
|
+
### Behavior Changes
|
|
47
|
+
|
|
48
|
+
* Registry: `SentenceTransformers` models no longer hard-code a default inference batch size of 32.
|
|
49
|
+
When `batch_size` is not specified at `log_model` time and is not overridden at inference, the
|
|
50
|
+
`sentence-transformers` library default is used. To pin a specific size, pass `batch_size` via
|
|
51
|
+
`log_model(..., options={"batch_size": N})` or as an inference-time parameter. All
|
|
52
|
+
`SentenceTransformers` models logged with this release require a client/serving runtime on version
|
|
53
|
+
1.43.0 or later (regardless of whether `batch_size` was specified).
|
|
54
|
+
|
|
55
|
+
### Deprecations
|
|
56
|
+
|
|
57
|
+
## 1.42.0 (2026-06-11)
|
|
58
|
+
|
|
59
|
+
### New Features
|
|
60
|
+
|
|
61
|
+
* Registry: Support `truncate_dim` for `SentenceTransformers` models. Truncation set at
|
|
62
|
+
construction (`SentenceTransformer(..., truncate_dim=N)`) is captured when the model is logged
|
|
63
|
+
and restored on reload. On clients with `sentence-transformers` 5.0.0 or later, `truncate_dim`
|
|
64
|
+
is also exposed as a runtime parameter in the model signature.
|
|
65
|
+
|
|
66
|
+
* Registry: `log_model()` now captures a representative row from `sample_input_data` and stores it alongside the model
|
|
67
|
+
so inference code snippets shown in the model registry UI can be pre-filled with realistic values. Pass
|
|
68
|
+
`options={"capture_sample_input_data": False}` to opt out (e.g., for sensitive data); generic placeholder values
|
|
69
|
+
will be used in the snippets instead.
|
|
70
|
+
|
|
71
|
+
### Bug Fixes
|
|
72
|
+
|
|
73
|
+
* Registry: Pin `transformers<5` for additional HuggingFace pipeline tasks removed in
|
|
74
|
+
`transformers 5.x` (`summarization`, `text2text-generation`, `question-answering`, and
|
|
75
|
+
`translation_*`), preventing deployment failures from missing pipeline classes.
|
|
76
|
+
|
|
77
|
+
### Behavior Changes
|
|
78
|
+
|
|
79
|
+
### Deprecations
|
|
80
|
+
|
|
81
|
+
## 1.41.0 (2026-05-27)
|
|
4
82
|
|
|
5
83
|
### New Features
|
|
6
84
|
|
|
@@ -26,6 +104,14 @@
|
|
|
26
104
|
|
|
27
105
|
### Behavior Changes
|
|
28
106
|
|
|
107
|
+
* Registry: `log_model(..., options=...)` now rejects unknown top-level keys and unknown keys inside each
|
|
108
|
+
`method_options` entry (for example misspellings or options that belong to a different model framework).
|
|
109
|
+
Previously those keys were ignored. Validation is based on the public save-option TypedDicts and runs
|
|
110
|
+
before dependency reconciliation.
|
|
111
|
+
|
|
112
|
+
* Registry: `use_gpu` is declared on the CatBoost, XGBoost, PyTorch, and TorchScript save-option
|
|
113
|
+
TypedDicts to match the save paths that already read this flag.
|
|
114
|
+
|
|
29
115
|
### Deprecations
|
|
30
116
|
|
|
31
117
|
## 1.39.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: snowflake-ml-python
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.43.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:
|
|
@@ -241,10 +241,11 @@ Requires-Dist: fsspec[http]<2026,>=2024.6.1
|
|
|
241
241
|
Requires-Dist: h2<5,>=4.3.0
|
|
242
242
|
Requires-Dist: importlib_resources<7,>=6.1.1
|
|
243
243
|
Requires-Dist: numpy<3,>=1.23
|
|
244
|
+
Requires-Dist: orjson<4,>=3.11.0
|
|
244
245
|
Requires-Dist: packaging<26,>=20.9
|
|
245
246
|
Requires-Dist: pandas<3,>=2.1.4
|
|
246
247
|
Requires-Dist: platformdirs<5
|
|
247
|
-
Requires-Dist: pyarrow
|
|
248
|
+
Requires-Dist: pyarrow
|
|
248
249
|
Requires-Dist: pydantic<3,>=2.8.2
|
|
249
250
|
Requires-Dist: pyjwt<3,>=2.0.0
|
|
250
251
|
Requires-Dist: pytimeparse<2,>=1.1.8
|
|
@@ -416,7 +417,85 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
|
416
417
|
|
|
417
418
|
# Release History
|
|
418
419
|
|
|
419
|
-
## 1.
|
|
420
|
+
## 1.43.0
|
|
421
|
+
|
|
422
|
+
### New Features
|
|
423
|
+
|
|
424
|
+
* Registry: `inference_engine_options["engine"]` now accepts case-insensitive strings in addition to
|
|
425
|
+
`InferenceEngine` enum members. Supported values are `"vllm"` and `"python_generic"` (for example,
|
|
426
|
+
`"vLLM"`, `"VLLM"`, and `"PYTHON_GENERIC"` are all accepted). This applies to `ModelVersion.create_service()`
|
|
427
|
+
and `ModelVersion.run_batch()`.
|
|
428
|
+
|
|
429
|
+
```python
|
|
430
|
+
from snowflake.ml.registry import Registry
|
|
431
|
+
|
|
432
|
+
registry = Registry(session)
|
|
433
|
+
mv = registry.get_model("my_model").version("v1")
|
|
434
|
+
|
|
435
|
+
mv.create_service(
|
|
436
|
+
service_name="my_vllm_service",
|
|
437
|
+
service_compute_pool="GPU_COMPUTE_POOL",
|
|
438
|
+
gpu_requests="1",
|
|
439
|
+
inference_engine_options={
|
|
440
|
+
"engine": "vLLM",
|
|
441
|
+
"engine_args_override": ["--max-model-len=4096"],
|
|
442
|
+
},
|
|
443
|
+
)
|
|
444
|
+
|
|
445
|
+
job = mv.run_batch(
|
|
446
|
+
compute_pool="GPU_COMPUTE_POOL",
|
|
447
|
+
X=input_df,
|
|
448
|
+
output_spec=output_spec,
|
|
449
|
+
inference_engine_options={
|
|
450
|
+
"engine": "python_generic",
|
|
451
|
+
},
|
|
452
|
+
)
|
|
453
|
+
```
|
|
454
|
+
|
|
455
|
+
### Bug Fixes
|
|
456
|
+
|
|
457
|
+
* Registry: Fixed `explain()` failing with type mismatch errors when passing a Snowpark DataFrame.
|
|
458
|
+
Snowpark DataFrame columns are now explicitly cast to match model signature types before SQL
|
|
459
|
+
generation. Table functions (used by `explain`) enforce stricter type coercion than scalar functions
|
|
460
|
+
(used by `predict`), so columns that were implicitly coerced for `predict` would be rejected by
|
|
461
|
+
`explain`.
|
|
462
|
+
|
|
463
|
+
### Behavior Changes
|
|
464
|
+
|
|
465
|
+
* Registry: `SentenceTransformers` models no longer hard-code a default inference batch size of 32.
|
|
466
|
+
When `batch_size` is not specified at `log_model` time and is not overridden at inference, the
|
|
467
|
+
`sentence-transformers` library default is used. To pin a specific size, pass `batch_size` via
|
|
468
|
+
`log_model(..., options={"batch_size": N})` or as an inference-time parameter. All
|
|
469
|
+
`SentenceTransformers` models logged with this release require a client/serving runtime on version
|
|
470
|
+
1.43.0 or later (regardless of whether `batch_size` was specified).
|
|
471
|
+
|
|
472
|
+
### Deprecations
|
|
473
|
+
|
|
474
|
+
## 1.42.0 (2026-06-11)
|
|
475
|
+
|
|
476
|
+
### New Features
|
|
477
|
+
|
|
478
|
+
* Registry: Support `truncate_dim` for `SentenceTransformers` models. Truncation set at
|
|
479
|
+
construction (`SentenceTransformer(..., truncate_dim=N)`) is captured when the model is logged
|
|
480
|
+
and restored on reload. On clients with `sentence-transformers` 5.0.0 or later, `truncate_dim`
|
|
481
|
+
is also exposed as a runtime parameter in the model signature.
|
|
482
|
+
|
|
483
|
+
* Registry: `log_model()` now captures a representative row from `sample_input_data` and stores it alongside the model
|
|
484
|
+
so inference code snippets shown in the model registry UI can be pre-filled with realistic values. Pass
|
|
485
|
+
`options={"capture_sample_input_data": False}` to opt out (e.g., for sensitive data); generic placeholder values
|
|
486
|
+
will be used in the snippets instead.
|
|
487
|
+
|
|
488
|
+
### Bug Fixes
|
|
489
|
+
|
|
490
|
+
* Registry: Pin `transformers<5` for additional HuggingFace pipeline tasks removed in
|
|
491
|
+
`transformers 5.x` (`summarization`, `text2text-generation`, `question-answering`, and
|
|
492
|
+
`translation_*`), preventing deployment failures from missing pipeline classes.
|
|
493
|
+
|
|
494
|
+
### Behavior Changes
|
|
495
|
+
|
|
496
|
+
### Deprecations
|
|
497
|
+
|
|
498
|
+
## 1.41.0 (2026-05-27)
|
|
420
499
|
|
|
421
500
|
### New Features
|
|
422
501
|
|
|
@@ -442,6 +521,14 @@ NOTE: Version 1.7.0 is used as example here. Please choose the the latest versio
|
|
|
442
521
|
|
|
443
522
|
### Behavior Changes
|
|
444
523
|
|
|
524
|
+
* Registry: `log_model(..., options=...)` now rejects unknown top-level keys and unknown keys inside each
|
|
525
|
+
`method_options` entry (for example misspellings or options that belong to a different model framework).
|
|
526
|
+
Previously those keys were ignored. Validation is based on the public save-option TypedDicts and runs
|
|
527
|
+
before dependency reconciliation.
|
|
528
|
+
|
|
529
|
+
* Registry: `use_gpu` is declared on the CatBoost, XGBoost, PyTorch, and TorchScript save-option
|
|
530
|
+
TypedDicts to match the save paths that already read this flag.
|
|
531
|
+
|
|
445
532
|
### Deprecations
|
|
446
533
|
|
|
447
534
|
## 1.39.0
|
|
@@ -8,7 +8,7 @@ description = "The machine learning client library that is used for interacting
|
|
|
8
8
|
classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: Other Environment", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Database", "Topic :: Software Development", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Scientific/Engineering :: Information Analysis",]
|
|
9
9
|
requires-python = ">=3.9, <3.14"
|
|
10
10
|
dynamic = [ "version", "readme",]
|
|
11
|
-
dependencies = [ "anyio>=3.5.0,<5", "cachetools>=3.1.1,<6", "cloudpickle>=2.0.0", "cryptography", "fsspec[http]>=2024.6.1,<2026", "h2>=4.3.0,<5", "importlib_resources>=6.1.1, <7", "numpy>=1.23,<3", "packaging>=20.9,<26", "pandas>=2.1.4,<3", "platformdirs<5", "pyarrow
|
|
11
|
+
dependencies = [ "anyio>=3.5.0,<5", "cachetools>=3.1.1,<6", "cloudpickle>=2.0.0", "cryptography", "fsspec[http]>=2024.6.1,<2026", "h2>=4.3.0,<5", "importlib_resources>=6.1.1, <7", "numpy>=1.23,<3", "orjson>=3.11.0,<4", "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", "scikit-learn<1.8", "scipy>=1.9,<2", "shap>=0.46.0,<1", "snowflake-connector-python[pandas]>=3.17.3,<5", "snowflake-snowpark-python>=1.17.0,<2,!=1.26.0", "sqlparse>=0.4,<1", "tqdm<5", "typing-extensions>=4.1.0,<5", "xgboost<4",]
|
|
12
12
|
[[project.authors]]
|
|
13
13
|
name = "Snowflake, Inc"
|
|
14
14
|
email = "support@snowflake.com"
|
{snowflake_ml_python-1.41.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/env_utils.py
RENAMED
|
@@ -57,20 +57,22 @@ def get_execution_context() -> str:
|
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
def is_local_conda_environment() -> bool:
|
|
60
|
-
"""Return True if the active Python interpreter appears to run inside a conda env
|
|
61
|
-
or under conda session context (e.g. a venv created inside an activated conda env).
|
|
60
|
+
"""Return True if the active Python interpreter appears to run inside a conda env.
|
|
62
61
|
|
|
63
|
-
Uses
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
62
|
+
Uses ``conda-meta`` under :py:data:`sys.prefix` for conda-created environments.
|
|
63
|
+
Standard-library virtual environments (``pyvenv.cfg`` present) are **not** treated as
|
|
64
|
+
conda even when ``CONDA_PREFIX`` is still set in the shell (e.g. conda base
|
|
65
|
+
auto-activation while a separate venv kernel is selected).
|
|
67
66
|
|
|
68
67
|
Returns:
|
|
69
|
-
``True`` if ``sys.prefix`` contains ``conda-meta
|
|
70
|
-
|
|
68
|
+
``True`` if ``sys.prefix`` contains ``conda-meta``, or ``CONDA_PREFIX`` is set and
|
|
69
|
+
there is no ``pyvenv.cfg`` under ``sys.prefix``; else ``False``.
|
|
71
70
|
"""
|
|
72
|
-
|
|
71
|
+
prefix = sys.prefix
|
|
72
|
+
if os.path.isdir(os.path.join(prefix, "conda-meta")):
|
|
73
73
|
return True
|
|
74
|
+
if os.path.isfile(os.path.join(prefix, "pyvenv.cfg")):
|
|
75
|
+
return False
|
|
74
76
|
return bool(os.environ.get("CONDA_PREFIX", "").strip())
|
|
75
77
|
|
|
76
78
|
|
|
@@ -31,7 +31,7 @@ import textwrap
|
|
|
31
31
|
from typing import Any, Callable, Optional
|
|
32
32
|
|
|
33
33
|
# Top-level packages permitted in import statements inside compute_fn.
|
|
34
|
-
ALLOWED_MODULES: frozenset[str] = frozenset({"numpy", "pandas", "re", "copy"})
|
|
34
|
+
ALLOWED_MODULES: frozenset[str] = frozenset({"numpy", "pandas", "re", "copy", "dataclasses"})
|
|
35
35
|
|
|
36
36
|
# Names that may appear as free globals inside compute_fn. Mirrors the
|
|
37
37
|
# runtime namespace populated by RTFV reconstruction so the same source
|
|
@@ -71,7 +71,7 @@ if TYPE_CHECKING:
|
|
|
71
71
|
|
|
72
72
|
from snowflake.ml.feature_store.feature_store import FeatureStore
|
|
73
73
|
from snowflake.ml.feature_store.spec.models import FeatureViewSpec
|
|
74
|
-
from snowflake.snowpark import DataFrame
|
|
74
|
+
from snowflake.snowpark import DataFrame, Session
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
_FEATURE_GROUP_NAME_MAX_LENGTH = 255
|
|
@@ -256,7 +256,9 @@ class FeatureGroup:
|
|
|
256
256
|
# Spec construction
|
|
257
257
|
# -----------------------------------------------------------------------
|
|
258
258
|
|
|
259
|
-
def _to_spec(
|
|
259
|
+
def _to_spec(
|
|
260
|
+
self, *, database: str, schema: str, version: str, session: Optional[Session] = None
|
|
261
|
+
) -> FeatureViewSpec:
|
|
260
262
|
"""Translate this draft FeatureGroup into a validated spec payload.
|
|
261
263
|
|
|
262
264
|
Builds an internal ``(name, version)``-keyed prefix map and delegates
|
|
@@ -269,6 +271,10 @@ class FeatureGroup:
|
|
|
269
271
|
version: User-facing FeatureGroup version (already validated by
|
|
270
272
|
:class:`FeatureGroupVersion`). Embedded in the spec metadata
|
|
271
273
|
and surfaced to the Online Service Query API at read time.
|
|
274
|
+
session: Optional Snowpark session used to read upstream
|
|
275
|
+
FeatureView column shapes from the materialized DT/View, so
|
|
276
|
+
source column shapes match the upstream's stored
|
|
277
|
+
``OutputColumn`` for the Online Service exact-shape check.
|
|
272
278
|
|
|
273
279
|
Returns:
|
|
274
280
|
FeatureViewSpec: validated spec for this FeatureGroup, ready for
|
|
@@ -288,6 +294,7 @@ class FeatureGroup:
|
|
|
288
294
|
schema=schema,
|
|
289
295
|
name=self._name,
|
|
290
296
|
version=version,
|
|
297
|
+
session=session,
|
|
291
298
|
)
|
|
292
299
|
builder.set_sources(list(self._features))
|
|
293
300
|
builder.set_source_prefixes(prefix_map)
|
|
@@ -1109,6 +1116,7 @@ def register_feature_group(fs: FeatureStore, feature_group: FeatureGroup, versio
|
|
|
1109
1116
|
database=fs._config.database.resolved(),
|
|
1110
1117
|
schema=fs._config.schema.resolved(),
|
|
1111
1118
|
version=validated_version,
|
|
1119
|
+
session=fs._session,
|
|
1112
1120
|
)
|
|
1113
1121
|
primary_key = list(spec.spec.ordered_entity_column_names)
|
|
1114
1122
|
assert primary_key, "FeatureGroup spec must derive at least one entity column"
|