Mercurial > pylearn
view _test_xlogx.py @ 672:27b1344a57b1
Added preprocessing back in
author | Joseph Turian <turian@gmail.com> |
---|---|
date | Thu, 20 Nov 2008 06:38:06 -0500 |
parents | 4e3629a894fa |
children |
line wrap: on
line source
from xlogx import xlogx import unittest from theano import compile from theano import gradient from theano import function from theano.tensor import as_tensor import theano.tensor.basic as TT import random import numpy.random class T_XlogX(unittest.TestCase): def test0(self): x = as_tensor([1, 0]) y = xlogx(x) f = function([],y) self.failUnless(numpy.all(f() == numpy.asarray([0, 0.]))) def test1(self): class Dummy(object): def make_node(self, a): return [xlogx(a)[:,2]] TT.verify_grad(self, Dummy(), [numpy.random.rand(3,4)]) if __name__ == '__main__': unittest.main()