-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: sample code for Vertex AI Feature Store
PiperOrigin-RevId: 640224428
- Loading branch information
1 parent
bc8b14a
commit 6c14e8b
Showing
8 changed files
with
170 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
samples/model-builder/feature_store/create_bigtable_feature_online_store_sample.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 2024 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# [START aiplatform_sdk_create_bigtable_feature_online_store_sample] | ||
|
||
from google.cloud import aiplatform | ||
import vertexai | ||
|
||
|
||
def create_bigtable_feature_online_store_sample( | ||
project: str, | ||
location: str, | ||
feature_online_store_id: str, | ||
): | ||
aiplatform.init(project=project, location=location) | ||
fos = vertexai.resources.preview.FeatureOnlineStore.create_bigtable_store( | ||
feature_online_store_id | ||
) | ||
return fos | ||
|
||
|
||
# [END aiplatform_sdk_create_bigtable_feature_online_store_sample] |
35 changes: 35 additions & 0 deletions
35
samples/model-builder/feature_store/create_bigtable_feature_online_store_sample_test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 2024 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from feature_store import create_bigtable_feature_online_store_sample | ||
|
||
import test_constants as constants | ||
|
||
|
||
def test_create_bigtable_feature_online_store_sample( | ||
mock_sdk_init, mock_create_feature_online_store | ||
): | ||
create_bigtable_feature_online_store_sample.create_bigtable_feature_online_store_sample( | ||
project=constants.PROJECT, | ||
location=constants.LOCATION, | ||
feature_online_store_id=constants.FEATURE_ONLINE_STORE_ID, | ||
) | ||
|
||
mock_sdk_init.assert_called_once_with( | ||
project=constants.PROJECT, location=constants.LOCATION | ||
) | ||
|
||
mock_create_feature_online_store.assert_called_once_with( | ||
constants.FEATURE_ONLINE_STORE_ID | ||
) |
33 changes: 33 additions & 0 deletions
33
samples/model-builder/feature_store/create_optimized_public_feature_online_store_sample.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 2024 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# [START aiplatform_sdk_create_optimized_public_feature_online_store_sample] | ||
|
||
from google.cloud import aiplatform | ||
import vertexai | ||
|
||
|
||
def create_optimized_public_feature_online_store_sample( | ||
project: str, | ||
location: str, | ||
feature_online_store_id: str, | ||
): | ||
aiplatform.init(project=project, location=location) | ||
fos = vertexai.resources.preview.FeatureOnlineStore.create_optimized_store( | ||
feature_online_store_id | ||
) | ||
return fos | ||
|
||
|
||
# [END aiplatform_sdk_create_optimized_public_feature_online_store_sample] |
35 changes: 35 additions & 0 deletions
35
...s/model-builder/feature_store/create_optimized_public_feature_online_store_sample_test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 2024 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from feature_store import create_optimized_public_feature_online_store_sample | ||
import test_constants as constants | ||
|
||
|
||
def test_create_optimized_feature_online_store_sample( | ||
mock_sdk_init, mock_create_optimized_public_online_store | ||
): | ||
|
||
create_optimized_public_feature_online_store_sample.create_optimized_public_feature_online_store_sample( | ||
project=constants.PROJECT, | ||
location=constants.LOCATION, | ||
feature_online_store_id=constants.FEATURE_ONLINE_STORE_ID, | ||
) | ||
|
||
mock_sdk_init.assert_called_once_with( | ||
project=constants.PROJECT, location=constants.LOCATION | ||
) | ||
|
||
mock_create_optimized_public_online_store.assert_called_once_with( | ||
constants.FEATURE_ONLINE_STORE_ID | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters