edu.udo.cs.mySVM.Kernel
Class Kernel

java.lang.Object
  extended by edu.udo.cs.mySVM.Kernel.Kernel
Direct Known Subclasses:
KernelDot, KernelEpanechnikov, KernelGaussianCombination, KernelMultiquadric, KernelNeural, KernelPolynomial, KernelRadial

public abstract class Kernel
extends java.lang.Object

Abstract base class for all kernels.

Version:
$Id: Kernel.java,v 1.10 2006/08/03 14:39:35 ingomierswa Exp $
Author:
Stefan Rueping, Ingo Mierswa

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

the_examples

protected ExampleSet the_examples
Container for the examples, parameters etc.


dim

protected int dim
dimension of the examples


kernel_cache

protected Cache kernel_cache
Kernel cache


kernel_cache_size

protected int kernel_cache_size
Number of elements in cache


cache_MB

protected int cache_MB
Size of cache in MB


examples_total

protected int examples_total
number of examples after shrinking

Constructor Detail

Kernel

public Kernel()
Class constructor

Method Detail

toString

public java.lang.String toString()
Output as String

Overrides:
toString in class java.lang.Object


init

public void init(ExampleSet examples,
                 int cacheSizeMB)
Init the kernel

Parameters:
examples - Container for the examples.


calculate_K

public abstract double calculate_K(int[] x_index,
                                   double[] x_att,
                                   int[] y_index,
                                   double[] y_att)
Calculates kernel value of vectors x and y


innerproduct

public double innerproduct(int[] x_index,
                           double[] x_att,
                           int[] y_index,
                           double[] y_att)
calculate inner product


norm2

public double norm2(int[] x_index,
                    double[] x_att,
                    int[] y_index,
                    double[] y_att)
calculate ||x-y||^2


get_row

public double[] get_row(int i)
Gets a kernel row


init_kernel_cache

public void init_kernel_cache(int size)
Inits the kernel cache.

Parameters:
size - of the cache in MB


getCacheSize

public int getCacheSize()

set_examples_size

public void set_examples_size(int new_examples_total)
Sets the number of examples to new value


calculate_K

public double calculate_K(int i,
                          int j)
Calculate K(i,j)


calculate_K

public double calculate_K(Example x,
                          Example y)

calculate_K_row

public double[] calculate_K_row(double[] result,
                                int i)

swap

public void swap(int pos1,
                 int pos2)
swap two training examples

Parameters:
pos1 -
pos2 -


writeKernelParameters

public abstract void writeKernelParameters(java.io.ObjectOutputStream out)
                                    throws java.io.IOException
Throws:
java.io.IOException

readKernelParameters

public abstract void readKernelParameters(java.io.ObjectInputStream out)
                                   throws java.io.IOException
Throws:
java.io.IOException


Copyright © 2001-2006