|
|||||||||
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.evosvm.EvoSVM
public class EvoSVM
This is a SVM implementation using an evolutionary algorithm (ES) to solve the dual optimization problem of a SVM. It turns out that on many datasets this simple implementation is as fast and accurate as the usual SVM implementations. In addition, it is also capable of learning with Kernels which are not positive semi-definite and can also be used for multi-objective learning which makes the selection of C unecessary before learning.
Mierswa, Ingo. Evolutionary Learning with Kernels: A Generic Solution for Large Margin Problems. In Proc. of the Genetic and Evolutionary Computation Conference (GECCO 2006), 2006.
Field Summary | |
---|---|
private EvoOptimization |
optimization
The optimization procedure. |
Constructor Summary | |
---|---|
EvoSVM(OperatorDescription description)
Creates a new SVM which uses an Evolutionary Strategy approach for optimization. |
Method Summary | |
---|---|
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. |
Model |
learn(ExampleSet exampleSet)
Learns and returns a model. |
boolean |
shouldDeliverOptimizationPerformance()
Returns the value of the corresponding parameter. |
boolean |
supportsCapability(LearnerCapability lc)
Returns true for numerical attributes, binominal classes, and numerical target attributes. |
Methods inherited from class edu.udo.cs.yale.operator.learner.AbstractLearner |
---|
apply, checkLearnerCapabilities, getEstimatedPerformance, getInputClasses, getInputDescription, getOutputClasses, getWeights, shouldCalculateWeights, 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 |
Field Detail |
---|
private EvoOptimization optimization
Constructor Detail |
---|
public EvoSVM(OperatorDescription description)
Method Detail |
---|
public boolean shouldDeliverOptimizationPerformance()
shouldDeliverOptimizationPerformance
in class AbstractLearner
public PerformanceVector getOptimizationPerformance()
getOptimizationPerformance
in class AbstractLearner
public Model learn(ExampleSet exampleSet) throws OperatorException
OperatorException
public boolean supportsCapability(LearnerCapability lc)
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 |