Skip to content

Commit

Permalink
Merge pull request #22 from daniels290813/mm-fraud
Browse files Browse the repository at this point in the history
Update 03-ingest-with-feature-store.ipynb
  • Loading branch information
daniels290813 authored Feb 27, 2025
2 parents ad8c053 + d6dee3c commit 718ab48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 03-ingest-with-feature-store.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1520,14 +1520,14 @@
"outputs": [],
"source": [
"# Ingest your transactions dataset through your defined pipeline\n",
"transactions_df = fstore.ingest(transaction_set, transactions_data, \n",
"transactions_df = transaction_set.ingest(transactions_data, \n",
" infer_options=fstore.InferOptions.default())\n",
"\n",
"# Ingestion of your newly created events feature set\n",
"events_df = fstore.ingest(user_events_set, user_events_data)\n",
"events_df = user_events_set.ingest(user_events_data)\n",
"\n",
"# Ingest the labels feature set\n",
"labels_df = fstore.ingest(labels_set, transactions_data)"
"labels_df = labels_set.ingest(transactions_data)"
]
},
{
Expand Down

0 comments on commit 718ab48

Please sign in to comment.