Package weka.classifiers.pmml.consumer
Class SupportVectorMachineModel
- java.lang.Object
-
- weka.classifiers.AbstractClassifier
-
- weka.classifiers.pmml.consumer.PMMLClassifier
-
- weka.classifiers.pmml.consumer.SupportVectorMachineModel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,Classifier,BatchPredictor,CapabilitiesHandler,CapabilitiesIgnorer,CommandlineRunnable,OptionHandler,PMMLModel,RevisionHandler
public class SupportVectorMachineModel extends PMMLClassifier implements java.io.Serializable
Implements a PMML SupportVectorMachineModel- Version:
- $Revision: 8034 $
- Author:
- Mark Hall (mhall{[at]}pentaho{[dot]}com)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class weka.classifiers.AbstractClassifier
BATCH_SIZE_DEFAULT, NUM_DECIMAL_PLACES_DEFAULT
-
-
Constructor Summary
Constructors Constructor Description SupportVectorMachineModel(org.w3c.dom.Element model, Instances dataDictionary, MiningSchema miningSchema)Construct a new SupportVectorMachineModel encapsulating the information provided in the PMML document.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]distributionForInstance(Instance inst)Classifies the given test instance.java.lang.StringgetRevision()Returns the revision string.java.lang.StringtoString()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
batchSizeTipText, classifyInstance, debugTipText, distributionsForInstances, doNotCheckCapabilitiesTipText, forName, getBatchSize, getCapabilities, getDebug, getDoNotCheckCapabilities, getNumDecimalPlaces, getOptions, implementsMoreEfficientBatchPrediction, listOptions, makeCopies, makeCopy, numDecimalPlacesTipText, postExecution, preExecution, run, runClassifier, setBatchSize, setDebug, setDoNotCheckCapabilities, setNumDecimalPlaces, setOptions
-
-
-
-
Constructor Detail
-
SupportVectorMachineModel
public SupportVectorMachineModel(org.w3c.dom.Element model, Instances dataDictionary, MiningSchema miningSchema) throws java.lang.ExceptionConstruct a new SupportVectorMachineModel encapsulating the information provided in the PMML document.- Parameters:
model- the SVM element from the PMML documentdataDictionary- the data dictionaryminingSchema- the mining schema- Throws:
java.lang.Exception- if the model can't be constructed from the PMML
-
-
Method Detail
-
distributionForInstance
public double[] distributionForInstance(Instance inst) throws java.lang.Exception
Classifies the given test instance. The instance has to belong to a dataset when it's being classified.- Specified by:
distributionForInstancein interfaceClassifier- Overrides:
distributionForInstancein classAbstractClassifier- 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:
java.lang.Exception- if an error occurred during the prediction
-
getRevision
public java.lang.String getRevision()
Description copied from class:AbstractClassifierReturns the revision string.- Specified by:
getRevisionin interfaceRevisionHandler- Overrides:
getRevisionin classAbstractClassifier- Returns:
- the revision
-
toString
public java.lang.String toString()
Get a textual description of this SupportVectorMachineModel- Overrides:
toStringin classjava.lang.Object- Returns:
- a description of this SupportVectorMachineModel as a string
-
-