twinlab.list_datasets#

twinlab.list_datasets(project_name='personal', project_owner=None, verbose=False)[source]#

List datasets that have been uploaded to a project in the user’s twinLab cloud account. If no project is specified, the default project is the user’s “personal” project.

These datasets can be used for training emulators and for other operations. New datasets can be uploaded using the upload method of the Dataset class.

Parameters:

verbose (bool, optional) – Display information about the operation while running.

Returns:

Datasets currently uploaded to the user’s twinLab cloud account.

Return type:

list

Example

datasets = tl.list_datasets()
print(datasets)
['biscuits', 'gardening', 'force-energy', 'combusion']