Uses of Class
org.apache.commons.math4.neuralnet.Neuron
-
Packages that use Neuron Package Description org.apache.commons.math4.neuralnet Neural networks.org.apache.commons.math4.neuralnet.twod Two-dimensional neural networks.org.apache.commons.math4.neuralnet.twod.util Utilities to visualize two-dimensional neural networks. -
-
Uses of Neuron in org.apache.commons.math4.neuralnet
Methods in org.apache.commons.math4.neuralnet that return Neuron Modifier and Type Method Description Neuron
Neuron. copy()
Performs a deep copy of this instance.Neuron
Network. getNeuron(long id)
Retrieves the neuron with the given (unique)id
.Methods in org.apache.commons.math4.neuralnet that return types with arguments of type Neuron Modifier and Type Method Description Collection<Neuron>
Network. getNeighbours(Iterable<Neuron> neurons)
Retrieves the neurons in the neighbourhood of any neuron in theneurons
list.Collection<Neuron>
Network. getNeighbours(Iterable<Neuron> neurons, Iterable<Neuron> exclude)
Retrieves the neurons in the neighbourhood of any neuron in theneurons
list.Collection<Neuron>
Network. getNeighbours(Neuron neuron)
Retrieves the neighbours of the given neuron.Collection<Neuron>
Network. getNeighbours(Neuron neuron, Iterable<Neuron> exclude)
Retrieves the neighbours of the given neuron.Collection<Neuron>
Network. getNeurons()
Iterator<Neuron>
Network. iterator()
List<Neuron>
MapRanking. rank(double[] features)
Creates a list of the neurons whose features best correspond to the givenfeatures
.List<Neuron>
MapRanking. rank(double[] features, int max)
Creates a list of the neurons whose features best correspond to the givenfeatures
.Methods in org.apache.commons.math4.neuralnet with parameters of type Neuron Modifier and Type Method Description void
Network. addLink(Neuron a, Neuron b)
Adds a link from neurona
to neuronb
.void
Network. deleteLink(Neuron a, Neuron b)
Deletes the link between neuronsa
andb
.void
Network. deleteNeuron(Neuron neuron)
Deletes a neuron.Collection<Neuron>
Network. getNeighbours(Neuron neuron)
Retrieves the neighbours of the given neuron.Collection<Neuron>
Network. getNeighbours(Neuron neuron, Iterable<Neuron> exclude)
Retrieves the neighbours of the given neuron.Method parameters in org.apache.commons.math4.neuralnet with type arguments of type Neuron Modifier and Type Method Description Collection<Neuron>
Network. getNeighbours(Iterable<Neuron> neurons)
Retrieves the neurons in the neighbourhood of any neuron in theneurons
list.Collection<Neuron>
Network. getNeighbours(Iterable<Neuron> neurons, Iterable<Neuron> exclude)
Retrieves the neurons in the neighbourhood of any neuron in theneurons
list.Collection<Neuron>
Network. getNeighbours(Neuron neuron, Iterable<Neuron> exclude)
Retrieves the neighbours of the given neuron.Constructor parameters in org.apache.commons.math4.neuralnet with type arguments of type Neuron Constructor Description MapRanking(Iterable<Neuron> neurons, DistanceMeasure distance)
-
Uses of Neuron in org.apache.commons.math4.neuralnet.twod
Methods in org.apache.commons.math4.neuralnet.twod that return Neuron Modifier and Type Method Description Neuron
NeuronSquareMesh2D. getNeuron(int i, int j)
Retrieves the neuron at location(i, j)
in the map.Neuron
NeuronSquareMesh2D. getNeuron(int row, int col, NeuronSquareMesh2D.HorizontalDirection alongRowDir, NeuronSquareMesh2D.VerticalDirection alongColDir)
Retrieves the requested neuron relative to the given(row, col)
position.Methods in org.apache.commons.math4.neuralnet.twod that return types with arguments of type Neuron Modifier and Type Method Description Iterator<Neuron>
NeuronSquareMesh2D. iterator()
-
Uses of Neuron in org.apache.commons.math4.neuralnet.twod.util
Methods in org.apache.commons.math4.neuralnet.twod.util with parameters of type Neuron Modifier and Type Method Description LocationFinder.Location
LocationFinder. getLocation(Neuron n)
Retrieves a neuron's grid coordinates.
-