public void learnAllKohonen(int learningCount, BackgroundWorker bw, bool linearDelta, double deltaAtTheEnd)
 {
     LearningProcedures l = new LearningProcedures(this);
         weights = l.learnAll(learningCount, bw, linearDelta, deltaAtTheEnd);
 }
 public int[,] guessAll(int guessingCount , BackgroundWorker bw)
 {
     LearningProcedures l = new LearningProcedures(this);
     return l.guessAll(guessingCount, bw);
 }
 public void learnAllAverage(int learningCount, BackgroundWorker bw)
 {
     LearningProcedures l = new LearningProcedures(this);
     weights = l.learnAllAverage(learningCount, bw);
 }
 public void AutoTest(BackgroundWorker bw)
 {
     string path = @"F:\C#\HandwrittingDigitRecognition\LinearBinaryPattern\bin\Debug\weights\Center\auto\";
     LearningProcedures l = new LearningProcedures(this);
     l.AutoTest(bw, path);
 }