Uses of Class
com.imsl.datamining.neural.Perceptron
Packages that use Perceptron
-
Uses of Perceptron in com.imsl.datamining.neural
Subclasses of Perceptron in com.imsl.datamining.neuralMethods in com.imsl.datamining.neural that return PerceptronModifier and TypeMethodDescriptionHiddenLayer.createPerceptron()Creates aPerceptronin thisLayerof the neural network.HiddenLayer.createPerceptron(Activation activation, double bias) Creates aPerceptronin thisLayerwith a specified activation function and bias.OutputLayer.createPerceptron()Creates aPerceptronin thisLayerof the neural network.OutputLayer.createPerceptron(Activation activation, double bias) Creates aPerceptronin thisLayerwith a specifiedActivationandbias.HiddenLayer.createPerceptrons(int n) Creates a number ofPerceptrons in thisLayerof the neural network.HiddenLayer.createPerceptrons(int n, Activation activation, double bias) Creates a number ofPerceptrons in thisLayerwith the specified bias.OutputLayer.createPerceptrons(int n) Creates a number ofPerceptrons in thisLayerof the neural network.OutputLayer.createPerceptrons(int n, Activation activation, double bias) Creates a number ofPerceptrons in thisLayerwith specifiedactivationandbias.FeedForwardNetwork.getPerceptrons()Returns thePerceptrons in thisNetwork.abstract Perceptron[]Network.getPerceptrons()Returns an array containing thePerceptrons in theNetwork.