Shannon entropy in nats.

tfd_entropy(distribution, ...)

Arguments

distribution

The distribution being used.

...

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)) d %>% tfd_entropy()
#> tf.Tensor([1.4189385 0.72579134], shape=(2,), dtype=float32)
# }