snowflake-ml-python 1.42.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.42.0 → snowflake_ml_python-1.43.0}/CHANGELOG.md +55 -1
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/PKG-INFO +57 -2
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/pyproject.toml +1 -1
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_group.py +10 -2
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_store.py +175 -43
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_view.py +40 -9
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/metadata_manager.py +159 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/realtime_registration.py +17 -2
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/spec/builder.py +68 -8
- snowflake_ml_python-1.43.0/snowflake/ml/feature_store/spec/enums.py +127 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/stream_source.py +13 -6
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/job_definition.py +0 -2
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/__init__.py +5 -1
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/inference_engine_utils.py +2 -1
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/model_version_impl.py +13 -5
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/model_ops.py +16 -1
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_handler.py +8 -2
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +412 -71
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta/model_meta_schema.py +2 -1
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +1 -0
- snowflake_ml_python-1.43.0/snowflake/ml/model/inference_engine.py +37 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/models/huggingface.py +101 -5
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/models/huggingface_pipeline.py +5 -2
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/type_hints.py +3 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/version.py +1 -1
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/PKG-INFO +57 -2
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/requires.txt +1 -0
- snowflake_ml_python-1.42.0/snowflake/ml/feature_store/spec/enums.py +0 -49
- snowflake_ml_python-1.42.0/snowflake/ml/model/inference_engine.py +0 -6
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/LICENSE.txt +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/README.md +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/setup.cfg +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_classify_text.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_complete.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_embed_text_1024.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_embed_text_768.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_extract_answer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_finetune.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_sentiment.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_sse_client.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_summarize.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_translate.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/cortex/_util.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/env.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/env_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/dataset_error_messages.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/dataset_errors.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/error_codes.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/error_messages.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/exceptions.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/fileset_error_messages.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/fileset_errors.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/modeling_error_messages.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/exceptions/sql_error_codes.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/file_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/human_readable_id/adjectives.txt +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/human_readable_id/animals.txt +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/human_readable_id/hrid_generator.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/human_readable_id/hrid_generator_base.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/init_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/lineage/lineage_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/migrator_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/platform_capabilities.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/relax_version_strategy.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/telemetry.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/type_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/db_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/formatting.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/identifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/import_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/jwt_generator.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/mixins.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/parallelize.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/pkg_version_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/query_result_checker.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/result.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/service_logger.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/snowflake_env.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/snowpark_dataframe_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/sql_identifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/table_manager.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/tee.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/temp_file_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/_internal/utils/url.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/_internal/arrow_ingestor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/data_connector.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/data_ingestor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/data_source.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/ingestor_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/data/torch_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/dataset.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/dataset_factory.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/dataset_metadata.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/dataset/dataset_reader.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_client/artifact.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_client/experiment_tracking_sql_client.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_entities/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_entities/experiment.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_entities/run.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_entities/run_metadata.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_experiment_info.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_logging/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_logging/experiment_logger.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/_logging/experiment_logging_context.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/callback/keras.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/callback/lightgbm.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/callback/xgboost.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/experiment_tracking.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/experiment/utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/_compute_fn_validation.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/access_manager.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/aggregation.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/entity.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/airline_features/entities.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/airline_features/features/plane_features.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/airline_features/features/weather_features.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/airline_features/source.yaml +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +0 -0
- {snowflake_ml_python-1.42.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.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/example_helper.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py +0 -0
- {snowflake_ml_python-1.42.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.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/airline.yaml +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/wine_quality_features/entities.py +0 -0
- {snowflake_ml_python-1.42.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.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_view_append_only_validation.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/feature_view_refresh_freq.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/interval_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/online_service.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/online_service_http_client.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/realtime_config.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/realtime_dataset.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/realtime_dataset_udf.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/request_source.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/spec/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/spec/models.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/spec/table_schema_evolution.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/stream_config.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/streaming_registration.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/feature_store/tile_sql_generator.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/embedded_stage_fs.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/fileset.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/sfcfs.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/snowfs.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/fileset/stage_fs.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/data_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/dto_schema.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/exception_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/legacy.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/protocols.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/results.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_interop/utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/arg_protocol.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/constants.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/feature_flags.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/payload_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/query_helper.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/runtime_env_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/constants.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/get_instance_ip.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/mljob_launcher.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/signal_workers.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/signal_workers_test.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/start_mlruntime.sh +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/startup.sh +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/scripts/worker_shutdown_listener.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/stage_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/_utils/type_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/decorators.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/job.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/jobs/manager.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/lineage/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/lineage/lineage_node.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/batch_inference_serialization.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/batch_inference_specs.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/batch_inference_task.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/model/model_impl.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/deployment_step.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/metadata_ops.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/param_ops.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/param_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/ops/service_ops.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/service/import_model_spec_schema.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/service/model_deployment_spec.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/_base.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/model.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/model_version.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/service.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/stage.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_client/sql/tag.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_composer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/constants.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/function_generator.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/infer_function.py_template +0 -0
- {snowflake_ml_python-1.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +0 -0
- {snowflake_ml_python-1.42.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.42.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.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/model_method.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_model_composer/model_method/utils.py +0 -0
- {snowflake_ml_python-1.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_env/model_env.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/_base.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/catboost.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/custom.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_default.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_openai_chat_wrapper.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_task_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/audio_classification.py +0 -0
- {snowflake_ml_python-1.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/automatic_speech_recognition.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/conversational.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/document_question_answering.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/fill_mask.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_classification.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_feature_extraction.py +0 -0
- {snowflake_ml_python-1.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/image_to_text.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/object_detection.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/question_answering.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/summarization.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/table_question_answering.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/text2text_generation.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/text_classification.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/text_generation.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/token_classification.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/translation.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/video_classification.py +0 -0
- {snowflake_ml_python-1.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/huggingface/visual_question_answering.py +0 -0
- {snowflake_ml_python-1.42.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.42.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.42.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.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/keras.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/lightgbm.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/mlflow.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/prophet.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/pytorch.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/sklearn.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/tensorflow.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/torchscript.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers/xgboost.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.42.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.42.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.42.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.42.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.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta/model_blob_meta.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta/model_meta.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta/model_sample_input_data.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_packager.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_runtime/model_runtime.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_save_options.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_packager/model_task/model_task_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/base_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/builtins_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/core.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/dmatrix_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/numpy_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/pandas_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/pytorch_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/snowpark_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/tensorflow_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/_signatures/utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/batch/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/code_path.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/compute_pool.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/custom_model.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/event_handler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/model_signature.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/openai_signatures.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/target_platform.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/task.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/model/volatility.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/estimator_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/model_specifications.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/model_trainer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/_internal/transformer_protocols.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/calibration/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/affinity_propagation.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/agglomerative_clustering.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/birch.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/bisecting_k_means.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/dbscan.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/feature_agglomeration.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/k_means.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/mean_shift.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/mini_batch_k_means.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/optics.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/spectral_biclustering.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/spectral_clustering.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/cluster/spectral_coclustering.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/compose/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/compose/column_transformer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/compose/transformed_target_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/elliptic_envelope.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/empirical_covariance.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/graphical_lasso.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/graphical_lasso_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/ledoit_wolf.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/min_cov_det.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/oas.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/covariance/shrunk_covariance.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/dictionary_learning.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/factor_analysis.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/fast_ica.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/incremental_pca.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/kernel_pca.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/pca.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/sparse_pca.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/decomposition/truncated_svd.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/discriminant_analysis/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/ada_boost_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/ada_boost_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/bagging_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/bagging_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/extra_trees_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/extra_trees_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/isolation_forest.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/random_forest_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/random_forest_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/stacking_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/voting_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/ensemble/voting_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/generic_univariate_select.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_fdr.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_fpr.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_fwe.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_k_best.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/select_percentile.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/feature_selection/variance_threshold.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/framework/_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/framework/base.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/gaussian_process/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/iterative_imputer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/knn_imputer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/missing_indicator.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/impute/simple_imputer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/nystroem.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_ridge/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/lightgbm/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/lightgbm/lgbm_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/lightgbm/lgbm_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ard_regression.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/bayesian_ridge.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/elastic_net.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/gamma_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/huber_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lars.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lars_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso_lars.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso_lars_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/lasso_lars_ic.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/linear_regression.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/logistic_regression.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/logistic_regression_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/multi_task_lasso.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/perceptron.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/poisson_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ransac_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ridge.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ridge_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/ridge_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/sgd_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/sgd_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/theil_sen_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/linear_model/tweedie_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/isomap.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/mds.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/spectral_embedding.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/manifold/tsne.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/classification.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/correlation.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/covariance.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/metrics_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/ranking.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/metrics/regression.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/mixture/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/mixture/gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/model_selection/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/model_selection/grid_search_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/model_selection/randomized_search_cv.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/multiclass/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/multiclass/output_code_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/categorical_nb.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/complement_nb.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/gaussian_nb.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/naive_bayes/multinomial_nb.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/kernel_density.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/local_outlier_factor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/nearest_centroid.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/nearest_neighbors.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neural_network/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neural_network/bernoulli_rbm.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neural_network/mlp_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/neural_network/mlp_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/parameters/disable_distributed_hpo.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/parameters/disable_model_tracer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/parameters/enable_anonymous_sproc.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/pipeline/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/pipeline/pipeline.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/binarizer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/k_bins_discretizer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/label_encoder.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/max_abs_scaler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/min_max_scaler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/normalizer.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/one_hot_encoder.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/ordinal_encoder.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/polynomial_features.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/robust_scaler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/preprocessing/standard_scaler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/semi_supervised/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/semi_supervised/label_propagation.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/semi_supervised/label_spreading.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/linear_svc.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/linear_svr.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/nu_svc.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/nu_svr.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/svc.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/svm/svr.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/decision_tree_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/decision_tree_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/extra_tree_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/tree/extra_tree_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/xgb_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/xgb_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/xgbrf_classifier.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/modeling/xgboost/xgbrf_regressor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/_client/model_monitor_sql_client.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/_client/queries/record_count.ssql +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/_client/queries/rmse.ssql +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/_manager/model_monitor_manager.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/entities/model_monitor_config.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/explain_visualize.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/model_monitor.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/monitoring/shap.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/registry/__init__.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/registry/_manager/model_manager.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/registry/_manager/model_parameter_reconciler.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/registry/registry.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/authentication.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/html_utils.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/sparse.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/sql_client.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake/ml/utils/stage_file.py +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/SOURCES.txt +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/dependency_links.txt +0 -0
- {snowflake_ml_python-1.42.0 → snowflake_ml_python-1.43.0}/snowflake_ml_python.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,60 @@
|
|
|
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)
|
|
4
58
|
|
|
5
59
|
### New Features
|
|
6
60
|
|
|
@@ -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,6 +241,7 @@ 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
|
|
@@ -416,7 +417,61 @@ 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)
|
|
420
475
|
|
|
421
476
|
### New Features
|
|
422
477
|
|
|
@@ -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", "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",]
|
|
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"
|
|
@@ -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"
|
|
@@ -70,8 +70,10 @@ from snowflake.ml.feature_store.feature_view import (
|
|
|
70
70
|
)
|
|
71
71
|
from snowflake.ml.feature_store.metadata_manager import (
|
|
72
72
|
AggregationMetadata,
|
|
73
|
+
AppendOnlyMetadata,
|
|
73
74
|
FeatureStoreMetadataManager,
|
|
74
75
|
FeatureViewMetadataConfig,
|
|
76
|
+
FvSourceRefsMetadata,
|
|
75
77
|
MetadataObjectType,
|
|
76
78
|
MetadataType,
|
|
77
79
|
RealtimeConfigMetadata,
|
|
@@ -85,6 +87,7 @@ from snowflake.ml.feature_store.spec.builder import (
|
|
|
85
87
|
SnowflakeTableInfo,
|
|
86
88
|
)
|
|
87
89
|
from snowflake.ml.feature_store.spec.enums import (
|
|
90
|
+
ENTITY_TAG_PREFIX,
|
|
88
91
|
FeatureAggregationMethod,
|
|
89
92
|
FeatureViewKind,
|
|
90
93
|
TableType,
|
|
@@ -109,6 +112,7 @@ from snowflake.snowpark._internal import utils as snowpark_utils
|
|
|
109
112
|
from snowflake.snowpark.exceptions import SnowparkSQLException
|
|
110
113
|
from snowflake.snowpark.types import (
|
|
111
114
|
ArrayType,
|
|
115
|
+
BooleanType,
|
|
112
116
|
DataType,
|
|
113
117
|
StringType,
|
|
114
118
|
StructField,
|
|
@@ -209,7 +213,10 @@ def _store_type_from_oft_show_row(row: Row) -> OnlineStoreType:
|
|
|
209
213
|
return OnlineStoreType.HYBRID_TABLE
|
|
210
214
|
|
|
211
215
|
|
|
212
|
-
|
|
216
|
+
# Module-local alias kept so existing callers continue to reference
|
|
217
|
+
# ``_ENTITY_TAG_PREFIX``; the canonical value lives in
|
|
218
|
+
# :data:`snowflake.ml.feature_store.spec.enums.ENTITY_TAG_PREFIX`.
|
|
219
|
+
_ENTITY_TAG_PREFIX = ENTITY_TAG_PREFIX
|
|
213
220
|
_FEATURE_STORE_OBJECT_TAG = "SNOWML_FEATURE_STORE_OBJECT"
|
|
214
221
|
_FEATURE_VIEW_METADATA_TAG = "SNOWML_FEATURE_VIEW_METADATA"
|
|
215
222
|
_SNAPSHOT_STATUS_TABLE = "SNOWML_SNAPSHOT_STATUS"
|
|
@@ -323,29 +330,72 @@ _DT_INITIALIZE_PATTERN = re.compile(
|
|
|
323
330
|
flags=re.DOTALL | re.IGNORECASE | re.X,
|
|
324
331
|
)
|
|
325
332
|
|
|
326
|
-
#
|
|
333
|
+
# ``list_feature_views`` output schemas. Row builders always populate the verbose
|
|
334
|
+
# schema; non-verbose callers receive _LIST_FEATURE_VIEW_SCHEMA after trimming
|
|
335
|
+
# verbose-only trailing fields.
|
|
327
336
|
# ``kind`` is the per-row discriminator: BATCH / STREAMING / REALTIME.
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
337
|
+
_LIST_FEATURE_VIEW_BASE_FIELDS = [
|
|
338
|
+
StructField("name", StringType()),
|
|
339
|
+
StructField("version", StringType()),
|
|
340
|
+
StructField("database_name", StringType()),
|
|
341
|
+
StructField("schema_name", StringType()),
|
|
342
|
+
StructField("created_on", TimestampType()),
|
|
343
|
+
StructField("owner", StringType()),
|
|
344
|
+
StructField("desc", StringType()),
|
|
345
|
+
StructField("entities", ArrayType(StringType())),
|
|
346
|
+
StructField("refresh_freq", StringType()),
|
|
347
|
+
StructField("refresh_mode", StringType()),
|
|
348
|
+
StructField("scheduling_state", StringType()),
|
|
349
|
+
StructField("warehouse", StringType()),
|
|
350
|
+
StructField("cluster_by", StringType()),
|
|
351
|
+
StructField("online_config", StringType()),
|
|
352
|
+
StructField("storage_config", StringType()),
|
|
353
|
+
StructField("stream_config", StringType()),
|
|
354
|
+
StructField("kind", StringType()),
|
|
355
|
+
StructField("append_only", BooleanType()),
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
_LIST_FEATURE_VIEW_VERBOSE_EXTRA_FIELDS = [
|
|
359
|
+
# JSON-encoded authored source-ref list, or ``None`` when no
|
|
360
|
+
# ``FV_SOURCE_REFS`` metadata row was written for this FV.
|
|
361
|
+
StructField("source_refs", StringType()),
|
|
362
|
+
StructField("backup_source", StringType()),
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
_LIST_FEATURE_VIEW_SCHEMA = StructType(_LIST_FEATURE_VIEW_BASE_FIELDS)
|
|
366
|
+
_LIST_FEATURE_VIEW_SCHEMA_VERBOSE = StructType(_LIST_FEATURE_VIEW_BASE_FIELDS + _LIST_FEATURE_VIEW_VERBOSE_EXTRA_FIELDS)
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
def _create_list_feature_views_dataframe(
|
|
370
|
+
session: Session,
|
|
371
|
+
output_values: list[list[Any]],
|
|
372
|
+
output_values_extra: list[list[Any]],
|
|
373
|
+
*,
|
|
374
|
+
verbose: bool,
|
|
375
|
+
) -> DataFrame:
|
|
376
|
+
"""Build the ``list_feature_views`` result DataFrame.
|
|
377
|
+
|
|
378
|
+
``output_values`` contains base-schema fields matching
|
|
379
|
+
``_LIST_FEATURE_VIEW_SCHEMA``. ``output_values_extra`` contains the
|
|
380
|
+
verbose-only fields matching ``_LIST_FEATURE_VIEW_VERBOSE_EXTRA_FIELDS``.
|
|
381
|
+
When ``verbose=True`` the two are merged per-row to produce the verbose
|
|
382
|
+
schema; otherwise only ``output_values`` is used.
|
|
383
|
+
|
|
384
|
+
Args:
|
|
385
|
+
session: Snowpark session used to materialize the listing DataFrame.
|
|
386
|
+
output_values: Base-field rows populated by ``_extract_feature_view_info``
|
|
387
|
+
and RTFV listing helpers.
|
|
388
|
+
output_values_extra: Verbose-only field rows, one per row in
|
|
389
|
+
``output_values``, in the same order.
|
|
390
|
+
verbose: When True, include verbose-only columns such as ``backup_source``.
|
|
391
|
+
|
|
392
|
+
Returns:
|
|
393
|
+
Snowpark DataFrame whose schema matches ``verbose``.
|
|
394
|
+
"""
|
|
395
|
+
if verbose:
|
|
396
|
+
merged = [base + extra for base, extra in zip(output_values, output_values_extra)]
|
|
397
|
+
return session.create_dataframe(merged, schema=_LIST_FEATURE_VIEW_SCHEMA_VERBOSE)
|
|
398
|
+
return session.create_dataframe(output_values, schema=_LIST_FEATURE_VIEW_SCHEMA)
|
|
349
399
|
|
|
350
400
|
|
|
351
401
|
# Per-row kind discriminator emitted by ``list_feature_views``.
|
|
@@ -943,7 +993,7 @@ class FeatureStore:
|
|
|
943
993
|
|
|
944
994
|
# RTFVs are OFT-only (no DT/View, no preamble/postamble).
|
|
945
995
|
if feature_view.is_realtime_feature_view:
|
|
946
|
-
logger.warning("RealtimeFeatureView is in
|
|
996
|
+
logger.warning("RealtimeFeatureView is in Public Preview since 1.43.0.")
|
|
947
997
|
from snowflake.ml.feature_store.realtime_registration import (
|
|
948
998
|
register_realtime_feature_view,
|
|
949
999
|
)
|
|
@@ -980,9 +1030,7 @@ class FeatureStore:
|
|
|
980
1030
|
|
|
981
1031
|
if feature_view.online and feature_view.online_config is not None:
|
|
982
1032
|
if feature_view.online_config.store_type == OnlineStoreType.POSTGRES:
|
|
983
|
-
logger.warning(
|
|
984
|
-
"POSTGRES online store type is in private preview since 1.33.0. " "Do not use in production."
|
|
985
|
-
)
|
|
1033
|
+
logger.warning("POSTGRES online store type is in Public Preview since 1.43.0.")
|
|
986
1034
|
online_service.assert_online_service_running_with_query_endpoint(
|
|
987
1035
|
self._session,
|
|
988
1036
|
self._config.database,
|
|
@@ -1068,6 +1116,13 @@ class FeatureStore:
|
|
|
1068
1116
|
if feature_view.feature_aggregation_method is not None
|
|
1069
1117
|
else None
|
|
1070
1118
|
),
|
|
1119
|
+
# Stored in FEATURE_SPECS so ``get_feature_view``
|
|
1120
|
+
# reconstructs the exact secondary key order registered.
|
|
1121
|
+
aggregation_secondary_keys=(
|
|
1122
|
+
list(feature_view.aggregation_secondary_keys)
|
|
1123
|
+
if feature_view.aggregation_secondary_keys
|
|
1124
|
+
else None
|
|
1125
|
+
),
|
|
1071
1126
|
)
|
|
1072
1127
|
# Convert SqlIdentifier keys to strings if descriptions exist
|
|
1073
1128
|
descs = None
|
|
@@ -1088,12 +1143,31 @@ class FeatureStore:
|
|
|
1088
1143
|
feature_view.name, version, agg_metadata, descs, fv_metadata_config=fv_meta_config
|
|
1089
1144
|
)
|
|
1090
1145
|
|
|
1146
|
+
# Persist the authored source-ref list when the caller
|
|
1147
|
+
# supplied one; callers that leave ``source_refs`` unset skip
|
|
1148
|
+
# the metadata write and no ``FV_SOURCE_REFS`` row is created.
|
|
1149
|
+
if feature_view.source_refs:
|
|
1150
|
+
self._metadata_manager.save_feature_view_source_refs(
|
|
1151
|
+
feature_view.name,
|
|
1152
|
+
version,
|
|
1153
|
+
FvSourceRefsMetadata(sources=list(feature_view.source_refs)),
|
|
1154
|
+
)
|
|
1155
|
+
|
|
1091
1156
|
# Step 4: Save rollup metadata for PIT-correct training queries
|
|
1092
1157
|
if feature_view._rollup_metadata is not None:
|
|
1093
1158
|
self._metadata_manager.save_rollup_metadata(
|
|
1094
1159
|
feature_view.name, version, feature_view._rollup_metadata.to_dict()
|
|
1095
1160
|
)
|
|
1096
1161
|
|
|
1162
|
+
# Step 4b: Persist append-only config (backup_source) in the
|
|
1163
|
+
# metadata table — not the DT tag — to avoid the 256-char tag limit.
|
|
1164
|
+
if feature_view.append_only and feature_view.backup_source is not None:
|
|
1165
|
+
self._metadata_manager.save_append_only_metadata(
|
|
1166
|
+
feature_view.name,
|
|
1167
|
+
str(version),
|
|
1168
|
+
AppendOnlyMetadata(backup_source=feature_view.backup_source),
|
|
1169
|
+
)
|
|
1170
|
+
|
|
1097
1171
|
# Step 5: Streaming postamble (metadata + ref_count + server-side backfill task graph)
|
|
1098
1172
|
if streaming_preamble is not None:
|
|
1099
1173
|
from snowflake.ml.feature_store.streaming_registration import (
|
|
@@ -1134,8 +1208,12 @@ class FeatureStore:
|
|
|
1134
1208
|
# We can't rollback in case of overwrite.
|
|
1135
1209
|
if not overwrite:
|
|
1136
1210
|
self._rollback_created_resources(created_resources)
|
|
1137
|
-
# Cleanup metadata (covers
|
|
1138
|
-
if
|
|
1211
|
+
# Cleanup metadata (covers tiled, streaming, and append-only config)
|
|
1212
|
+
if (
|
|
1213
|
+
feature_view.is_tiled
|
|
1214
|
+
or streaming_preamble is not None
|
|
1215
|
+
or (feature_view.append_only and feature_view.backup_source is not None)
|
|
1216
|
+
):
|
|
1139
1217
|
self._metadata_manager.delete_feature_view_metadata(str(feature_view.name), version)
|
|
1140
1218
|
# Only decrement ref_count if postamble successfully incremented it
|
|
1141
1219
|
if streaming_preamble is not None and streaming_ref_count_incremented:
|
|
@@ -1281,9 +1359,7 @@ class FeatureStore:
|
|
|
1281
1359
|
SnowflakeMLException: [RuntimeError] Failed to update feature view.
|
|
1282
1360
|
"""
|
|
1283
1361
|
if online_config is not None and online_config.store_type == OnlineStoreType.POSTGRES:
|
|
1284
|
-
logger.warning(
|
|
1285
|
-
"POSTGRES online store type is in private preview since 1.33.0. " "Do not use in production."
|
|
1286
|
-
)
|
|
1362
|
+
logger.warning("POSTGRES online store type is in Public Preview since 1.43.0.")
|
|
1287
1363
|
|
|
1288
1364
|
# Step 1: Validate inputs
|
|
1289
1365
|
feature_view = self._validate_feature_view_name_and_version_input(name, version)
|
|
@@ -1675,6 +1751,7 @@ class FeatureStore:
|
|
|
1675
1751
|
*,
|
|
1676
1752
|
entity_name: Optional[str] = None,
|
|
1677
1753
|
feature_view_name: Optional[str] = None,
|
|
1754
|
+
verbose: bool = False,
|
|
1678
1755
|
) -> DataFrame:
|
|
1679
1756
|
"""
|
|
1680
1757
|
List FeatureViews in the FeatureStore.
|
|
@@ -1684,9 +1761,18 @@ class FeatureStore:
|
|
|
1684
1761
|
Args:
|
|
1685
1762
|
entity_name: Entity name.
|
|
1686
1763
|
feature_view_name: FeatureView name.
|
|
1764
|
+
verbose: When True, include the ``source_refs`` and ``backup_source`` columns
|
|
1765
|
+
in the output. ``source_refs`` (string, nullable) is the JSON-encoded list
|
|
1766
|
+
of authored source bindings captured at registration time (``None`` when no
|
|
1767
|
+
source refs were recorded). ``backup_source`` (string, nullable) contains
|
|
1768
|
+
the fully-qualified name of the historical snapshot table cloned at
|
|
1769
|
+
registration time (only set for append-only feature views registered with a
|
|
1770
|
+
``backup_source``; ``None`` otherwise). Defaults to False.
|
|
1687
1771
|
|
|
1688
1772
|
Returns:
|
|
1689
|
-
FeatureViews information as a Snowpark DataFrame.
|
|
1773
|
+
FeatureViews information as a Snowpark DataFrame. Each row always includes
|
|
1774
|
+
``append_only`` (bool). ``source_refs`` and ``backup_source`` (both string,
|
|
1775
|
+
nullable) are included only when ``verbose=True``.
|
|
1690
1776
|
|
|
1691
1777
|
Example::
|
|
1692
1778
|
|
|
@@ -1711,14 +1797,15 @@ class FeatureStore:
|
|
|
1711
1797
|
|
|
1712
1798
|
if entity_name is not None:
|
|
1713
1799
|
entity_name = SqlIdentifier(entity_name)
|
|
1714
|
-
return self._optimized_find_feature_views(entity_name, feature_view_name)
|
|
1800
|
+
return self._optimized_find_feature_views(entity_name, feature_view_name, verbose=verbose)
|
|
1715
1801
|
else:
|
|
1716
1802
|
fv_rows = self._get_fv_backend_representations(feature_view_name, prefix_match=True)
|
|
1717
1803
|
|
|
1718
1804
|
output_values: list[list[Any]] = []
|
|
1805
|
+
output_values_extra: list[list[Any]] = []
|
|
1719
1806
|
iceberg_config_cache: dict[str, StorageConfig] = {}
|
|
1720
1807
|
for row, _ in fv_rows:
|
|
1721
|
-
self._extract_feature_view_info(row, output_values, iceberg_config_cache)
|
|
1808
|
+
self._extract_feature_view_info(row, output_values, output_values_extra, iceberg_config_cache)
|
|
1722
1809
|
|
|
1723
1810
|
from snowflake.ml.feature_store.realtime_registration import (
|
|
1724
1811
|
append_realtime_listing_rows,
|
|
@@ -1728,11 +1815,14 @@ class FeatureStore:
|
|
|
1728
1815
|
feature_store=self,
|
|
1729
1816
|
feature_view_name_prefix=feature_view_name,
|
|
1730
1817
|
output_values=output_values,
|
|
1818
|
+
output_values_extra=output_values_extra,
|
|
1731
1819
|
fv_kind_realtime=_FV_KIND_REALTIME,
|
|
1732
1820
|
default_storage_config_json=_DEFAULT_STORAGE_CONFIG_JSON,
|
|
1733
1821
|
)
|
|
1734
1822
|
|
|
1735
|
-
return
|
|
1823
|
+
return _create_list_feature_views_dataframe(
|
|
1824
|
+
self._session, output_values, output_values_extra, verbose=verbose
|
|
1825
|
+
)
|
|
1736
1826
|
|
|
1737
1827
|
@dispatch_decorator()
|
|
1738
1828
|
def get_feature_view(self, name: str, version: str) -> FeatureView:
|
|
@@ -2521,7 +2611,7 @@ class FeatureStore:
|
|
|
2521
2611
|
|
|
2522
2612
|
# noqa: DAR401
|
|
2523
2613
|
"""
|
|
2524
|
-
logger.warning("FeatureGroup is in
|
|
2614
|
+
logger.warning("FeatureGroup is in Public Preview since 1.43.0.")
|
|
2525
2615
|
return fg_mod.register_feature_group(self, feature_group, version)
|
|
2526
2616
|
|
|
2527
2617
|
@telemetry.send_api_usage_telemetry(project=_PROJECT)
|
|
@@ -2786,7 +2876,6 @@ class FeatureStore:
|
|
|
2786
2876
|
# =========================================================================
|
|
2787
2877
|
|
|
2788
2878
|
@dispatch_decorator()
|
|
2789
|
-
@snowpark_utils.private_preview(version="1.33.0")
|
|
2790
2879
|
def register_stream_source(self, stream_source: StreamSource) -> StreamSource:
|
|
2791
2880
|
"""
|
|
2792
2881
|
Register a StreamSource in the FeatureStore.
|
|
@@ -2824,6 +2913,7 @@ class FeatureStore:
|
|
|
2824
2913
|
-------------------------------------------------------------------------------------...
|
|
2825
2914
|
|
|
2826
2915
|
"""
|
|
2916
|
+
logger.warning("StreamSource is in Public Preview since 1.43.0.")
|
|
2827
2917
|
|
|
2828
2918
|
if self._metadata_manager.stream_source_exists(stream_source.name.resolved()):
|
|
2829
2919
|
warnings.warn(
|
|
@@ -7347,10 +7437,14 @@ FROM {batch_cte_names[0]}{''.join(merge_join_parts)}
|
|
|
7347
7437
|
return self.get_feature_view(feature_view.name, feature_view.version)
|
|
7348
7438
|
|
|
7349
7439
|
def _optimized_find_feature_views(
|
|
7350
|
-
self,
|
|
7440
|
+
self,
|
|
7441
|
+
entity_name: SqlIdentifier,
|
|
7442
|
+
feature_view_name: Optional[SqlIdentifier],
|
|
7443
|
+
*,
|
|
7444
|
+
verbose: bool = False,
|
|
7351
7445
|
) -> DataFrame:
|
|
7352
7446
|
if not self._validate_entity_exists(entity_name):
|
|
7353
|
-
return self._session
|
|
7447
|
+
return _create_list_feature_views_dataframe(self._session, [], [], verbose=verbose)
|
|
7354
7448
|
|
|
7355
7449
|
# TODO: this can be optimized further by directly getting all possible FVs and filter by tag
|
|
7356
7450
|
# it's easier to rewrite the code once we can remove the tag_reference path
|
|
@@ -7361,6 +7455,7 @@ FROM {batch_cte_names[0]}{''.join(merge_join_parts)}
|
|
|
7361
7455
|
res = self._lookup_tagged_objects(self._get_entity_name(entity_name), filters)
|
|
7362
7456
|
|
|
7363
7457
|
output_values: list[list[Any]] = []
|
|
7458
|
+
output_values_extra: list[list[Any]] = []
|
|
7364
7459
|
iceberg_config_cache: dict[str, StorageConfig] = {}
|
|
7365
7460
|
rtfv_oft_entity_names: set[str] = set()
|
|
7366
7461
|
for r in res:
|
|
@@ -7369,7 +7464,7 @@ FROM {batch_cte_names[0]}{''.join(merge_join_parts)}
|
|
|
7369
7464
|
# ``$ONLINE`` suffix.
|
|
7370
7465
|
key = SqlIdentifier(r["entityName"], case_sensitive=True)
|
|
7371
7466
|
if key in fv_maps:
|
|
7372
|
-
self._extract_feature_view_info(fv_maps[key], output_values, iceberg_config_cache)
|
|
7467
|
+
self._extract_feature_view_info(fv_maps[key], output_values, output_values_extra, iceberg_config_cache)
|
|
7373
7468
|
else:
|
|
7374
7469
|
resolved_oft_name = r["entityName"]
|
|
7375
7470
|
if resolved_oft_name.endswith(_ONLINE_TABLE_SUFFIX):
|
|
@@ -7400,23 +7495,27 @@ FROM {batch_cte_names[0]}{''.join(merge_join_parts)}
|
|
|
7400
7495
|
rtfv_metadata=meta,
|
|
7401
7496
|
oft_show_row=oft_row_by_phys.get(oft_phys),
|
|
7402
7497
|
output_values=output_values,
|
|
7498
|
+
output_values_extra=output_values_extra,
|
|
7403
7499
|
fv_kind_realtime=_FV_KIND_REALTIME,
|
|
7404
7500
|
default_storage_config_json=_DEFAULT_STORAGE_CONFIG_JSON,
|
|
7405
7501
|
)
|
|
7406
7502
|
|
|
7407
|
-
return self._session
|
|
7503
|
+
return _create_list_feature_views_dataframe(self._session, output_values, output_values_extra, verbose=verbose)
|
|
7408
7504
|
|
|
7409
7505
|
def _extract_feature_view_info(
|
|
7410
7506
|
self,
|
|
7411
7507
|
row: Row,
|
|
7412
7508
|
output_values: list[list[Any]],
|
|
7509
|
+
output_values_extra: list[list[Any]],
|
|
7413
7510
|
iceberg_config_cache: dict[str, StorageConfig],
|
|
7414
7511
|
) -> None:
|
|
7415
7512
|
"""Extract feature view information from a backend row.
|
|
7416
7513
|
|
|
7417
7514
|
Args:
|
|
7418
7515
|
row: Row from SHOW DYNAMIC TABLES or SHOW VIEWS.
|
|
7419
|
-
output_values:
|
|
7516
|
+
output_values: Base-field rows matching ``_LIST_FEATURE_VIEW_SCHEMA``.
|
|
7517
|
+
output_values_extra: Verbose-only field rows matching
|
|
7518
|
+
``_LIST_FEATURE_VIEW_VERBOSE_EXTRA_FIELDS``.
|
|
7420
7519
|
iceberg_config_cache: Mutable dictionary mapping table names to StorageConfig.
|
|
7421
7520
|
Populated lazily on first Iceberg FV encountered. Caller should pass the same
|
|
7422
7521
|
dictionary instance across calls to avoid repeated SHOW ICEBERG TABLES queries.
|
|
@@ -7499,8 +7598,23 @@ FROM {batch_cte_names[0]}{''.join(merge_join_parts)}
|
|
|
7499
7598
|
# RTFV rows are emitted separately; this helper only sees DT/View FVs.
|
|
7500
7599
|
values.append(_FV_KIND_STREAMING if fv_metadata.is_streaming else _FV_KIND_BATCH)
|
|
7501
7600
|
|
|
7601
|
+
values.append(fv_metadata.is_append_only)
|
|
7602
|
+
|
|
7502
7603
|
output_values.append(values)
|
|
7503
7604
|
|
|
7605
|
+
# Surface the authored source-ref list (JSON-encoded) when a
|
|
7606
|
+
# ``FV_SOURCE_REFS`` row exists; otherwise leave the column null.
|
|
7607
|
+
# Verbose-only: goes into output_values_extra alongside backup_source.
|
|
7608
|
+
source_refs_meta = self._metadata_manager.get_feature_view_source_refs(name, version)
|
|
7609
|
+
source_refs_json = json.dumps(source_refs_meta.sources) if source_refs_meta is not None else None
|
|
7610
|
+
|
|
7611
|
+
backup_source: Optional[str] = None
|
|
7612
|
+
if fv_metadata.is_append_only:
|
|
7613
|
+
append_only_meta = self._metadata_manager.get_append_only_metadata(name, version)
|
|
7614
|
+
if append_only_meta is not None:
|
|
7615
|
+
backup_source = AppendOnlyMetadata.from_dict(append_only_meta).backup_source
|
|
7616
|
+
output_values_extra.append([source_refs_json, backup_source])
|
|
7617
|
+
|
|
7504
7618
|
def _determine_online_config_from_oft(
|
|
7505
7619
|
self, name: str, version: str, *, include_online_service_metadata: bool = False
|
|
7506
7620
|
) -> str:
|
|
@@ -7661,6 +7775,13 @@ FROM {batch_cte_names[0]}{''.join(merge_join_parts)}
|
|
|
7661
7775
|
feature_granularity = agg_metadata.feature_granularity if agg_metadata else None
|
|
7662
7776
|
aggregation_specs = agg_metadata.features if agg_metadata else None
|
|
7663
7777
|
is_tiled = agg_metadata is not None
|
|
7778
|
+
# Restored from the FEATURE_SPECS row; None when no tiling metadata.
|
|
7779
|
+
aggregation_secondary_keys = agg_metadata.aggregation_secondary_keys if agg_metadata else None
|
|
7780
|
+
|
|
7781
|
+
# Rehydrate the authored source-ref list onto the reconstructed
|
|
7782
|
+
# FV when a ``FV_SOURCE_REFS`` row was persisted at register time.
|
|
7783
|
+
source_refs_meta = self._metadata_manager.get_feature_view_source_refs(name.identifier(), version)
|
|
7784
|
+
restored_source_refs = source_refs_meta.sources if source_refs_meta is not None else None
|
|
7664
7785
|
|
|
7665
7786
|
if obj_type == _FeatureStoreObjTypes.MANAGED_FEATURE_VIEW:
|
|
7666
7787
|
df = self._session.sql(query)
|
|
@@ -7683,6 +7804,12 @@ FROM {batch_cte_names[0]}{''.join(merge_join_parts)}
|
|
|
7683
7804
|
if refresh_freq == "DOWNSTREAM":
|
|
7684
7805
|
refresh_freq = self._resolve_task_schedule(fv_name, refresh_freq)
|
|
7685
7806
|
|
|
7807
|
+
backup_source: Optional[str] = None
|
|
7808
|
+
if fv_metadata.is_append_only:
|
|
7809
|
+
append_only_meta = self._metadata_manager.get_append_only_metadata(name.identifier(), version)
|
|
7810
|
+
if append_only_meta is not None:
|
|
7811
|
+
backup_source = AppendOnlyMetadata.from_dict(append_only_meta).backup_source
|
|
7812
|
+
|
|
7686
7813
|
fv = FeatureView._construct_feature_view(
|
|
7687
7814
|
name=name,
|
|
7688
7815
|
entities=entities,
|
|
@@ -7715,8 +7842,11 @@ FROM {batch_cte_names[0]}{''.join(merge_join_parts)}
|
|
|
7715
7842
|
storage_config=storage_config,
|
|
7716
7843
|
feature_granularity=feature_granularity,
|
|
7717
7844
|
aggregation_specs=aggregation_specs,
|
|
7845
|
+
aggregation_secondary_keys=aggregation_secondary_keys,
|
|
7718
7846
|
is_streaming=fv_metadata.is_streaming,
|
|
7719
7847
|
append_only=fv_metadata.is_append_only,
|
|
7848
|
+
backup_source=backup_source,
|
|
7849
|
+
source_refs=restored_source_refs,
|
|
7720
7850
|
)
|
|
7721
7851
|
self._hydrate_postgres_online_service(fv)
|
|
7722
7852
|
|
|
@@ -7774,8 +7904,10 @@ FROM {batch_cte_names[0]}{''.join(merge_join_parts)}
|
|
|
7774
7904
|
online_config=online_config,
|
|
7775
7905
|
feature_granularity=feature_granularity,
|
|
7776
7906
|
aggregation_specs=aggregation_specs,
|
|
7907
|
+
aggregation_secondary_keys=aggregation_secondary_keys,
|
|
7777
7908
|
storage_config=storage_config,
|
|
7778
7909
|
is_streaming=fv_metadata.is_streaming,
|
|
7910
|
+
source_refs=restored_source_refs,
|
|
7779
7911
|
)
|
|
7780
7912
|
self._hydrate_postgres_online_service(fv)
|
|
7781
7913
|
|