Skip to content

Commit e0f3bff

Browse files
committed
Add more Feast descriptions in main README
Signed-off-by: Danny Chiao <danny@tecton.ai>
1 parent 56e9e0e commit e0f3bff

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,25 @@ This workshop aims to teach users about [Feast](http://feast.dev), an open-sourc
66

77
We explain concepts & best practices by example, and also showcase how to address common use cases.
88

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+
912
<img src="images/hero.png" width=600>
1013

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+
1120
### Pre-requisites
1221
This workshop assumes you have the following installed:
1322
- A local development environment that supports running Jupyter notebooks (e.g. VSCode with Jupyter plugin)
1423
- Python 3.7+
1524
- pip
1625
- Docker & Docker Compose (e.g. `brew install docker docker-compose`)
26+
- Terraform ([docs](https://learn.hashicorp.com/tutorials/terraform/install-cli#install-terraform))
27+
- 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))
1728

1829
Since we'll be learning how to leverage Feast in CI/CD, you'll also need to fork this workshop repository.
1930

module_0/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,10 @@ We focus on a specific example (that does not include online features + models):
3737
- [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)
3838

3939
# 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:
4141

4242
```bash
4343
pip install "feast[aws]"
44-
pip install s3fs
4544
```
4645

4746
# Reviewing Feast concepts

0 commit comments

Comments
 (0)