|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.learner.kernel.evosvm.Kernel
public abstract class Kernel
Returns the distance of two examples. The method init(ExampleSet)
must be invoked before the correct distances can be returned. Please note
that subclasses must provide an empty constructor to allow kernel creation
via reflection (for reading kernels from disk).
Field Summary | |
---|---|
private double[][] |
distances
The complete distance matrix for this kernel and a given example set. |
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_POLYNOMIAL
Indicates a polynomial kernel. |
static int |
KERNEL_RADIAL
Indicates a rbf kernel. |
static int |
KERNEL_SIGMOID
Indicates a sigmoid kernel. |
static java.lang.String[] |
KERNEL_TYPES
The kernels which can be used for the EvoSVM. |
Constructor Summary | |
---|---|
Kernel()
|
Method Summary | |
---|---|
abstract double |
calculateDistance(double[] x1,
double[] x2)
Subclasses must implement this method. |
static Kernel |
createKernel(int kernelType)
|
static Kernel |
createKernel(int kernelType,
EvoSVM operator)
|
double |
getDistance(int x1,
int x2)
Returns the distance between the examples with the given indices. |
double |
getSum(java.util.Collection supportVectors,
double[] currentX)
Calculates w*x from the given support vectors using this kernel function. |
abstract int |
getType()
Must return one out of KERNEL_DOT, KERNEL_RADIAL, KERNEL_POLYNOMIAL, or KERNEL_SIGMOID. |
void |
init(ExampleSet exampleSet)
Calculates all distances and store them in a matrix to speed up optimization. |
double |
innerProduct(double[] x1,
double[] x2)
Calculates the inner product of the given vectors. |
double |
norm2(double[] x1,
double[] x2)
Calculates the L2-norm, i.e. |
static Kernel |
readKernelData(java.io.ObjectInputStream in)
Reads the kernel type and generates a new kernel of this type. |
abstract void |
readKernelParameters(java.io.ObjectInputStream in)
Subclasses must implement this method. |
void |
writeKernelData(java.io.ObjectOutputStream out)
Writes the kernel type into the given stream. |
abstract void |
writeKernelParameters(java.io.ObjectOutputStream out)
Subclasses must implement this method. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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_SIGMOID
public static final int KERNEL_EPANECHNIKOV
public static final int KERNEL_GAUSSIAN_COMBINATION
public static final int KERNEL_MULTIQUADRIC
private double[][] distances
Constructor Detail |
---|
public Kernel()
Method Detail |
---|
public abstract int getType()
public abstract double calculateDistance(double[] x1, double[] x2)
public abstract void writeKernelParameters(java.io.ObjectOutputStream out) throws java.io.IOException
java.io.IOException
public abstract void readKernelParameters(java.io.ObjectInputStream in) throws java.io.IOException
java.io.IOException
public void init(ExampleSet exampleSet)
public double getDistance(int x1, int x2)
public double innerProduct(double[] x1, double[] x2)
public double norm2(double[] x1, double[] x2)
public double getSum(java.util.Collection supportVectors, double[] currentX)
public void writeKernelData(java.io.ObjectOutputStream out) throws java.io.IOException
writeKernelParameters(ObjectOutputStream)
afterwards.
java.io.IOException
public static Kernel readKernelData(java.io.ObjectInputStream in) throws java.io.IOException
readKernelParameters(ObjectInputStream)
is invoked.
java.io.IOException
public static Kernel createKernel(int kernelType)
public static Kernel createKernel(int kernelType, EvoSVM operator) throws UndefinedParameterError
UndefinedParameterError
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |