|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.mySVM.Kernel.Kernel
public abstract class Kernel
Abstract base class for all kernels.
Field Summary | |
---|---|
protected int |
cache_MB
Size of cache in MB |
protected int |
dim
dimension of the examples |
protected int |
examples_total
number of examples after shrinking |
protected Cache |
kernel_cache
Kernel cache |
protected int |
kernel_cache_size
Number of elements in cache |
protected ExampleSet |
the_examples
Container for the examples, parameters etc. |
Constructor Summary | |
---|---|
Kernel()
Class constructor |
Method Summary | |
---|---|
double[] |
calculate_K_row(double[] result,
int i)
|
double |
calculate_K(Example x,
Example y)
|
abstract double |
calculate_K(int[] x_index,
double[] x_att,
int[] y_index,
double[] y_att)
Calculates kernel value of vectors x and y |
double |
calculate_K(int i,
int j)
Calculate K(i,j) |
double[] |
get_row(int i)
Gets a kernel row |
int |
getCacheSize()
|
void |
init_kernel_cache(int size)
Inits the kernel cache. |
void |
init(ExampleSet examples,
int cacheSizeMB)
Init the kernel |
double |
innerproduct(int[] x_index,
double[] x_att,
int[] y_index,
double[] y_att)
calculate inner product |
double |
norm2(int[] x_index,
double[] x_att,
int[] y_index,
double[] y_att)
calculate ||x-y||^2 |
abstract void |
readKernelParameters(java.io.ObjectInputStream out)
|
void |
set_examples_size(int new_examples_total)
Sets the number of examples to new value |
void |
swap(int pos1,
int pos2)
swap two training examples |
java.lang.String |
toString()
Output as String |
abstract void |
writeKernelParameters(java.io.ObjectOutputStream out)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected ExampleSet the_examples
protected int dim
protected Cache kernel_cache
protected int kernel_cache_size
protected int cache_MB
protected int examples_total
Constructor Detail |
---|
public Kernel()
Method Detail |
---|
public java.lang.String toString()
toString
in class java.lang.Object
public void init(ExampleSet examples, int cacheSizeMB)
examples
- Container for the examples.public abstract double calculate_K(int[] x_index, double[] x_att, int[] y_index, double[] y_att)
public double innerproduct(int[] x_index, double[] x_att, int[] y_index, double[] y_att)
public double norm2(int[] x_index, double[] x_att, int[] y_index, double[] y_att)
public double[] get_row(int i)
public void init_kernel_cache(int size)
size
- of the cache in MBpublic int getCacheSize()
public void set_examples_size(int new_examples_total)
public double calculate_K(int i, int j)
public double calculate_K(Example x, Example y)
public double[] calculate_K_row(double[] result, int i)
public void swap(int pos1, int pos2)
pos1
- pos2
- public abstract void writeKernelParameters(java.io.ObjectOutputStream out) throws java.io.IOException
java.io.IOException
public abstract void readKernelParameters(java.io.ObjectInputStream out) throws java.io.IOException
java.io.IOException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |