提交 44c88d75 authored 作者: Frederic's avatar Frederic

pep8

上级 f69bb52a
......@@ -3,62 +3,64 @@
"""
import unittest
from theano.tests import unittest_tools as utt
import numpy as np
from theano.tests import unittest_tools as utt
from theano import function
import theano
from theano import tensor
from theano.tensor import dmatrix, dvector
import numpy as np
from numpy import allclose
from theano.compile import as_op
class OpDecoratorTests(unittest.TestCase):
class OpDecoratorTests(unittest.TestCase):
def test_1arg(self):
x = dmatrix('x')
@as_op(dmatrix, dvector)
def diag(x):
def diag(x):
return np.diag(x)
fn = function([x], diag(x))
r = fn([[1.5, 5],[2, 2]])
r = fn([[1.5, 5], [2, 2]])
r0 = np.array([1.5, 2])
assert allclose(r, r0), (r, r0)
def test_2arg(self):
x = dmatrix('x')
x.tag.test_value=np.zeros((2,2))
x.tag.test_value = np.zeros((2, 2))
y = dvector('y')
y.tag.test_value=[0,0]
y.tag.test_value = [0, 0]
@as_op([dmatrix, dvector], dvector)
def diag_mult(x, y):
return np.diag(x) * y
def diag_mult(x, y):
return np.diag(x) * y
fn = function([x, y], diag_mult(x, y))
r = fn([[1.5, 5],[2, 2]], [1, 100])
r = fn([[1.5, 5], [2, 2]], [1, 100])
r0 = np.array([1.5, 200])
assert allclose(r, r0), (r, r0)
def test_infer_shape(self):
x = dmatrix('x')
x.tag.test_value=np.zeros((2,2))
x.tag.test_value = np.zeros((2, 2))
y = dvector('y')
y.tag.test_value=[0,0]
y.tag.test_value = [0, 0]
def infer_shape(node, shapes):
x,y = shapes
x, y = shapes
return [y]
@as_op([dmatrix, dvector], dvector, infer_shape)
def diag_mult(x, y):
return np.diag(x) * y
def diag_mult(x, y):
return np.diag(x) * y
fn = function([x, y], diag_mult(x, y).shape)
r = fn([[1.5, 5],[2, 2]], [1, 100])
r = fn([[1.5, 5], [2, 2]], [1, 100])
r0 = (2,)
assert allclose(r, r0), (r, r0)
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论