C# Class NeuralNetworks.Layer

ファイルを表示 Open project: hemanthk119/NeuralNetworks Class Usage Examples

Public Properties

Property Type Description
Index int
Neurons NeuralNetworks.Neuron[]
NumNeurons int

Public Methods

Method Description
CalculateLayer ( ) : IEnumerable
ConnectAllTo ( Layer nextlayer, double defaultWeight ) : void
GetValues ( ) : IEnumerable
Layer ( int index, int numNeurons, Neuron actTye = Neuron.ActivationType.SIGMOID, IEnumerable initBias = null ) : System
RaiseChanged ( ) : void
SetValues ( IEnumerable Values ) : void

Private Methods

Method Description
RaiseUpdated ( ) : void

Method Details

CalculateLayer() public method

public CalculateLayer ( ) : IEnumerable
return IEnumerable

ConnectAllTo() public method

public ConnectAllTo ( Layer nextlayer, double defaultWeight ) : void
nextlayer Layer
defaultWeight double
return void

GetValues() public method

public GetValues ( ) : IEnumerable
return IEnumerable

Layer() public method

public Layer ( int index, int numNeurons, Neuron actTye = Neuron.ActivationType.SIGMOID, IEnumerable initBias = null ) : System
index int
numNeurons int
actTye Neuron
initBias IEnumerable
return System

RaiseChanged() public method

public RaiseChanged ( ) : void
return void

SetValues() public method

public SetValues ( IEnumerable Values ) : void
Values IEnumerable
return void

Property Details

Index public_oe property

public int Index
return int

Neurons public_oe property

public Neuron[],NeuralNetworks Neurons
return NeuralNetworks.Neuron[]

NumNeurons public_oe property

public int NumNeurons
return int