From f3722a49ca9ad452fc6e33a7a691d80d3bee4c7f Mon Sep 17 00:00:00 2001 From: Tiago Freitas Pereira <tiagofrepereira@gmail.com> Date: Wed, 18 Feb 2015 13:07:37 +0100 Subject: [PATCH] Fixed the README --- README.rst | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index d8da9ec..bc55177 100644 --- a/README.rst +++ b/README.rst @@ -17,12 +17,22 @@ .. image:: http://img.shields.io/pypi/dm/bob.learn.em.png :target: https://pypi.python.org/pypi/bob.learn.em -=========================================== - Miscelaneous Machines and Trainers in Bob -=========================================== +================================================== + Expectation Maximization Machine Learning Tools +================================================== + +The EM algorithm is an iterative method that estimates parameters for statistical models, where the model depends on unobserved latent variables. The EM iteration alternates between performing an expectation (E) step, which creates a function for the expectation of the log-likelihood evaluated using the current estimate for the parameters, and a maximization (M) step, which computes parameters maximizing the expected log-likelihood found on the E step. These parameter-estimates are then used to determine the distribution of the latent variables in the next E step. + +The package includes the machine definition per se and a selection of different trainers for specialized purposes: + - Maximum Likelihood (ML) + - Maximum a Posteriori (MAP) + - K-Means + - Inter Session Variability Modelling (ISV) + - Joint Factor Analysis (JFA) + - Total Variability Modeling (iVectors) + - Probabilistic Linear Discriminant Analysis (PLDA) + - EM Principal Component Analysis (EM-PCA) -This package contains various Bob's machines and trainers which have not yet been fully ported into the new framework. -**Functionality in this package is subject to modifications**, including deletions of classes and functions (which will be moved to other packages). Installation ------------ -- GitLab