Enum revonet::neuro::NeuralArchitecture [] [src]

pub enum NeuralArchitecture {
    Multilayered,
    BypassInputs,
    BypassLayer,
    BypassFull,
}

Enumeration for the different types of neural architectures.

Variants

Standard multilayered feed-forward network without skip connections,

Multilayered NN where every layer is connected to the input layer.

Multilayered NN where inputs of current layere are propagated forward to the next layer. So that every layere is connected to the inputs of the previous layer.

Multilayered NN where every layere is connected to the outputs of all previous layers, including the input.

Trait Implementations

impl Clone for NeuralArchitecture
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for NeuralArchitecture
[src]

impl Debug for NeuralArchitecture
[src]

Formats the value using the given formatter.