90919293949596
// set input and output cells for network NeuralNetworkFactory.setDefaultIO(this); // set LMS learning rule for this network this.setLearningRule(new LMS()); }
184185186187188189190
ConnectionFactory.fullConnect(ruleLayer, outLayer); // inicijalizuj ulazne i izlazne celije NeuralNetworkFactory.setDefaultIO(this); this.setLearningRule(new LMS()); }
319320321322323324325
ConnectionFactory.fullConnect(ruleLayer, outLayer); // set input and output cells for this network NeuralNetworkFactory.setDefaultIO(this); this.setLearningRule(new LMS()); }
99100101102103104105
// set input and output cells for this network NeuralNetworkFactory.setDefaultIO(this); // set appropriate learning rule for this network this.setLearningRule(new LMS()); }