本文整理汇总了Python中theano.tensor.extra_ops.diff函数的典型用法代码示例。如果您正苦于以下问题:Python diff函数的具体用法?Python diff怎么用?Python diff使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了diff函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_grad
def test_grad(self):
x = T.vector('x')
a = np.random.random(50).astype(config.floatX)
theano.function([x], T.grad(T.sum(diff(x)), x))
utt.verify_grad(self.op, [a])
for k in range(TestDiffOp.nb):
theano.function([x], T.grad(T.sum(diff(x, n=k)), x))
utt.verify_grad(DiffOp(n=k), [a], eps=7e-3)
开发者ID:317070,项目名称:Theano,代码行数:10,代码来源:test_extra_ops.py
示例2: test_diffOp
def test_diffOp(self):
x = T.matrix('x')
a = np.random.random((30, 50)).astype(config.floatX)
f = theano.function([x], diff(x))
assert np.allclose(np.diff(a), f(a))
for axis in range(len(a.shape)):
for k in range(TestDiffOp.nb):
g = theano.function([x], diff(x, n=k, axis=axis))
assert np.allclose(np.diff(a, n=k, axis=axis), g(a))
开发者ID:317070,项目名称:Theano,代码行数:11,代码来源:test_extra_ops.py
示例3: test_infer_shape
def test_infer_shape(self):
x = T.matrix("x")
a = np.random.random((30, 50)).astype(config.floatX)
self._compile_and_check([x], [self.op(x)], [a], self.op_class)
for axis in range(len(a.shape)):
for k in range(TestDiffOp.nb):
self._compile_and_check([x], [diff(x, n=k, axis=axis)], [a], self.op_class)
开发者ID:amanrajdce,项目名称:Theano,代码行数:9,代码来源:test_extra_ops.py
示例4: toChw
def toChw(self, position):
samples, targetDim = K.shape(position)
position = K.reshape(position, (samples, 2, 2))
centroid = K.sum(position, axis=1) / 2.0
hw = K.abs(THEO.diff(position, axis=1)[:,0,:])
chw = K.concatenate((centroid, hw), axis=1)
chw = chw[:, [0, 1, 3, 2]] # Changing from cwh to chw
return chw
开发者ID:fhdiaze,项目名称:DeepTracking,代码行数:9,代码来源:Beeper.py
注:本文中的theano.tensor.extra_ops.diff函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论