Search for features
Searches feature names and descriptions across all feature sets in the workspace.
# Free-text search
for feature in workspace.search_features(query="customer"):
print(feature.name, feature.description)
# Sort results
for feature in workspace.search_features(
query="fraud",
sort_field="FEATURE_SORT_FIELD_NAME",
sort_direction="SORT_ASC",
):
print(feature.name)
# Only show features from feature sets you own
for feature in workspace.search_features(owned_only=True):
print(feature.name)
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query | str | No | Free-text search on feature name and description. |
sort_field | str | No | "FEATURE_SORT_FIELD_NAME" or "FEATURE_SORT_FIELD_DESCRIPTION". |
sort_direction | str | No | "SORT_ASC" or "SORT_DESC". |
owned_only | bool | No | If True, only returns features from feature sets you own. |
Feedback
- Submit and view feedback for this page
- Send feedback about H2O Feature Store to cloud-feedback@h2o.ai