|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use NeuralNetworkException | |
| org.generation5.nn | Neural network example classes including Kohonen, Perceptron and Feedforward networks. |
| Uses of NeuralNetworkException in org.generation5.nn |
| Methods in org.generation5.nn that throw NeuralNetworkException | |
void |
FeedForwardNN.initialize()
Initialize the network. |
double |
FeedForwardNN.run(double[] inputData)
Run the network with the given inputs. |
void |
FFNLayer.run(double[] input)
Run this layer on the given inputs. |
abstract void |
NeuralNetwork.initialize()
Initialize the neural network. |
abstract double |
NeuralNetwork.train(double[] inputData,
double[] expectedOutput)
Train the neural network on the given training data. |
double |
NeuralNetwork.train(double[] inputData,
double expectedOutput)
This method is provided as a helper for networks that only have one output, therefore only one expected output. |
double |
NeuralNetwork.train(double[] inputData)
This method is provided as a helper for networks that have no expected output, such as unsupervised networks. |
abstract double |
NeuralNetwork.run(double[] inputData)
Run the neural network on the given inputs. |
|
This documentation is part of the Generation5 JDK.
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||