ModelFeatures

Struct ModelFeatures 

Source
pub struct ModelFeatures { /* private fields */ }
Expand description

The ModelFeatures provides a common way of defining the layout of a model. This is used to define the number of input features, the number of hidden layers, the number of hidden features, and the number of output features.

Implementations§

Source§

impl ModelFeatures

Source

pub fn from_shape_and_size(shape: &[usize], size: usize) -> Self

Source

pub const fn new( input: usize, hidden: usize, output: usize, layers: usize, ) -> Self

creates a new instance of ModelFeatures for a neural network with n layers. If the number of layers is <=1 then the ModelFormat is automatically configured as a shallow neural network.

Source

pub const fn deep( input: usize, hidden: usize, output: usize, layers: usize, ) -> Self

creates a new instance of ModelFeatures for a deep neural network, using the given input, hidden, and output features with the given number of hidden layers

Source

pub const fn shallow(input: usize, hidden: usize, output: usize) -> Self

returns a new instance of ModelFeatures for a shallow neural network, using the given features for the input, output, and single hidden layer

Source

pub fn from_layout<L>(layout: L) -> Self
where L: RawModelLayout,

Source

pub const fn input(&self) -> usize

returns a copy of the input features for the model

Source

pub const fn input_mut(&mut self) -> &mut usize

returns a mutable reference to the input features for the model

Source

pub const fn inner(&self) -> ModelFormat

returns a copy of the inner format for the model

Source

pub const fn inner_mut(&mut self) -> &mut ModelFormat

returns a mutable reference to the inner format for the model

Source

pub const fn hidden(&self) -> usize

returns a copy of the hidden features for the model

Source

pub const fn hidden_mut(&mut self) -> &mut usize

returns a mutable reference to the hidden features for the model

Source

pub const fn layers(&self) -> usize

returns a copy of the number of hidden layers for the model

Source

pub const fn layers_mut(&mut self) -> &mut usize

returns a mutable reference to the number of hidden layers for the model

Source

pub const fn output(&self) -> usize

returns a copy of the output features for the model

Source

pub const fn output_mut(&mut self) -> &mut usize

returns a mutable reference to the output features for the model

Source

pub fn set_input(&mut self, input: usize) -> &mut Self

sets the input features for the model

Source

pub fn set_hidden(&mut self, hidden: usize) -> &mut Self

sets the hidden features for the model

Source

pub fn set_layers(&mut self, layers: usize) -> &mut Self

sets the number of hidden layers for the model

Source

pub fn set_output(&mut self, output: usize) -> &mut Self

sets the output features for the model

Source

pub fn with_input(self, input: usize) -> Self

consumes the current instance and returns a new instance with the given input

Source

pub fn with_hidden(self, hidden: usize) -> Self

consumes the current instance and returns a new instance with the given hidden features

Source

pub fn with_layers(self, layers: usize) -> Self

consumes the current instance and returns a new instance with the given number of hidden layers

Source

pub fn with_output(self, output: usize) -> Self

consumes the current instance and returns a new instance with the given output features

Source

pub fn dim_input(&self) -> (usize, usize)

the dimension of the input layer; (input, hidden)

Source

pub fn dim_hidden(&self) -> (usize, usize)

the dimension of the hidden layers; (hidden, hidden)

Source

pub fn dim_output(&self) -> (usize, usize)

the dimension of the output layer; (hidden, output)

Source

pub fn size(&self) -> usize

the total number of parameters in the model

Source

pub fn size_input(&self) -> usize

the total number of input parameters in the model

Source

pub fn size_hidden(&self) -> usize

the total number of hidden parameters in the model

Source

pub fn size_output(&self) -> usize

the total number of output parameters in the model

Trait Implementations§

Source§

impl Clone for ModelFeatures

Source§

fn clone(&self) -> ModelFeatures

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ModelFeatures

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ModelFeatures

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Display for ModelFeatures

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for ModelFeatures

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for ModelFeatures

Source§

fn cmp(&self, other: &ModelFeatures) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for ModelFeatures

Source§

fn eq(&self, other: &ModelFeatures) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for ModelFeatures

Source§

fn partial_cmp(&self, other: &ModelFeatures) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl RawModelLayout for ModelFeatures

Source§

fn input(&self) -> usize

returns the total number of input features defined for the model
Source§

fn hidden(&self) -> usize

returns the number of hidden features for the model
Source§

fn depth(&self) -> usize

returns the number of hidden layers within the network
Source§

fn output(&self) -> usize

the number of output features for the model
Source§

fn dim_input(&self) -> (usize, usize)

the dimension of the input layer; (input, hidden)
Source§

fn dim_hidden(&self) -> (usize, usize)

the dimension of the hidden layers; (hidden, hidden)
Source§

fn dim_output(&self) -> (usize, usize)

the dimension of the output layer; (hidden, output)
Source§

fn size(&self) -> usize

the total number of parameters in the model
Source§

fn size_input(&self) -> usize

the total number of input parameters in the model
Source§

fn size_hidden(&self) -> usize

the total number of hidden parameters in the model
Source§

fn size_output(&self) -> usize

the total number of output parameters in the model
Source§

impl RawModelLayoutMut for ModelFeatures

Source§

fn input_mut(&mut self) -> &mut usize

returns a mutable reference to number of the input features for the model
Source§

fn hidden_mut(&mut self) -> &mut usize

returns a mutable reference to the number of hidden features for the model
Source§

fn layers_mut(&mut self) -> &mut usize

returns a mutable reference to the number of hidden layers for the model
Source§

fn output_mut(&mut self) -> &mut usize

returns a mutable reference to the output features for the model
Source§

fn set_input(&mut self, input: usize) -> &mut Self

update the number of input features for the model and return a mutable reference to the current layout.
Source§

fn set_hidden(&mut self, hidden: usize) -> &mut Self

update the number of hidden features for the model and return a mutable reference to the current layout.
Source§

fn set_layers(&mut self, layers: usize) -> &mut Self

update the number of hidden layers for the model and return a mutable reference to the current layout.
Source§

fn set_output(&mut self, output: usize) -> &mut Self

update the number of output features for the model and return a mutable reference to the current layout.
Source§

impl Copy for ModelFeatures

Source§

impl Eq for ModelFeatures

Source§

impl StructuralPartialEq for ModelFeatures

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> LayoutExt for T