diff --git a/notebooks/official/feature_store/feature_store_streaming_ingestion_sdk.ipynb b/notebooks/official/feature_store/feature_store_streaming_ingestion_sdk.ipynb index 31b4fbe4b..6aceca68c 100644 --- a/notebooks/official/feature_store/feature_store_streaming_ingestion_sdk.ipynb +++ b/notebooks/official/feature_store/feature_store_streaming_ingestion_sdk.ipynb @@ -29,7 +29,7 @@ "id": "JAPoU8Sm5E6e" }, "source": [ - "# Feature Store: Streaming ingestion SDK\n", + "# Vertex AI Feature Store (Legacy): Streaming ingestion SDK\n", "\n", "
| \n", @@ -60,7 +60,7 @@ "source": [ "## Overview\n", "\n", - "This notebook introduces Vertex AI Feature Store, a managed cloud service for machine learning engineers and data scientists to store, serve, manage and share machine learning features at a large scale.\n", + "This notebook introduces Vertex AI Feature Store (Legacy), a managed cloud service for machine learning engineers and data scientists to store, serve, manage and share machine learning features at a large scale.\n", "\n", "This notebook assumes that you understand basic Google Cloud concepts such as [Project](https://cloud.google.com/storage/docs/projects), [Storage](https://cloud.google.com/storage) and [Vertex AI](https://cloud.google.com/vertex-ai/docs). Some machine learning knowledge is also helpful but not required.\n", "\n", @@ -75,7 +75,7 @@ "source": [ "### Objective\n", "\n", - "In this notebook, you learn how to use `Vertex AI Feature Store` to import feature data, and to access the feature data for both online serving and offline tasks, such as training.\n", + "In this notebook, you learn how to use `Vertex AI Feature Store (Legacy)` to import feature data, and to access the feature data for both online serving and offline tasks, such as training.\n", "\n", "This tutorial uses the following Google Cloud ML services:\n", "\n", @@ -83,8 +83,8 @@ "\n", "The steps performed include:\n", "\n", - "- Create featurestore, entity type, and feature resources.\n", - "- Import feature data into `Vertex AI Feature Store` resource.\n", + "- Create `Featurestore`, `EntityType`, and `Feature` resources.\n", + "- Import feature data into the `Featurestore` resource.\n", "- Serve online prediction requests using the imported features.\n", "- Access imported features in offline jobs, such as training jobs.\n", "- Use streaming ingestion to ingest small amount of data." @@ -406,11 +406,11 @@ "source": [ "## Terminology and concept\n", "\n", - "### Featurestore data model\n", + "### Vertex AI Feature Store (Legacy) data model\n", "\n", - "Vertex AI Feature Store organizes data with the following 3 important hierarchical concepts:\n", + "Vertex AI Feature Store (Legacy) organizes data with the following 3 important hierarchical concepts:\n", "```\n", - "Featurestore -> Entity type -> Feature\n", + "Featurestore -> EntityType -> Feature\n", "```\n", "* **Featurestore**: The place to store your features\n", "* **Entity type**: Under a featurestore, an entity type describes an object to be modeled, real one or virtual one.\n", @@ -502,7 +502,7 @@ "id": "EpmJq75zXjmT" }, "source": [ - "### Create entity Type\n", + "### Create entity type\n", "\n", "Entity types can be created within the `Featurestore` class. Below, create the `users` and `movies` entity types. A process log is printed out." ] @@ -543,7 +543,7 @@ "id": "G0TS9i5SJnkt" }, "source": [ - "To retrieve an entity type or check that it has been created use the [get_entity_type](https://github.com/googleapis/python-aiplatform/blob/main/google/cloud/aiplatform/featurestore/featurestore.py#L106) or [list_entity_types](https://github.com/googleapis/python-aiplatform/blob/main/google/cloud/aiplatform/featurestore/featurestore.py#L278) methods on the Featurestore object.\n" + "To retrieve an entity type or check that it has been created use the [get_entity_type](https://github.com/googleapis/python-aiplatform/blob/main/google/cloud/aiplatform/featurestore/featurestore.py#L106) or [list_entity_types](https://github.com/googleapis/python-aiplatform/blob/main/google/cloud/aiplatform/featurestore/featurestore.py#L278) methods on the `Featurestore` object.\n" ] }, { @@ -681,7 +681,7 @@ "\n", "**Example of using the `search` method**\n", "\n", - "Use the following code snippet to search for all features within a feature store:\n" + "Use the following code snippet to search for all features within a featurestore:\n" ] }, { @@ -1034,7 +1034,7 @@ "source": [ "## Get batch predictions from your model\n", "\n", - "Batch serving is used to fetch a large batch of feature values for high-throughput, and is typically used for training a model or batch prediction. In this section, you learn how to prepare for training examples by using the Featurestore's batch serve function." + "Batch serving is used to fetch a large batch of feature values for high-throughput, and is typically used for training a model or batch prediction. In this section, you learn how to prepare for training examples by using the batch serve function in Vertex AI Feature Store (Legacy)." ] }, { @@ -1072,8 +1072,7 @@ "-------------------- | ----------------- | --------------- | ---------------- | -------------------- | - | -------- | --------- | -----\n", "2019-11-01T00:00:00Z | bob | 35 | M | [Action, Crime] | movie_02 | The Shining | Horror | 4.8\n", "2019-11-01T00:00:00Z | alice | 55 | F | [Drama, Comedy] | movie_03 | Cinema Paradiso | Romance | 4.5 |\n", - "... | ... | ... | ... | ... | ... | ... | ... | ...\n", - "" + "... | ... | ... | ... | ... | ... | ... | ... | ...\n" ] }, { @@ -1298,7 +1297,7 @@ }, "source": [ "Upon successful completion, the `write_feature_values` API returns an empty response.\n", - "Similarly, ingest data to the `movies` entity type" + "Similarly, ingest data to the `movies` entity type." ] }, { |