Class ParameterNeuralNetwork
- java.lang.Object
-
- com.actelion.research.calc.regression.ParameterRegressionMethod
-
- com.actelion.research.calc.regression.neuralnetwork.ParameterNeuralNetwork
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ParameterRegressionMethod>
public class ParameterNeuralNetwork extends ParameterRegressionMethod
ParameterNeuralNetworkModest v. Korff
Created by korffmo1 on 02.04.19.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
TAG_ACTIVATION_FCT
static java.lang.String
TAG_INNERLAYER_ARCITECTURE
-
Fields inherited from class com.actelion.research.calc.regression.ParameterRegressionMethod
properties, TAG_NAME, TAG_STRING
-
-
Constructor Summary
Constructors Constructor Description ParameterNeuralNetwork()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(ParameterRegressionMethod o)
void
decodeProperties2Parameter()
Decodes the properties to the needed variables.NeuralNetwork.ActivationFunction
getActivationFunction()
int[]
getArrInnerLayerArchitecture()
static java.util.List<java.lang.String>
getHeader()
static void
main(java.lang.String[] args)
void
setActivationFunction(NeuralNetwork.ActivationFunction activationFunction)
void
setArrInnerLayerArchitecture(int[] arrInnerLayerArchitecture)
java.lang.String
toString()
-
Methods inherited from class com.actelion.research.calc.regression.ParameterRegressionMethod
copy, equals, getName, getProperties, read, read, setName, write, write2String
-
-
-
-
Field Detail
-
TAG_ACTIVATION_FCT
public static final java.lang.String TAG_ACTIVATION_FCT
- See Also:
- Constant Field Values
-
TAG_INNERLAYER_ARCITECTURE
public static final java.lang.String TAG_INNERLAYER_ARCITECTURE
- See Also:
- Constant Field Values
-
-
Method Detail
-
compareTo
public int compareTo(ParameterRegressionMethod o)
-
setArrInnerLayerArchitecture
public void setArrInnerLayerArchitecture(int[] arrInnerLayerArchitecture)
-
setActivationFunction
public void setActivationFunction(NeuralNetwork.ActivationFunction activationFunction)
-
getActivationFunction
public NeuralNetwork.ActivationFunction getActivationFunction()
-
getArrInnerLayerArchitecture
public int[] getArrInnerLayerArchitecture()
-
getHeader
public static java.util.List<java.lang.String> getHeader()
-
decodeProperties2Parameter
public void decodeProperties2Parameter()
Description copied from class:ParameterRegressionMethod
Decodes the properties to the needed variables.- Specified by:
decodeProperties2Parameter
in classParameterRegressionMethod
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
main
public static void main(java.lang.String[] args) throws java.io.IOException
- Throws:
java.io.IOException
-
-