We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05334ae commit 1b98c2fCopy full SHA for 1b98c2f
1 file changed
dataikuapi/dss/feature_store.py
@@ -12,6 +12,10 @@ def id(self):
12
return self.project_key + "." + self.name
13
14
def get_as_dataset(self):
15
+ """
16
+ :return: a handle on the dataset
17
+ :rtype: :class:`dataikuapi.dss.dataset.DSSDataset`
18
19
return DSSDataset(self.client, self.project_key, self.name)
20
21
@@ -29,7 +33,7 @@ def list_feature_groups(self):
29
33
and that are defined as feature groups in the DSS instance
30
34
31
35
:return: list of dataset names
32
- :rtype: list of str
36
+ :rtype: list of :class:`dataikuapi.feature_store.DSSFeatureGroupListItem`
37
"""
38
items = self.client._perform_json("GET", "/feature-store/feature-groups")
39
return [DSSFeatureGroupListItem(self.client, item["projectKey"], item["name"]) for item in items]
0 commit comments