Uses of Interface
org.apache.commons.math4.neuralnet.FeatureInitializer
-
Packages that use FeatureInitializer Package Description org.apache.commons.math4.neuralnet Neural networks.org.apache.commons.math4.neuralnet.oned One-dimensional neural networks.org.apache.commons.math4.neuralnet.twod Two-dimensional neural networks. -
-
Uses of FeatureInitializer in org.apache.commons.math4.neuralnet
Methods in org.apache.commons.math4.neuralnet that return FeatureInitializer Modifier and Type Method Description static FeatureInitializer
FeatureInitializerFactory. function(DoubleUnaryOperator f, double init, double inc)
Creates an initializer from a univariate functionf(x)
.static FeatureInitializer
FeatureInitializerFactory. randomize(org.apache.commons.rng.sampling.distribution.ContinuousUniformSampler random, FeatureInitializer orig)
Adds some amount of random data to the given initializer.static FeatureInitializer
FeatureInitializerFactory. uniform(org.apache.commons.rng.UniformRandomProvider rng, double min, double max)
Uniform sampling of the given range.Methods in org.apache.commons.math4.neuralnet with parameters of type FeatureInitializer Modifier and Type Method Description static FeatureInitializer
FeatureInitializerFactory. randomize(org.apache.commons.rng.sampling.distribution.ContinuousUniformSampler random, FeatureInitializer orig)
Adds some amount of random data to the given initializer. -
Uses of FeatureInitializer in org.apache.commons.math4.neuralnet.oned
Constructors in org.apache.commons.math4.neuralnet.oned with parameters of type FeatureInitializer Constructor Description NeuronString(int num, boolean wrap, FeatureInitializer[] featureInit)
Creates a one-dimensional network: Each neuron not located on the border of the mesh has two neurons linked to it. -
Uses of FeatureInitializer in org.apache.commons.math4.neuralnet.twod
Constructors in org.apache.commons.math4.neuralnet.twod with parameters of type FeatureInitializer Constructor Description NeuronSquareMesh2D(int numRows, boolean wrapRowDim, int numCols, boolean wrapColDim, SquareNeighbourhood neighbourhoodType, FeatureInitializer[] featureInit)
Creates a two-dimensional network composed of square cells: Each neuron not located on the border of the mesh has four neurons linked to it.
-