Getting started with SageMaker Feature Store
Following the scenario we described earlier, we are a data science team in a company in the automotive industry. We are working on a fuel efficiency dataset to create ML models. Let's use an Auto MPG dataset from UCI (https://archive.ics.uci.edu/ml/datasets/Auto+MPG), which is a collection of vehicle data and fuel efficiency (measured by miles per gallon) by make from 1970 to 1982, to demonstrate the following:
- How to ingest features into a feature store
- How to access features from an online store and an offline store
- How to update the features year over year and access features using versioning (time travel)
As a prerequisite, please navigate to the code repository and open the chapter04/01-sagemaker_feature_store.ipynb
notebook. First, execute the notebook until the following code to read the data from the source into a pandas DataFrame:
data_url='https://archive.ics.uci.edu/ml/machine-learning-databases...