|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.mySVM.SVM.SVM
public abstract class SVM
Abstract base class for all SVMs
Field Summary | |
---|---|
(package private) double[] |
alphas
|
protected int[] |
at_bound
|
protected double |
C
|
protected double[] |
Cneg
|
protected double |
convergence_epsilon
|
protected double[] |
Cpos
|
protected double |
descend
|
protected double |
epsilon_neg
|
protected double |
epsilon_pos
|
protected int |
examples_total
|
protected double |
feasible_epsilon
|
(package private) MaxHeap |
heap_max
|
(package private) MinHeap |
heap_min
|
protected double |
is_zero
|
protected double |
lambda_eq
|
protected double |
lambda_factor
|
protected double |
lambda_WS
|
private int |
max_iterations
|
protected int |
parameters_working_set_size
|
protected double[] |
primal
|
protected quadraticProblem |
qp
|
protected boolean |
quadraticLossNeg
|
protected boolean |
quadraticLossPos
|
protected int |
shrink_const
|
(package private) boolean |
shrinked
|
protected double[] |
sum
|
protected double |
sum_alpha
|
protected int |
target_count
|
protected ExampleSet |
the_examples
|
protected Kernel |
the_kernel
|
protected int |
to_shrink
|
protected boolean[] |
which_alpha
|
protected int[] |
working_set
|
protected int |
working_set_size
|
private static int[] |
YALE_VERBOSITY
|
(package private) double[] |
ys
|
Constructor Summary | |
---|---|
SVM()
|
|
SVM(Operator paramOperator,
Kernel new_kernel,
ExampleSet new_examples,
ExampleSet yaleExamples)
class constructor. |
Method Summary | |
---|---|
protected void |
calculate_working_set()
Calculates the working set |
protected void |
check()
check internal variables, for debugging only |
protected boolean |
convergence()
Checks if the optimization converged |
protected void |
exit_optimizer()
exit the optimizer |
protected boolean |
feasible(int i)
|
double |
getB()
Returns the value of b. |
double |
getC()
Gets the complexity constant of the svm. |
double[] |
getWeights()
Return the weights of the features. |
double[] |
getXiAlphaEstimation(Kernel kernel)
Returns a double array of estimated performance values. |
protected void |
init_optimizer()
init the optimizer |
protected void |
init_working_set()
Initialises the working set |
void |
init(Kernel new_kernel,
ExampleSet new_examples)
Init the SVM |
protected abstract boolean |
is_alpha_neg(int i)
|
protected double |
lambda(int i)
lagrangion multiplier of variable i |
protected void |
logln(int level,
java.lang.String message)
log the output plus newline |
protected void |
logWarning(java.lang.String message)
|
protected abstract double |
nabla(int i)
|
protected abstract void |
optimize()
Calls the optimizer |
double |
predict(Example example)
predict a single example |
void |
predict(ExampleSet to_predict)
predict values on the testset with model |
double |
predict(int i)
|
protected void |
print_statistics()
print statistics about result |
protected void |
project_to_constraint()
Project variables to constraints |
protected void |
put_optimizer_values()
Stores the optimizer results |
protected void |
reset_shrinked()
reset the shrinked variables |
protected void |
shrink()
shrink the variables |
void |
train()
Train the SVM |
protected void |
update_working_set()
Updates the working set |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private static final int[] YALE_VERBOSITY
protected Kernel the_kernel
protected ExampleSet the_examples
double[] alphas
double[] ys
protected int examples_total
protected int target_count
protected double convergence_epsilon
protected double lambda_factor
protected int[] at_bound
protected double[] sum
protected boolean[] which_alpha
protected int[] working_set
protected double[] primal
protected double sum_alpha
protected double lambda_eq
protected int to_shrink
protected double feasible_epsilon
protected double lambda_WS
protected boolean quadraticLossPos
protected boolean quadraticLossNeg
boolean shrinked
protected double epsilon_pos
protected double epsilon_neg
private int max_iterations
protected int working_set_size
protected int parameters_working_set_size
protected double is_zero
protected int shrink_const
protected double C
protected double[] Cpos
protected double[] Cneg
protected double descend
MinHeap heap_min
MaxHeap heap_max
protected quadraticProblem qp
Constructor Detail |
---|
public SVM()
public SVM(Operator paramOperator, Kernel new_kernel, ExampleSet new_examples, ExampleSet yaleExamples) throws UndefinedParameterError
UndefinedParameterError
Method Detail |
---|
public void init(Kernel new_kernel, ExampleSet new_examples)
init
in interface SVMInterface
new_kernel
- new kernel function.new_examples
- the data containerpublic void train()
train
in interface SVMInterface
protected void print_statistics()
public double[] getWeights()
getWeights
in interface SVMInterface
public double getB()
getB
in interface SVMInterface
public double getC()
protected void init_optimizer()
protected void exit_optimizer()
protected void shrink()
protected void reset_shrinked()
protected void project_to_constraint()
protected void calculate_working_set()
java.lang.Exception
- on any errorprotected void update_working_set()
protected void init_working_set()
java.lang.Exception
- on any errorprotected abstract void optimize()
protected void put_optimizer_values()
protected boolean convergence()
protected abstract double nabla(int i)
protected double lambda(int i)
i
- variable index
protected boolean feasible(int i)
protected abstract boolean is_alpha_neg(int i)
protected void logln(int level, java.lang.String message)
level
- warning levelmessage
- Message testprotected void logWarning(java.lang.String message)
public void predict(ExampleSet to_predict)
predict
in interface SVMInterface
public double predict(int i)
public double predict(Example example)
predict
in interface SVMInterface
protected void check()
public double[] getXiAlphaEstimation(Kernel kernel)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |