-
Notifications
You must be signed in to change notification settings - Fork 350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(samples): read, import, batch_serve, batch_create features #1046
docs(samples): read, import, batch_serve, batch_create features #1046
Conversation
Co-authored-by: Morgan Du <[email protected]>
Co-authored-by: Morgan Du <[email protected]>
Co-authored-by: Morgan Du <[email protected]>
) * 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 <[email protected]> * Update samples/model-builder/test_constants.py Co-authored-by: Morgan Du <[email protected]> * Update samples/model-builder/create_featurestore_sample_test.py Co-authored-by: Morgan Du <[email protected]> Co-authored-by: Morgan Du <[email protected]>
Co-authored-by: Morgan Du <[email protected]>
Here is the summary of changes. You are about to add 4 region tags.
This comment is generated by snippet-bot.
|
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", | ||
}, | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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", | |
}, | |
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
Migrated remaining GAPIC featurestore samples to SDK.