Class NeuronSquareMesh2D.SerializationProxy
- java.lang.Object
-
- org.apache.commons.math3.ml.neuralnet.twod.NeuronSquareMesh2D.SerializationProxy
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- NeuronSquareMesh2D
private static class NeuronSquareMesh2D.SerializationProxy extends java.lang.Object implements java.io.Serializable
Serialization.
-
-
Field Summary
Fields Modifier and Type Field Description private double[][][]
featuresList
Neurons' features.private SquareNeighbourhood
neighbourhood
Neighbourhood type.private static long
serialVersionUID
Serializable.private boolean
wrapColumns
Wrap.private boolean
wrapRows
Wrap.
-
Constructor Summary
Constructors Constructor Description SerializationProxy(boolean wrapRows, boolean wrapColumns, SquareNeighbourhood neighbourhood, double[][][] featuresList)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private java.lang.Object
readResolve()
Custom serialization.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serializable.- See Also:
- Constant Field Values
-
wrapRows
private final boolean wrapRows
Wrap.
-
wrapColumns
private final boolean wrapColumns
Wrap.
-
neighbourhood
private final SquareNeighbourhood neighbourhood
Neighbourhood type.
-
featuresList
private final double[][][] featuresList
Neurons' features.
-
-
Constructor Detail
-
SerializationProxy
SerializationProxy(boolean wrapRows, boolean wrapColumns, SquareNeighbourhood neighbourhood, double[][][] featuresList)
- Parameters:
wrapRows
- Whether the row dimension is wrapped.wrapColumns
- Whether the column dimension is wrapped.neighbourhood
- Neighbourhood type.featuresList
- List of neurons features.neuronList
.
-
-
Method Detail
-
readResolve
private java.lang.Object readResolve()
Custom serialization.- Returns:
- the
Neuron
for which this instance is the proxy.
-
-