Package fr.lip6.type

Package for different types of vector representations.

See:
          Description

Class Summary
TrainingSample<T> Simple class of training sample that contains the generic of sample and the associated label.
 

Package fr.lip6.type Description

Package for different types of vector representations.

Since the goal of this library is to provide a generic kernel machines framework, in which kernel are easily adapable, we propose to use Generics for input space representation. This package contains differents classes for representing vectors, such that generic kernel can be built upon.

The way it works is very simple : MLVector is a representation of a vector that as the array T as backend. For example ByteVector is a MLVector, that is, a vector in which each composant is a byte.
All classes that extends MLVector have convenient methods for performing operations on vectors : add, mult, dot product, etc.