featurebyte.Catalog.get_feature¶
Description¶
Gets a Feature object from the catalog using the feature's name and optionally its version name. If no version name is provided, the default version of the feature is returned.
The Feature object includes the logical plan for computing the feature and can be used to create a FeatureList object for training and predicting machine learning models for a specific use case.
Parameters¶
- name: str
Feature name. - version: Union[str, NoneType]
Feature version. If None is provided, the default version will be returned.
Returns¶
- Feature
Feature object.