|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.Operator
edu.udo.cs.yale.operator.learner.AbstractLearner
edu.udo.cs.yale.operator.learner.kernel.AbstractMySVMLearner
public abstract class AbstractMySVMLearner
This is the abstract superclass for the support vector machine / KLR implementations of Stefan Rüping.
Field Summary | |
---|---|
private Kernel |
kernel
The SVM kernel. |
static int |
KERNEL_DOT
Indicates a linear kernel. |
static int |
KERNEL_EPANECHNIKOV
Indicates a epanechnikov kernel. |
static int |
KERNEL_GAUSSIAN_COMBINATION
Indicates a gaussian combination kernel. |
static int |
KERNEL_MULTIQUADRIC
Indicates a multiquadric kernel. |
static int |
KERNEL_NEURAL
Indicates a neural net kernel. |
static int |
KERNEL_POLYNOMIAL
Indicates a polynomial kernel. |
static int |
KERNEL_RADIAL
Indicates a rbf kernel. |
static java.lang.String[] |
KERNEL_TYPES
The kernels which can be used from Yale for the mySVM / myKLR. |
private SVMInterface |
svm
The SVM which is used for learning. |
private ExampleSet |
svmExamples
The SVM example set. |
Constructor Summary | |
---|---|
AbstractMySVMLearner(OperatorDescription description)
|
Method Summary | |
---|---|
static Kernel |
createKernel(int kernelType)
Creates a new kernel of the given type. |
abstract SVMInterface |
createSVM(Attribute label,
Kernel kernel,
ExampleSet svmExamples,
ExampleSet yaleExamples)
Creates a new SVM according to the given label. |
abstract AbstractMySVMModel |
createSVMModel(Attribute label,
ExampleSet svmExamples,
Kernel kernel,
int kernelType)
Creates a new SVM model from the given data. |
private double |
getFitness(double[] alphas,
double[] ys,
Kernel kernel)
|
protected Kernel |
getKernel()
Returns the kernel of this SVM. |
PerformanceVector |
getOptimizationPerformance()
Returns the optimization performance of the best result. |
java.util.List<ParameterType> |
getParameterTypes()
Returns a list of ParameterTypes describing the parameters of this operator. |
protected SVMInterface |
getSVM()
Returns the used SVM. |
AttributeWeights |
getWeights(ExampleSet exampleSet)
Returns the weights for all features. |
Model |
learn(ExampleSet exampleSet)
Trains a model. |
boolean |
shouldCalculateWeights()
Returns true if the user has specified that weights should be calculated. |
boolean |
shouldDeliverOptimizationPerformance()
Returns the value of the corresponding parameter. |
Methods inherited from class edu.udo.cs.yale.operator.learner.AbstractLearner |
---|
apply, checkLearnerCapabilities, getEstimatedPerformance, getInputClasses, getInputDescription, getOutputClasses, shouldEstimatePerformance |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface edu.udo.cs.yale.operator.learner.Learner |
---|
getName, supportsCapability |
Field Detail |
---|
public static final java.lang.String[] KERNEL_TYPES
public static final int KERNEL_DOT
public static final int KERNEL_RADIAL
public static final int KERNEL_POLYNOMIAL
public static final int KERNEL_NEURAL
public static final int KERNEL_EPANECHNIKOV
public static final int KERNEL_GAUSSIAN_COMBINATION
public static final int KERNEL_MULTIQUADRIC
private SVMInterface svm
private Kernel kernel
private ExampleSet svmExamples
Constructor Detail |
---|
public AbstractMySVMLearner(OperatorDescription description)
Method Detail |
---|
protected Kernel getKernel()
protected SVMInterface getSVM()
public boolean shouldDeliverOptimizationPerformance()
shouldDeliverOptimizationPerformance
in class AbstractLearner
public PerformanceVector getOptimizationPerformance()
getOptimizationPerformance
in class AbstractLearner
public boolean shouldCalculateWeights()
shouldCalculateWeights
in interface Learner
shouldCalculateWeights
in class AbstractLearner
public AttributeWeights getWeights(ExampleSet exampleSet) throws OperatorException
getWeights
in interface Learner
getWeights
in class AbstractLearner
OperatorException
public abstract SVMInterface createSVM(Attribute label, Kernel kernel, ExampleSet svmExamples, ExampleSet yaleExamples) throws OperatorException
OperatorException
public abstract AbstractMySVMModel createSVMModel(Attribute label, ExampleSet svmExamples, Kernel kernel, int kernelType)
public Model learn(ExampleSet exampleSet) throws OperatorException
Learner
OperatorException
private double getFitness(double[] alphas, double[] ys, Kernel kernel)
public static Kernel createKernel(int kernelType)
public java.util.List<ParameterType> getParameterTypes()
Operator
getParameterTypes
in class Operator
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |