I am trying to get a feature from an existing feature store.
In the documentation https://docs.mlrun.org/en/latest/api/mlrun.feature_store.html, it says you can either pass a feature vector uri or FeatureVector object to the mlrun.feature_store.get_offline_features()
.
What is the uri for a feature store?
Where can I find an example?
how to use get_offline_features() in the mlrun.feature_store?
164 Views Asked by xsqian At
1
In MLRun, a Feature Set is a group of features that are ingested together. A Feature Vector is a selection of features from Feature Sets (a few columns here, a few columns there, etc). This is great for joining several data sources together using a common entity/key.
A full example of creating and querying a feature set from MLRun can be found below:
You can find more feature store examples in the documentation here: https://docs.mlrun.org/en/latest/feature-store/feature-store.html