Skip to content

Commit 913e497

Browse files
woopgitbook-bot
authored andcommitted
GitBook: [master] 62 pages modified
1 parent f9b13b0 commit 913e497

4 files changed

Lines changed: 38 additions & 8 deletions

File tree

docs/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
* [Overview](tutorials/tutorials-overview.md)
3030
* [Driver ranking](tutorials/driver-ranking-with-feast.md)
3131
* [Fraud detection on GCP](tutorials/fraud-detection.md)
32+
* [Real-time credit scoring on AWS](tutorials/real-time-credit-scoring-on-aws.md)
3233

3334
## How-to Guides
3435

docs/tutorials/driver-ranking-with-feast.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
---
22
description: >-
33
Making a prediction using a linear regression model is a common use case in
4-
ML. This model predicts if a driver will complete a trip based on a features
4+
ML. This model predicts if a driver will complete a trip based on features
55
ingested into Feast.
66
---
77

88
# Driver ranking
99

10-
In this example you'll learn how to use some of the key functionality in Feast. The tutorial runs in both local mode and on the Google Cloud Platform \(GCP\). For GCP, you must have access to a GCP project already, including read and write permissions to BigQuery.
10+
In this example, you'll learn how to use some of the key functionality in Feast. The tutorial runs in both local mode and on the Google Cloud Platform \(GCP\). For GCP, you must have access to a GCP project already, including read and write permissions to BigQuery.
1111

1212
## [Driver Ranking Example](https://github.com/feast-dev/feast-driver-ranking-tutorial)
1313

14-
This tutorial guides you in how to use Feast with [scikit-learn](https://scikit-learn.org/stable/). You will learn how to:
14+
This tutorial guides you on how to use Feast with [Scikit-learn](https://scikit-learn.org/stable/). You will learn how to:
1515

16-
1. Train a model locally \(on your laptop\) using data from [BigQuery](https://cloud.google.com/bigquery/)
17-
2. Test the model for online inference using [SQLite](https://www.sqlite.org/index.html) \(for fast iteration\)
18-
3. Test the model for online inference using [Firestore](https://firebase.google.com/products/firestore) \(for production use\)
16+
* Train a model locally \(on your laptop\) using data from [BigQuery](https://cloud.google.com/bigquery/)
17+
* Test the model for online inference using [SQLite](https://www.sqlite.org/index.html) \(for fast iteration\)
18+
* Test the model for online inference using [Firestore](https://firebase.google.com/products/firestore) \(for production use\)
1919

2020
Try it and let us know what you think!
2121

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
description: >-
3+
Credit scoring models are used to approve or reject loan applications. In this
4+
tutorial we will build a real-time credit scoring system on AWS.
5+
---
6+
7+
# Real-time credit scoring on AWS
8+
9+
When individuals apply for loans from banks and other credit providers, the decision to approve a loan application is often made through a statistical model. This model uses information about a customer to determine the likelihood that they will repay or default on a loan, in a process called credit scoring.
10+
11+
In this example, we will demonstrate how a real-time credit scoring system can be built using Feast and Scikit-Learn on AWS, using feature data from S3.
12+
13+
This real-time system accepts a loan request from a customer and responds within 100ms with a decision on whether their loan has been approved or rejected.
14+
15+
## [Real-time Credit Scoring Example](https://github.com/feast-dev/real-time-credit-scoring-on-aws-tutorial)
16+
17+
This end-to-end tutorial will take you through the following steps:
18+
19+
* Deploying S3 with Parquet as your primary data source, containing both [loan features](https://github.com/feast-dev/real-time-credit-scoring-on-aws-tutorial/blob/22fc6c7272ef033e7ba0afc64ffaa6f6f8fc0277/data/loan_table_sample.csv) and [zip code features](https://github.com/feast-dev/real-time-credit-scoring-on-aws-tutorial/blob/22fc6c7272ef033e7ba0afc64ffaa6f6f8fc0277/data/zipcode_table_sample.csv)
20+
* Deploying Redshift as the interface Feast uses to build training datasets
21+
* Registering your features with Feast and configuring DynamoDB for online serving
22+
* Building a training dataset with Feast to train your credit scoring model
23+
* Loading feature values from S3 into DynamoDB
24+
* Making online predictions with your credit scoring model using features from DynamoDB
25+
26+
| ![](../.gitbook/assets/github-mark-32px.png)[ View Source on Github](https://github.com/feast-dev/real-time-credit-scoring-on-aws-tutorial) |
27+
| :--- |
28+
29+
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Overview
22

3-
These feast tutorials showcase how to use Feast to simplify end to end model training / serving.
3+
These Feast tutorials showcase how to use Feast to simplify end to end model training / serving.
44

55
{% page-ref page="fraud-detection.md" %}
66

77
{% page-ref page="driver-ranking-with-feast.md" %}
88

9-
9+
{% page-ref page="real-time-credit-scoring-on-aws.md" %}
1010

0 commit comments

Comments
 (0)