You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,25 @@ This workshop aims to teach users about [Feast](http://feast.dev), an open-sourc
6
6
7
7
We explain concepts & best practices by example, and also showcase how to address common use cases.
8
8
9
+
### What is Feast?
10
+
Feast is an operational system for managing and serving machine learning features to models in production. It can serve features from a low-latency online store (for real-time prediction) or from an offline store (for batch scoring).
11
+
9
12
<imgsrc="images/hero.png"width=600>
10
13
14
+
### Why Feast?
15
+
Feast solves several common challenges teams face:
16
+
1. Feature reusability and model versioning across teams
17
+
2. Training-serving skew and complex point-in-time-correct data joins
18
+
3. Online feature availability
19
+
11
20
### Pre-requisites
12
21
This workshop assumes you have the following installed:
13
22
- A local development environment that supports running Jupyter notebooks (e.g. VSCode with Jupyter plugin)
- An AWS account setup with credentials(e.g see [AWS credentials quickstart](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-quickstart.html#cli-configure-quickstart-creds))
17
28
18
29
Since we'll be learning how to leverage Feast in CI/CD, you'll also need to fork this workshop repository.
Copy file name to clipboardExpand all lines: module_0/README.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,11 +37,10 @@ We focus on a specific example (that does not include online features + models):
37
37
-[Can I call `get_historical_features` without an entity dataframe? I want features for all entities.](#can-i-call-get_historical_features-without-an-entity-dataframe-i-want-features-for-all-entities)
38
38
39
39
# Installing Feast
40
-
Before we get started, first install Feast with AWS dependencies. Due to a bug in Feast 0.21, we'll also need s3fs for this tutorial to directly fetch from an S3 data source:
40
+
Before we get started, first install Feast with AWS dependencies:
0 commit comments