|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.tools.math.optimization.ec.pso.PSOOptimization
edu.udo.cs.yale.operator.learner.kernel.evosvm.PSOSVMOptimization
public class PSOSVMOptimization
PSO approach for SVM optimization. Currently only classification problems are supported.
Field Summary | |
---|---|
private double |
c
This parameter indicates the weight of errors. |
private DataTable |
dataTable
|
private double |
epsilon
This parameter indicates the weight of errors for regression. |
private ExampleSet |
exampleSet
The training example set. |
private static double |
IS_ZERO
Number smaller than this number are regarded as zero. |
private Kernel |
kernel
The used kernel function. |
private OptimizationFunction |
optimizationFunction
This function is to maximize. |
private SimplePlotterDialog |
plotter
|
private boolean |
showPlot
Indicates if a convergence plot should be drawn. |
private double[] |
ys
The label values. |
Constructor Summary | |
---|---|
PSOSVMOptimization(ExampleSet exampleSet,
Kernel kernel,
double c,
int maxIterations,
int generationsWithoutImprovement,
int popSize,
double inertiaWeight,
double localWeight,
double globalWeight,
boolean dynamicInertiaWeight,
boolean showPlot,
RandomGenerator random)
Creates a new evolutionary SVM optimization. |
Method Summary | |
---|---|
PerformanceVector |
evaluateIndividual(double[] individual)
Evaluates the individuals of the given population. |
EvoSVMModel |
getModel(double[] alphas)
Returns a model containing all support vectors, i.e. the examples with non-zerp alphas. |
void |
nextIteration()
This method is invoked after each evaluation. |
Methods inherited from class edu.udo.cs.yale.tools.math.optimization.ec.pso.PSOOptimization |
---|
createInitialPopulation, getBestFitnessEver, getBestFitnessInGeneration, getBestPerformanceEver, getBestValuesEver, getGeneration, optimize, setMaxValue, setMinValue |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private static final double IS_ZERO
private ExampleSet exampleSet
private Kernel kernel
private double c
private double epsilon
private double[] ys
private OptimizationFunction optimizationFunction
private boolean showPlot
private DataTable dataTable
private SimplePlotterDialog plotter
Constructor Detail |
---|
public PSOSVMOptimization(ExampleSet exampleSet, Kernel kernel, double c, int maxIterations, int generationsWithoutImprovement, int popSize, double inertiaWeight, double localWeight, double globalWeight, boolean dynamicInertiaWeight, boolean showPlot, RandomGenerator random)
Method Detail |
---|
public void nextIteration()
PSOOptimization
nextIteration
in class PSOOptimization
public PerformanceVector evaluateIndividual(double[] individual)
evaluateIndividual
in class PSOOptimization
public EvoSVMModel getModel(double[] alphas)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |