datasets
Returns a list of datasets on this branch. The response renders as a table showing details for all datasets. When iterated the response resolves to dataset names.
Examples
Print a table of all datasets
Renders as a table of datasets and their related information:
mb.datasets()
Print the name of each dataset
Iterate through a list of dataset names:
for ds_name in mb.datasets():
print(ds_name)
See also
- Read the Datasets section of the docs for more info on using datasets as feature stores.