C# 클래스 Accord.Neuro.GaussianWeights

Gaussian weight initialization.
파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
GaussianWeights ( ActivationNetwork network, double stdDev = 0.1 ) : Accord.Math.Random

Constructs a new Gaussian Weight initialization.

Randomize ( ) : void

Randomizes (initializes) the weights of the network using a Gaussian distribution.

Randomize ( int layerIndex ) : void

Randomizes (initializes) the weights of the network using a Gaussian distribution.

메소드 상세

GaussianWeights() 공개 메소드

Constructs a new Gaussian Weight initialization.
public GaussianWeights ( ActivationNetwork network, double stdDev = 0.1 ) : Accord.Math.Random
network ActivationNetwork The activation network whose weights will be initialized.
stdDev double The standard deviation to be used. Common values lie in the 0.001- /// 0.1 range. Default is 0.1.
리턴 Accord.Math.Random

Randomize() 공개 메소드

Randomizes (initializes) the weights of the network using a Gaussian distribution.
public Randomize ( ) : void
리턴 void

Randomize() 공개 메소드

Randomizes (initializes) the weights of the network using a Gaussian distribution.
public Randomize ( int layerIndex ) : void
layerIndex int
리턴 void