I am training a neural net and I'm running into the above error message.

Im using Lasagne to implement the neural net. It seems to throw this error 
when I change my layer to return the square of some value e.g.,


class RandomLayer(MergeLayer):
   
    def __init__(self, incomings, **kwargs):

        super(RandomLayer, self).__init__(incomings, **kwargs)


    def get_output_for(self, inputs, **kwargs):
        x = inputs[0]

       return x**2

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"theano-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to