2023-04-17 03:45:12 +03:00
|
|
|
class NoModeLoadedException(Exception):
|
|
|
|
def __init__(self, framework):
|
|
|
|
self.framework = framework
|
|
|
|
|
|
|
|
def __str__(self):
|
2023-04-28 00:39:51 +03:00
|
|
|
return repr(
|
|
|
|
f"No model for {self.framework} loaded. Please confirm the model uploaded."
|
|
|
|
)
|
2023-04-18 21:06:45 +03:00
|
|
|
|
|
|
|
|
2023-05-03 07:14:00 +03:00
|
|
|
class HalfPrecisionChangingException(Exception):
|
|
|
|
def __str__(self):
|
|
|
|
return repr("HalfPrecision related exception.")
|
|
|
|
|
|
|
|
|
2023-04-18 21:06:45 +03:00
|
|
|
class ONNXInputArgumentException(Exception):
|
|
|
|
def __str__(self):
|
2023-04-28 00:39:51 +03:00
|
|
|
return repr("ONNX received invalid argument.")
|