Details
-
Wish
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.5
-
None
Description
In class NeuronSquareMesh2D (package o.a.c.m.ml.neuralnet):
A new method to select a neighbour in a certain "direction" (to be defined
with an "enum") would be useful (for some visualizations that need the exact location of each neighbour):
public class NeuronSquareMesh2D { // ... public enum HorizontalDirection { RIGHT, CENTER, LEFT, } public enum VerticalDirection { UP, CENTER, DOWN, } public Neuron getNeuronNeighbour(int i, int j, HorizontalDirection iDir, VerticalDirection jDir) { // ... } }