File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ def id(self):
1212 return self .project_key + "." + self .name
1313
1414 def get_as_dataset (self ):
15+ """
16+ :return: a handle on the dataset
17+ :rtype: :class:`dataikuapi.dss.dataset.DSSDataset`
18+ """
1519 return DSSDataset (self .client , self .project_key , self .name )
1620
1721
@@ -29,7 +33,7 @@ def list_feature_groups(self):
2933 and that are defined as feature groups in the DSS instance
3034
3135 :return: list of dataset names
32- :rtype: list of str
36+ :rtype: list of :class:`dataikuapi.feature_store.DSSFeatureGroupListItem`
3337 """
3438 items = self .client ._perform_json ("GET" , "/feature-store/feature-groups" )
3539 return [DSSFeatureGroupListItem (self .client , item ["projectKey" ], item ["name" ]) for item in items ]
You can’t perform that action at this time.
0 commit comments