@Deprecated public class NeuralNetworkFunctions extends Object
| Modifier and Type | Field and Description |
|---|---|
static DoubleDoubleFunction |
crossEntropy
Deprecated.
The cross entropy function (f(t, o) = -t * log(o) - (1 - t) * log(1 - o)).
|
static DoubleDoubleFunction |
derivativeCrossEntropy
Deprecated.
The derivation of cross entropy function (f(t, o) = -t * log(o) - (1 - t) *
log(1 - o)).
|
static DoubleFunction |
derivativeIdentityFunction
Deprecated.
The derivation of identity function (f(x) = x).
|
static DoubleDoubleFunction |
derivativeMinusSquared
Deprecated.
The derivation of minus squared function (f(t, o) = (o - t)^2).
|
| Constructor and Description |
|---|
NeuralNetworkFunctions()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static DoubleDoubleFunction |
getDerivativeDoubleDoubleFunction(String function)
Deprecated.
Get the corresponding derivation of double double function by the name.
|
static DoubleFunction |
getDerivativeDoubleFunction(String function)
Deprecated.
Get the derivation double function by the name.
|
static DoubleDoubleFunction |
getDoubleDoubleFunction(String function)
Deprecated.
Get the corresponding double-double function by the name.
|
static DoubleFunction |
getDoubleFunction(String function)
Deprecated.
Get the corresponding function by its name.
|
public static DoubleFunction derivativeIdentityFunction
public static DoubleDoubleFunction derivativeMinusSquared
public static DoubleDoubleFunction crossEntropy
public static DoubleDoubleFunction derivativeCrossEntropy
public static DoubleFunction getDoubleFunction(String function)
function - The name of the function.public static DoubleFunction getDerivativeDoubleFunction(String function)
function - The name of the function.public static DoubleDoubleFunction getDoubleDoubleFunction(String function)
function - The name of the function.public static DoubleDoubleFunction getDerivativeDoubleDoubleFunction(String function)
function - The name of the function.Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.