Mercurial > pylearn
view _test_onehotop.py @ 455:fb62f0e4bcfe
Reverted change ce6b4fd3ab29 (I do not believe anymore it was a typo)
author | delallea@valhalla.apstat.com |
---|---|
date | Thu, 02 Oct 2008 13:46:13 -0400 |
parents | 18702ceb2096 |
children | 844bad76459c |
line wrap: on
line source
from onehotop import one_hot import unittest from theano import compile from theano import gradient from theano.tensor import as_tensor import random import numpy.random class T_OneHot(unittest.TestCase): def test0(self): x = as_tensor([3, 2, 1]) y = as_tensor(5) o = one_hot(x, y) y = compile.eval_outputs([o]) self.failUnless(numpy.all(y == numpy.asarray([[0, 0, 0, 1, 0], [0, 0, 1, 0, 0], [0, 1, 0, 0, 0]]))) if __name__ == '__main__': unittest.main()