Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PacktPublishing/Neural-Network-Programming-with-Java-SecondEdition
/ functions
Functions
1,754 in github.com/PacktPublishing/Neural-Network-Programming-with-Java-SecondEdition
⨍
Functions
1,754
◇
Types & classes
294
↓ 165 callers
Method
add
(Matrix a)
Chapter05/math/Matrix.java:72
↓ 151 callers
Method
add
(Matrix a)
Chapter04/math/Matrix.java:71
↓ 145 callers
Method
add
(Matrix a)
Chapter06/math/Matrix.java:72
↓ 126 callers
Method
calc
calc This is the core method for calculating the activation function's value @param x @return returns the result of the activation function given x
Chapter02/math/IActivationFunction.java:20
↓ 69 callers
Method
add
(Matrix a)
Chapter03/src/edu/packt/neuralnet/math/Matrix.java:71
↓ 48 callers
Method
getNumberOfRows
()
Chapter04/math/Matrix.java:580
↓ 48 callers
Method
getNumberOfRows
()
Chapter06/math/Matrix.java:581
↓ 48 callers
Method
getNumberOfRows
()
Chapter03/src/edu/packt/neuralnet/math/Matrix.java:580
↓ 48 callers
Method
getNumberOfRows
()
Chapter05/math/Matrix.java:581
↓ 45 callers
Method
getNumberOfColumns
()
Chapter04/math/Matrix.java:584
↓ 45 callers
Method
getNumberOfColumns
()
Chapter06/math/Matrix.java:585
↓ 45 callers
Method
getNumberOfColumns
()
Chapter03/src/edu/packt/neuralnet/math/Matrix.java:584
↓ 45 callers
Method
getNumberOfColumns
()
Chapter05/math/Matrix.java:585
↓ 45 callers
Method
getValue
(int i,int j)
Chapter05/math/Matrix.java:518
↓ 42 callers
Method
getNeuron
getNeuron @param i java index of the neuron @return Returns the Neuron at the i-th java position in the layer
Chapter04/NeuralLayer.java:203
↓ 42 callers
Method
getNeuron
Gets neuron @param i java index of the neuron @return Returns the Neuron at the i-th java position in the layer
Chapter06/NeuralLayer.java:199
↓ 42 callers
Method
getNeuron
getNeuron @param i java index of the neuron @return Returns the Neuron at the i-th java position in the layer
Chapter05/NeuralLayer.java:203
↓ 42 callers
Method
getOutputLayer
()
Chapter04/NeuralNet.java:331
↓ 42 callers
Method
getOutputLayer
Gets output layer @return output layer object
Chapter06/NeuralNet.java:375
↓ 42 callers
Method
getOutputLayer
()
Chapter05/NeuralNet.java:331
↓ 41 callers
Method
getValue
(int i,int j)
Chapter04/math/Matrix.java:517
↓ 41 callers
Method
getValue
(int i,int j)
Chapter06/math/Matrix.java:518
↓ 41 callers
Method
getValue
(int i,int j)
Chapter03/src/edu/packt/neuralnet/math/Matrix.java:517
↓ 40 callers
Method
getNumberOfNeuronsInLayer
getNumberOfNeuronsInLayer @return Returns the number of neurons in this layer
Chapter04/NeuralLayer.java:92
↓ 40 callers
Method
getNumberOfNeuronsInLayer
Returns the number of neurons in this layer @return integer number of neurons in this layer
Chapter06/NeuralLayer.java:91
↓ 40 callers
Method
getNumberOfNeuronsInLayer
getNumberOfNeuronsInLayer @return Returns the number of neurons in this layer
Chapter05/NeuralLayer.java:92
↓ 39 callers
Method
getNeuron
getNeuron @param i java index of the neuron @return Returns the Neuron at the i-th java position in the layer
Chapter03/src/edu/packt/neuralnet/NeuralLayer.java:203
↓ 38 callers
Method
getNumberOfNeuronsInLayer
getNumberOfNeuronsInLayer @return Returns the number of neurons in this layer
Chapter03/src/edu/packt/neuralnet/NeuralLayer.java:92
↓ 35 callers
Method
getOutputLayer
()
Chapter03/src/edu/packt/neuralnet/NeuralNet.java:327
↓ 33 callers
Method
getNumberOfHiddenLayers
()
Chapter04/NeuralNet.java:307
↓ 33 callers
Method
getNumberOfHiddenLayers
Gets number of hidden layers @return number of hidden layers
Chapter06/NeuralNet.java:327
↓ 33 callers
Method
getNumberOfHiddenLayers
()
Chapter05/NeuralNet.java:307
↓ 31 callers
Method
setValue
(int i,int j,double value)
Chapter04/math/Matrix.java:554
↓ 31 callers
Method
setValue
(int i,int j,double value)
Chapter06/math/Matrix.java:555
↓ 31 callers
Method
setValue
(int i,int j,double value)
Chapter03/src/edu/packt/neuralnet/math/Matrix.java:554
↓ 31 callers
Method
setValue
(int i,int j,double value)
Chapter05/math/Matrix.java:555
↓ 30 callers
Method
getNumberOfInputs
getNumberOfInputs @return Returns the number of inputs
Chapter04/Neuron.java:235
↓ 30 callers
Method
getNumberOfInputs
Returns the number of inputs @return number of inputs
Chapter06/Neuron.java:257
↓ 30 callers
Method
getNumberOfInputs
getNumberOfInputs @return Returns the number of inputs
Chapter05/Neuron.java:267
↓ 28 callers
Method
getNumberOfHiddenLayers
()
Chapter03/src/edu/packt/neuralnet/NeuralNet.java:303
↓ 27 callers
Method
getNumberOfInputs
getNumberOfInputs @return Returns the number of inputs
Chapter03/src/edu/packt/neuralnet/Neuron.java:235
↓ 27 callers
Method
getNumberOfOutputs
()
Chapter04/NeuralNet.java:315
↓ 27 callers
Method
getNumberOfOutputs
Gets number of outputs @return number of outputs
Chapter06/NeuralNet.java:343
↓ 27 callers
Method
getNumberOfOutputs
()
Chapter05/NeuralNet.java:315
↓ 26 callers
Method
getNumberOfOutputs
()
Chapter03/src/edu/packt/neuralnet/NeuralNet.java:311
↓ 23 callers
Method
printNeuralOutput
()
Chapter06/data/NeuralDataSet.java:231
↓ 22 callers
Method
getHiddenLayer
(int i)
Chapter04/NeuralNet.java:323
↓ 22 callers
Method
getHiddenLayer
Gets hidden layer @return hidden layer object
Chapter06/NeuralNet.java:359
↓ 22 callers
Method
getHiddenLayer
(int i)
Chapter03/src/edu/packt/neuralnet/NeuralNet.java:319
↓ 22 callers
Method
getHiddenLayer
(int i)
Chapter05/NeuralNet.java:323
↓ 22 callers
Method
getMinOverallError
()
Chapter06/learn/LearningAlgorithm.java:126
↓ 22 callers
Method
getOverallGeneralError
()
Chapter06/learn/DeltaRule.java:611
↓ 21 callers
Method
getMinOverallError
()
Chapter05/learn/LearningAlgorithm.java:127
↓ 21 callers
Method
getOutputs
Returns the neural outputs in the form of array @return outputs as array
Chapter06/NeuralNet.java:282
↓ 21 callers
Method
getOutputs
getOutputs @return Returns the neural outputs in the form of vector
Chapter05/NeuralNet.java:273
↓ 21 callers
Method
getOverallGeneralError
()
Chapter05/learn/DeltaRule.java:612
↓ 21 callers
Method
getWeight
(int i)
Chapter04/Neuron.java:203
↓ 21 callers
Method
getWeight
getWeight Method to return the ith weight of the neuron. @param i index of the weight. Bias is the last. @return Returns the ith weight of the neuron.
Chapter06/Neuron.java:221
↓ 21 callers
Method
getWeight
getWeight Method to return the ith weight of the neuron. @param i index of the weight. Bias is the last. @return Returns the ith weight of the neuron.
Chapter05/Neuron.java:230
↓ 21 callers
Method
printNeuralOutput
()
Chapter04/data/NeuralDataSet.java:164
↓ 21 callers
Method
printNeuralOutput
()
Chapter03/src/edu/packt/neuralnet/data/NeuralDataSet.java:147
↓ 21 callers
Method
printNeuralOutput
()
Chapter05/data/NeuralDataSet.java:230
↓ 20 callers
Method
getMinOverallError
()
Chapter04/learn/LearningAlgorithm.java:95
↓ 20 callers
Method
getNeuron
getNeuron @param i java index of the neuron @return Returns the Neuron at the i-th java position in the layer
Chapter02/NeuralLayer.java:193
↓ 20 callers
Method
getOutputs
getOutputs @return Returns the neural outputs in the form of vector
Chapter04/NeuralNet.java:273
↓ 20 callers
Method
getOutputs
getOutputs @return Returns the neural outputs in the form of vector
Chapter03/src/edu/packt/neuralnet/NeuralNet.java:269
↓ 20 callers
Method
getOverallGeneralError
()
Chapter04/learn/DeltaRule.java:594
↓ 20 callers
Method
setInputs
Sets a vector of double-precision values to the neuron input @param values vector of values applied at the neuron input
Chapter06/Neuron.java:139
↓ 20 callers
Method
setInputs
setInputs Sets a vector of double-precision values to the neuron input @param values vector of values applied at the neuron input
Chapter05/Neuron.java:142
↓ 19 callers
Method
getWeight
(int i)
Chapter03/src/edu/packt/neuralnet/Neuron.java:203
↓ 19 callers
Method
setInputs
setInputs Sets a vector of double-precision values to the neuron input @param values vector of values applied at the neuron input
Chapter04/Neuron.java:121
↓ 18 callers
Method
getMinOverallError
()
Chapter03/src/edu/packt/neuralnet/learn/LearningAlgorithm.java:76
↓ 18 callers
Method
getNumberOfInputs
getNumberOfInputs @return Returns the number of inputs
Chapter02/Neuron.java:219
↓ 18 callers
Method
getOverallGeneralError
()
Chapter03/src/edu/packt/neuralnet/learn/DeltaRule.java:583
↓ 17 callers
Method
forward
(int i)
Chapter04/learn/ELM.java:106
↓ 17 callers
Method
forward
(int i)
Chapter06/learn/ELM.java:104
↓ 17 callers
Method
forward
(int i)
Chapter03/src/edu/packt/neuralnet/learn/ELM.java:106
↓ 17 callers
Method
forward
(int i)
Chapter05/learn/ELM.java:105
↓ 17 callers
Method
getArrayNeuralOutputRecord
(int i)
Chapter04/data/NeuralDataSet.java:116
↓ 17 callers
Method
getArrayNeuralOutputRecord
(int i)
Chapter06/data/NeuralDataSet.java:143
↓ 17 callers
Method
getArrayNeuralOutputRecord
(int i)
Chapter03/src/edu/packt/neuralnet/data/NeuralDataSet.java:99
↓ 17 callers
Method
getArrayNeuralOutputRecord
(int i)
Chapter05/data/NeuralDataSet.java:142
↓ 16 callers
Method
getArrayTargetOutputRecord
(int i)
Chapter04/data/NeuralDataSet.java:108
↓ 16 callers
Method
getArrayTargetOutputRecord
(int i)
Chapter06/data/NeuralDataSet.java:127
↓ 16 callers
Method
getArrayTargetOutputRecord
(int i)
Chapter03/src/edu/packt/neuralnet/data/NeuralDataSet.java:91
↓ 16 callers
Method
getArrayTargetOutputRecord
(int i)
Chapter05/data/NeuralDataSet.java:126
↓ 16 callers
Method
getColumn
Gets column of an double matrix @param matrix with elements @param columun index @return array with elements of column index
Chapter06/math/ArrayOperations.java:294
↓ 15 callers
Method
getIthNeuralOutputArrayList
(int i)
Chapter04/data/NeuralDataSet.java:148
↓ 15 callers
Method
getIthNeuralOutputArrayList
(int i)
Chapter06/data/NeuralDataSet.java:207
↓ 15 callers
Method
getIthNeuralOutputArrayList
(int i)
Chapter03/src/edu/packt/neuralnet/data/NeuralDataSet.java:131
↓ 15 callers
Method
getIthNeuralOutputArrayList
(int i)
Chapter05/data/NeuralDataSet.java:206
↓ 15 callers
Method
getIthTargetOutputArrayList
(int i)
Chapter04/data/NeuralDataSet.java:140
↓ 15 callers
Method
getIthTargetOutputArrayList
(int i)
Chapter06/data/NeuralDataSet.java:191
↓ 15 callers
Method
getIthTargetOutputArrayList
(int i)
Chapter03/src/edu/packt/neuralnet/data/NeuralDataSet.java:123
↓ 15 callers
Method
getIthTargetOutputArrayList
(int i)
Chapter05/data/NeuralDataSet.java:190
↓ 15 callers
Method
printTargetOutput
()
Chapter06/data/NeuralDataSet.java:227
↓ 15 callers
Method
setNeuralOutput
(int i,ArrayList<Double> _neuralData)
Chapter06/data/NeuralDataSet.java:159
↓ 15 callers
Method
setNeuralOutput
(int i,ArrayList<Double> _neuralData)
Chapter05/data/NeuralDataSet.java:158
↓ 14 callers
Method
derivative
(double x)
Chapter02/math/IActivationFunction.java:31
↓ 14 callers
Method
getNumberOfHiddenLayers
()
Chapter02/NeuralNet.java:243
next →
1–100 of 1,754, ranked by callers