Package | Description |
---|---|
org.apache.commons.math3.ml.neuralnet |
Neural networks.
|
org.apache.commons.math3.ml.neuralnet.twod |
Two-dimensional neural networks.
|
Modifier and Type | Method and Description |
---|---|
static SquareNeighbourhood |
SquareNeighbourhood.valueOf(java.lang.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.
|
Modifier and Type | Field and Description |
---|---|
private SquareNeighbourhood |
NeuronSquareMesh2D.neighbourhood
Neighbourhood type.
|
private SquareNeighbourhood |
NeuronSquareMesh2D.SerializationProxy.neighbourhood
Neighbourhood type.
|
Constructor and Description |
---|
NeuronSquareMesh2D(boolean wrapRowDim,
boolean wrapColDim,
SquareNeighbourhood neighbourhoodType,
double[][][] featuresList)
Constructor with restricted access, solely used for deserialization.
|
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.
|
SerializationProxy(boolean wrapRows,
boolean wrapColumns,
SquareNeighbourhood neighbourhood,
double[][][] featuresList) |