Uses of Interface
weka.experiment.ResultListener

Packages that use ResultListener
weka.experiment   
 

Uses of ResultListener in weka.experiment
 

Classes in weka.experiment that implement ResultListener
 class AveragingResultProducer
          AveragingResultProducer takes the results from a ResultProducer and submits the average to the result listener.
 class CSVResultListener
          CSVResultListener outputs the received results in csv format to a Writer
 class DatabaseResultListener
          DatabaseResultListener takes the results from a ResultProducer and submits them to a central database.
 class DatabaseResultProducer
          DatabaseResultProducer examines a database and extracts out the results produced by the specified ResultProducer and submits them to the specified ResultListener.
 class InstancesResultListener
          InstancesResultListener outputs the received results in arff format to a Writer.
 class LearningRateResultProducer
          LearningRateResultProducer takes the results from a ResultProducer and submits the average to the result listener.
 

Fields in weka.experiment declared as ResultListener
protected  ResultListener DatabaseResultProducer.m_ResultListener
          The ResultListener to send results to
protected  ResultListener CrossValidationResultProducer.m_ResultListener
          The ResultListener to send results to
protected  ResultListener RandomSplitResultProducer.m_ResultListener
          The ResultListener to send results to
protected  ResultListener AveragingResultProducer.m_ResultListener
          The ResultListener to send results to
protected  ResultListener Experiment.m_ResultListener
          Where results will be sent
protected  ResultListener LearningRateResultProducer.m_ResultListener
          The ResultListener to send results to
 

Methods in weka.experiment that return ResultListener
 ResultListener Experiment.getResultListener()
          Gets the result listener where results will be sent.
 

Methods in weka.experiment with parameters of type ResultListener
 void DatabaseResultProducer.setResultListener(ResultListener listener)
          Sets the object to send results of each run to.
 void CrossValidationResultProducer.setResultListener(ResultListener listener)
          Sets the object to send results of each run to.
 void RemoteExperiment.setResultListener(ResultListener newResultListener)
          Sets the result listener where results will be sent.
 void RandomSplitResultProducer.setResultListener(ResultListener listener)
          Sets the object to send results of each run to.
 void ResultProducer.setResultListener(ResultListener listener)
          Sets the object to send results of each run to.
 void AveragingResultProducer.setResultListener(ResultListener listener)
          Sets the object to send results of each run to.
 void Experiment.setResultListener(ResultListener newResultListener)
          Sets the result listener where results will be sent.
 void LearningRateResultProducer.setResultListener(ResultListener listener)
          Sets the object to send results of each run to.