-
Notifications
You must be signed in to change notification settings - Fork 999
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Move gcp back to 1.47.0 since grpcio-tools 1.48.0 got yanked from pypi #2990
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -204,7 +204,7 @@ jobs: | |
env: | ||
COMPILE_GO: "True" | ||
run: | | ||
pip install 'grpcio-tools==1.48.0' 'pybindgen==0.22.0' | ||
pip install 'grpcio-tools==1.47.0' 'pybindgen==0.22.0' | ||
go install google.golang.org/protobuf/cmd/[email protected] | ||
go install google.golang.org/grpc/cmd/[email protected] | ||
pip install dist/*tar.gz | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,14 +18,7 @@ | |
|
||
## Overview | ||
|
||
Feast (**Fea**ture **St**ore) is an open source feature store for machine learning. Feast is the fastest path to manage existing infrastructure to productionize analytic data for model training and online inference. | ||
|
||
|
||
Feast allows ML platform teams to: | ||
|
||
* **Make features consistently available for training and serving** by managing an _offline store_ (to process historical data for scale-out batch scoring or model training), a low-latency _online store_ (to power real-time prediction)_,_ and a battle-tested _feature server_ (for serving pre-computed features online).  | ||
* **Avoid data leakage** by generating point-in-time correct feature sets so data scientists can focus on feature engineering rather than debugging error-prone dataset joining logic. This ensure that future feature values do not leak to models during training. | ||
* **Decouple ML from data infrastructure** by providing a single data access layer that abstracts feature storage from feature retrieval, ensuring models remain portable as you move from training models to serving models, from batch models to realtime models, and from one data infra system to another. | ||
Feast is an open source feature store for machine learning. Feast is the fastest path to productionizing analytic data for model training and online inference. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. btw @kevjumba why were these changes made? seems like they don't match There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Think this was my bad. Seems like I had missed the jinja template update. Added https://github.com/feast-dev/feast/pull/2994/files to fix There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. stamped #2994 |
||
|
||
Please see our [documentation](https://docs.feast.dev/) for more information about the project. | ||
|
||
|
@@ -169,6 +162,7 @@ The list below contains the functionality that contributors are planning to deve | |
* [x] [In-memory / Pandas](https://docs.feast.dev/reference/offline-stores/file) | ||
* [x] [Custom offline store support](https://docs.feast.dev/how-to-guides/adding-a-new-offline-store) | ||
* **Online Stores** | ||
* [x] [Snowflake](https://docs.feast.dev/reference/online-stores/snowflake) | ||
* [x] [DynamoDB](https://docs.feast.dev/reference/online-stores/dynamodb) | ||
* [x] [Redis](https://docs.feast.dev/reference/online-stores/redis) | ||
* [x] [Datastore](https://docs.feast.dev/reference/online-stores/datastore) | ||
|
@@ -203,6 +197,7 @@ The list below contains the functionality that contributors are planning to deve | |
* [x] DataHub integration (see [DataHub Feast docs](https://datahubproject.io/docs/generated/ingestion/sources/feast/)) | ||
* [x] Feast Web UI (Alpha release. See [docs](https://docs.feast.dev/reference/alpha-web-ui)) | ||
|
||
|
||
## 🎓 Important Resources | ||
|
||
Please refer to the official documentation at [Documentation](https://docs.feast.dev/) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these changes intentional?