Skip to content

Commit fe92edc

Browse files
authored
Update architecture diagram in README.md
1 parent 3d96905 commit fe92edc

1 file changed

Lines changed: 4 additions & 13 deletions

File tree

README.md

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@
1212

1313
## Overview
1414

15-
Feast (Feature Store) is a tool for managing and serving machine learning features. Feast is the bridge between models and data.
15+
Feast (Feature Store) is an operational data system for managing and serving machine learning features to models in production. Please see our [documentation](https://docs.feast.dev/) for the motivation behind the project.
1616

17-
Feast aims to:
18-
* Provide a unified means of managing feature data from a single person to large enterprises.
19-
* Provide scalable and performant access to feature data when training and serving models.
20-
* Provide consistent and point-in-time correct access to feature data.
21-
* Enable discovery, documentation, and insights into your features.
17+
![](docs/.gitbook/assets/feast-architecture-diagrams.svg)
2218

23-
![](docs/.gitbook/assets/feast-docs-overview-diagram-2.svg)
24-
25-
Feast decouples feature engineering from feature usage, allowing independent development of features and consumption of features. Features that are added to Feast become available immediately for training and serving. Models can retrieve the same features used in training from a low latency online store in production.
26-
This means that new ML projects start with a process of feature selection from a catalog instead of having to do feature engineering from scratch.
2719

2820
```
2921
# Setting things up
@@ -40,15 +32,15 @@ prediction = my_model.predict(fs.get_online_features(customer_features, customer
4032

4133
## Getting Started with Docker Compose
4234

43-
Clone the latest stable version of the [Feast repository](https://github.com/gojek/feast/) and navigate to the `infra/docker-compose` sub-directory:
35+
Clone the latest stable version of the [Feast repository](https://github.com/feast-dev/feast/) and navigate to the `infra/docker-compose` sub-directory:
4436

4537
```
4638
git clone --depth 1 --branch v0.7.0 https://github.com/feast-dev/feast.git
4739
cd feast/infra/docker-compose
4840
cp .env.sample .env
4941
```
5042

51-
The `.env` should be configured based on your environment. A GCP service account can be added if BigQuery will be used for historical serving (storing and retrieving training data).
43+
The `.env` file can optionally be configured based on your environment.
5244

5345
Bring up Feast:
5446
```
@@ -61,7 +53,6 @@ The command above will bring up a complete Feast deployment with a [Jupyter Note
6153

6254
Please refer to the official documentation at <https://docs.feast.dev>
6355

64-
* [Why Feast?](https://docs.feast.dev/why-feast)
6556
* [Concepts](https://docs.feast.dev/user-guide/overview)
6657
* [Installation](https://docs.feast.dev/getting-started)
6758
* [Examples](https://github.com/feast-dev/feast/blob/master/examples/)

0 commit comments

Comments
 (0)