feast

Feature Store for Machine Learning

Github星跟踪图

Feast - Feature Store for Machine Learning

Overview

Feast (Feature Store) is a tool for managing and serving machine learning features. Feast is the bridge between models and data.

Feast aims to:

  • Provide a unified means of managing feature data from a single person to large enterprises.
  • Provide scalable and performant access to feature data when training and serving models.
  • Provide consistent and point-in-time correct access to feature data.
  • Enable discovery, documentation, and insights into your features.

TL;DR: Feast decouples feature engineering from feature usage. 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.
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.

# Setting things up
fs = feast.Client('feast.example.com')
customer_features = ['CreditScore', 'Balance', 'Age', 'NumOfProducts', 'IsActive']

# Training your model (typically from a notebook or pipeline)
data = fs.get_batch_features(customer_features, customer_entities)
my_model = ml.fit(data)

# Serving predictions (when serving the model in production)
prediction = my_model.predict(fs.get_online_features(customer_features, customer_entities))

Getting Started with Docker Compose

The following commands will start Feast in online-only mode.

git clone https://github.com/gojek/feast.git
cd feast/infra/docker-compose
cp .env.sample .env
docker-compose up -d

A Jupyter Notebook is now available to start using Feast.

Please see the links below to set up Feast for batch/historical serving with BigQuery.

Important resources

Please refer to the official documentation at https://docs.feast.dev

Notice

Feast is a community project and is still under active development. Your feedback and contributions are important to us. Please have a look at our contributing guide for details.

主要指标

概览
名称与所有者feast-dev/feast
主编程语言Python
编程语言Makefile (语言数: 16)
平台
许可证Apache License 2.0
所有者活动
创建于2018-12-10 07:20:15
推送于2025-07-29 14:10:11
最后一次提交2025-07-29 19:40:11
发布数163
最新版本名称v0.51.0 (发布于 )
第一版名称v0.0.1 (发布于 )
用户参与
星数6.2k
关注者数75
派生数1.1k
提交数4.1k
已启用问题?
问题数1671
打开的问题数118
拉请求数3155
打开的拉请求数40
关闭的拉请求数633
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?