gpt4 book ai didi

tensorflow - 伯努利样本的梯度

转载 作者:行者123 更新时间:2023-12-02 04:33:47 25 4
gpt4 key购买 nike

我正在尝试根据伯努利分布计算样本的梯度。概率p(样本为1)。

我尝试使用 tensorflow.contrib.distributions 中提供的伯努利分布的实现和我自己基于此 discussion 的简单实现。然而,当我尝试计算梯度时,这两种方法都失败了。

使用伯努利实现:

import tensorflow as tf
from tensorflow.contrib.distributions import Bernoulli

p = tf.constant([0.2, 0.6])
b = Bernoulli(p=p)
s = b.sample()
g = tf.gradients(s, p)

with tf.Session() as session:
print(session.run(g))

上面的代码给了我以下错误:

TypeError: Fetch argument None has invalid type <class 'NoneType'>

使用我的实现:

import tensorflow as tf

p = tf.constant([0.2, 0.6])
shape = [1, 2]
s = tf.select(tf.random_uniform(shape) - p > 0.0, tf.ones(shape), tf.zeros(shape))
g = tf.gradients(s, p)

with tf.Session() as session:
print(session.run(g))

同样的错误:

TypeError: Fetch argument None has invalid type <class 'NoneType'>

有没有办法计算伯努利样本的梯度?

(我的 TensorFlow 版本是 0.12)。

最佳答案

由于显而易见的原因,您无法通过离散随机节点进行反向传播。由于梯度没有定义。但是,如果您使用由温度参数控制的连续分布来近似伯努利,是的,您可以。

这个想法称为重参数化技巧,并在 Tensorflow Probability 中的 RelaxedBernoulli 中实现(或者也在 TF.contrib 库中实现)

Relaxed bernoulli

您可以指定伯努利的概率p,这是您的随机变量,等等。

关于tensorflow - 伯努利样本的梯度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41961649/

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