Uses of Class
org.apache.commons.math3.ml.neuralnet.Neuron
Packages that use Neuron
Package
Description
Neural networks.
Two-dimensional neural networks.
Utilities to visualize two-dimensional neural networks.
-
Uses of Neuron in org.apache.commons.math3.ml.neuralnet
Methods in org.apache.commons.math3.ml.neuralnet that return NeuronModifier and TypeMethodDescriptionNeuron.copy()Performs a deep copy of this instance.static NeuronMapUtils.findBest(double[] features, Iterable<Neuron> neurons, DistanceMeasure distance) Finds the neuron that best matches the given features.Network.getNeuron(long id) Retrieves the neuron with the given (unique)id.static Neuron[]MapUtils.sort(double[] features, Iterable<Neuron> neurons, DistanceMeasure distance) Creates a list of neurons sorted in increased order of the distance to the givenfeatures.Methods in org.apache.commons.math3.ml.neuralnet that return types with arguments of type NeuronModifier and TypeMethodDescriptionMapUtils.findBestAndSecondBest(double[] features, Iterable<Neuron> neurons, DistanceMeasure distance) Finds the two neurons that best match the given features.MapUtils.findBestAndSecondBest(double[] features, Iterable<Neuron> neurons, DistanceMeasure distance) Finds the two neurons that best match the given features.Network.getNeighbours(Iterable<Neuron> neurons) Retrieves the neurons in the neighbourhood of any neuron in theneuronslist.Network.getNeighbours(Iterable<Neuron> neurons, Iterable<Neuron> exclude) Retrieves the neurons in the neighbourhood of any neuron in theneuronslist.Network.getNeighbours(Neuron neuron) Retrieves the neighbours of the given neuron.Network.getNeighbours(Neuron neuron, Iterable<Neuron> exclude) Retrieves the neighbours of the given neuron.Network.getNeurons(Comparator<Neuron> comparator) Creates a list of the neurons, sorted in a custom order.Network.iterator()Methods in org.apache.commons.math3.ml.neuralnet with parameters of type NeuronModifier and TypeMethodDescriptionvoidAdds a link from neuronato neuronb.intvoidNetwork.deleteLink(Neuron a, Neuron b) Deletes the link between neuronsaandb.voidNetwork.deleteNeuron(Neuron neuron) Deletes a neuron.Network.getNeighbours(Neuron neuron) Retrieves the neighbours of the given neuron.Network.getNeighbours(Neuron neuron, Iterable<Neuron> exclude) Retrieves the neighbours of the given neuron.Method parameters in org.apache.commons.math3.ml.neuralnet with type arguments of type NeuronModifier and TypeMethodDescriptionstatic NeuronMapUtils.findBest(double[] features, Iterable<Neuron> neurons, DistanceMeasure distance) Finds the neuron that best matches the given features.MapUtils.findBestAndSecondBest(double[] features, Iterable<Neuron> neurons, DistanceMeasure distance) Finds the two neurons that best match the given features.Network.getNeighbours(Iterable<Neuron> neurons) Retrieves the neurons in the neighbourhood of any neuron in theneuronslist.Network.getNeighbours(Iterable<Neuron> neurons, Iterable<Neuron> exclude) Retrieves the neurons in the neighbourhood of any neuron in theneuronslist.Network.getNeighbours(Neuron neuron, Iterable<Neuron> exclude) Retrieves the neighbours of the given neuron.Network.getNeurons(Comparator<Neuron> comparator) Creates a list of the neurons, sorted in a custom order.static Neuron[]MapUtils.sort(double[] features, Iterable<Neuron> neurons, DistanceMeasure distance) Creates a list of neurons sorted in increased order of the distance to the givenfeatures. -
Uses of Neuron in org.apache.commons.math3.ml.neuralnet.twod
Methods in org.apache.commons.math3.ml.neuralnet.twod that return NeuronModifier and TypeMethodDescriptionNeuronSquareMesh2D.getNeuron(int i, int j) Retrieves the neuron at location(i, j)in the map.NeuronSquareMesh2D.getNeuron(int row, int col, NeuronSquareMesh2D.HorizontalDirection alongRowDir, NeuronSquareMesh2D.VerticalDirection alongColDir) Retrieves the neuron at(location[0], location[1])in the map.Methods in org.apache.commons.math3.ml.neuralnet.twod that return types with arguments of type Neuron -
Uses of Neuron in org.apache.commons.math3.ml.neuralnet.twod.util
Methods in org.apache.commons.math3.ml.neuralnet.twod.util with parameters of type NeuronModifier and TypeMethodDescriptionLocationFinder.getLocation(Neuron n) Retrieves a neuron's grid coordinates.