pub trait ModelOutputSuccess: Clone + Debug + DeserializeOwned + IntoPy<PyObject> + Send + Serialize {
    fn horizontal_merge(self, output: Self) -> Self;
fn vertical_merge(self, output: Self) -> Self; }
Expand description

Results of a model.

Required methods

Merge two outputs across time steps.

Merge two outputs within the same time step.

Implementations on Foreign Types

Implementors