changeset 710:0c73cf7d3748

Cosmetic changes
author Olivier Delalleau <delallea@iro>
date Fri, 22 May 2009 13:43:23 -0400
parents 55f77c7c3075
children 0eae6d5315b5
files pylearn/algorithms/sandbox/DAA_inputs_groups.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/pylearn/algorithms/sandbox/DAA_inputs_groups.py	Fri May 22 10:04:04 2009 -0400
+++ b/pylearn/algorithms/sandbox/DAA_inputs_groups.py	Fri May 22 13:43:23 2009 -0400
@@ -128,13 +128,13 @@
 			self.define_gradients()
 			self.define_interface()
 		
-	def define_behavioural(self,container, input, idx_list , auxinput):
+	def define_behavioural(self, container, input, idx_list, auxinput):
 		self.define_propup(container, input, idx_list , auxinput)
 		container.hidden = self.hid_fn(container.hidden_activation)
 		self.define_propdown(container, idx_list , auxinput)
 		container.rec = self.hid_fn(container.rec_activation)
 		
-	def define_propup(self, container, input, idx_list , auxinput):
+	def define_propup(self, container, input, idx_list, auxinput):
 		if not(self.input is None):
 			container.hidden_activation = self.filter_up(input,self.wenc,self.benc)
 			if not(self.auxinput is None):