pub trait OutDim {
    fn get_out_dim(&self) -> i64;
fn set_out_dim(&mut self, v: i64); }
Expand description

Returns the dimension of output vectors, i.e., the number of discrete outputs.

Required methods

Returns the dimension of output vectors, i.e., the number of discrete outputs.

Sets the output dimension.

Implementors