view _nnet_ops.py @ 28:541a273bc89f

Removed __array__ method from dataset, whose semantics did not have a clear use (because of the possibility of overlapping fields).
author bengioy@grenat.iro.umontreal.ca
date Fri, 11 Apr 2008 13:08:51 -0400
parents b63e8c0bf21b
children bf0145fa73e8
line wrap: on
line source


import unittest
import theano._test_tensor as TT
import numpy

from nnet_ops import *

class T_sigmoid(unittest.TestCase):
    def setUp(self):
        numpy.random.seed(9999)
    def test_elemwise(self):
        TT.verify_grad(self, Sigmoid, [numpy.random.rand(3,4)])


class T_CrossentropySoftmax1Hot(unittest.TestCase):
    def setUp(self):
        numpy.random.seed(9999)
    def test0(self):
        y_idx = [0,1,3]
        def output1(a):
            return crossentropy_softmax_1hot(a, y_idx)[0:1]
        TT.verify_grad(self, output1, [numpy.random.rand(3,4)])



if __name__ == '__main__':
    unittest.main()