blob: 3108da74fe1982d925856d2cdf662e88e86897f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<html>
<head>
<title>
Netlab Reference Manual gmminit
</title>
</head>
<body>
<H1> gmminit
</H1>
<h2>
Purpose
</h2>
Initialises Gaussian mixture model from data
<p><h2>
Synopsis
</h2>
<PRE>
mix = gmminit(mix, x, options)
</PRE>
<p><h2>
Description
</h2>
<CODE>mix = gmminit(mix, x, options)</CODE> uses a dataset <CODE>x</CODE>
to initialise the parameters of a Gaussian mixture
model defined by the data structure <CODE>mix</CODE>. The k-means algorithm
is used to determine the centres. The priors are computed from the
proportion of examples belonging to each cluster.
The covariance matrices are calculated as the sample covariance of the
points associated with (i.e. closest to) the corresponding centres.
For a mixture of PPCA model, the PPCA decomposition is calculated
for the points closest to a given centre.
This initialisation can be used as the starting point for training the
model using the EM algorithm.
<p><h2>
Example
</h2>
<PRE>
mix = gmm(3, 2);
options = foptions;
options(14) = 5;
mix = gmminit(mix, data, options);
</PRE>
This code sets up a Gaussian mixture model with 3 centres in 2 dimensions, and
then initialises the parameters from the data set <CODE>data</CODE> with 5 iterations
of the k means algorithm.
<p><h2>
See Also
</h2>
<CODE><a href="gmm.htm">gmm</a></CODE><hr>
<b>Pages:</b>
<a href="index.htm">Index</a>
<hr>
<p>Copyright (c) Ian T Nabney (1996-9)
</body>
</html>
|