Skip to content

Commit 867bbd4

Browse files
committed
Add TOC to module 0
Signed-off-by: Danny Chiao <danny@tecton.ai>
1 parent eb12cec commit 867bbd4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

module_0/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ We focus on a specific example (that does not include online features + models):
88

99
<h2>Table of Contents</h2>
1010

11-
- [Reviewing Feast concepts](#reviewing-feast-concepts)
1211
- [Installing Feast](#installing-feast)
12+
- [Reviewing Feast concepts](#reviewing-feast-concepts)
1313
- [User flows](#user-flows)
1414
- [User flow 1: ML Platform Team](#user-flow-1-ml-platform-team)
1515
- [Step 0: Setup S3 bucket for registry and file sources](#step-0-setup-s3-bucket-for-registry-and-file-sources)
@@ -31,6 +31,14 @@ We focus on a specific example (that does not include online features + models):
3131
- [User flow 3: Data Scientists](#user-flow-3-data-scientists)
3232
- [Conclusion](#conclusion)
3333

34+
# Installing Feast
35+
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 source:
36+
37+
```bash
38+
pip install "feast[aws]"
39+
pip install s3fs
40+
```
41+
3442
# Reviewing Feast concepts
3543
Let's quickly review some Feast concepts needed to build this use case. You'll need:
3644
| Concept | Requirements |
@@ -41,14 +49,6 @@ Let's quickly review some Feast concepts needed to build this use case. You'll n
4149
| Registry | In `feature_store.yaml`, specifying a path (within an existing S3 bucket) the registry is written to. Users + model servers will pull from this to get the latest registered features + metadata |
4250
| Transformations | Feast supports last mile transformations with `OnDemandFeatureView`s that can be re-used |
4351

44-
# Installing Feast
45-
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 source:
46-
47-
```bash
48-
pip install "feast[aws]"
49-
pip install s3fs
50-
```
51-
5252
# User flows
5353
There are three user groups here worth considering. The ML platform team, the data scientists, and the ML engineers scheduling models in batch.
5454

0 commit comments

Comments
 (0)