Complete the code to register a feature set in the feature store.
feature_store.[1](feature_set)Use register_feature_set to add a new feature set to the feature store for sharing.
Complete the code to retrieve a shared feature set by name.
shared_features = feature_store.[1]('customer_features')
The get_feature_set method fetches a feature set by its name for use.
Fix the error in the code to share features across teams by updating the feature set.
feature_store.[1](feature_set)Use update_feature_set to modify an existing feature set for sharing updates.
Fill both blanks to create a feature view from a feature set and share it.
feature_view = feature_store.[1](feature_set) feature_store.[2](feature_view)
First, create a feature view from the feature set, then register it to share with teams.
Fill all three blanks to define a feature set dictionary with name, features, and description.
feature_set = {
'name': '[1]',
'features': [2],
'description': '[3]'
}The feature set is named 'customer_features', includes the listed features, and has a descriptive text.