AttributeTransformer.java
Upload User: rhdiban
Upload Date: 2013-08-09
Package Size: 15085k
Code Size: 2k
Category:

Windows Develop

Development Platform:

Java

  1. /*
  2.  *    This program is free software; you can redistribute it and/or modify
  3.  *    it under the terms of the GNU General Public License as published by
  4.  *    the Free Software Foundation; either version 2 of the License, or
  5.  *    (at your option) any later version.
  6.  *
  7.  *    This program is distributed in the hope that it will be useful,
  8.  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.  *    GNU General Public License for more details.
  11.  *
  12.  *    You should have received a copy of the GNU General Public License
  13.  *    along with this program; if not, write to the Free Software
  14.  *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15.  */
  16. /*
  17.  *    AttributeTransformer.java
  18.  *    Copyright (C) 2000 Mark Hall
  19.  *
  20.  */
  21. package weka.attributeSelection;
  22. import java.io.*;
  23. import weka.core.*;
  24. /** 
  25.  * Abstract attribute transformer. Transforms the dataset.
  26.  *
  27.  * @author Mark Hall (mhall@cs.waikato.ac.nz)
  28.  * @version $Revision: 1.6 $
  29.  */
  30. public interface AttributeTransformer {
  31.     // ===============
  32.     // Public methods.
  33.     // ===============
  34.   /**
  35.    * Returns just the header for the transformed data (ie. an empty
  36.    * set of instances. This is so that AttributeSelection can
  37.    * determine the structure of the transformed data without actually
  38.    * having to get all the transformed data through getTransformedData().
  39.    * @return the header of the transformed data.
  40.    * @exception Exception if the header of the transformed data can't
  41.    * be determined.
  42.    */
  43.   Instances transformedHeader() throws Exception;
  44.   /**
  45.    * Returns the transformed data
  46.    * @return A set of instances representing the transformed data
  47.    * @exception Exception if the attribute could not be evaluated
  48.    */
  49.   Instances transformedData() throws Exception;
  50.   /**
  51.    * Transforms an instance in the format of the original data to the
  52.    * transformed space
  53.    * @return a transformed instance
  54.    * @exception Exception if the instance could not be transformed
  55.    */
  56.   Instance convertInstance(Instance instance) throws Exception;
  57. }