Skip to content

Commit bc27096

Browse files
authored
Adding a new feature store notebook (#2043)
* adding new feature store getting started notebook * adding data files * added data to data folder and updated path * added default_bucket() * adding time.sleep * wrapped wait time in function * fixed svg diagram * updated policy and more detail * adding readme * updated readme * updated readme test * added get_record() * updated README * made revisions and updated README
1 parent d8b6ad6 commit bc27096

File tree

6 files changed

+488
-0
lines changed

6 files changed

+488
-0
lines changed

sagemaker-featurestore/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Amazon SageMaker Feature Store
2+
3+
## Introduction to Feature Store
4+
In `feature_store_introduction.ipynb` we demonstrate how to get started with Feature Store, create feature groups, and ingest data into them.
5+
6+
This notebook requires these data sets in `./data/`:
7+
8+
* `feature_store_introduction_customer.csv`
9+
* `feature_store_introduction_orders.csv`
10+
11+
This notebook requires these images in `./images/:
12+
13+
* `feature-store-policy.png`
14+
* `feature_store_data_ingest.svg`.
15+
16+
17+
## Fraud Detection with Feature Store
18+
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`.
19+
20+
## Developer Guide
21+
For detailed information about Feature Store, see the [Feature Store Developer Guide](https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store.html).
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
customer_id,city_code,state_code,country_code
2+
573291,1,49,2
3+
109382,2,40,2
4+
828400,3,31,2
5+
124013,4,5,2
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
customer_id,order_id,order_status,store_id
2+
573291,4132,1,303
3+
109382,5724,0,201
4+
828400,1942,0,431
5+
124013,6782,1,213

0 commit comments

Comments
 (0)