weka.clusterers
Interface UpdateableClusterer

All Known Implementing Classes:
Cobweb

public interface UpdateableClusterer

Interface to incremental cluster models that can learn using one instance at a time.

Version:
$Revision: 1.2 $
Author:
FracPete (fracpete at waikato dot ac dot nz)

Method Summary
 void updateClusterer(Instance newInstance)
          Adds an instance to the clusterer.
 void updateFinished()
          Singals the end of the updating.
 

Method Detail

updateClusterer

void updateClusterer(Instance newInstance)
                     throws java.lang.Exception
Adds an instance to the clusterer.

Parameters:
newInstance - the instance to be added
Throws:
java.lang.Exception - if something goes wrong

updateFinished

void updateFinished()
Singals the end of the updating.