diff --git a/03-ingest-with-feature-store.ipynb b/03-ingest-with-feature-store.ipynb index 9379db4..ad4394d 100644 --- a/03-ingest-with-feature-store.ipynb +++ b/03-ingest-with-feature-store.ipynb @@ -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)" ] }, {