diff misc.py @ 233:9e96fe8b955c

moved the function from misc.py that have dependency on theano in misc_theano.py
author Frederic Bastien <bastienf@iro.umontreal.ca>
date Tue, 27 May 2008 15:59:02 -0400
parents d7250ee86f72
children 430c9e92cd23
line wrap: on
line diff
--- a/misc.py	Tue May 27 13:46:03 2008 -0400
+++ b/misc.py	Tue May 27 15:59:02 2008 -0400
@@ -1,24 +1,3 @@
-
-import theano
-
-class Print(theano.Op):
-    def __init__(self,message=""):
-        self.message=message
-        self.view_map={0:[0]}
-
-    def make_node(self,xin):
-        xout = xin.type.make_result()
-        return theano.Apply(op = self, inputs = [xin], outputs=[xout])
-
-    def perform(self,node,inputs,output_storage):
-        xin, = inputs
-        xout, = output_storage
-        xout[0] = xin
-        print self.message,xin
-
-    def grad(self,input,output_gradients):
-        return output_gradients
-
 
 def unique_elements_list_intersection(list1,list2):
     """