Function.AboutEqual, Function.AtLeast, Function.AtMost, Function.CatmullRomSpline, Function.Clip, Function.Composition, Function.Exponential, Function.GreaterThan, Function.Identity, Function.LessThan, Function.NaturalSpline, Function.NotImplemented, Function.ReLU, Function.Scaled, Function.Sigmoid, Function.Signum, Function.SignumWithoutZero, Function.Sinus, Function.SoftMax, Function.Spline, Function.TanH| Constructor and Description |
|---|
Scaled() |
Scaled(double scaleFactor,
double addFactor,
Function function) |
| Modifier and Type | Method and Description |
|---|---|
Function.Scaled |
clone()
Return a deep copy of this object.
|
void |
fromXML(org.jdom2.Element element)
Reads attributes from XML tree.
|
double |
getMaxValue()
Return the largest possible function value.
|
double |
getMinValue()
Return the smallest possible function value.
|
double |
map(double value)
Map a value through the function.
|
double |
mapDerivative(double value)
Map a value through the first derivative of this function.
|
double |
mapSecondDerivative(double value)
Map a value through the second derivative of this function.
|
org.jdom2.Element |
toXML(org.jdom2.Element element)
Adds a function element to XML.
|
create, setParameterspublic Function function
public Scaled()
public Scaled(double scaleFactor,
double addFactor,
Function function)
public Function.Scaled clone()
Functionpublic double map(double value)
Functionpublic double mapDerivative(double value)
FunctionmapDerivative in class Functionpublic double mapSecondDerivative(double value)
FunctionmapSecondDerivative in class Functionpublic double getMinValue()
FunctiongetMinValue in class Functionpublic double getMaxValue()
FunctiongetMaxValue in class Functionpublic org.jdom2.Element toXML(org.jdom2.Element element)
Function