twinlab.list_emulators#

twinlab.list_emulators(project_name='personal', project_owner=None, verbose=False)[source]#
List trained emulators that exist in a project on the user’s twinLab cloud account.

If no project is specified, the default project is the user’s “personal” project.

These trained emulators can be used for a variety of inference operations (see methods of the Emulator class).

Parameters:
  • project_name (str) – The project for which you would like to list the emulators. This will default to your “personal” project.

  • project_owner (str) – The email of the owner of the project that you want to list the datasets of.

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

Returns:

Currently trained and training emulators.

Return type:

list

Example

emulators = tl.list_emulators()
print(emulators)
['biscuits', 'gardening', 'new-emulator', 'my-emulator']