Skip to content

featurebyte.ObservationTable.update_purpose

update_purpose(
purpose: Literal["preview", "eda", "training", "validation_test", "other"]
)

Description

Update purpose for the observation table.

Parameters

  • purpose: Literal["preview", "eda", "training", "validation_test", "other"]
    Purpose for the observation table. Expect value to be a string or a Purpose enum.

Examples

>>> observation_table = catalog.get_observation_table("observation_table")
>>> observation_table.update_purpose(fb.Purpose.EDA)