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 36d0f27 commit 9626d9bCopy full SHA for 9626d9b
src/sagemaker/feature_store/feature_group.py
@@ -479,11 +479,12 @@ class FeatureGroup:
479
Attributes:
480
name (str): name of the FeatureGroup instance.
481
sagemaker_session (Session): session instance to perform boto calls.
482
+ If None, a new Session will be created.
483
feature_definitions (Sequence[FeatureDefinition]): list of FeatureDefinitions.
484
"""
485
486
name: str = attr.ib(factory=str)
- sagemaker_session: Session = attr.ib(default=Session)
487
+ sagemaker_session: Session = attr.ib(factory=Session)
488
feature_definitions: Sequence[FeatureDefinition] = attr.ib(factory=list)
489
490
_INTEGER_TYPES = [
0 commit comments