distr_mixture_same_family {torch} | R Documentation |
Mixture of components in the same family
Description
The MixtureSameFamily
distribution implements a (batch of) mixture
distribution where all component are from different parameterizations of
the same distribution type. It is parameterized by a Categorical
selecting distribution" (over k
component) and a component
distribution, i.e., a Distribution
with a rightmost batch shape
(equal to [k]
) which indexes each (batch of) component.
Usage
distr_mixture_same_family(
mixture_distribution,
component_distribution,
validate_args = NULL
)
Arguments
mixture_distribution |
|
component_distribution |
|
validate_args |
Additional arguments |
Examples
if (torch_is_installed()) {
# Construct Gaussian Mixture Model in 1D consisting of 5 equally
# weighted normal distributions
mix <- distr_categorical(torch_ones(5))
comp <- distr_normal(torch_randn(5), torch_rand(5))
gmm <- distr_mixture_same_family(mix, comp)
}