twinlab.Emulator.status#

Emulator.status(verbose=False)[source]#

Check the status of a training process on the twinLab cloud.

Parameters:

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

Returns:

A tuple containing the status code and the response body.

Return type:

Tuple[int, dict]

Example

emulator = tl.Emulator("my_emulator")
emulator.status()
{
    'status': 'success'
    'start_time': '2024-07-31 18:12:33',
    'end_time': '2024-07-31 18:12:35',
}