pub trait ModelOutputFailure: Clone + Debug + DeserializeOwned + IntoPy<PyObject> + Send + Serialize {
    fn outside_decision_space() -> Self;
}
Expand description

Failures of a model.

Required methods

Failure when result lies outside of the decision space.

Implementations on Foreign Types

Implementors