Struct nn::NN [] [src]

pub struct NN { /* fields omitted */ }

Neural network

Methods

impl NN
[src]

Each number in the layers_sizes parameter specifies a layer in the network. The number itself is the number of nodes in that layer. The first number is the input layer, the last number is the output layer, and all numbers between the first and last are hidden layers. There must be at least two layers in the network.

Runs the network on an input and returns a vector of the results. The number of f64s in the input must be the same as the number of input nodes in the network. The length of the results vector will be the number of nodes in the output layer of the network.

Takes in vector of examples and returns a Trainer struct that is used to specify options that dictate how the training should proceed. No actual training will occur until the go() method on the Trainer struct is called.

Encodes the network as a JSON string.

Builds a new network from a JSON string.

Trait Implementations

impl Debug for NN
[src]

Formats the value using the given formatter.

impl Clone for NN
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Decodable for NN
[src]

Deserialize a value using a Decoder.

impl Encodable for NN
[src]

Serialize a value using an Encoder.