weka.classifiers.pmml.consumer
Class SupportVectorMachineModel

java.lang.Object
  extended by weka.classifiers.AbstractClassifier
      extended by weka.classifiers.pmml.consumer.PMMLClassifier
          extended by weka.classifiers.pmml.consumer.SupportVectorMachineModel
All Implemented Interfaces:
Serializable, Cloneable, Classifier, CapabilitiesHandler, OptionHandler, PMMLModel, RevisionHandler

public class SupportVectorMachineModel
extends PMMLClassifier
implements Serializable

Implements a PMML SupportVectorMachineModel

Version:
$Revision: 8034 $
Author:
Mark Hall (mhall{[at]}pentaho{[dot]}com)
See Also:
Serialized Form

Constructor Summary
SupportVectorMachineModel(Element model, Instances dataDictionary, MiningSchema miningSchema)
          Construct a new SupportVectorMachineModel encapsulating the information provided in the PMML document.
 
Method Summary
 double[] distributionForInstance(Instance inst)
          Classifies the given test instance.
 String getRevision()
          Returns the revision string.
 String toString()
          Get a textual description of this SupportVectorMachineModel
 
Methods inherited from class weka.classifiers.pmml.consumer.PMMLClassifier
buildClassifier, done, getCreatorApplication, getDataDictionary, getFieldsMappingString, getLog, getMiningSchema, getPMMLVersion, mapToMiningSchema, setCreatorApplication, setLog, setPMMLVersion
 
Methods inherited from class weka.classifiers.AbstractClassifier
classifyInstance, debugTipText, forName, getCapabilities, getDebug, getOptions, listOptions, makeCopies, makeCopy, runClassifier, setDebug, setOptions
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SupportVectorMachineModel

public SupportVectorMachineModel(Element model,
                                 Instances dataDictionary,
                                 MiningSchema miningSchema)
                          throws Exception
Construct a new SupportVectorMachineModel encapsulating the information provided in the PMML document.

Parameters:
model - the SVM element from the PMML document
dataDictionary - the data dictionary
miningSchema - the mining schema
Throws:
Exception - if the model can't be constructed from the PMML
Method Detail

distributionForInstance

public double[] distributionForInstance(Instance inst)
                                 throws Exception
Classifies the given test instance. The instance has to belong to a dataset when it's being classified.

Specified by:
distributionForInstance in interface Classifier
Overrides:
distributionForInstance in class AbstractClassifier
Parameters:
inst - the instance to be classified
Returns:
the predicted most likely class for the instance or Utils.missingValue() if no prediction is made
Throws:
Exception - if an error occurred during the prediction

getRevision

public String getRevision()
Description copied from class: AbstractClassifier
Returns the revision string.

Specified by:
getRevision in interface RevisionHandler
Overrides:
getRevision in class AbstractClassifier
Returns:
the revision

toString

public String toString()
Get a textual description of this SupportVectorMachineModel

Overrides:
toString in class Object
Returns:
a description of this SupportVectorMachineModel as a string


Copyright © 2012 University of Waikato, Hamilton, NZ. All Rights Reserved.