Skip to content

featurebyte.Target.compute_target_table

compute_target_table(
observation_table: Union[ObservationTable, DataFrame],
observation_table_name: str,
serving_names_mapping: Union[Dict[str, str], NoneType]=None
) -> ObservationTable

Description

Materialize feature list using an observation table asynchronously. The targets will be materialized into a target table.

Parameters

  • observation_table: Union[ObservationTable, DataFrame]
    Observation set with POINT_IN_TIME and serving names columns. This can be either an ObservationTable of a pandas DataFrame.

  • observation_table_name: str
    Name of the observation table to be created with the target values

  • serving_names_mapping: Union[Dict[str, str], NoneType]
    Optional serving names mapping if the training events table has different serving name

Returns

  • ObservationTable

Examples

>>> target = catalog.get_target("target")
>>> target.compute_target_table(observation_table, "target_table")