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.SerializableSerialization.
-
-
Field Summary
Fields Modifier and Type Field Description private double[][][]featuresListNeurons' features.private SquareNeighbourhoodneighbourhoodNeighbourhood type.private static longserialVersionUIDSerializable.private booleanwrapColumnsWrap.private booleanwrapRowsWrap.
-
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.ObjectreadResolve()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
Neuronfor which this instance is the proxy.
-
-