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
↓ 2 callers
Method
calc
Calculates and returns the result of the sigmoid function @param input value @return result of the sigmoid function
Chapter05/math/Sigmoid.java:43
↓ 2 callers
Method
calc
calc This method calculates the output of each layer and forwards all values to the next layer
Chapter02/NeuralNet.java:182
↓ 2 callers
Method
calc
calc Performs the calculation of this function @param x @return Returns the result of this function
Chapter02/math/Sigmoid.java:47
↓ 2 callers
Method
calcDeltaWeight
(int layer,int input,int neuron)
Chapter04/learn/Backpropagation.java:113
↓ 2 callers
Method
calcDeltaWeight
(int layer,int input,int neuron)
Chapter06/learn/Backpropagation.java:118
↓ 2 callers
Method
calcDeltaWeight
(int layer,int input,int neuron)
Chapter03/src/edu/packt/neuralnet/learn/Backpropagation.java:113
↓ 2 callers
Method
calcDeltaWeight
(int layer,int input,int neuron)
Chapter05/learn/Backpropagation.java:119
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter04/learn/Hebbian.java:77
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter04/learn/DeltaRule.java:148
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter06/learn/Hebbian.java:75
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter06/learn/DeltaRule.java:151
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter03/src/edu/packt/neuralnet/learn/Hebbian.java:77
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter03/src/edu/packt/neuralnet/learn/DeltaRule.java:146
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter05/learn/Hebbian.java:77
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter05/learn/DeltaRule.java:152
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter02/learn/Hebbian.java:79
↓ 2 callers
Method
calcNewWeight
(int layer,int input,int neuron)
Chapter02/learn/DeltaRule.java:146
↓ 2 callers
Method
convertToMatrix
(double[] data,boolean isRow)
Chapter06/math/ArrayOperations.java:594
↓ 2 callers
Method
convertToMatrix
(double[] data,boolean isRow)
Chapter05/math/ArrayOperations.java:594
↓ 2 callers
Method
customDenormalize
Denormalizes data matrix as custom range @param data matrix of raw real numbers @param data matrix of normalized real numbers @return
Chapter04/data/DataNormalization.java:221
↓ 2 callers
Method
customNormalize
Normalizes data matrix as custom range @param data matrix of real numbers @param minimum normalized value @param maximum normalized value @return
Chapter04/data/DataNormalization.java:143
↓ 2 callers
Method
dataMatrix2csv
(double[][] data, String[] columnNames, String path, String filename, String separator)
Chapter06/data/LoadCsv.java:234
↓ 2 callers
Method
dataMatrix2csv
(double[][] data,String[] columnNames,String path,String filename,String separator)
Chapter05/data/LoadCsv.java:239
↓ 2 callers
Method
deactivateBias
()
Chapter04/Neuron.java:361
↓ 2 callers
Method
deactivateBias
deactivateBias This method sets the bias parameter to be zero, so the bias weight will be useless.
Chapter06/Neuron.java:423
↓ 2 callers
Method
deactivateBias
deactivateBias This method sets the bias parameter to be zero, so the bias weight will be useless.
Chapter05/Neuron.java:436
↓ 2 callers
Method
derivative
(Double[] _input)
Chapter02/Neuron.java:287
↓ 2 callers
Method
derivativeBatch
(ArrayList<ArrayList<Double>> _input)
Chapter04/Neuron.java:331
↓ 2 callers
Method
derivativeBatch
derivativeBatch @param _input a 2-D ArrayList (matrix) containing the inputs to be fed into the neuron. @return Returns the first derivative for each
Chapter06/Neuron.java:388
↓ 2 callers
Method
derivativeBatch
(ArrayList<ArrayList<Double>> _input)
Chapter03/src/edu/packt/neuralnet/Neuron.java:331
↓ 2 callers
Method
derivativeBatch
derivativeBatch @param _input a 2-D ArrayList (matrix) containing the inputs to be fed into the neuron. @return Returns the first derivative for each
Chapter05/Neuron.java:401
↓ 2 callers
Method
derivativeBatch
(ArrayList<ArrayList<Double>> _input)
Chapter02/Neuron.java:312
↓ 2 callers
Method
extractMatrixByArrayList
(int[] outputColumns, double[][] data, ArrayList<ArrayList<Double>> list)
Chapter06/examples/chapter06/DiagnosisExample.java:243
↓ 2 callers
Method
getArrayInputData
()
Chapter04/data/NeuralDataSet.java:88
↓ 2 callers
Method
getArrayInputData
()
Chapter06/data/NeuralDataSet.java:84
↓ 2 callers
Method
getArrayInputData
()
Chapter03/src/edu/packt/neuralnet/data/NeuralDataSet.java:71
↓ 2 callers
Method
getArrayInputData
()
Chapter05/data/NeuralDataSet.java:83
↓ 2 callers
Method
getArrayInputData
()
Chapter02/data/NeuralDataSet.java:71
↓ 2 callers
Method
getColumn
(int i)
Chapter06/data/NeuralInputData.java:131
↓ 2 callers
Method
getColumn
(int i)
Chapter05/data/NeuralInputData.java:131
↓ 2 callers
Method
getColumnDataArrayList
(int i)
Chapter06/data/NeuralInputData.java:110
↓ 2 callers
Method
getColumnDataArrayList
(int i)
Chapter05/data/NeuralInputData.java:110
↓ 2 callers
Method
getData
Gets data matrix @param path @param fileName @return Java Matrix
Chapter04/data/LoadCsv.java:35
↓ 2 callers
Method
getDeterminant
()
Chapter04/math/Matrix.java:327
↓ 2 callers
Method
getDeterminant
()
Chapter06/math/Matrix.java:328
↓ 2 callers
Method
getDeterminant
()
Chapter03/src/edu/packt/neuralnet/math/Matrix.java:327
↓ 2 callers
Method
getDeterminant
()
Chapter05/math/Matrix.java:328
↓ 2 callers
Method
getEpoch
()
Chapter02/learn/LearningAlgorithm.java:68
↓ 2 callers
Method
getIndexColumn
()
Chapter05/data/TimeSeries.java:43
↓ 2 callers
Method
getInputs
()
Chapter04/NeuralLayer.java:230
↓ 2 callers
Method
getInputs
Gets inputs values of neural net as double array @return double array of inputs
Chapter06/NeuralLayer.java:239
↓ 2 callers
Method
getInputs
()
Chapter03/src/edu/packt/neuralnet/NeuralLayer.java:230
↓ 2 callers
Method
getInputs
getInputs @return Return the neuron's inputs in a vector
Chapter03/src/edu/packt/neuralnet/Neuron.java:157
↓ 2 callers
Method
getInputs
()
Chapter05/NeuralLayer.java:230
↓ 2 callers
Method
getInputs
getInputs @return Return the neuron's inputs in a vector
Chapter02/Neuron.java:141
↓ 2 callers
Method
getListOfErrorsByEpoch
()
Chapter05/learn/LearningAlgorithm.java:99
↓ 2 callers
Method
getMeanNeuralOutput
()
Chapter04/data/NeuralDataSet.java:172
↓ 2 callers
Method
getMeanNeuralOutput
()
Chapter06/data/NeuralDataSet.java:239
↓ 2 callers
Method
getMeanNeuralOutput
()
Chapter03/src/edu/packt/neuralnet/data/NeuralDataSet.java:155
↓ 2 callers
Method
getMeanNeuralOutput
()
Chapter05/data/NeuralDataSet.java:238
↓ 2 callers
Method
getMeanNeuralOutput
()
Chapter02/data/NeuralDataSet.java:155
↓ 2 callers
Method
getMinOverallError
()
Chapter02/learn/LearningAlgorithm.java:76
↓ 2 callers
Method
getMultipleColumns
Gets multiple columns of a matrix @param double matrix @param vector of columns indexes @return double matrix with columns of column indexes
Chapter05/math/ArrayOperations.java:341
↓ 2 callers
Method
getNeuralColumn
(int i)
Chapter04/data/NeuralOutputData.java:176
↓ 2 callers
Method
getNeuralColumnArrayList
(int i)
Chapter06/data/NeuralOutputData.java:321
↓ 2 callers
Method
getNeuralColumnArrayList
(int i)
Chapter05/data/NeuralOutputData.java:317
↓ 2 callers
Method
getNeuralDataArrayList
()
Chapter06/data/NeuralOutputData.java:109
↓ 2 callers
Method
getNeuralDataArrayList
()
Chapter05/data/NeuralOutputData.java:105
↓ 2 callers
Method
getNeuronWeights
(int x,int y)
Chapter04/som/CompetitiveLayer2D.java:54
↓ 2 callers
Method
getNeuronWeights
(int n)
Chapter04/som/CompetitiveLayer.java:100
↓ 2 callers
Method
getNeuronWeights
(int x,int y)
Chapter06/som/CompetitiveLayer2D.java:52
↓ 2 callers
Method
getNeuronWeights
(int n)
Chapter06/som/CompetitiveLayer.java:99
↓ 2 callers
Method
getNeuronWeights
(int x,int y)
Chapter05/som/CompetitiveLayer2D.java:54
↓ 2 callers
Method
getNeuronWeights
(int n)
Chapter05/som/CompetitiveLayer.java:100
↓ 2 callers
Method
getNextLayer
getNextLayer @return Returns the reference to the next layer
Chapter04/NeuralLayer.java:116
↓ 2 callers
Method
getNextLayer
Returns the reference to the next layer @return next layer object
Chapter06/NeuralLayer.java:115
↓ 2 callers
Method
getNextLayer
getNextLayer @return Returns the reference to the next layer
Chapter03/src/edu/packt/neuralnet/NeuralLayer.java:116
↓ 2 callers
Method
getNextLayer
getNextLayer @return Returns the reference to the next layer
Chapter05/NeuralLayer.java:116
↓ 2 callers
Method
getOverallGeneralError
()
Chapter02/learn/DeltaRule.java:583
↓ 2 callers
Method
getPreviousLayer
getPreviousLayer @return Returns the reference to the previous layer
Chapter02/NeuralLayer.java:100
↓ 2 callers
Method
getRealVsEstimated
(int output)
Chapter04/data/NeuralDataSet.java:176
↓ 2 callers
Method
getRecord
(int i)
Chapter04/data/NeuralInputData.java:48
↓ 2 callers
Method
getRecord
(int i)
Chapter03/src/edu/packt/neuralnet/data/NeuralInputData.java:48
↓ 2 callers
Method
getRecord
(int i)
Chapter02/data/NeuralInputData.java:48
↓ 2 callers
Method
getRecordArrayList
(int i)
Chapter04/data/NeuralInputData.java:44
↓ 2 callers
Method
getRecordArrayList
(int i)
Chapter03/src/edu/packt/neuralnet/data/NeuralInputData.java:44
↓ 2 callers
Method
getRecordArrayList
(int i)
Chapter02/data/NeuralInputData.java:44
↓ 2 callers
Method
getRow
(int row)
Chapter04/math/Matrix.java:526
↓ 2 callers
Method
getRow
(int row)
Chapter06/math/Matrix.java:527
↓ 2 callers
Method
getRow
(int row)
Chapter03/src/edu/packt/neuralnet/math/Matrix.java:526
↓ 2 callers
Method
getRow
(int row)
Chapter05/math/Matrix.java:527
↓ 2 callers
Method
getTargetColumn
(int i)
Chapter04/data/NeuralOutputData.java:160
↓ 2 callers
Method
getTargetColumnArrayList
(int i)
Chapter06/data/NeuralOutputData.java:284
↓ 2 callers
Method
getTargetColumnArrayList
(int i)
Chapter05/data/NeuralOutputData.java:280
↓ 2 callers
Method
getTargetDataArrayList
()
Chapter06/data/NeuralOutputData.java:81
↓ 2 callers
Method
getTargetDataArrayList
()
Chapter05/data/NeuralOutputData.java:77
↓ 2 callers
Method
getTargetRecord
(int i)
Chapter06/data/NeuralOutputData.java:243
↓ 2 callers
Method
getTargetRecord
(int i)
Chapter05/data/NeuralOutputData.java:239
↓ 2 callers
Method
getTargetRecordArrayList
(int i)
Chapter06/data/NeuralOutputData.java:232
↓ 2 callers
Method
getTargetRecordArrayList
(int i)
Chapter05/data/NeuralOutputData.java:228
← previous
next →
501–600 of 1,754, ranked by callers