pub trait OutDim {
    // Required methods
    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§

source

fn get_out_dim(&self) -> i64

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

source

fn set_out_dim(&mut self, v: i64)

Sets the output dimension.

Implementors§