Skip to content

Commit

Permalink
update pydoc
Browse files Browse the repository at this point in the history
  • Loading branch information
riteshghorse committed Apr 25, 2024
1 parent 86fbf15 commit 42b698e
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,6 @@ def __init__(
"""Initializes an instance of `FeastFeatureStoreEnrichmentHandler`.
Args:
entity_id (str): entity name for the entity associated with the features.
The `entity_id` is used to extract the entity value from the input row.
feature_store_yaml_path (str): The path to a YAML configuration file for
the Feast feature store. See
https://docs.feast.dev/reference/feature-repository/feature-store-yaml
Expand All @@ -118,10 +116,14 @@ def __init__(
the features to fetch from the online Feast feature store.
full_feature_names (bool): Whether to use full feature names
(including namespaces, etc.). Defaults to False.
entity_row_fn: a lambda function that returns a dictionary with
a mapping from the entity key column name to entity key value from the
input row. It is used to build/extract the entity dict for feature
retrieval.
entity_id (str): entity name for the entity associated with the features.
The `entity_id` is used to extract the entity value from the input row.
Please provide exactly one of `entity_id` or `entity_row_fn`.
entity_row_fn: a lambda function that takes an input `beam.Row` and
returns a dictionary with a mapping from the entity key column name to
entity key value. It is used to build/extract the entity dict for
feature retrieval. Please provide exactly one of `entity_id` or
`entity_row_fn`.
See https://docs.feast.dev/getting-started/concepts/feature-retrieval
for more information.
exception_level: a `enum.Enum` value from
Expand Down

0 comments on commit 42b698e

Please sign in to comment.