File size: 275 Bytes
9c6594c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from wandb.errors import Error
class LaunchError(Error):
"""Raised when a known error occurs in wandb launch."""
class LaunchDockerError(Error):
"""Raised when Docker daemon is not running."""
class ExecutionError(Error):
"""Generic execution exception."""
|