gojo package

Subpackages

Submodules

gojo.exception module

exception gojo.exception.DataLoaderError(msg: str)[source]

Bases: Exception

Exception thrown when a data-loader operation failed.

exception gojo.exception.IncorrectNumberOfClasses(detected_classes: int, specified_classes: int, in_var: Optional[str] = None)[source]

Bases: Exception

Exception thrown when the input number of classes in an array is different from the predefined by the user.

exception gojo.exception.MissingArrayDimensions(expected_n_dims: int, input_n_dims: int, in_var: Optional[str] = None)[source]

Bases: Exception

Exception thrown when the input array does not match the expected number of dimensions

exception gojo.exception.UnfittedEstimator[source]

Bases: Exception

Exception thrown when trying to make predictions without performing a previous model fit.

exception gojo.exception.UnfittedTransform[source]

Bases: Exception

Exception thrown when trying to apply transforms without performing a previous transform fit.

Module contents