Skip to content

Commit 82a5e64

Browse files
adchiagitbook-bot
authored andcommitted
GitBook: [#4] Backport fix for odfv flag error
1 parent 84ea23d commit 82a5e64

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

docs/reference/alpha-on-demand-feature-view.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# \[Alpha\] On demand feature view
1+
# \[Alpha] On demand feature view
22

33
**Warning**: This is an _experimental_ feature. It's intended for early testing and feedback, and could change without warnings in future releases.
44

55
{% hint style="info" %}
6-
To enable this feature, run **`feast alpha enable enable_on_demand_transforms`**
6+
To enable this feature, run **`feast alpha enable on_demand_transforms`**
77
{% endhint %}
88

99
## Overview
1010

11-
On demand feature views allows users to use existing features and request time data \(features only available at request time\) to transform and create new features. Users define python transformation logic which is executed in both historical retrieval and online retrieval paths.
11+
On demand feature views allows users to use existing features and request time data (features only available at request time) to transform and create new features. Users define python transformation logic which is executed in both historical retrieval and online retrieval paths.
1212

1313
Currently, these transformations are executed locally. Future milestones include building a Feature Transformation Server for executing transformations at higher scale.
1414

@@ -17,11 +17,11 @@ Currently, these transformations are executed locally. Future milestones include
1717
There are new CLI commands:
1818

1919
* `feast on-demand-feature-views list` lists all registered on demand feature view after `feast apply` is run
20-
* `feast on-demand-feature-views describe [NAME]` describes the definition of an on demand feature view
20+
* `feast on-demand-feature-views describe [NAME]` describes the definition of an on demand feature view
2121

2222
## Example
2323

24-
See [https://github.com/feast-dev/on-demand-feature-views-demo](https://github.com/feast-dev/on-demand-feature-views-demo) for an example on how to use on demand feature views.
24+
See [https://github.com/feast-dev/on-demand-feature-views-demo](https://github.com/feast-dev/on-demand-feature-views-demo) for an example on how to use on demand feature views.
2525

2626
### **Registering transformations**
2727

@@ -59,7 +59,7 @@ def transformed_conv_rate(features_df: pd.DataFrame) -> pd.DataFrame:
5959
### **Feature retrieval**
6060

6161
{% hint style="info" %}
62-
The on demand feature view's name is the function name \(i.e. `transformed_conv_rate`\).
62+
The on demand feature view's name is the function name (i.e. `transformed_conv_rate`).
6363
{% endhint %}
6464

6565
And then to retrieve historical or online features, we can call this in a feature service or reference individual features:
@@ -76,4 +76,3 @@ training_df = store.get_historical_features(
7676
],
7777
).to_df()
7878
```
79-

0 commit comments

Comments
 (0)