We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b98c2f commit 369802cCopy full SHA for 369802c
1 file changed
dataikuapi/dss/feature_store.py
@@ -13,6 +13,8 @@ def id(self):
13
14
def get_as_dataset(self):
15
"""
16
+ Gets the feature group as a dataset
17
+
18
:return: a handle on the dataset
19
:rtype: :class:`dataikuapi.dss.dataset.DSSDataset`
20
@@ -29,10 +31,9 @@ def __init__(self, client):
29
31
30
32
def list_feature_groups(self):
33
- Get a list of names of datasets on which the user has right permissions
- and that are defined as feature groups in the DSS instance
34
+ Get a list of feature groups on which the user has at least read permissions
35
- :return: list of dataset names
36
+ :return: list of feature groups
37
:rtype: list of :class:`dataikuapi.feature_store.DSSFeatureGroupListItem`
38
39
items = self.client._perform_json("GET", "/feature-store/feature-groups")
0 commit comments