All Packages  Class Hierarchy  This Package  Previous  Next  Index  WEKA's home

Interface weka.classifiers.Sourcable

public interface Sourcable
Interface for classifiers that can be converted to Java source.

Version:
$Revision: 1.1 $
Author:
Len Trigg (trigg@cs.waikato.ac.nz)

Method Index

 o toSource(String)
Returns a string that describes the classifier as source.

Methods

 o toSource
 public abstract String toSource(String className) throws Exception
Returns a string that describes the classifier as source. The classifier will be contained in a class with the given name (there may be auxiliary classes), and will contain a method with the signature:

 public static double classify(Object [] i);
 
where the array i contains elements that are either Double, String, with missing values represented as null. The generated code is public domain and comes with no warranty.

Parameters:
className - the name that should be given to the source class.
Returns:
the object source described by a string
Throws: Exception
if the souce can't be computed

All Packages  Class Hierarchy  This Package  Previous  Next  Index  WEKA's home