52 lines
1.3 KiB
Python
Raw Normal View History

2023-04-17 09:45:12 +09:00
class NoModeLoadedException(Exception):
def __init__(self, framework):
self.framework = framework
def __str__(self):
2023-06-16 16:49:55 +09:00
return repr(f"No model for {self.framework} loaded. Please confirm the model uploaded.")
2023-04-19 03:06:45 +09:00
2023-05-03 13:14:00 +09:00
class HalfPrecisionChangingException(Exception):
def __str__(self):
return repr("HalfPrecision related exception.")
2023-05-04 17:15:53 +09:00
class DeviceChangingException(Exception):
def __str__(self):
return repr("Device changing...")
class NotEnoughDataExtimateF0(Exception):
def __str__(self):
return repr("Not enough data to estimate f0.")
2023-04-19 03:06:45 +09:00
class ONNXInputArgumentException(Exception):
def __str__(self):
2023-04-28 06:39:51 +09:00
return repr("ONNX received invalid argument.")
class DeviceCannotSupportHalfPrecisionException(Exception):
def __str__(self):
return repr("Device cannot support half precision.")
class VoiceChangerIsNotSelectedException(Exception):
def __str__(self):
return repr("Voice Changer is not selected.")
2023-06-16 16:49:55 +09:00
class WeightDownladException(Exception):
def __str__(self):
return repr("Failed to download weight.")
class PipelineCreateException(Exception):
def __str__(self):
return repr("Failed to create Pipeline.")
class PipelineNotInitializedException(Exception):
def __str__(self):
return repr("Pipeline is not initialized.")