edu.udo.cs.yale.operator.learner.kernel
Class JMySVMModel

java.lang.Object
  extended by edu.udo.cs.yale.operator.AbstractIOObject
      extended by edu.udo.cs.yale.operator.ResultObjectAdapter
          extended by edu.udo.cs.yale.operator.AbstractModel
              extended by edu.udo.cs.yale.operator.IOModel
                  extended by edu.udo.cs.yale.operator.learner.PredictionModel
                      extended by edu.udo.cs.yale.operator.learner.kernel.KernelModel
                          extended by edu.udo.cs.yale.operator.learner.kernel.AbstractMySVMModel
                              extended by edu.udo.cs.yale.operator.learner.kernel.JMySVMModel
All Implemented Interfaces:
IOObject, Model, ResultObject, Saveable

public class JMySVMModel
extends AbstractMySVMModel

The implementation for the mySVM model (Java version) by Stefan Rueping. The ModelApplier can have an parameter "function_values" with the value "true". Then the predicted Label contains the function values of the SVM.

Version:
$Id: JMySVMModel.java,v 1.24 2006/10/02 23:33:08 ingomierswa Exp $
Author:
Ingo Mierswa

Field Summary
private  boolean functionvalues
           
 
Constructor Summary
JMySVMModel()
           
JMySVMModel(Attribute labelAttribute)
           
JMySVMModel(Attribute labelAttribute, ExampleSet model, Kernel kernel, int kernelType)
           
 
Method Summary
protected  Attribute createPredictedLabel(ExampleSet exampleSet)
          Creates a predicted label for the given example set based on the label attribute defined for this prediction model.
 SVMInterface createSVM()
          Creates a new SVM for prediction.
 void setParameter(java.lang.String name, java.lang.String value)
           
 void setPrediction(Example example, double prediction)
          Sets the correct prediction to the example from the result value of the SVM.
 
Methods inherited from class edu.udo.cs.yale.operator.learner.kernel.AbstractMySVMModel
getAlpha, getAttributeValue, getClassificationLabel, getExampleSet, getFunctionValue, getId, getKernel, getModelInfo, getNumberOfAttributes, getNumberOfExamples, getRegressionLabel, isClassificationModel, performPrediction, readPredictionModelData, toString, writePredictionModelData
 
Methods inherited from class edu.udo.cs.yale.operator.learner.kernel.KernelModel
getVisualisationComponent
 
Methods inherited from class edu.udo.cs.yale.operator.learner.PredictionModel
apply, getLabel, readData, removePredictedLabel, setLabel, writeData
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractModel
equals, getExtension, getFileDescription, readModel, readModel, save, setParameter, writeModel, writeModel
 
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter
addAction, getActions, getName, toHTML, toResultString
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject
copy, read, read, read, write, write
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface edu.udo.cs.yale.operator.ResultObject
getActions, getName, toResultString
 
Methods inherited from interface edu.udo.cs.yale.operator.IOObject
copy, write, write
 

Field Detail

functionvalues

private boolean functionvalues
Constructor Detail

JMySVMModel

public JMySVMModel()

JMySVMModel

public JMySVMModel(Attribute labelAttribute)

JMySVMModel

public JMySVMModel(Attribute labelAttribute,
                   ExampleSet model,
                   Kernel kernel,
                   int kernelType)
Method Detail

createSVM

public SVMInterface createSVM()
Description copied from class: AbstractMySVMModel
Creates a new SVM for prediction.

Specified by:
createSVM in class AbstractMySVMModel


setPrediction

public void setPrediction(Example example,
                          double prediction)
Description copied from class: AbstractMySVMModel
Sets the correct prediction to the example from the result value of the SVM.

Specified by:
setPrediction in class AbstractMySVMModel


createPredictedLabel

protected Attribute createPredictedLabel(ExampleSet exampleSet)
Description copied from class: PredictionModel
Creates a predicted label for the given example set based on the label attribute defined for this prediction model. Subclasses which override this method should first invoke super.createPredictedLabel(exampleSet) and should then replace the attribute with a new predicted label attribute via a method call like exampleSet.replaceAttribute(predictedLabel, AttributeFactory.changeValueType(predictedLabel, Ontology.REAL)); . This might be usefull in cases where a crisp nominal prediction should be replace by confidence predictions.

Overrides:
createPredictedLabel in class PredictionModel


setParameter

public void setParameter(java.lang.String name,
                         java.lang.String value)
                  throws OperatorException
Throws:
OperatorException


Copyright © 2001-2006