docs(samples): read, import, batch_serve, batch_create features#1046
Merged
nayaknishant merged 39 commits intogoogleapis:mainfrom Mar 8, 2022
Merged
docs(samples): read, import, batch_serve, batch_create features#1046nayaknishant merged 39 commits intogoogleapis:mainfrom
nayaknishant merged 39 commits intogoogleapis:mainfrom
Conversation
Co-authored-by: Morgan Du <morgandu@google.com>
Co-authored-by: Morgan Du <morgandu@google.com>
Co-authored-by: Morgan Du <morgandu@google.com>
) * feat: SDK feature store samples (create/delete fs) * feat: adding to conftest.py * docs(samples): fixed testing * docs(samples): fixed testing * docs(samples): fixed testing * docs(samples) added changes * docs(samples): style issues * Update samples/model-builder/create_featurestore_sample_test.py Co-authored-by: Morgan Du <morgandu@google.com> * Update samples/model-builder/test_constants.py Co-authored-by: Morgan Du <morgandu@google.com> * Update samples/model-builder/create_featurestore_sample_test.py Co-authored-by: Morgan Du <morgandu@google.com> Co-authored-by: Morgan Du <morgandu@google.com>
Co-authored-by: Morgan Du <morgandu@google.com>
|
Here is the summary of changes. You are about to add 4 region tags.
This comment is generated by snippet-bot.
|
morgandu
suggested changes
Mar 3, 2022
morgandu
approved these changes
Mar 8, 2022
Comment on lines
34
to
41
| FEATURE_CONFIGS = { | ||
| "age": {"value_type": "INT64", "description": "User age"}, | ||
| "gender": {"value_type": "STRING", "description": "User gender"}, | ||
| "liked_genres": { | ||
| "value_type": "STRING_ARRAY", | ||
| "description": "An array of genres this user liked", | ||
| }, | ||
| } |
Contributor
There was a problem hiding this comment.
Suggested change
| FEATURE_CONFIGS = { | |
| "age": {"value_type": "INT64", "description": "User age"}, | |
| "gender": {"value_type": "STRING", "description": "User gender"}, | |
| "liked_genres": { | |
| "value_type": "STRING_ARRAY", | |
| "description": "An array of genres this user liked", | |
| }, | |
| } | |
| FEATURE_CONFIGS = { | |
| "age": { | |
| "value_type": "INT64", | |
| "description": "User age" | |
| }, | |
| "gender": { | |
| "value_type": "STRING", | |
| "description": "User gender" | |
| }, | |
| "liked_genres": { | |
| "value_type": "STRING_ARRAY", | |
| "description": "An array of genres this user liked", | |
| }, | |
| } |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migrated remaining GAPIC featurestore samples to SDK.