HOTSPOT An ML engineer needs to use Amazon SageMaker Feature Store to create and manage features to train a model. Select and order the steps from the following list to create and use the features in Feature Store. Each step should be selected one time. (Select and order three.) • Access the store to build datasets for training. • Create a feature group. • Ingest the records.
Doesn't it have to be create the feature group first? You can't ingest records if the schema isn't there yet. I think people might confuse this with updating or using existing groups, but "create" comes first in this context.
Yeah, the right flow is create the feature group, then ingest records, finally access the store for training datasets. You need that structure before you can put any records in, and you can’t build a dataset until the features are there. Pretty sure this matches how SageMaker expects you to use Feature Store. Let me know if anyone sees it differently.
