gpt4 book ai didi

python - theano( python ): elementwise gradient

转载 作者:太空宇宙 更新时间:2023-11-03 11:00:20 26 4
gpt4 key购买 nike

我正在尝试执行元素渐变

例如,

output-f(x): 5 x 1 向量,

相对于input-X: 5 x 1 向量

我可以这样做,

 import theano
import theano.tensor as T

X = T.vector('X')

f = X*3

[rfrx, []] = theano.scan(lambda j, f,X : T.grad(f[j], X), sequences=T.arange(X.shape[0]), non_sequences=[f,X])

fcn_rfrx = theano.function([X], rfrx)

fcn_rfrx(np.ones(5,).astype(float32))

结果是

array([[ 3.,  0.,  0.,  0.,  0.],
[ 0., 3., 0., 0., 0.],
[ 0., 0., 3., 0., 0.],
[ 0., 0., 0., 3., 0.],
[ 0., 0., 0., 0., 3.]], dtype=float32)

但由于它效率不高,我想得到 5 x 1 向量作为结果

通过做类似...

 [rfrx, []] = theano.scan(lambda j, f,X : T.grad(f[j], X[j]), sequences=T.arange(X.shape[0]), non_sequences=[f,X])

这是行不通的。

有什么办法吗?(抱歉格式不好..我是新来的,正在学习)


(我添加了更清楚的例子):

给定输入向量:x[1], x[2], ..., x[n]

和输出向量:y[1], y[2], .., y[n],

其中 y[i] = f(x[i])。

我想要

的结果

仅 df(x[i])/dx[i]

而不是

df(x[i])/dx[j] 对于 (i<>j)

,为了计算效率(n是数据的数量> 10000)

最佳答案

您正在寻找 theano.tensor.jacobian

import theano
import theano.tensor as T

x = T.fvector()
p = T.as_tensor_variable([(x ** i).sum() for i in range(5)])

j = T.jacobian(p, x)

f = theano.function([x], [p, j])

现在评估 yield

In [31]: f([1., 2., 3.])
Out[31]:
[array([ 3., 6., 14., 36., 98.], dtype=float32),
array([[ 0., 0., 0.],
[ 1., 1., 1.],
[ 2., 4., 6.],
[ 3., 12., 27.],
[ 4., 32., 108.]], dtype=float32)]

如果您只对一个或几个偏导数感兴趣,您也可以只获取它们。有必要仔细查看 theano 优化规则,以了解它的效率有多高(基准测试是第一个测试)。 (有可能已经对梯度进行索引使 theano 清楚它不需要计算其余部分)。

x = T.fscalar()
y = T.fvector()
z = T.concatenate([x.reshape((1,)), y.reshape((-1,))])

e = (z ** 2).sum()
g = T.grad(e, wrt=x)

ff = theano.function([x, y], [e, g])

关于python - theano( python ): elementwise gradient,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34023805/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com