Feature view
Feature views
from feast import BigQuerySource, FeatureView, Field
from feast.types import Float32, Int64
driver_stats_fv = FeatureView(
name="driver_activity",
entities=["driver"],
schema=[
Field(name="trips_today", dtype=Int64),
Field(name="rating", dtype=Float32),
],
source=BigQuerySource(
table="feast-oss.demo_data.driver_activity"
)
)Feature views without entities
Feature inferencing
Entity aliasing
Feature
[Alpha] On demand feature views
Last updated
Was this helpful?