mirror of
https://github.com/sthalles/SimCLR.git
synced 2025-06-03 15:03:00 +08:00
11 lines
289 B
Python
11 lines
289 B
Python
class BaseSimCLRException(Exception):
|
|
"""Base exception"""
|
|
|
|
|
|
class InvalidBackboneError(BaseSimCLRException):
|
|
"""Raised when the choice of backbone Convnet is invalid."""
|
|
|
|
|
|
class InvalidDatasetSelection(BaseSimCLRException):
|
|
"""Raised when the choice of dataset is invalid."""
|