Home Algorithms Literature Software

Evolving Clustering Method (ECM)


EFUNN SECoS ECM

ECM Algorithm

This is based on the concept of dynamically adding and modifying the clusters as new data is presented, where the modification to the clusters affects both the position of the clusters and the size of the cluster, in terms of a radius parameter associated with each cluster that determines the boundaries of that cluster. ECM has only one parameter, which drives the addition of clusters, known as the distance threshold D thr . When new clusters are added, their centres are set to equal the example that triggered their creation, and the radius R of a new cluster is initially set to zero. R grows as more vectors are allocated to the cluster. Due to the mechanism by which R is updated, it cannot exceed D thr . The ECM algorithm is shown below:

Create the first cluster centre from the first example I 0

for each subsequent vector I n do

Find the minimum distance D min between I n and each cluster centre C n

if D min is less than any cluster radius then

Add I n to the nearest cluster

else

FInd the cluster a with minimum value of S i , j , where S i , j = D i , j + R i , j , D i , j is the distance between the cluster centre and vector j , and R i is the radius of cluster i

if S i , a > 2 D thr then

Create a new cluster

else

Update a

end if

end if

end for

When cluster a is updated, its centre is shifted closer to I n and its radius R a ( t + 1 ) is set according to the equation below:

R a ( t + 1 ) = S i , a 2

The new centre of a , C a ( t + 1 ) is set so that its distance is on the line between C a ( t ) and I n at a distance of R a ( t + 1 ) .


Maintained by Dr Michael J. Watts