Mercurial > pylearn
comparison learner.py @ 177:69759976b3ac
s/Output/Input
author | James Bergstra <bergstrj@iro.umontreal.ca> |
---|---|
date | Tue, 13 May 2008 15:11:47 -0400 |
parents | fb4837eed1a6 |
children | 2698c0feeb54 |
comparison
equal
deleted
inserted
replaced
172:fb4837eed1a6 | 177:69759976b3ac |
---|---|
276 | 276 |
277 """ | 277 """ |
278 | 278 |
279 def __init__(self): | 279 def __init__(self): |
280 TLearner.__init__(self) | 280 TLearner.__init__(self) |
281 self.update_minibatch_function = compile.function(self.names2OpResults(self.updateMinibatchOutputAttributes()+ | 281 self.update_minibatch_function = compile.function(self.names2OpResults(self.updateMinibatchInputAttributes()+ |
282 self.updateMinibatchInputFields()), | 282 self.updateMinibatchInputFields()), |
283 self.names2OpResults(self.updateMinibatchOutputAttributes())) | 283 self.names2OpResults(self.updateMinibatchOutputAttributes())) |
284 self.update_end_function = compile.function(self.names2OpResults(self.updateEndInputAttributes()), | 284 self.update_end_function = compile.function(self.names2OpResults(self.updateEndInputAttributes()), |
285 self.names2OpResults(self.updateEndOutputAttributes())) | 285 self.names2OpResults(self.updateEndOutputAttributes())) |
286 | 286 |