From cae1e125c78076c42670769baa56529f7560bf2b Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Sat, 26 Mar 2022 01:37:01 +0000 Subject: [PATCH 1/3] CompatHelper: add new compat entry for ArgCheck at version 2, (keep existing compat) --- Project.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Project.toml b/Project.toml index 3e0c60b..076efec 100644 --- a/Project.toml +++ b/Project.toml @@ -9,6 +9,7 @@ Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c" [compat] +ArgCheck = "2" julia = "1" [extras] From e371026d294b9133b63c9e58cccb7f5a00caa681 Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Sat, 26 Mar 2022 01:37:08 +0000 Subject: [PATCH 2/3] CompatHelper: add new compat entry for Distributions at version 0.25, (keep existing compat) --- Project.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Project.toml b/Project.toml index 3e0c60b..e8c494d 100644 --- a/Project.toml +++ b/Project.toml @@ -9,6 +9,7 @@ Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c" [compat] +Distributions = "0.25" julia = "1" [extras] From e39a54388b448b9a19bde88293a48985d1fc7f1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20M=C3=A9tivier?= <46794064+dmetivie@users.noreply.github.com> Date: Sat, 26 Mar 2022 22:06:11 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index fbf8d2b..aa45523 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ This package provides a simple implementation of the Expectation Maximization algorithm used to fit mixture models. Due to [Julia](https://julialang.org/) amazing [multiple dispatch](https://www.youtube.com/watch?v=kc9HwsxE1OY) systems and the [Distributions](https://juliastats.org/Distributions.jl/stable/) package, the code is very generic i.e., mixture of all common distributions should be supported. +I plan to add different methods for E-step and M-steps like stochastic EM and others. + ## Example ```julia