本文整理汇总了Python中tools.np_equal函数的典型用法代码示例。如果您正苦于以下问题:Python np_equal函数的具体用法?Python np_equal怎么用?Python np_equal使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了np_equal函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_5
def test_5(self):
n = 10
Z = np.random.random(n)
K = np.random.random(n)
Z1 = DenseConnection(Z,Z,K,toric=True).output()
Z2 = SharedConnection(Z,Z,K,toric=True,fft=False).output()
Z3 = SharedConnection(Z,Z,K,toric=True,fft=True).output()
Z4 = convolve(Z, K[::-1], mode='wrap')
assert np_equal(Z1,Z4)
assert np_equal(Z2,Z4)
assert np_equal(Z3,Z4)
示例2: test_7
def test_7(self):
n = 9
Z = np.random.random(n)
K = np.random.random(n//2)
Z1 = DenseConnection(Z,Z,K,toric=False).output()
Z2 = SharedConnection(Z,Z,K,toric=False,fft=False).output()
Z3 = SharedConnection(Z,Z,K,toric=False,fft=True).output()
Z4 = convolve(Z, K[::-1], mode='constant')
assert np_equal(Z1,Z4)
assert np_equal(Z2,Z4)
assert np_equal(Z3,Z4)
示例3: test_12
def test_12(self):
n = 10
Z = np.random.random((n,n))
K = np.random.random((2*n,2*n))
Z1 = DenseConnection(Z,Z,K,toric=False).output()
Z2 = SparseConnection(Z,Z,K,toric=False).output()
Z3 = SharedConnection(Z,Z,K,toric=False,fft=False).output()
Z4 = SharedConnection(Z,Z,K,toric=False,fft=True).output()
Z5 = convolve(Z, K[::-1,::-1], mode='constant')
assert np_equal(Z1,Z5)
assert np_equal(Z2,Z5)
assert np_equal(Z3,Z5)
assert np_equal(Z4,Z5)
示例4: test_1
def test_1(self):
n = 9
Z = np.random.random((n,n))
K = np.random.random((n//2,n//2))
Z1 = DenseConnection(Z,Z,K,toric=True).output()
Z2 = SparseConnection(Z,Z,K,toric=True).output()
Z3 = SharedConnection(Z,Z,K,toric=True,fft=False).output()
Z4 = SharedConnection(Z,Z,K,toric=True,fft=True).output()
Z5 = convolve(Z, K[::-1,::-1], mode='wrap')
assert np_equal(Z1,Z5)
assert np_equal(Z2,Z5)
assert np_equal(Z3,Z5)
assert np_equal(Z4,Z5)
示例5: test_6
def test_6(self):
n = 10
Z = np.random.random((n,n))
K = np.random.random((2*n,2*n))
Z1 = DenseConnection(Z,Z,K,toric=True).output()
Z2 = SparseConnection(Z,Z,K,toric=True).output()
Z3 = SharedConnection(Z,Z,K,toric=True,fft=False).output()
Z4 = SharedConnection(Z,Z,K,toric=True,fft=True).output()
K_ = K[5:15,5:15]
Z5 = convolve(Z, K_[::-1,::-1], mode='wrap')
assert np_equal(Z1,Z5)
assert np_equal(Z2,Z5)
assert np_equal(Z3,Z5)
assert np_equal(Z4,Z5)
示例6: test_7
def test_7(self):
assert np_equal( Connection(ones((3,3)), ones((3,3)), array([[1, 1, 1],
[1,NaN,1],
[1, 1, 1]])).output(),
array([[3,5,3],
[5,8,5],
[3,5,3]]))
示例7: test_5
def test_5(self):
assert np_equal( Connection(ones((3,3)), ones((5,5)), ones((3,3))).output(),
array([[4,4,6,4,4],
[4,4,6,4,4],
[6,6,9,6,6],
[4,4,6,4,4],
[4,4,6,4,4]]))
示例8: test_1
def test_1(self):
G = Group(5, 'V = I; I')
Z = np.ones(5)
DenseConnection(Z, G('I'), 1)
DenseConnection(Z, G('I'), 2)
G.run()
assert np_equal(3*np.ones(5),G('V'))
示例9: test_mask_shape_2
def test_mask_shape_2(self):
mask = np.ones((3,3))
mask[1,1] = 0
self.Z.mask = mask
self.Z[...] = 1
self.Z.setup()
assert np_equal(self.Z.f0,mask)
示例10: test_4
def test_4(self):
src = np.ones((3,))
dst = zeros((3,) , 'V=I; I')
kernel = np.ones(1)
C = DenseConnection(src, dst('I'), kernel,
equation = 'dW/dt = post.I')
dst.run(dt=0.1)
assert np_equal(C.weights, np.identity(3)*1.1)
示例11: test_3
def test_3(self):
kernel = np.ones(3)
kernel[1] = np.NaN
C = SparseConnection(np.ones(3), np.ones(3), kernel,
equation = 'dW/dt = 1')
C.evaluate(dt=0.1)
assert np_equal(C.weights, np.array([[0,1,0],
[1,0,1],
[0,1,0]])*1.1)
示例12: test_12
def test_12(self):
Z = ones((5,5))
K = arange(5*5).reshape((5,5))
C = Connection(Z,Z,K)
assert np_equal(C[0,0],
array([[12, 13, 14,NaN,NaN],
[17, 18, 19,NaN,NaN],
[22, 23, 24,NaN,NaN],
[NaN,NaN,NaN,NaN,NaN],
[NaN,NaN,NaN,NaN,NaN]]))
示例13: test_13
def test_13(self):
Z = ones((5,5))
K = arange(5*5).reshape((5,5))
C = Connection(Z,Z,K)
assert np_equal(C[0,4],
array([[NaN,NaN,10, 11, 12],
[NaN,NaN,15, 16, 17],
[NaN,NaN,20, 21, 22],
[NaN,NaN,NaN,NaN,NaN],
[NaN,NaN,NaN,NaN,NaN]]))
示例14: test_14
def test_14(self):
Z = ones((5,5))
K = arange(5*5).reshape((5,5))
C = Connection(Z,Z,K)
assert np_equal(C[4,0],
array([[NaN,NaN,NaN,NaN,NaN],
[NaN,NaN,NaN,NaN,NaN],
[ 2, 3, 4,NaN,NaN],
[ 7, 8, 9,NaN,NaN],
[ 12, 13, 14,NaN,NaN]]))
示例15: test_15
def test_15(self):
Z = ones((5,5))
K = arange(5*5).reshape((5,5))
C = Connection(Z,Z,K)
assert np_equal(C[4,4],
array([[NaN,NaN,NaN,NaN,NaN],
[NaN,NaN,NaN,NaN,NaN],
[NaN,NaN, 0, 1, 2],
[NaN,NaN, 5, 6, 7],
[NaN,NaN, 10, 11, 12]]))