We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 261a9fd commit da5d16fCopy full SHA for da5d16f
module_0/feature_repo_aws/features.py
@@ -23,3 +23,19 @@
23
tags={"production": "True"},
24
owner="test2@gmail.com",
25
)
26
+
27
+driver_hourly_stats_view_v2 = FeatureView(
28
+ name="driver_hourly_stats_v2",
29
+ description="Hourly features v2",
30
+ entities=["driver"],
31
+ ttl=timedelta(seconds=8640000000),
32
+ schema=[
33
+ Field(name="conv_rate", dtype=Float32),
34
+ Field(name="acc_rate", dtype=Float32),
35
+ Field(name="miles_driven", dtype=Float32),
36
+ ],
37
+ online=True,
38
+ source=driver_stats,
39
+ tags={"production": "True"},
40
+ owner="test2@gmail.com",
41
+)
0 commit comments