|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.myKLR.KLR
public class KLR
The main class for the Kernel Logistic Regression.
Field Summary | |
---|---|
(package private) double[] |
alphas
|
(package private) boolean[] |
at_bound
|
(package private) double |
b
|
(package private) double |
b_low
|
(package private) double |
b_up
|
(package private) double |
C
|
(package private) double |
epsilon
|
protected ExampleSet |
examples
|
(package private) double[] |
Hcache
|
(package private) int |
i_low
|
(package private) int |
i_up
|
protected Kernel |
kernel
|
(package private) int |
max_iterations
|
(package private) double |
mu
|
(package private) int |
n
|
(package private) int |
N1
|
(package private) int |
N2
|
(package private) double[] |
target
|
(package private) double |
tol
|
Constructor Summary | |
---|---|
KLR()
|
|
KLR(Operator paramOperator)
|
Method Summary | |
---|---|
(package private) double |
d2Phi(double t,
int i,
int j,
double ai,
double aj,
double Kii,
double Kij,
double Kjj)
|
(package private) double |
dG(double alpha)
|
(package private) double |
dPhi(double t,
int i,
int j,
double ai,
double aj,
double Kii,
double Kij,
double Kjj)
|
double |
getB()
Returns the value of b. |
double[] |
getWeights()
Return the weights of the features. |
void |
init(Kernel new_kernel,
ExampleSet new_examples)
Initializes this SVM. |
void |
klr()
|
double |
predict(Example example)
Perform a prediction of label for all examples. |
void |
predict(ExampleSet to_predict)
Perform a prediction of label for all examples. |
protected boolean |
takeStep(int i,
int j)
|
void |
train()
Train this SVM. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected Kernel kernel
protected ExampleSet examples
int n
double[] target
int N1
int N2
double[] alphas
double[] Hcache
boolean[] at_bound
int i_up
int i_low
double b
double b_up
double b_low
double tol
double C
double epsilon
double mu
int max_iterations
Constructor Detail |
---|
public KLR()
public KLR(Operator paramOperator) throws UndefinedParameterError
UndefinedParameterError
Method Detail |
---|
public void init(Kernel new_kernel, ExampleSet new_examples)
SVMInterface
init
in interface SVMInterface
final double dG(double alpha)
final double dPhi(double t, int i, int j, double ai, double aj, double Kii, double Kij, double Kjj)
final double d2Phi(double t, int i, int j, double ai, double aj, double Kii, double Kij, double Kjj)
protected boolean takeStep(int i, int j)
public void klr()
public double predict(Example example)
SVMInterface
predict
in interface SVMInterface
public void predict(ExampleSet to_predict)
SVMInterface
predict
in interface SVMInterface
public void train()
SVMInterface
train
in interface SVMInterface
public double[] getWeights()
getWeights
in interface SVMInterface
public double getB()
getB
in interface SVMInterface
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |