You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/concepts/feature-view.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,8 @@ driver_stats_fv = FeatureView(
17
17
Field(name="trips_today", dtype=Int64),
18
18
Field(name="rating", dtype=Float32),
19
19
],
20
-
batch_source=BigQuerySource(
21
-
table_ref="feast-oss.demo_data.driver_activity"
20
+
source=BigQuerySource(
21
+
table="feast-oss.demo_data.driver_activity"
22
22
)
23
23
)
24
24
```
@@ -28,7 +28,7 @@ driver_stats_fv = FeatureView(
28
28
Feature views are used during
29
29
30
30
* The generation of training datasets by querying the data source of feature views in order to find historical feature values. A single training dataset may consist of features from multiple feature views.
31
-
* Loading of feature values into an online store. Feature views determine the storage schema in the online store. Feature values can be loaded from batch sources or from [stream sources](../../reference/alpha-stream-ingestion.md).
31
+
* Loading of feature values into an online store. Feature views determine the storage schema in the online store. Feature values can be loaded from batch sources or from [stream sources](../../reference/data-sources/push.md).
32
32
* Retrieval of features from the online store. Feature views provide the schema definition to Feast in order to look up features from the online store.
33
33
34
34
{% hint style="info" %}
@@ -37,7 +37,7 @@ Feast does not generate feature values. It acts as the ingestion and serving sys
37
37
38
38
## Feature views without entities
39
39
40
-
If a feature view contains features that are not related to a specific entity, the feature view can be defined without entities.
40
+
If a feature view contains features that are not related to a specific entity, the feature view can be defined without entities (only event timestamps are needed for this feature view).
0 commit comments