Log probability density/mass function.

tfd_log_prob(distribution, value, ...)

Arguments

distribution

The distribution being used.

value

float or double Tensor.

...

Additional parameters passed to Python.

Value

a Tensor of shape sample_shape(x) + self$batch_shape with values of type self$dtype.

See also

Examples

# \donttest{ d <- tfd_normal(loc = c(1, 2), scale = c(1, 0.5)) x <- d %>% tfd_sample() d %>% tfd_log_prob(x)
#> tf.Tensor([-1.7209249 -0.22920118], shape=(2,), dtype=float32)
# }