Feature Store#

For usage information and examples, see Feature Store

class dataikuapi.dss.feature_store.DSSFeatureStore(client)#

A handle on the Feature Store.

Important

Do not create this class directly, use dataikuapi.DSSClient.get_feature_store()

list_feature_groups()#

List the feature groups on which the user has at least read permissions.

Returns:

the list of feature groups, each one as a dataikuapi.dss.feature_store.DSSFeatureGroupListItem

Return type:

list of dataikuapi.dss.feature_store.DSSFeatureGroupListItem

class dataikuapi.dss.feature_store.DSSFeatureGroupListItem(client, project_key, name)#

An item in a list of feature groups.

Important

Do not instantiate this class, use :meth:’dataikuapi.dss.feature_store.DSSFeatureStore.list_feature_groups’

property id#

Get the identifier of the feature group.

Return type:

string

get_as_dataset()#

Get the feature group as a dataset.

Returns:

a handle on the dataset

Return type:

dataikuapi.dss.dataset.DSSDataset