From 882956b16e439a1aa34086bb8d85aac1a277e480 Mon Sep 17 00:00:00 2001 From: Felipe Vianna Date: Tue, 30 Jul 2024 16:26:39 +0200 Subject: [PATCH 1/2] changing feature set preview from deprecated api call --- 03-ingest-with-feature-store.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/03-ingest-with-feature-store.ipynb b/03-ingest-with-feature-store.ipynb index fbcfdab..2690df3 100644 --- a/03-ingest-with-feature-store.ipynb +++ b/03-ingest-with-feature-store.ipynb @@ -859,7 +859,7 @@ ], "source": [ "# Preview the resulting features from ingesting sample data (transactions_data)\n", - "fstore.preview(transaction_set, transactions_data)" + "transaction_set.preview(transactions_data)" ] }, { @@ -1244,7 +1244,7 @@ } ], "source": [ - "fstore.preview(user_events_set, user_events_data)" + "user_events_set.preview(user_events_data)" ] }, { From f292117fd878d7049a25938be6734df29cab4eec Mon Sep 17 00:00:00 2001 From: Felipe Vianna Date: Wed, 2 Oct 2024 14:04:48 +0200 Subject: [PATCH 2/2] removing get-offline-features from project setup --- project_setup.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/project_setup.py b/project_setup.py index 21b3acc..d33f95d 100644 --- a/project_setup.py +++ b/project_setup.py @@ -36,13 +36,6 @@ def setup(project: mlrun.projects.MlrunProject) -> mlrun.projects.MlrunProject: mlrun.get_run_db().get_hub_catalog(source_name="default", force_refresh=True) # Set the functions: - _set_function( - project=project, - func="hub://get_offline_features", - name="get-vector", - kind="job", - ) - _set_function( project=project, func="hub://feature_selection",