C# 클래스 Encog.Engine.Network.Activation.ActivationRamp

상속: IActivationFunction
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
ActivationFunction ( double x, int start, int size ) : void
ActivationRamp ( ) : System

Default constructor.

ActivationRamp ( double thresholdHigh, double thresholdLow, double high, double low ) : System

Construct a ramp activation function.

Clone ( ) : object

Clone the object.

DerivativeFunction ( double b, double a ) : double
HasDerivative ( ) : bool

True, as this function does have a derivative.

메소드 상세

ActivationFunction() 공개 메소드

public ActivationFunction ( double x, int start, int size ) : void
x double
start int
size int
리턴 void

ActivationRamp() 공개 메소드

Default constructor.
public ActivationRamp ( ) : System
리턴 System

ActivationRamp() 공개 메소드

Construct a ramp activation function.
public ActivationRamp ( double thresholdHigh, double thresholdLow, double high, double low ) : System
thresholdHigh double The high threshold value.
thresholdLow double The low threshold value.
high double The high value, replaced if the high threshold is exceeded.
low double The low value, replaced if the low threshold is exceeded.
리턴 System

Clone() 공개 메소드

Clone the object.
public Clone ( ) : object
리턴 object

DerivativeFunction() 공개 메소드

public DerivativeFunction ( double b, double a ) : double
b double
a double
리턴 double

HasDerivative() 공개 메소드

True, as this function does have a derivative.
public HasDerivative ( ) : bool
리턴 bool