View source: R/distributions-mixture_same_family.R
distr_mixture_same_family | R Documentation |
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.
distr_mixture_same_family(
mixture_distribution,
component_distribution,
validate_args = NULL
)
mixture_distribution |
|
component_distribution |
|
validate_args |
Additional arguments |
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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.