SimCLR/exceptions/exceptions.py

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."""