When would you want to use it?
There are two core functions that feature stores enable:- access to data from an offline / batch store for training.
- access to online data at inference time.
yaml
file.
COMING SOON: While the ZenML integration has an interface to access online feature store data, it currently is not usable in production settings with deployed models. We will update the docs when we enable this functionality.
How to deploy it?
The Feast Feature Store flavor is provided by the Feast ZenML integration, you need to install it, to be able to register it as a Feature Store and add it to your stack:How do you use it?
ZenML assumes that users already have a feature store that they just need to connect with. The ZenML Online data retrieval is currently possible in a local setting, but we don’t currently support using the online data serving in the context of a deployed model or as part of model deployment. We will update this documentation as we develop out this feature. ZenML supports access to your feature store via a stack component that you can configure via the CLI tool. ( See here for details on how to do that.) Getting features from a registered and active feature store is possible by creating your own step that interfaces into the feature store:DataFrame
s, for example, or datetime
values, so in the above code you can see that we have to convert them at various points.
A concrete example of using the Feast feature store can be found here.
For more information and a full list of configurable attributes of the Feast feature store, check out the API Docs.