Uses of Class
org.apache.commons.math4.neuralnet.SquareNeighbourhood
-
Packages that use SquareNeighbourhood Package Description org.apache.commons.math4.neuralnet Neural networks.org.apache.commons.math4.neuralnet.twod Two-dimensional neural networks. -
-
Uses of SquareNeighbourhood in org.apache.commons.math4.neuralnet
Methods in org.apache.commons.math4.neuralnet that return SquareNeighbourhood Modifier and Type Method Description static SquareNeighbourhood
SquareNeighbourhood. valueOf(String name)
Returns the enum constant of this type with the specified name.static SquareNeighbourhood[]
SquareNeighbourhood. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of SquareNeighbourhood in org.apache.commons.math4.neuralnet.twod
Methods in org.apache.commons.math4.neuralnet.twod that return SquareNeighbourhood Modifier and Type Method Description SquareNeighbourhood
NeuronSquareMesh2D. getSquareNeighbourhood()
Indicates thetype of connectivity
between neurons.Constructors in org.apache.commons.math4.neuralnet.twod with parameters of type SquareNeighbourhood Constructor Description NeuronSquareMesh2D(boolean wrapRowDim, boolean wrapColDim, SquareNeighbourhood neighbourhoodType, double[][][] featuresList)
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.
-