64 lines
No EOL
2.9 KiB
Matlab
64 lines
No EOL
2.9 KiB
Matlab
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% Name: EMG.m
|
|
% Input: x - a nxd matrix (nx3 if using RGB)
|
|
% k - the number of clusters
|
|
% epochs - number of iterations (epochs) to run the algorithm for
|
|
% flag - flag to use improved EM to avoid singular covariance matrix
|
|
% Output: h - a nxk matrix, the expectation of the hidden variable z given the data set and distribution params
|
|
% m - a kxd matrix, the maximum likelihood estimate of the mean
|
|
% Q - vector of values of the complete data log-likelihood function
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
function [h, m, Q] = EMG(x, k, epochs, flag)
|
|
|
|
% variables
|
|
num_clusters = k; % number of clusters
|
|
eps = 1e-15; % small value that can be used to avoid obtaining 0's
|
|
lambda = 1e-3; % value for improved version of EM
|
|
[num_data, dim] = size(x);
|
|
h = zeros(num_data, num_clusters); % expectation of data point being part of a cluster
|
|
S = zeros(dim, dim, num_clusters); % covariance matrix for each cluster
|
|
b = zeros(num_data,num_clusters); % cluster assignments, only used for intialization of pi and S
|
|
Q = zeros(epochs*2,1); % vector that can hold complete data log-likelihood after each E and M step
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% TODO: Initialise cluster means using k-means
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% TODO: Determine the b values for all data points
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% TODO: Initialize pi's (mixing coefficients)
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% TODO: Initialize the covariance matrix estimate
|
|
% further modifications will need to be made when doing 2(d)
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
% Main EM loop
|
|
for n=1:epochs
|
|
%%%%%%%%%%%%%%%%
|
|
% E-step
|
|
%%%%%%%%%%%%%%%%
|
|
fprintf('E-step, epoch #%d\n', n);
|
|
[Q, h] = E_step(x, Q, h, pi, m, S, k);
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% TODO: Store the value of the complete log-likelihood function
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
%%%%%%%%%%%%%%%%
|
|
% M-step
|
|
%%%%%%%%%%%%%%%%
|
|
fprintf('M-step, epoch #%d\n', n);
|
|
[Q, S, m] = M_step(x, Q, h, S, k);
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
% TODO: Store the value of the complete log-likelihood function
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
end |