public class LikelihoodAscentEM(T) : ExpectationMaximization!( (
    a, 
    b)
{  foreach (i, e; a) b[i] = 1 / e;
}, T), LikelihoodAscent!T
if(isFloatingPoint!T)
public this(
    size_t k, 
    size_t maxLength)

Constructor

Parameters

k

number of components

maxLength

maximal length of features. In terms of likelihood maximization maxLength is maximal length of a sample.

Functions

this

Constructor