Hi @dmetivie ,
first of all thanks for this Julia package, and apologies if I make some very naive mistakes here, since this is one of my first meddling with Julia ever...
I am trying to fit a mixture of two beta distributions, but it does not find suffstats in this case:
using ExpectationMaximization
# Try to fit a beta mixture.
N = 50_000
α₁ = 10
β₁ = 5
α₂ = 5
β₂ = 10
π = 0.3
# Mixture Model of two betas.
mix_true = MixtureModel([Beta(α₁, β₁), Beta(α₂, β₂)], [π, 1 - π])
# Generate N samples from the mixture.
y = rand(mix_true, N)
histogram(y)
# Initial guess.
mix_guess = MixtureModel([Beta(1, 1), Beta(1, 1)], [0.5, 1 - 0.5])
test = rand(mix_guess, N)
# Fit the MLE with the EM algorithm:
mix_mle = fit_mle(mix_guess, y)
# ERROR: suffstats is not implemented for (Beta{Float64}, Vector{Float64}, Vector{Float64}).
My status:
(@v1.9) pkg> status
Status `~/.julia/environments/v1.9/Project.toml`
[336ed68f] CSV v0.10.11
[a93c6f00] DataFrames v1.6.1
[31c24e10] Distributions v0.25.103
[e1fe09cc] ExpectationMaximization v0.2.2
[f3b207a7] StatsPlots v0.15.6
[fce5fe82] Turing v0.29.3
Hi @dmetivie ,
first of all thanks for this Julia package, and apologies if I make some very naive mistakes here, since this is one of my first meddling with Julia ever...
I am trying to fit a mixture of two beta distributions, but it does not find
suffstatsin this case:My status: