Skip to content

Adding a new feature store notebook #2043

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

Merged
merged 14 commits into from
Mar 12, 2021
21 changes: 21 additions & 0 deletions sagemaker-featurestore/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Amazon SageMaker Feature Store

## Introduction to Feature Store
In `feature_store_introduction.ipynb` we demonstrate how to get started with Feature Store, create feature groups, and ingest data into them.

This notebook requires these data sets in `./data/`:

* `feature_store_introduction_customer.csv`
* `feature_store_introduction_orders.csv`

This notebook requires these images in `./images/:

* `feature-store-policy.png`
* `feature_store_data_ingest.svg`.


## Fraud Detection with Feature Store
For an advanced example on how to use Feature Store for a Fraud Detection use-case, see [Fraud Detection with Feature Store](https://sagemaker-examples.readthedocs.io/en/latest/sagemaker-featurestore/sagemaker_featurestore_fraud_detection_python_sdk.html), and it's associated notebook, `sagemaker_featurestore_fraud_detection_python_sdk.ipynb`.

## Developer Guide
For detailed information about Feature Store, see the [Feature Store Developer Guide](https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store.html).
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
customer_id,city_code,state_code,country_code
573291,1,49,2
109382,2,40,2
828400,3,31,2
124013,4,5,2
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
customer_id,order_id,order_status,store_id
573291,4132,1,303
109382,5724,0,201
828400,1942,0,431
124013,6782,1,213
Loading