exceptions¶
The nnlearn.exceptions module provides custom defined errors which can occur during execution.
- exception nnlearn.exceptions.CriterionFunctionNotFound(message)¶
Bases:
nnlearn.exceptions._base.ErrorSpecified Criterion Function was not found.
- Parameters
message (str) – Explanation of what happened.
- exception nnlearn.exceptions.DimensionMismatchError(message)¶
Bases:
nnlearn.exceptions._base.ErrorMismatch in dimension of two arrays.
- Parameters
message (str) – Explanation of what happened.
- exception nnlearn.exceptions.FeatureNotImplemented(message)¶
Bases:
nnlearn.exceptions._base.ErrorGiven feature has not been implemented.
- Parameters
message (str) – Explanation of what happened.