Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
new change
  • Loading branch information
adchia committed May 18, 2022
commit 7e4d6e2b7180d1cc80bb88c19a608d7d0b853edd
19 changes: 14 additions & 5 deletions module_0/feature_repo_aws/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@

driver_hourly_stats_view = FeatureView(
name="driver_hourly_stats",
description="Hourly features",
description="Hourly features from Danny",
entities=["driver"],
ttl=timedelta(seconds=8640000000),
schema=[
Field(name="conv_rate", dtype=Float32),
Field(name="acc_rate", dtype=Float32),
],
schema=[Field(name="conv_rate", dtype=Float32),],
online=True,
source=driver_stats,
tags={"production": "True"},
owner="test@gmail.com",
)

driver_hourly_stats_view_2 = FeatureView(
name="driver_hourly_stats",
description="Hourly features from Danny",
entities=["driver"],
ttl=timedelta(seconds=8640000000),
schema=[Field(name="conv_rate", dtype=Float32),],
online=True,
source=driver_stats,
tags={"production": "True"},
Expand Down