88899091929394
// set input and output cells for this network NeuralNetworkFactory.setDefaultIO(this); // set Hebbian learning rule for this network this.setLearningRule(new BinaryHebbianLearning()); }
9899100101102103104
// set input and output cells for this network NeuralNetworkFactory.setDefaultIO(this); // set Hopfield learning rule for this network //this.setLearningRule(new HopfieldLearning(this)); this.setLearningRule(new BinaryHebbianLearning()); }