# HG changeset patch # User Frederic Bastien # Date 1211918342 14400 # Node ID 9e96fe8b955cc9ded7d7e077e6f737878b7f7037 # Parent 38beb81f4e8be838a2ec7b36eeb4754ffb049951 moved the function from misc.py that have dependency on theano in misc_theano.py diff -r 38beb81f4e8b -r 9e96fe8b955c denoising_aa.py --- a/denoising_aa.py Tue May 27 13:46:03 2008 -0400 +++ b/denoising_aa.py Tue May 27 15:59:02 2008 -0400 @@ -9,6 +9,7 @@ from nnet_ops import * import math from misc import * +from misc_theano import * from theano.tensor_random import binomial def hiding_corruption_formula(seed,average_fraction_hidden): diff -r 38beb81f4e8b -r 9e96fe8b955c misc.py --- 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): """