Skip to content

Commit

Permalink
Adding experimental tags to class docs so it shows up in online Pytho…
Browse files Browse the repository at this point in the history
…n Reference. Add to docs rst (#1880)

Signed-off-by: Danny Chiao <danny@tecton.ai>
  • Loading branch information
adchia authored Sep 19, 2021
1 parent 75f67ec commit e695457
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions sdk/python/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ Feature View
.. automodule:: feast.feature_view
:members:

On Demand Feature View
==================

.. automodule:: feast.on_demand_feature_view
:members:

Feature
==================

Expand Down
4 changes: 2 additions & 2 deletions sdk/python/feast/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def on_demand_feature_views_cmd():
@click.pass_context
def on_demand_feature_view_describe(ctx: click.Context, name: str):
"""
Describe an on demand feature view
[Experimental] Describe an on demand feature view
"""
repo = ctx.obj["CHDIR"]
cli_check_repo(repo)
Expand All @@ -274,7 +274,7 @@ def on_demand_feature_view_describe(ctx: click.Context, name: str):
@click.pass_context
def on_demand_feature_view_list(ctx: click.Context):
"""
List all on demand feature views
[Experimental] List all on demand feature views
"""
repo = ctx.obj["CHDIR"]
cli_check_repo(repo)
Expand Down
3 changes: 2 additions & 1 deletion sdk/python/feast/on_demand_feature_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@

class OnDemandFeatureView:
"""
An OnDemandFeatureView defines on demand transformations on existing feature view values and request data.
[Experimental] An OnDemandFeatureView defines on demand transformations on existing feature view values and request
data.
Args:
name: Name of the group of features.
Expand Down

0 comments on commit e695457

Please sign in to comment.