exceptions

The nnlearn.exceptions module provides custom defined errors which can occur during execution.

exception nnlearn.exceptions.CriterionFunctionNotFound(message)

Bases: nnlearn.exceptions._base.Error

Specified Criterion Function was not found.

Parameters

message (str) – Explanation of what happened.

exception nnlearn.exceptions.DimensionMismatchError(message)

Bases: nnlearn.exceptions._base.Error

Mismatch in dimension of two arrays.

Parameters

message (str) – Explanation of what happened.

exception nnlearn.exceptions.FeatureNotImplemented(message)

Bases: nnlearn.exceptions._base.Error

Given feature has not been implemented.

Parameters

message (str) – Explanation of what happened.