neurx v0.1.3 Neurx.Network View Source

Contains layers which makes up a matrix of neurons.

Link to this section Summary

Functions

Activate the network given list of input values

Returns a specification to start this module under a supervisor

Return the network by pid

Server Callback for GenServer - call

Server Callback for GenServer - cast

Server Callbacks for GenServer - init

Takes in the network configuration as a map and creats the specified network

Set the network error and output layer’s deltas propagate them backward through the network. (Back Propogation!)

Update the network layers

Link to this section Functions

Link to this function activate(network, input_values) View Source

Activate the network given list of input values.

Returns a specification to start this module under a supervisor.

See Supervisor.

Return the network by pid.

Link to this function handle_call(msg, from, state) View Source

Server Callback for GenServer - call

Server Callback for GenServer - cast

Server Callbacks for GenServer - init

Takes in the network configuration as a map and creats the specified network.

Link to this function train(network, target_outputs) View Source

Set the network error and output layer’s deltas propagate them backward through the network. (Back Propogation!)

The input layer is skipped (no use for deltas).

Update the network layers.