Modifier and Type | Method and Description |
---|---|
Neocognitron |
NeocognitronTrainer.getNeocognitron(int trainingLoops)
Get the final neocognitron.
|
static Neocognitron |
Neocognitron.OpenNeocognitron(java.io.File f)
Open a previously saved neocognitron file and returns the
original Neocognitron.
|
Neocognitron |
NeocognitronTrainer.runTrainingSet(int loops)
Train the neocognitron using a specific number of loops.
|
Modifier and Type | Method and Description |
---|---|
static void |
Neocognitron.SaveNeocognitron(Neocognitron n,
java.io.File f)
Serialize the neocognitron and save it to a specific file.
|
double |
NeocognitronTrainer.verifyNeocognitron(Neocognitron n,
java.util.ArrayList<double[][]> t,
boolean verbose)
Calculate the error rate of a specific neocognitron using a specific
list of inputs.
|
double |
NeocognitronTrainer.verifyNeocognitron(Neocognitron n,
boolean verbose)
Calculate the error rate of a specific neocognitron.
|
boolean |
NeocognitronTrainer.verifyTraining(Neocognitron n)
Determine if training was successful.
|