Class PredictionAppender

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, EventListener, Accessible, BatchClassifierListener, BatchClustererListener, BeanCommon, DataSource, EventConstraints, IncrementalClassifierListener, TestSetProducer, TrainingSetProducer, Visible

Bean that can can accept batch or incremental classifier events and produce dataset or instance events which contain instances with predictions appended.
Version:
$Revision: 10813 $
Author:
Mark Hall
See Also:
  • Constructor Details

    • PredictionAppender

      public PredictionAppender()
      Creates a new PredictionAppender instance.
  • Method Details

    • globalInfo

      public String globalInfo()
      Global description of this bean
      Returns:
      a String value
    • setCustomName

      public void setCustomName(String name)
      Set a custom (descriptive) name for this bean
      Specified by:
      setCustomName in interface BeanCommon
      Parameters:
      name - the name to use
    • getCustomName

      public String getCustomName()
      Get the custom (descriptive) name for this bean (if one has been set)
      Specified by:
      getCustomName in interface BeanCommon
      Returns:
      the custom name (or the default name)
    • appendPredictedProbabilitiesTipText

      public String appendPredictedProbabilitiesTipText()
      Return a tip text suitable for displaying in a GUI
      Returns:
      a String value
    • getAppendPredictedProbabilities

      public boolean getAppendPredictedProbabilities()
      Return true if predicted probabilities are to be appended rather than class value
      Returns:
      a boolean value
    • setAppendPredictedProbabilities

      public void setAppendPredictedProbabilities(boolean ap)
      Set whether to append predicted probabilities rather than class value (for discrete class data sets)
      Parameters:
      ap - a boolean value
    • addTrainingSetListener

      public void addTrainingSetListener(TrainingSetListener tsl)
      Add a training set listener
      Specified by:
      addTrainingSetListener in interface TrainingSetProducer
      Parameters:
      tsl - a TrainingSetListener value
    • removeTrainingSetListener

      public void removeTrainingSetListener(TrainingSetListener tsl)
      Remove a training set listener
      Specified by:
      removeTrainingSetListener in interface TrainingSetProducer
      Parameters:
      tsl - a TrainingSetListener value
    • addTestSetListener

      public void addTestSetListener(TestSetListener tsl)
      Add a test set listener
      Specified by:
      addTestSetListener in interface TestSetProducer
      Parameters:
      tsl - a TestSetListener value
    • removeTestSetListener

      public void removeTestSetListener(TestSetListener tsl)
      Remove a test set listener
      Specified by:
      removeTestSetListener in interface TestSetProducer
      Parameters:
      tsl - a TestSetListener value
    • addDataSourceListener

      public void addDataSourceListener(DataSourceListener dsl)
      Add a datasource listener
      Specified by:
      addDataSourceListener in interface DataSource
      Parameters:
      dsl - a DataSourceListener value
    • removeDataSourceListener

      public void removeDataSourceListener(DataSourceListener dsl)
      Remove a datasource listener
      Specified by:
      removeDataSourceListener in interface DataSource
      Parameters:
      dsl - a DataSourceListener value
    • addInstanceListener

      public void addInstanceListener(InstanceListener dsl)
      Add an instance listener
      Specified by:
      addInstanceListener in interface DataSource
      Parameters:
      dsl - a InstanceListener value
    • removeInstanceListener

      public void removeInstanceListener(InstanceListener dsl)
      Remove an instance listener
      Specified by:
      removeInstanceListener in interface DataSource
      Parameters:
      dsl - a InstanceListener value
    • setVisual

      public void setVisual(BeanVisual newVisual)
      Set the visual for this data source
      Specified by:
      setVisual in interface Visible
      Parameters:
      newVisual - a BeanVisual value
    • getVisual

      public BeanVisual getVisual()
      Get the visual being used by this data source.
      Specified by:
      getVisual in interface Visible
      Returns:
      a BeanVisual value
    • useDefaultVisual

      public void useDefaultVisual()
      Use the default images for a data source
      Specified by:
      useDefaultVisual in interface Visible
    • acceptClassifier

      public void acceptClassifier(IncrementalClassifierEvent e)
      Accept and process an incremental classifier event
      Specified by:
      acceptClassifier in interface IncrementalClassifierListener
      Parameters:
      e - an IncrementalClassifierEvent value
    • acceptClassifier

      public void acceptClassifier(BatchClassifierEvent e)
      Accept and process a batch classifier event
      Specified by:
      acceptClassifier in interface BatchClassifierListener
      Parameters:
      e - a BatchClassifierEvent value
    • acceptClusterer

      public void acceptClusterer(BatchClustererEvent e)
      Accept and process a batch clusterer event
      Specified by:
      acceptClusterer in interface BatchClustererListener
      Parameters:
      e - a BatchClassifierEvent value
    • setLog

      public void setLog(Logger logger)
      Set a logger
      Specified by:
      setLog in interface BeanCommon
      Parameters:
      logger - a weka.gui.Logger value
    • stop

      public void stop()
      Description copied from interface: BeanCommon
      Stop any processing that the bean might be doing.
      Specified by:
      stop in interface BeanCommon
    • isBusy

      public boolean isBusy()
      Returns true if. at this time, the bean is busy with some (i.e. perhaps a worker thread is performing some calculation).
      Specified by:
      isBusy in interface BeanCommon
      Returns:
      true if the bean is busy.
    • connectionAllowed

      public boolean connectionAllowed(String eventName)
      Returns true if, at this time, the object will accept a connection according to the supplied event name
      Specified by:
      connectionAllowed in interface BeanCommon
      Parameters:
      eventName - the event
      Returns:
      true if the object will accept a connection
    • connectionAllowed

      public boolean connectionAllowed(EventSetDescriptor esd)
      Returns true if, at this time, the object will accept a connection according to the supplied EventSetDescriptor
      Specified by:
      connectionAllowed in interface BeanCommon
      Parameters:
      esd - the EventSetDescriptor
      Returns:
      true if the object will accept a connection
    • connectionNotification

      public void connectionNotification(String eventName, Object source)
      Notify this object that it has been registered as a listener with a source with respect to the supplied event name
      Specified by:
      connectionNotification in interface BeanCommon
      Parameters:
      eventName -
      source - the source with which this object has been registered as a listener
    • disconnectionNotification

      public void disconnectionNotification(String eventName, Object source)
      Notify this object that it has been deregistered as a listener with a source with respect to the supplied event name
      Specified by:
      disconnectionNotification in interface BeanCommon
      Parameters:
      eventName - the event name
      source - the source with which this object has been registered as a listener
    • eventGeneratable

      public boolean eventGeneratable(String eventName)
      Returns true, if at the current time, the named event could be generated. Assumes that supplied event names are names of events that could be generated by this bean.
      Specified by:
      eventGeneratable in interface EventConstraints
      Parameters:
      eventName - the name of the event in question
      Returns:
      true if the named event could be generated at this point in time