C# Class Encog.Neural.Networks.Structure.NeuralStructure

Exibir arquivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
CalculateSize ( ) : int

Calculate the size that an array should be to hold all of the weights and bias values.

EnforceLimit ( ) : void

Enforce that all connections are above the connection limit. Any connections below this limit will be severed.

FinalizeLimit ( ) : void

Parse/finalize the limit value for connections.

FinalizeStructure ( ) : void

Build the synapse and layer structure. This method should be called after you are done adding layers to a network, or change the network's logic property.

NeuralStructure ( BasicNetwork network ) : System

Construct a structure object for the specified network.

RequireFlat ( ) : void

Throw an error if there is no flat network.

UpdateProperties ( ) : void

Update any properties from the property map.

Method Details

CalculateSize() public method

Calculate the size that an array should be to hold all of the weights and bias values.
public CalculateSize ( ) : int
return int

EnforceLimit() public method

Enforce that all connections are above the connection limit. Any connections below this limit will be severed.
public EnforceLimit ( ) : void
return void

FinalizeLimit() public method

Parse/finalize the limit value for connections.
public FinalizeLimit ( ) : void
return void

FinalizeStructure() public method

Build the synapse and layer structure. This method should be called after you are done adding layers to a network, or change the network's logic property.
public FinalizeStructure ( ) : void
return void

NeuralStructure() public method

Construct a structure object for the specified network.
public NeuralStructure ( BasicNetwork network ) : System
network BasicNetwork
return System

RequireFlat() public method

Throw an error if there is no flat network.
public RequireFlat ( ) : void
return void

UpdateProperties() public method

Update any properties from the property map.
public UpdateProperties ( ) : void
return void