Skip to content

documentation: Include FeatureGroup's load_feature_definitions API documentation #4165

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion doc/api/prep_data/feature_store.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ Feature Group

.. autoclass:: sagemaker.feature_store.feature_group.FeatureGroup
:members:
:exclude-members: load_feature_definitions
:show-inheritance:

.. autoclass:: sagemaker.feature_store.feature_group.AthenaQuery
Expand Down
4 changes: 2 additions & 2 deletions src/sagemaker/feature_store/feature_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,8 +759,8 @@ def load_feature_definitions(
"""Load feature definitions from a Pandas DataFrame.

Column name is used as feature name. Feature type is inferred from the dtype
of the column. Dtype int_, int8, int16, int32, int64, uint8, uint16, uint32
and uint64 are mapped to Integral feature type. Dtype float_, float16, float32
of the column. Dtype :literal:`int_`, int8, int16, int32, int64, uint8, uint16, uint32
and uint64 are mapped to Integral feature type. Dtype :literal:`float_`, float16, float32
and float64 are mapped to Fractional feature type. string dtype is mapped to
String feature type.

Expand Down