public abstract static class BackPropagationNet.ActivationFunction extends Object implements Function
Constructor and Description |
---|
ActivationFunction() |
Modifier and Type | Method and Description |
---|---|
double |
f(double... x) |
double |
f(Vec x) |
abstract Function |
getD()
Returns the function object for the derivative of this activation
function.
|
abstract double |
max()
The maximum possible response value
|
abstract double |
min()
The minimum possible response value
|
abstract double |
response(double x)
Computes the response of the response of this activation function on
the given input value
|
public abstract double response(double x)
x
- the input valuepublic abstract double min()
public abstract double max()
public abstract Function getD()
x
, the value of f'(x) must be computable as g(f(x))Copyright © 2017. All rights reserved.