| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
Feast is an open source feature store for machine learning that helps ML platform teams manage features consistently for training and serving.
Feast (Feature Store) is a Python-based project that provides:
# Install development dependencies
make install-python-dependencies-dev
# Install minimal dependencies
make install-python-dependencies-minimal# Format Python code
make format-python
# Lint Python code
make lint-python
# Type check
cd sdk/python && python -m mypy feast# Run unit tests
make test-python-unit
# Run integration tests (local)
make test-python-integration-local
# Run integration tests (CI)
make test-python-integration
# Run all Python tests
make test-python-universal# Compile Python protobuf files
make compile-protos-python
# Compile all protos
make protos# Build Go code
make build-go
# Test Go code
make test-go
# Format Go code
make format-go
# Lint Go code
make lint-go# Build all Docker images
make build-docker
# Build feature server Docker image
make build-feature-server-docker# Build Sphinx documentation
make build-sphinx
# Build templates
make build-templates
# Build Helm docs
make build-helm-docsfeast/ ├── sdk/python/ # Python SDK and core implementation ├── go/ # Go implementation ├── ui/ # Web UI ├── docs/ # Documentation ├── examples/ # Example projects ├── infra/ # Infrastructure and deployment │ ├── charts/ # Helm charts │ └── feast-operator/ # Kubernetes operator └── protos/ # Protocol buffer definitions
The project uses pytest for Python testing with extensive integration test suites for different data sources and stores.
Protocol buffers are used for data serialization and gRPC APIs. Recompile protos after making changes to .proto files.
Feast supports Python and Go SDKs. Changes to core functionality may require updates across both languages.
| Back | FazBrowse Home | New Git URL |