snowflake-ml-python 1.7.4__tar.gz → 1.8.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.7.4 → snowflake_ml_python-1.8.0}/CHANGELOG.md +311 -5
- {snowflake_ml_python-1.7.4/snowflake_ml_python.egg-info → snowflake_ml_python-1.8.0}/PKG-INFO +336 -27
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/README.md +1 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/pyproject.toml +8 -8
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_complete.py +58 -3
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/env_utils.py +64 -21
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/file_utils.py +18 -4
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/platform_capabilities.py +3 -0
- snowflake_ml_python-1.8.0/snowflake/ml/_internal/relax_version_strategy.py +16 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/telemetry.py +25 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/data/_internal/arrow_ingestor.py +1 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/feature_store.py +18 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/feature_view.py +46 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/fileset/fileset.py +0 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/jobs/_utils/constants.py +31 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/jobs/_utils/payload_utils.py +232 -72
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/jobs/_utils/spec_utils.py +78 -38
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/jobs/decorators.py +8 -25
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/jobs/job.py +4 -4
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/jobs/manager.py +5 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/model/model_version_impl.py +1 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/ops/model_ops.py +107 -14
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/ops/service_ops.py +1 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/service/model_deployment_spec.py +7 -3
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/sql/model_version.py +58 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/sql/service.py +8 -2
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_composer.py +50 -3
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest.py +4 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_manifest/model_manifest_schema.py +2 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_method/model_method.py +0 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_env/model_env.py +49 -29
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/_utils.py +8 -4
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/huggingface_pipeline.py +44 -24
- snowflake_ml_python-1.8.0/snowflake/ml/model/_packager/model_handlers/keras.py +226 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/pytorch.py +51 -20
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/sklearn.py +25 -3
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/snowmlmodel.py +73 -21
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/tensorflow.py +70 -72
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/torchscript.py +49 -20
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/xgboost.py +2 -2
- snowflake_ml_python-1.8.0/snowflake/ml/model/_packager/model_handlers_migrator/pytorch_migrator_2023_12_01.py +20 -0
- snowflake_ml_python-1.8.0/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2023_12_01.py +48 -0
- snowflake_ml_python-1.8.0/snowflake/ml/model/_packager/model_handlers_migrator/tensorflow_migrator_2025_01_01.py +19 -0
- snowflake_ml_python-1.8.0/snowflake/ml/model/_packager/model_handlers_migrator/torchscript_migrator_2023_12_01.py +20 -0
- snowflake_ml_python-1.8.0/snowflake/ml/model/_packager/model_meta/_packaging_requirements.py +1 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_meta/model_meta.py +6 -2
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_meta/model_meta_schema.py +16 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_packager.py +3 -5
- snowflake_ml_python-1.8.0/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +1 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_runtime/model_runtime.py +8 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_task/model_task_utils.py +5 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_signatures/builtins_handler.py +20 -9
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_signatures/core.py +54 -33
- snowflake_ml_python-1.8.0/snowflake/ml/model/_signatures/dmatrix_handler.py +98 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_signatures/numpy_handler.py +12 -20
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_signatures/pandas_handler.py +28 -37
- snowflake_ml_python-1.8.0/snowflake/ml/model/_signatures/pytorch_handler.py +120 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_signatures/snowpark_handler.py +0 -12
- snowflake_ml_python-1.8.0/snowflake/ml/model/_signatures/tensorflow_handler.py +134 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_signatures/utils.py +120 -8
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/custom_model.py +13 -4
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/model_signature.py +39 -13
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/type_hints.py +28 -2
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_handlers.py +14 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/metrics/ranking.py +3 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/metrics/regression.py +3 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/pipeline/pipeline.py +18 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/k_bins_discretizer.py +1 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/polynomial_features.py +2 -2
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/registry/_manager/model_manager.py +55 -7
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/registry/registry.py +52 -4
- snowflake_ml_python-1.8.0/snowflake/ml/version.py +1 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0/snowflake_ml_python.egg-info}/PKG-INFO +336 -27
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake_ml_python.egg-info/SOURCES.txt +7 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake_ml_python.egg-info/requires.txt +20 -19
- snowflake_ml_python-1.7.4/snowflake/ml/model/_packager/model_meta/_packaging_requirements.py +0 -2
- snowflake_ml_python-1.7.4/snowflake/ml/model/_packager/model_runtime/_snowml_inference_alternative_requirements.py +0 -2
- snowflake_ml_python-1.7.4/snowflake/ml/model/_signatures/pytorch_handler.py +0 -104
- snowflake_ml_python-1.7.4/snowflake/ml/model/_signatures/tensorflow_handler.py +0 -140
- snowflake_ml_python-1.7.4/snowflake/ml/version.py +0 -1
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/LICENSE.txt +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/setup.cfg +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_classify_text.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_embed_text_1024.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_embed_text_768.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_extract_answer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_finetune.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_sentiment.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_sse_client.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_summarize.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_translate.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/cortex/_util.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/env.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/exceptions/dataset_error_messages.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/exceptions/dataset_errors.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/exceptions/error_codes.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/exceptions/error_messages.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/exceptions/exceptions.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/exceptions/fileset_error_messages.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/exceptions/fileset_errors.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/exceptions/modeling_error_messages.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/exceptions/sql_error_codes.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/human_readable_id/adjectives.txt +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/human_readable_id/animals.txt +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/human_readable_id/hrid_generator.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/human_readable_id/hrid_generator_base.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/init_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/lineage/lineage_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/migrator_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/type_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/db_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/formatting.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/identifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/import_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/jwt_generator.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/parallelize.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/pkg_version_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/query_result_checker.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/result.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/service_logger.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/snowflake_env.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/snowpark_dataframe_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/sql_identifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/table_manager.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/_internal/utils/temp_file_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/data/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/data/data_connector.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/data/data_ingestor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/data/data_source.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/data/ingestor_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/data/torch_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/dataset/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/dataset/dataset.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/dataset/dataset_factory.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/dataset/dataset_metadata.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/dataset/dataset_reader.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/access_manager.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/entity.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/airline_features/entities.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/airline_features/features/plane_features.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/airline_features/features/weather_features.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/airline_features/source.yaml +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/citibike_trip_features/entities.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/station_feature.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/citibike_trip_features/features/trip_feature.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/citibike_trip_features/source.yaml +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/example_helper.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/entities.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/location_features.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/features/trip_features.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/new_york_taxi_features/source.yaml +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/source_data/airline.yaml +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/source_data/citibike_trips.yaml +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/source_data/fraud_transactions.yaml +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/source_data/nyc_yellow_trips.yaml +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/source_data/winequality_red.yaml +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/wine_quality_features/entities.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/managed_wine_features.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/wine_quality_features/features/static_wine_features.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/feature_store/examples/wine_quality_features/source.yaml +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/fileset/embedded_stage_fs.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/fileset/sfcfs.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/fileset/snowfs.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/fileset/stage_fs.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/jobs/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/jobs/_utils/types.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/lineage/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/lineage/lineage_node.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/model/model_impl.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/ops/metadata_ops.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/service/model_deployment_spec_schema.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/sql/_base.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/sql/model.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/sql/stage.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_client/sql/tag.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_method/constants.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_method/function_generator.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_method/infer_function.py_template +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_method/infer_partitioned.py_template +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_method/infer_table_function.py_template +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_model_composer/model_user_file/model_user_file.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handler.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/_base.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/catboost.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/custom.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/lightgbm.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/mlflow.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers/sentence_transformers.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_handlers_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_meta/model_blob_meta.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_meta_migrator/base_migrator.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_plans.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_packager/model_meta_migrator/migrator_v1.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/_signatures/base_handler.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/model/models/huggingface_pipeline.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/constants.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/estimator_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_handlers.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/local_implementations/pandas_trainer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/model_specifications.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/model_trainer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/model_trainer_builder.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/model_transformer_builder.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_hpo_trainer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/snowpark_implementations/distributed_search_udf_file.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/snowpark_implementations/snowpark_trainer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/snowpark_implementations/xgboost_external_memory_trainer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/_internal/transformer_protocols.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/calibration/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/calibration/calibrated_classifier_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/affinity_propagation.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/agglomerative_clustering.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/birch.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/bisecting_k_means.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/dbscan.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/feature_agglomeration.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/k_means.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/mean_shift.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/mini_batch_k_means.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/optics.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/spectral_biclustering.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/spectral_clustering.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/cluster/spectral_coclustering.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/compose/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/compose/column_transformer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/compose/transformed_target_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/covariance/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/covariance/elliptic_envelope.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/covariance/empirical_covariance.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/covariance/graphical_lasso.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/covariance/graphical_lasso_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/covariance/ledoit_wolf.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/covariance/min_cov_det.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/covariance/oas.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/covariance/shrunk_covariance.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/dictionary_learning.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/factor_analysis.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/fast_ica.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/incremental_pca.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/kernel_pca.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/mini_batch_dictionary_learning.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/mini_batch_sparse_pca.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/pca.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/sparse_pca.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/decomposition/truncated_svd.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/discriminant_analysis/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/discriminant_analysis/linear_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/discriminant_analysis/quadratic_discriminant_analysis.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/ada_boost_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/ada_boost_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/bagging_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/bagging_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/extra_trees_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/extra_trees_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/hist_gradient_boosting_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/isolation_forest.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/random_forest_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/random_forest_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/stacking_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/voting_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/ensemble/voting_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/feature_selection/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/feature_selection/generic_univariate_select.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/feature_selection/select_fdr.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/feature_selection/select_fpr.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/feature_selection/select_fwe.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/feature_selection/select_k_best.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/feature_selection/select_percentile.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/feature_selection/sequential_feature_selector.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/feature_selection/variance_threshold.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/framework/_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/framework/base.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/gaussian_process/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/gaussian_process/gaussian_process_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/impute/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/impute/iterative_imputer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/impute/knn_imputer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/impute/missing_indicator.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/impute/simple_imputer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/kernel_approximation/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/kernel_approximation/additive_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/kernel_approximation/nystroem.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/kernel_approximation/polynomial_count_sketch.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/kernel_approximation/rbf_sampler.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/kernel_approximation/skewed_chi2_sampler.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/kernel_ridge/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/kernel_ridge/kernel_ridge.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/lightgbm/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/lightgbm/lgbm_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/lightgbm/lgbm_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/ard_regression.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/bayesian_ridge.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/elastic_net.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/gamma_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/huber_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/lars.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/lars_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/lasso.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/lasso_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/lasso_lars.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/lasso_lars_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/lasso_lars_ic.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/linear_regression.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/logistic_regression.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/logistic_regression_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/multi_task_elastic_net_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/multi_task_lasso.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/multi_task_lasso_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/orthogonal_matching_pursuit.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/passive_aggressive_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/passive_aggressive_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/perceptron.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/poisson_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/ransac_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/ridge.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/ridge_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/ridge_classifier_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/ridge_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/sgd_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/sgd_one_class_svm.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/sgd_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/theil_sen_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/linear_model/tweedie_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/manifold/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/manifold/isomap.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/manifold/mds.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/manifold/spectral_embedding.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/manifold/tsne.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/metrics/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/metrics/classification.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/metrics/correlation.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/metrics/covariance.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/metrics/metrics_utils.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/mixture/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/mixture/bayesian_gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/mixture/gaussian_mixture.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/model_selection/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/model_selection/grid_search_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/model_selection/randomized_search_cv.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/multiclass/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/multiclass/one_vs_one_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/multiclass/one_vs_rest_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/multiclass/output_code_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/naive_bayes/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/naive_bayes/bernoulli_nb.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/naive_bayes/categorical_nb.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/naive_bayes/complement_nb.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/naive_bayes/gaussian_nb.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/naive_bayes/multinomial_nb.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/k_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/k_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/kernel_density.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/local_outlier_factor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/nearest_centroid.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/nearest_neighbors.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/neighborhood_components_analysis.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/radius_neighbors_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neighbors/radius_neighbors_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neural_network/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neural_network/bernoulli_rbm.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neural_network/mlp_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/neural_network/mlp_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/parameters/disable_distributed_hpo.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/parameters/disable_model_tracer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/parameters/enable_anonymous_sproc.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/pipeline/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/binarizer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/label_encoder.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/max_abs_scaler.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/min_max_scaler.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/normalizer.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/one_hot_encoder.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/ordinal_encoder.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/robust_scaler.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/preprocessing/standard_scaler.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/semi_supervised/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/semi_supervised/label_propagation.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/semi_supervised/label_spreading.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/svm/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/svm/linear_svc.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/svm/linear_svr.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/svm/nu_svc.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/svm/nu_svr.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/svm/svc.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/svm/svr.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/tree/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/tree/decision_tree_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/tree/decision_tree_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/tree/extra_tree_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/tree/extra_tree_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/xgboost/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/xgboost/xgb_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/xgboost/xgb_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/xgboost/xgbrf_classifier.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/modeling/xgboost/xgbrf_regressor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/monitoring/_client/model_monitor_sql_client.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/monitoring/_client/queries/record_count.ssql +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/monitoring/_client/queries/rmse.ssql +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/monitoring/_manager/model_monitor_manager.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/monitoring/entities/model_monitor_config.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/monitoring/model_monitor.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/monitoring/model_monitor_version.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/monitoring/shap.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/registry/__init__.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/utils/authentication.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/utils/connection_params.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/utils/sparse.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake/ml/utils/sql_client.py +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake_ml_python.egg-info/dependency_links.txt +0 -0
- {snowflake_ml_python-1.7.4 → snowflake_ml_python-1.8.0}/snowflake_ml_python.egg-info/top_level.txt +0 -0
@@ -1,27 +1,328 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
-
## 1.
|
3
|
+
## 1.8.0
|
4
|
+
|
5
|
+
### Bug Fixes
|
6
|
+
|
7
|
+
- Modeling: Fix a bug in some metrics that allowed an unsupported version of numpy to be installed
|
8
|
+
automatically in the stored procedure, resulting in a numpy error on execution
|
9
|
+
- Registry: Fix a bug that leads to incorrect `Model is does not have _is_inference_api` error message when assigning
|
10
|
+
a supported model as a property of a CustomModel.
|
11
|
+
- Registry: Fix a bug that inference is not working when models with more than 500 input features
|
12
|
+
are deployed to SPCS.
|
13
|
+
|
14
|
+
### Behavior Change
|
15
|
+
|
16
|
+
- Registry: With FeatureGroupSpec support, auto inferred model signature for `transformers.Pipeline` models have been
|
17
|
+
updated, including:
|
18
|
+
- Signature for fill-mask task has been changed from
|
19
|
+
|
20
|
+
```python
|
21
|
+
ModelSignature(
|
22
|
+
inputs=[
|
23
|
+
FeatureSpec(name="inputs", dtype=DataType.STRING),
|
24
|
+
],
|
25
|
+
outputs=[
|
26
|
+
FeatureSpec(name="outputs", dtype=DataType.STRING),
|
27
|
+
],
|
28
|
+
)
|
29
|
+
```
|
30
|
+
|
31
|
+
to
|
32
|
+
|
33
|
+
```python
|
34
|
+
ModelSignature(
|
35
|
+
inputs=[
|
36
|
+
FeatureSpec(name="inputs", dtype=DataType.STRING),
|
37
|
+
],
|
38
|
+
outputs=[
|
39
|
+
FeatureGroupSpec(
|
40
|
+
name="outputs",
|
41
|
+
specs=[
|
42
|
+
FeatureSpec(name="sequence", dtype=DataType.STRING),
|
43
|
+
FeatureSpec(name="score", dtype=DataType.DOUBLE),
|
44
|
+
FeatureSpec(name="token", dtype=DataType.INT64),
|
45
|
+
FeatureSpec(name="token_str", dtype=DataType.STRING),
|
46
|
+
],
|
47
|
+
shape=(-1,),
|
48
|
+
),
|
49
|
+
],
|
50
|
+
)
|
51
|
+
```
|
52
|
+
|
53
|
+
- Signature for token-classification task has been changed from
|
54
|
+
|
55
|
+
```python
|
56
|
+
ModelSignature(
|
57
|
+
inputs=[
|
58
|
+
FeatureSpec(name="inputs", dtype=DataType.STRING),
|
59
|
+
],
|
60
|
+
outputs=[
|
61
|
+
FeatureSpec(name="outputs", dtype=DataType.STRING),
|
62
|
+
],
|
63
|
+
)
|
64
|
+
```
|
65
|
+
|
66
|
+
to
|
67
|
+
|
68
|
+
```python
|
69
|
+
ModelSignature(
|
70
|
+
inputs=[FeatureSpec(name="inputs", dtype=DataType.STRING)],
|
71
|
+
outputs=[
|
72
|
+
FeatureGroupSpec(
|
73
|
+
name="outputs",
|
74
|
+
specs=[
|
75
|
+
FeatureSpec(name="word", dtype=DataType.STRING),
|
76
|
+
FeatureSpec(name="score", dtype=DataType.DOUBLE),
|
77
|
+
FeatureSpec(name="entity", dtype=DataType.STRING),
|
78
|
+
FeatureSpec(name="index", dtype=DataType.INT64),
|
79
|
+
FeatureSpec(name="start", dtype=DataType.INT64),
|
80
|
+
FeatureSpec(name="end", dtype=DataType.INT64),
|
81
|
+
],
|
82
|
+
shape=(-1,),
|
83
|
+
),
|
84
|
+
],
|
85
|
+
)
|
86
|
+
```
|
87
|
+
|
88
|
+
- Signature for question-answering task when top_k is larger than 1 has been changed from
|
89
|
+
|
90
|
+
```python
|
91
|
+
ModelSignature(
|
92
|
+
inputs=[
|
93
|
+
FeatureSpec(name="question", dtype=DataType.STRING),
|
94
|
+
FeatureSpec(name="context", dtype=DataType.STRING),
|
95
|
+
],
|
96
|
+
outputs=[
|
97
|
+
FeatureSpec(name="outputs", dtype=DataType.STRING),
|
98
|
+
],
|
99
|
+
)
|
100
|
+
```
|
101
|
+
|
102
|
+
to
|
103
|
+
|
104
|
+
```python
|
105
|
+
ModelSignature(
|
106
|
+
inputs=[
|
107
|
+
FeatureSpec(name="question", dtype=DataType.STRING),
|
108
|
+
FeatureSpec(name="context", dtype=DataType.STRING),
|
109
|
+
],
|
110
|
+
outputs=[
|
111
|
+
FeatureGroupSpec(
|
112
|
+
name="answers",
|
113
|
+
specs=[
|
114
|
+
FeatureSpec(name="score", dtype=DataType.DOUBLE),
|
115
|
+
FeatureSpec(name="start", dtype=DataType.INT64),
|
116
|
+
FeatureSpec(name="end", dtype=DataType.INT64),
|
117
|
+
FeatureSpec(name="answer", dtype=DataType.STRING),
|
118
|
+
],
|
119
|
+
shape=(-1,),
|
120
|
+
),
|
121
|
+
],
|
122
|
+
)
|
123
|
+
```
|
124
|
+
|
125
|
+
- Signature for text-classification task when top_k is `None` has been changed from
|
126
|
+
|
127
|
+
```python
|
128
|
+
ModelSignature(
|
129
|
+
inputs=[
|
130
|
+
FeatureSpec(name="text", dtype=DataType.STRING),
|
131
|
+
FeatureSpec(name="text_pair", dtype=DataType.STRING),
|
132
|
+
],
|
133
|
+
outputs=[
|
134
|
+
FeatureSpec(name="label", dtype=DataType.STRING),
|
135
|
+
FeatureSpec(name="score", dtype=DataType.DOUBLE),
|
136
|
+
],
|
137
|
+
)
|
138
|
+
```
|
139
|
+
|
140
|
+
to
|
141
|
+
|
142
|
+
```python
|
143
|
+
ModelSignature(
|
144
|
+
inputs=[
|
145
|
+
FeatureSpec(name="text", dtype=DataType.STRING),
|
146
|
+
],
|
147
|
+
outputs=[
|
148
|
+
FeatureSpec(name="label", dtype=DataType.STRING),
|
149
|
+
FeatureSpec(name="score", dtype=DataType.DOUBLE),
|
150
|
+
],
|
151
|
+
)
|
152
|
+
```
|
153
|
+
|
154
|
+
- Signature for text-classification task when top_k is not `None` has been changed from
|
155
|
+
|
156
|
+
```python
|
157
|
+
ModelSignature(
|
158
|
+
inputs=[
|
159
|
+
FeatureSpec(name="text", dtype=DataType.STRING),
|
160
|
+
FeatureSpec(name="text_pair", dtype=DataType.STRING),
|
161
|
+
],
|
162
|
+
outputs=[
|
163
|
+
FeatureSpec(name="outputs", dtype=DataType.STRING),
|
164
|
+
],
|
165
|
+
)
|
166
|
+
```
|
167
|
+
|
168
|
+
to
|
169
|
+
|
170
|
+
```python
|
171
|
+
ModelSignature(
|
172
|
+
inputs=[
|
173
|
+
FeatureSpec(name="text", dtype=DataType.STRING),
|
174
|
+
],
|
175
|
+
outputs=[
|
176
|
+
FeatureGroupSpec(
|
177
|
+
name="labels",
|
178
|
+
specs=[
|
179
|
+
FeatureSpec(name="label", dtype=DataType.STRING),
|
180
|
+
FeatureSpec(name="score", dtype=DataType.DOUBLE),
|
181
|
+
],
|
182
|
+
shape=(-1,),
|
183
|
+
),
|
184
|
+
],
|
185
|
+
)
|
186
|
+
```
|
187
|
+
|
188
|
+
- Signature for text-generation task has been changed from
|
189
|
+
|
190
|
+
```python
|
191
|
+
ModelSignature(
|
192
|
+
inputs=[FeatureSpec(name="inputs", dtype=DataType.STRING)],
|
193
|
+
outputs=[
|
194
|
+
FeatureSpec(name="outputs", dtype=DataType.STRING),
|
195
|
+
],
|
196
|
+
)
|
197
|
+
```
|
198
|
+
|
199
|
+
to
|
200
|
+
|
201
|
+
```python
|
202
|
+
ModelSignature(
|
203
|
+
inputs=[
|
204
|
+
FeatureGroupSpec(
|
205
|
+
name="inputs",
|
206
|
+
specs=[
|
207
|
+
FeatureSpec(name="role", dtype=DataType.STRING),
|
208
|
+
FeatureSpec(name="content", dtype=DataType.STRING),
|
209
|
+
],
|
210
|
+
shape=(-1,),
|
211
|
+
),
|
212
|
+
],
|
213
|
+
outputs=[
|
214
|
+
FeatureGroupSpec(
|
215
|
+
name="outputs",
|
216
|
+
specs=[
|
217
|
+
FeatureSpec(name="generated_text", dtype=DataType.STRING),
|
218
|
+
],
|
219
|
+
shape=(-1,),
|
220
|
+
)
|
221
|
+
],
|
222
|
+
)
|
223
|
+
```
|
224
|
+
|
225
|
+
- Registry: PyTorch and TensorFlow models now expect a single tensor input/output by default when logging to Model
|
226
|
+
Registry. To use multiple tensors (previous behavior), set `options={"multiple_inputs": True}`.
|
227
|
+
|
228
|
+
Example with single tensor input:
|
229
|
+
|
230
|
+
```python
|
231
|
+
import torch
|
232
|
+
|
233
|
+
class TorchModel(torch.nn.Module):
|
234
|
+
def __init__(self, n_input: int, n_hidden: int, n_out: int, dtype: torch.dtype = torch.float32) -> None:
|
235
|
+
super().__init__()
|
236
|
+
self.model = torch.nn.Sequential(
|
237
|
+
torch.nn.Linear(n_input, n_hidden, dtype=dtype),
|
238
|
+
torch.nn.ReLU(),
|
239
|
+
torch.nn.Linear(n_hidden, n_out, dtype=dtype),
|
240
|
+
torch.nn.Sigmoid(),
|
241
|
+
)
|
242
|
+
|
243
|
+
def forward(self, tensor: torch.Tensor) -> torch.Tensor:
|
244
|
+
return cast(torch.Tensor, self.model(tensor))
|
245
|
+
|
246
|
+
# Sample usage:
|
247
|
+
data_x = torch.rand(size=(batch_size, n_input))
|
248
|
+
|
249
|
+
# Log model with single tensor
|
250
|
+
reg.log_model(
|
251
|
+
model=model,
|
252
|
+
...,
|
253
|
+
sample_input_data=data_x
|
254
|
+
)
|
255
|
+
|
256
|
+
# Run inference with single tensor
|
257
|
+
mv.run(data_x)
|
258
|
+
```
|
259
|
+
|
260
|
+
For multiple tensor inputs/outputs, use:
|
261
|
+
|
262
|
+
```python
|
263
|
+
reg.log_model(
|
264
|
+
model=model,
|
265
|
+
...,
|
266
|
+
sample_input_data=[data_x_1, data_x_2],
|
267
|
+
options={"multiple_inputs": True}
|
268
|
+
)
|
269
|
+
```
|
270
|
+
|
271
|
+
- Registry: Default `enable_explainability` to False when the model can be deployed to Snowpark Container Services.
|
272
|
+
|
273
|
+
### New Features
|
274
|
+
|
275
|
+
- Registry: Added support to single `torch.Tensor`, `tensorflow.Tensor` and `tensorflow.Variable` as input or output
|
276
|
+
data.
|
277
|
+
- Registry: Support [`xgboost.DMatrix`](https://xgboost.readthedocs.io/en/stable/python/python_api.html#xgboost.DMatrix)
|
278
|
+
datatype for XGBoost models.
|
279
|
+
|
280
|
+
## 1.7.5 (03-06-2025)
|
281
|
+
|
282
|
+
- Support Python 3.12.
|
283
|
+
- Explainability: Support native and snowflake.ml.modeling sklearn pipeline
|
284
|
+
|
285
|
+
### Bug Fixes
|
286
|
+
|
287
|
+
- Registry: Fixed a compatibility issue when using `snowflake-ml-python` 1.7.0 or greater to save a `tensorflow.keras`
|
288
|
+
model with `keras` 2.x, if `relax_version` is set or default to True, and newer version of `snowflake-ml-python`
|
289
|
+
is available in Snowflake Anaconda Channel, model could not be run in Snowflake. If you have such model, you could
|
290
|
+
use the latest version of `snowflake-ml-python` and call `ModelVersion.load` to load it back, and re-log it.
|
291
|
+
Alternatively, you can prevent this issue by setting `relax_version=False` when saving the model.
|
292
|
+
- Registry: Removed the validation that disallows data that does not have non-null values being passed to
|
293
|
+
`ModelVersion.run`.
|
294
|
+
- ML Job (PrPr): No longer require CREATE STAGE privilege if `stage_name` points to an existing stage
|
295
|
+
- ML Job (PrPr): Fixed a bug causing some payload source and entrypoint path
|
296
|
+
combinations to be erroneously rejected with
|
297
|
+
`ValueError(f"{self.entrypoint} must be a subpath of {self.source}")`
|
298
|
+
- ML Job (PrPr): Fixed a bug in Ray cluster startup config which caused certain Runtime APIs to fail
|
299
|
+
|
300
|
+
### New Features
|
301
|
+
|
302
|
+
- Registry: Added support for handling Hugging Face model configurations with auto-mapping functionality.
|
303
|
+
- Registry: Added support for `keras` 3.x model with `tensorflow` and `pytorch` backend
|
304
|
+
- ML Job (PrPr): Support any serializable (pickleable) argument for `@remote` decorated functions
|
305
|
+
|
306
|
+
## 1.7.4 (01-28-2025)
|
4
307
|
|
5
308
|
- FileSet: The `snowflake.ml.fileset.FileSet` has been deprecated and will be removed in a future version.
|
6
309
|
Use [snowflake.ml.dataset.Dataset](https://docs.snowflake.com/en/developer-guide/snowflake-ml/dataset) and
|
7
310
|
[snowflake.ml.data.DataConnector](https://docs.snowflake.com/en/developer-guide/snowpark-ml/reference/latest/api/data/snowflake.ml.data.data_connector.DataConnector)
|
8
311
|
instead.
|
312
|
+
- Registry: `ModelVersion.run` on a service would require redeploying the service once account opts into nested function.
|
9
313
|
|
10
314
|
### Bug Fixes
|
11
315
|
|
12
316
|
- Registry: Fixed an issue that the hugging face pipeline is loaded using incorrect dtype.
|
13
317
|
- Registry: Fixed an issue that only 1 row is used when infer the model signature in the modeling model.
|
14
318
|
|
15
|
-
### Behavior Changes
|
16
|
-
|
17
|
-
- Registry: `ModelVersion.run` on a service would require redeploying the service once account opts into nested function.
|
18
|
-
|
19
319
|
### New Features
|
20
320
|
|
21
321
|
- Add new `snowflake.ml.jobs` preview API for running headless workloads on SPCS using
|
22
322
|
[Container Runtime for ML](https://docs.snowflake.com/en/developer-guide/snowflake-ml/container-runtime-ml)
|
23
323
|
- Added `guardrails` option to Cortex `complete` function, enabling
|
24
324
|
[Cortex Guard](https://docs.snowflake.com/en/user-guide/snowflake-cortex/llm-functions#cortex-guard) support
|
325
|
+
- Model Monitoring: Expose Model Monitoring Python API by default.
|
25
326
|
|
26
327
|
## 1.7.3 (2025-01-08)
|
27
328
|
|
@@ -29,6 +330,7 @@
|
|
29
330
|
- Bumped the requirements of `fsspec` and `s3fs` to `>=2024.6.1,<2026`
|
30
331
|
- Bumped the requirement of `mlflow` to `>=2.16.0, <3`
|
31
332
|
- Registry: Support 500+ features for model registry
|
333
|
+
- Feature Store: Add support for `cluster_by` for feature views.
|
32
334
|
|
33
335
|
### Bug Fixes
|
34
336
|
|
@@ -146,6 +448,10 @@ class ExamplePipelineModel(custom_model.CustomModel):
|
|
146
448
|
- Data Connector: Add the option of passing a `None` sized batch to `to_torch_dataset` for better
|
147
449
|
interoperability with PyTorch DataLoader.
|
148
450
|
- Model Registry: Support [pandas.CategoricalDtype](https://pandas.pydata.org/docs/reference/api/pandas.CategoricalDtype.html#pandas-categoricaldtype)
|
451
|
+
- Limitations:
|
452
|
+
- The native categorical data handling handling by XGBoost using `enable_categorical=True` is not supported.
|
453
|
+
Instead please use [`sklearn.pipeline`](https://scikit-learn.org/stable/modules/generated/sklearn.pipeline.Pipeline.html)
|
454
|
+
to preprocess the categorical datatype and log the pipeline with the XGBoost model.
|
149
455
|
- Registry: It is now possible to pass `signatures` and `sample_input_data` at the same time to capture background
|
150
456
|
data from explainablity and data lineage.
|
151
457
|
|