Skip to content

Commit 84ea23d

Browse files
adchiagitbook-bot
authored andcommitted
GitBook: [#3] Remove extra stars from Gitbook in 0.15
1 parent d35fe44 commit 84ea23d

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

docs/getting-started/quickstart.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ In this tutorial we will
99

1010
You can run this tutorial in Google Colab or run it on your localhost, following the guided steps below.
1111

12-
![](../.gitbook/assets/colab\_logo\_32px.png)[**Run in Google Colab**](https://colab.research.google.com/github/feast-dev/feast/blob/master/examples/quickstart/quickstart.ipynb)****
12+
![](../.gitbook/assets/colab\_logo\_32px.png)[**Run in Google Colab**](https://colab.research.google.com/github/feast-dev/feast/blob/master/examples/quickstart/quickstart.ipynb)
1313

1414
## Overview
1515

16-
In this tutorial, we use feature stores to generate training data and power online model inference for a ride-sharing driver satisfaction prediction model. Feast solves several common issues in this flow: 
16+
In this tutorial, we use feature stores to generate training data and power online model inference for a ride-sharing driver satisfaction prediction model. Feast solves several common issues in this flow:
1717

1818
1. **Training-serving skew and complex data joins:** Feature values often exist across multiple tables. Joining these datasets can be complicated, slow, and error-prone.
1919
* Feast joins these tables with battle-tested logic that ensures _point-in-time_ correctness so future feature values do not leak to models.
20-
* _\*Upcoming_: Feast alerts users to offline / online skew with data quality monitoring. 
21-
2. **Online feature availability:** At inference time, models often need access to features that aren't readily available and need to be precomputed from other datasources. 
20+
* _\*Upcoming_: Feast alerts users to offline / online skew with data quality monitoring.
21+
2. **Online feature availability:** At inference time, models often need access to features that aren't readily available and need to be precomputed from other datasources.
2222
* Feast manages deployment to a variety of online stores (e.g. DynamoDB, Redis, Google Cloud Datastore) and ensures necessary features are consistently _available_ and _freshly computed_ at inference time.
2323
3. **Feature reusability and model versioning:** Different teams within an organization are often unable to reuse features across projects, resulting in duplicate feature creation logic. Models have data dependencies that need to be versioned, for example when running A/B tests on model versions.
24-
* Feast enables discovery of and collaboration on previously used features and enables versioning of sets of features (via _feature services_). 
24+
* Feast enables discovery of and collaboration on previously used features and enables versioning of sets of features (via _feature services_).
2525
* Feast enables feature transformation so users can re-use transformation logic across online / offline usecases and across models.
2626

2727
## Step 1: Install Feast
@@ -40,7 +40,7 @@ pip install feast
4040

4141
## Step 2: Create a feature repository
4242

43-
Bootstrap a new feature repository using `feast init` from the command line. 
43+
Bootstrap a new feature repository using `feast init` from the command line.
4444

4545
{% tabs %}
4646
{% tab title="Bash" %}

docs/getting-started/third-party-integrations.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Third party integrations
22

3-
We integrate with a wide set of tools and technologies so you can make Feast work in your existing stack. Many of these integrations are maintained as plugins to the main Feast repo. 
3+
We integrate with a wide set of tools and technologies so you can make Feast work in your existing stack. Many of these integrations are maintained as plugins to the main Feast repo.
44

55
{% hint style="info" %}
66
Don't see your offline store or online store of choice here? Check our our guides to make a custom one!
@@ -19,7 +19,7 @@ Don't see your offline store or online store of choice here? Check our our guide
1919
* [x] [Synapse source (community plugin)](https://github.com/Azure/feast-azure)
2020
* [x] [Hive (community plugin)](https://github.com/baineng/feast-hive)
2121
* [x] [Postgres (community plugin)](https://github.com/nossrannug/feast-postgres)
22-
* [ ] Kafka source (Planned for Q4 2021)
22+
* [x] Kafka source (with [push support into the online store](../reference/alpha-stream-ingestion.md))
2323
* [ ] Snowflake source (Planned for Q4 2021)
2424
* [ ] HTTP source
2525

@@ -53,6 +53,3 @@ Don't see your offline store or online store of choice here? Check our our guide
5353
* [ ] Cloud Run
5454
* [ ] Kubernetes
5555
* [ ] KNative
56-
57-
58-

0 commit comments

Comments
 (0)