Method | Description | |
---|---|---|
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.
|
public ActivationFunction ( double x, int start, int size ) : void | ||
x | double | |
start | int | |
size | int | |
return | void |
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. |
return | System |
public DerivativeFunction ( double b, double a ) : double | ||
b | double | |
a | double | |
return | double |