Package weka.clusterers
Interface UpdateableClusterer
public interface UpdateableClusterer
Interface to incremental cluster models that can learn using one instance
at a time.
- Version:
- $Revision: 10829 $
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
Method Summary
Modifier and TypeMethodDescriptionvoidupdateClusterer(Instance newInstance) Adds an instance to the clusterer.voidSignals the end of the updating.
-
Method Details
-
updateClusterer
Adds an instance to the clusterer.- Parameters:
newInstance- the instance to be added- Throws:
Exception- if something goes wrong
-
updateFinished
void updateFinished()Signals the end of the updating.
-