Full model-monitoring lifecycle for deployed models:
sfr_monitor_source()/sfr_monitor_config()-- configure monitoring sources and settingssfr_add_monitor()/sfr_get_monitor()/sfr_show_model_monitors()/sfr_delete_monitor()-- CRUD for monitorssfr_monitor_drift()/sfr_monitor_performance()/sfr_monitor_stats()-- retrieve monitoring resultssfr_suspend_monitor()/sfr_resume_monitor()/sfr_describe_monitor()-- lifecycle managementsfr_add_monitor_segment()/sfr_drop_monitor_segment()-- segment drill-downsfr_monitor_to_vetiver()/sfr_vetiver_to_metrics()-- vetiver integration bridge
MLflow-style experiment tracking on Snowflake:
sfr_experiment()/sfr_start_run()/sfr_end_run()/sfr_delete_run()/sfr_delete_experiment()-- experiment lifecyclesfr_exp_log_param()/sfr_exp_log_params()-- parameter loggingsfr_exp_log_metric()/sfr_exp_log_metrics()-- metric loggingsfr_exp_log_model()/sfr_exp_log_artifact()-- artifact loggingsfr_exp_list_artifacts()/sfr_exp_download_artifact()-- artifact retrievalsfr_experiment_from_tune()/sfr_experiment_log_best()--tunegrid-search integration
sfr_attach_feature_desc()-- attach human-readable descriptions to individual featuressfr_slice_feature_view()-- create a column-subset slice of a Feature Viewsfr_fv_lineage()-- trace upstream/downstream lineage from a Feature Viewsfr_list_fv_columns()-- list columns and types for a registered Feature Viewsfr_fv_to_df()-- read a Feature View's data as a data.framesfr_fv_query()-- retrieve the underlying SQL query for a Feature Viewsfr_fv_fqn()-- get the fully qualified name of a Feature Viewsfr_load_fvs_from_dataset()-- recover Feature Views associated with a Datasetsfr_update_default_warehouse()-- change the default warehouse for a Feature Storesfr_storage_config()-- create Iceberg-backed storage configurations
sfr_delete_model_version()-- delete a specific model versionsfr_get_model_metric()-- read a single metric by namesfr_delete_model_metric()-- delete a single metricsfr_model_description()-- get or set the version descriptionsfr_show_model_functions()-- list callable functions on a model versionsfr_model_lineage()-- trace upstream/downstream model lineagesfr_export_model()-- export model artifacts to a local directorysfr_get_model_task()-- get the task type of a model versionsfr_list_services()-- list active SPCS services for a model versionsfr_run_batch()-- run batch inference via SPCSsfr_models()-- list Model objects in a registry (vssfr_show_models()which returns a summary DataFrame)
sfr_feature_store():default_iceberg_external_volumesfr_feature_view()/sfr_create_feature_view():initialize,refresh_mode,cluster_by,online_configsfr_register_feature_view():blocksfr_read_feature_view():store_type,keys,feature_namessfr_refresh_feature_view():store_typesfr_get_refresh_history():store_typesfr_generate_training_data():exclude_columns,include_feature_view_timestamp_col,auto_prefix,join_methodsfr_generate_dataset():exclude_columns,include_feature_view_timestamp_col,auto_prefix,join_method,output_typesfr_retrieve_features():exclude_columns,include_feature_view_timestamp_col,auto_prefix,join_method
sfr_log_model():user_files,code_paths,resource_constraint,python_versionsfr_predict():partition_column,strict_input_validationsfr_deploy_model():image_build_compute_pool,cpu_requests,memory_requests,gpu_requests,num_workers,max_batch_rows,block,build_external_access_integrations
sfr_read_feature_view(): Fixedreticulatetype conversion forkeys(R character vectors now correctly converted to Python list of lists of strings) andfeature_namesparameters.sfr_fv_to_df(): Worked around areticulateTypeErroroncluster_byfield type inference by usingfs.read_feature_view()instead offv.to_df().sfr_slice_feature_view(): FixedAttributeErrorwhen theFeatureViewSliceobject lacksname/versionattributes; now falls back to the original request values.sfr_models(): Fixedrbindfailure when modelcommentisNULLby coercing to empty string.sfr_add_monitor_segment()/sfr_drop_monitor_segment(): Added missingsegmentparameter in the Python bridge call.
- Regenerated NAMESPACE and man/ pages for all new exports.
- Extended Feature Store and Model Registry vignettes with new sections covering online serving, aggregation, introspection, slicing, Iceberg, lineage, aliases, SQL-direct inference, batch inference, advanced deployment, and more.
- Updated README.md module overview table and example notebooks table.
- Added this NEWS.md changelog.