Skip to content

Commit

Permalink
Merge pull request #13 from felipenv/main
Browse files Browse the repository at this point in the history
ML-7228 changing feature set preview from deprecated api call
  • Loading branch information
yuribros1974 authored Oct 6, 2024
2 parents 0fd41db + f292117 commit 1dd4afa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions 03-ingest-with-feature-store.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
},
{
Expand Down Expand Up @@ -1244,7 +1244,7 @@
}
],
"source": [
"fstore.preview(user_events_set, user_events_data)"
"user_events_set.preview(user_events_data)"
]
},
{
Expand Down
7 changes: 0 additions & 7 deletions project_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1dd4afa

Please sign in to comment.