Neuroph

Uses of Class
org.neuroph.core.exceptions.VectorSizeMismatchException

Packages that use VectorSizeMismatchException
org.neuroph.contrib.imgrec Provides classes for image recognition with neural networks. 
org.neuroph.core Provides base classes and basic building components for neural networks. 
org.neuroph.core.learning Provides base classes for neural network learning algorithms. 
 

Uses of VectorSizeMismatchException in org.neuroph.contrib.imgrec
 

Methods in org.neuroph.contrib.imgrec that throw VectorSizeMismatchException
static TrainingSet ImageRecognitionHelper.createBlackAndWhiteTrainingSet(java.util.List<java.lang.String> imageLabels, java.util.Map<java.lang.String,FractionRgbData> rgbDataMap)
          Creates binary black and white training set for the specified image labels and rgb data
 

Uses of VectorSizeMismatchException in org.neuroph.core
 

Methods in org.neuroph.core that throw VectorSizeMismatchException
 void NeuralNetwork.setInput(double... inputArray)
          Sets network input.
 void NeuralNetwork.setInput(java.util.Vector<java.lang.Double> inputVector)
          Sets network input.
 

Uses of VectorSizeMismatchException in org.neuroph.core.learning
 

Methods in org.neuroph.core.learning that throw VectorSizeMismatchException
 void TrainingSet.addElement(TrainingElement el)
          Adds new training element to this training set
 


Neuroph