All Downloads are FREE. Search and download functionalities are using the official Maven repository.

weka.gui.beans.ClustererProducer Maven / Gradle / Ivy

Go to download

This package provides generic configuration class and distributed map/reduce style tasks for Weka

There is a newer version: 1.0.9
Show newest version
/*
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see .
 */

/*
 *    ClustererProducer
 *    Copyright (C) 2014 University of Waikato, Hamilton, New Zealand
 *
 */

package weka.gui.beans;

/**
 * Interface to something that produces a trained clusterer
 * 
 * @author Mark Hall (mhall{[at]}pentaho{[dot]}com)
 * @version $Revision: 10076 $
 */
public interface ClustererProducer {

  /**
   * Get the trained clusterer
   * 
   * @return the trained clusterer
   */
  weka.clusterers.Clusterer getClusterer();

  /**
   * Get the header of the data used to train the clusterer
   * 
   * @return the header of the data
   */
  weka.core.Instances getTrainingHeader();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy