SHOGUN  6.0.0
List of all members | Public Member Functions | Static Public Member Functions | Public Attributes | Protected Member Functions | Static Protected Member Functions | Protected Attributes
CPolyMatchStringKernel Class Reference

Detailed Description

The class PolyMatchStringKernel computes a variant of the polynomial kernel on strings of same length.

It is computed as

\[ k({\bf x},{\bf x'})= (\sum_{i=0}^L I(x_i=x'_i)+c)^d \]

where I is the indicator function which evaluates to 1 if its argument is true and to 0 otherwise.

Note that additional normalisation is applied, i.e.

\[ k'({\bf x}, {\bf x'})=\frac{k({\bf x}, {\bf x'})}{\sqrt{k({\bf x}, {\bf x})k({\bf x'}, {\bf x'})}} \]

Definition at line 38 of file PolyMatchStringKernel.h.

Inheritance diagram for CPolyMatchStringKernel:
[legend]

Public Member Functions

 CPolyMatchStringKernel ()
 
 CPolyMatchStringKernel (int32_t size, int32_t degree, bool inhomogene)
 
 CPolyMatchStringKernel (CStringFeatures< char > *l, CStringFeatures< char > *r, int32_t degree, bool inhomogene)
 
virtual ~CPolyMatchStringKernel ()
 
virtual bool init (CFeatures *l, CFeatures *r)
 
virtual void cleanup ()
 
virtual EKernelType get_kernel_type ()
 
virtual const char * get_name () const
 
void set_rescaling_enabled (bool n)
 
bool get_rescaling_enabled ()
 
virtual EFeatureClass get_feature_class ()
 
virtual EFeatureType get_feature_type ()
 
EFeatureType get_feature_type ()
 
EFeatureType get_feature_type ()
 
EFeatureType get_feature_type ()
 
EFeatureType get_feature_type ()
 
EFeatureType get_feature_type ()
 
EFeatureType get_feature_type ()
 
EFeatureType get_feature_type ()
 
float64_t kernel (int32_t idx_a, int32_t idx_b)
 
SGMatrix< float64_tget_kernel_matrix ()
 
template<class T >
SGMatrix< T > get_kernel_matrix ()
 
SGVector< float64_tget_kernel_diagonal (SGVector< float64_t > preallocated=SGVector< float64_t >())
 
virtual SGVector< float64_tget_kernel_col (int32_t j)
 
virtual SGVector< float64_tget_kernel_row (int32_t i)
 
virtual float64_t sum_symmetric_block (index_t block_begin, index_t block_size, bool no_diag=true)
 
virtual float64_t sum_block (index_t block_begin_row, index_t block_begin_col, index_t block_size_row, index_t block_size_col, bool no_diag=false)
 
virtual SGVector< float64_trow_wise_sum_symmetric_block (index_t block_begin, index_t block_size, bool no_diag=true)
 
virtual SGMatrix< float64_trow_wise_sum_squared_sum_symmetric_block (index_t block_begin, index_t block_size, bool no_diag=true)
 
virtual SGVector< float64_trow_col_wise_sum_block (index_t block_begin_row, index_t block_begin_col, index_t block_size_row, index_t block_size_col, bool no_diag=false)
 
virtual bool set_normalizer (CKernelNormalizer *normalizer)
 
virtual CKernelNormalizerget_normalizer ()
 
virtual bool init_normalizer ()
 
void load (CFile *loader)
 
void save (CFile *writer)
 
CFeaturesget_lhs ()
 
CFeaturesget_rhs ()
 
virtual int32_t get_num_vec_lhs ()
 
virtual int32_t get_num_vec_rhs ()
 
virtual bool has_features ()
 
bool get_lhs_equals_rhs ()
 
virtual void remove_lhs_and_rhs ()
 
virtual void remove_lhs ()
 
virtual void remove_rhs ()
 takes all necessary steps if the rhs is removed from kernel More...
 
void set_cache_size (int32_t size)
 
int32_t get_cache_size ()
 
void list_kernel ()
 
bool has_property (EKernelProperty p)
 
virtual void clear_normal ()
 
virtual void add_to_normal (int32_t vector_idx, float64_t weight)
 
EOptimizationType get_optimization_type ()
 
virtual void set_optimization_type (EOptimizationType t)
 
bool get_is_initialized ()
 
virtual bool init_optimization (int32_t count, int32_t *IDX, float64_t *weights)
 
virtual bool delete_optimization ()
 
bool init_optimization_svm (CSVM *svm)
 
virtual float64_t compute_optimized (int32_t vector_idx)
 
virtual void compute_batch (int32_t num_vec, int32_t *vec_idx, float64_t *target, int32_t num_suppvec, int32_t *IDX, float64_t *alphas, float64_t factor=1.0)
 
float64_t get_combined_kernel_weight ()
 
void set_combined_kernel_weight (float64_t nw)
 
virtual int32_t get_num_subkernels ()
 
virtual void compute_by_subkernel (int32_t vector_idx, float64_t *subkernel_contrib)
 
virtual const float64_tget_subkernel_weights (int32_t &num_weights)
 
virtual SGVector< float64_tget_subkernel_weights ()
 
virtual void set_subkernel_weights (SGVector< float64_t > weights)
 
virtual SGMatrix< float64_tget_parameter_gradient (const TParameter *param, index_t index=-1)
 
virtual SGVector< float64_tget_parameter_gradient_diagonal (const TParameter *param, index_t index=-1)
 
virtual CSGObjectshallow_copy () const
 
virtual CSGObjectdeep_copy () const
 
virtual bool is_generic (EPrimitiveType *generic) const
 
template<class T >
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
template<>
void set_generic ()
 
void unset_generic ()
 
virtual void print_serializable (const char *prefix="")
 
virtual bool save_serializable (CSerializableFile *file, const char *prefix="")
 
virtual bool load_serializable (CSerializableFile *file, const char *prefix="")
 
void set_global_io (SGIO *io)
 
SGIOget_global_io ()
 
void set_global_parallel (Parallel *parallel)
 
Parallelget_global_parallel ()
 
void set_global_version (Version *version)
 
Versionget_global_version ()
 
SGStringList< char > get_modelsel_names ()
 
void print_modsel_params ()
 
char * get_modsel_param_descr (const char *param_name)
 
index_t get_modsel_param_index (const char *param_name)
 
void build_gradient_parameter_dictionary (CMap< TParameter *, CSGObject *> *dict)
 
bool has (const std::string &name) const
 
template<typename T >
bool has (const Tag< T > &tag) const
 
template<typename T , typename U = void>
bool has (const std::string &name) const
 
template<typename T >
void set (const Tag< T > &_tag, const T &value)
 
template<typename T , typename U = void>
void set (const std::string &name, const T &value)
 
template<typename T >
get (const Tag< T > &_tag) const
 
template<typename T , typename U = void>
get (const std::string &name) const
 
virtual void update_parameter_hash ()
 
virtual bool parameter_hash_changed ()
 
virtual bool equals (CSGObject *other, float64_t accuracy=0.0, bool tolerant=false)
 
virtual CSGObjectclone ()
 

Static Public Member Functions

static CKernelobtain_from_generic (CSGObject *kernel)
 

Public Attributes

SGIOio
 
Parallelparallel
 
Versionversion
 
Parameterm_parameters
 
Parameterm_model_selection_parameters
 
Parameterm_gradient_parameters
 
uint32_t m_hash
 

Protected Member Functions

virtual float64_t compute (int32_t idx_a, int32_t idx_b)
 
void set_property (EKernelProperty p)
 
void unset_property (EKernelProperty p)
 
void set_is_initialized (bool p_init)
 
int32_t compute_row_start (int64_t offs, int32_t n, bool symmetric)
 
virtual void load_serializable_post () throw (ShogunException)
 
virtual void save_serializable_pre () throw (ShogunException)
 
virtual void save_serializable_post () throw (ShogunException)
 
virtual void register_params ()
 
virtual void load_serializable_pre () throw (ShogunException)
 
template<typename T >
void register_param (Tag< T > &_tag, const T &value)
 
template<typename T >
void register_param (const std::string &name, const T &value)
 
bool clone_parameters (CSGObject *other)
 

Static Protected Member Functions

template<class T >
static void * get_kernel_matrix_helper (void *p)
 

Protected Attributes

int32_t degree
 
bool inhomogene
 
bool rescaling
 
int32_t cache_size
 cache_size in MB More...
 
KERNELCACHE_ELEMkernel_matrix
 
CFeatureslhs
 feature vectors to occur on left hand side More...
 
CFeaturesrhs
 feature vectors to occur on right hand side More...
 
bool lhs_equals_rhs
 lhs More...
 
int32_t num_lhs
 number of feature vectors on left hand side More...
 
int32_t num_rhs
 number of feature vectors on right hand side More...
 
float64_t combined_kernel_weight
 
bool optimization_initialized
 
EOptimizationType opt_type
 
uint64_t properties
 
CKernelNormalizernormalizer
 

Constructor & Destructor Documentation

◆ CPolyMatchStringKernel() [1/3]

default constructor

Definition at line 20 of file PolyMatchStringKernel.cpp.

◆ CPolyMatchStringKernel() [2/3]

CPolyMatchStringKernel ( int32_t  size,
int32_t  degree,
bool  inhomogene 
)

constructor

Parameters
sizecache size
degreedegree
inhomogeneis inhomogeneous

Definition at line 26 of file PolyMatchStringKernel.cpp.

◆ CPolyMatchStringKernel() [3/3]

CPolyMatchStringKernel ( CStringFeatures< char > *  l,
CStringFeatures< char > *  r,
int32_t  degree,
bool  inhomogene 
)

constructor

Parameters
lfeatures of left-hand side
rfeatures of right-hand side
degreedegree
inhomogeneis inhomogeneous

Definition at line 35 of file PolyMatchStringKernel.cpp.

◆ ~CPolyMatchStringKernel()

~CPolyMatchStringKernel ( )
virtual

Definition at line 47 of file PolyMatchStringKernel.cpp.

Member Function Documentation

◆ add_to_normal()

void add_to_normal ( int32_t  vector_idx,
float64_t  weight 
)
virtualinherited

add vector*factor to 'virtual' normal vector

Parameters
vector_idxindex
weightweight

Reimplemented in CCombinedKernel, CWeightedDegreeStringKernel, CWeightedDegreePositionStringKernel, CCommUlongStringKernel, CCommWordStringKernel, CLinearKernel, CLinearStringKernel, and CWeightedCommWordStringKernel.

Definition at line 365 of file Kernel.cpp.

◆ build_gradient_parameter_dictionary()

void build_gradient_parameter_dictionary ( CMap< TParameter *, CSGObject *> *  dict)
inherited

Builds a dictionary of all parameters in SGObject as well of those of SGObjects that are parameters of this object. Dictionary maps parameters to the objects that own them.

Parameters
dictdictionary of parameters to be built.

Definition at line 630 of file SGObject.cpp.

◆ cleanup()

void cleanup ( )
virtual

clean up kernel

Reimplemented from CKernel.

Definition at line 58 of file PolyMatchStringKernel.cpp.

◆ clear_normal()

void clear_normal ( )
virtualinherited

for optimizable kernels, i.e. kernels where the weight vector can be computed explicitly (if it fits into memory)

Reimplemented in CCombinedKernel, CWeightedDegreeStringKernel, CWeightedDegreePositionStringKernel, CCommUlongStringKernel, CCommWordStringKernel, CLinearKernel, and CLinearStringKernel.

Definition at line 370 of file Kernel.cpp.

◆ clone()

CSGObject * clone ( )
virtualinherited

Creates a clone of the current object. This is done via recursively traversing all parameters, which corresponds to a deep copy. Calling equals on the cloned object always returns true although none of the memory of both objects overlaps.

Returns
an identical copy of the given object, which is disjoint in memory. NULL if the clone fails. Note that the returned object is SG_REF'ed

Reimplemented in CDynamicArray< T >, CDynamicArray< float64_t >, CDynamicArray< float32_t >, CDynamicArray< int32_t >, CDynamicArray< char >, CDynamicArray< bool >, CDynamicObjectArray, CAlphabet, and CMKL.

Definition at line 729 of file SGObject.cpp.

◆ clone_parameters()

bool clone_parameters ( CSGObject other)
protectedinherited

Definition at line 754 of file SGObject.cpp.

◆ compute()

float64_t compute ( int32_t  idx_a,
int32_t  idx_b 
)
protectedvirtual

compute kernel function for features a and b idx_{a,b} denote the index of the feature vectors in the corresponding feature object

Parameters
idx_aindex a
idx_bindex b
Returns
computed kernel function at indices a,b

Implements CKernel.

Definition at line 63 of file PolyMatchStringKernel.cpp.

◆ compute_batch()

void compute_batch ( int32_t  num_vec,
int32_t *  vec_idx,
float64_t target,
int32_t  num_suppvec,
int32_t *  IDX,
float64_t alphas,
float64_t  factor = 1.0 
)
virtualinherited

computes output for a batch of examples in an optimized fashion (favorable if kernel supports it, i.e. has KP_BATCHEVALUATION. to the outputvector target (of length num_vec elements) the output for the examples enumerated in vec_idx are added. therefore make sure that it is initialized with ZERO. the following num_suppvec, IDX, alphas arguments are the number of support vectors, their indices and weights

Reimplemented in CCombinedKernel, CWeightedDegreeStringKernel, and CWeightedDegreePositionStringKernel.

Definition at line 358 of file Kernel.cpp.

◆ compute_by_subkernel()

void compute_by_subkernel ( int32_t  vector_idx,
float64_t subkernel_contrib 
)
virtualinherited

compute by subkernel

Parameters
vector_idxindex
subkernel_contribsubkernel contribution

Reimplemented in CCombinedKernel, CWeightedDegreeStringKernel, and CWeightedDegreePositionStringKernel.

Definition at line 380 of file Kernel.cpp.

◆ compute_optimized()

float64_t compute_optimized ( int32_t  vector_idx)
virtualinherited

compute optimized

Parameters
vector_idxindex to compute
Returns
optimized value at given index

Reimplemented in CCombinedKernel, CWeightedDegreeStringKernel, CWeightedDegreePositionStringKernel, CCommWordStringKernel, CCommUlongStringKernel, CLinearKernel, CLinearStringKernel, and CWeightedCommWordStringKernel.

Definition at line 352 of file Kernel.cpp.

◆ compute_row_start()

int32_t compute_row_start ( int64_t  offs,
int32_t  n,
bool  symmetric 
)
protectedinherited

compute row start offset for parallel kernel matrix computation

Parameters
offsoffset
nnumber of columns
symmetricwhether matrix is symmetric

Definition at line 802 of file kernel/Kernel.h.

◆ deep_copy()

CSGObject * deep_copy ( ) const
virtualinherited

A deep copy. All the instance variables will also be copied.

Definition at line 231 of file SGObject.cpp.

◆ delete_optimization()

bool delete_optimization ( )
virtualinherited

delete optimization

Returns
if deleting was successful

Reimplemented in CCombinedKernel, CWeightedDegreeStringKernel, CWeightedDegreePositionStringKernel, CCommWordStringKernel, CCommUlongStringKernel, CLinearKernel, and CLinearStringKernel.

Definition at line 346 of file Kernel.cpp.

◆ equals()

bool equals ( CSGObject other,
float64_t  accuracy = 0.0,
bool  tolerant = false 
)
virtualinherited

Recursively compares the current SGObject to another one. Compares all registered numerical parameters, recursion upon complex (SGObject) parameters. Does not compare pointers!

May be overwritten but please do with care! Should not be necessary in most cases.

Parameters
otherobject to compare with
accuracyaccuracy to use for comparison (optional)
tolerantallows linient check on float equality (within accuracy)
Returns
true if all parameters were equal, false if not

Definition at line 651 of file SGObject.cpp.

◆ get() [1/2]

T get ( const Tag< T > &  _tag) const
inherited

Getter for a class parameter, identified by a Tag. Throws an exception if the class does not have such a parameter.

Parameters
_tagname and type information of parameter
Returns
value of the parameter identified by the input tag

Definition at line 376 of file SGObject.h.

◆ get() [2/2]

T get ( const std::string &  name) const
inherited

Getter for a class parameter, identified by a name. Throws an exception if the class does not have such a parameter.

Parameters
namename of the parameter
Returns
value of the parameter corresponding to the input name and type

Definition at line 399 of file SGObject.h.

◆ get_cache_size()

int32_t get_cache_size ( )
inherited

return the size of the kernel cache

Returns
size of kernel cache

Definition at line 594 of file kernel/Kernel.h.

◆ get_combined_kernel_weight()

float64_t get_combined_kernel_weight ( )
inherited

get combined kernel weight

Returns
combined kernel weight

Definition at line 685 of file kernel/Kernel.h.

◆ get_feature_class()

virtual EFeatureClass get_feature_class ( )
virtualinherited

return feature class the kernel can deal with

Returns
feature class STRING

Implements CKernel.

Definition at line 71 of file StringKernel.h.

◆ get_feature_type() [1/8]

virtual EFeatureType get_feature_type ( )
virtualinherited

return feature type the kernel can deal with

Returns
templated feature type

Implements CKernel.

◆ get_feature_type() [2/8]

EFeatureType get_feature_type ( )
virtualinherited

return feature type the kernel can deal with

abstract base method

Returns
feature type

Implements CKernel.

Definition at line 97 of file StringKernel.h.

◆ get_feature_type() [3/8]

EFeatureType get_feature_type ( )
virtualinherited

return feature type the kernel can deal with

abstract base method

Returns
feature type

Implements CKernel.

Definition at line 99 of file StringKernel.h.

◆ get_feature_type() [4/8]

EFeatureType get_feature_type ( )
virtualinherited

return feature type the kernel can deal with

abstract base method

Returns
feature type

Implements CKernel.

Definition at line 101 of file StringKernel.h.

◆ get_feature_type() [5/8]

EFeatureType get_feature_type ( )
virtualinherited

return feature type the kernel can deal with

abstract base method

Returns
feature type

Implements CKernel.

Definition at line 103 of file StringKernel.h.

◆ get_feature_type() [6/8]

EFeatureType get_feature_type ( )
virtualinherited

return feature type the kernel can deal with

abstract base method

Returns
feature type

Implements CKernel.

Definition at line 105 of file StringKernel.h.

◆ get_feature_type() [7/8]

EFeatureType get_feature_type ( )
virtualinherited

return feature type the kernel can deal with

abstract base method

Returns
feature type

Implements CKernel.

Definition at line 107 of file StringKernel.h.

◆ get_feature_type() [8/8]

EFeatureType get_feature_type ( )
virtualinherited

return feature type the kernel can deal with

abstract base method

Returns
feature type

Implements CKernel.

Definition at line 109 of file StringKernel.h.

◆ get_global_io()

SGIO * get_global_io ( )
inherited

get the io object

Returns
io object

Definition at line 268 of file SGObject.cpp.

◆ get_global_parallel()

Parallel * get_global_parallel ( )
inherited

get the parallel object

Returns
parallel object

Definition at line 310 of file SGObject.cpp.

◆ get_global_version()

Version * get_global_version ( )
inherited

get the version object

Returns
version object

Definition at line 323 of file SGObject.cpp.

◆ get_is_initialized()

bool get_is_initialized ( )
inherited

check if optimization is initialized

Returns
if optimization is initialized

Definition at line 636 of file kernel/Kernel.h.

◆ get_kernel_col()

virtual SGVector<float64_t> get_kernel_col ( int32_t  j)
virtualinherited

get column j

Returns
the jth column of the kernel matrix

Definition at line 260 of file kernel/Kernel.h.

◆ get_kernel_diagonal()

SGVector<float64_t> get_kernel_diagonal ( SGVector< float64_t preallocated = SGVector<float64_t>())
inherited
Returns
Vector with diagonal elements of the kernel matrix. Note that left- and right-handside features must be set and of equal size
Parameters
preallocatedvector with space for results

Definition at line 228 of file kernel/Kernel.h.

◆ get_kernel_matrix() [1/2]

template SGMatrix< float32_t > get_kernel_matrix< float32_t > ( )
inherited

get kernel matrix

Returns
computed kernel matrix (needs to be cleaned up)

Definition at line 217 of file kernel/Kernel.h.

◆ get_kernel_matrix() [2/2]

SGMatrix< T > get_kernel_matrix ( )
inherited

get kernel matrix (templated)

Returns
the kernel matrix

Definition at line 850 of file Kernel.cpp.

◆ get_kernel_matrix_helper()

template void * get_kernel_matrix_helper< float32_t > ( void *  p)
staticprotectedinherited

helper for computing the kernel matrix in a parallel way

Parameters
pthread parameters

Definition at line 799 of file Kernel.cpp.

◆ get_kernel_row()

virtual SGVector<float64_t> get_kernel_row ( int32_t  i)
virtualinherited

get row i

Returns
the ith row of the kernel matrix

Definition at line 277 of file kernel/Kernel.h.

◆ get_kernel_type()

virtual EKernelType get_kernel_type ( )
virtual

return what type of kernel we are

Returns
kernel type POLYMATCH

Implements CStringKernel< char >.

Definition at line 80 of file PolyMatchStringKernel.h.

◆ get_lhs()

CFeatures* get_lhs ( )
inherited

get left-hand side of features used in kernel

Returns
features of left-hand side

Definition at line 502 of file kernel/Kernel.h.

◆ get_lhs_equals_rhs()

bool get_lhs_equals_rhs ( )
inherited

test whether features on lhs and rhs are the same

Returns
true if features are the same

Definition at line 541 of file kernel/Kernel.h.

◆ get_modelsel_names()

SGStringList< char > get_modelsel_names ( )
inherited
Returns
vector of names of all parameters which are registered for model selection

Definition at line 531 of file SGObject.cpp.

◆ get_modsel_param_descr()

char * get_modsel_param_descr ( const char *  param_name)
inherited

Returns description of a given parameter string, if it exists. SG_ERROR otherwise

Parameters
param_namename of the parameter
Returns
description of the parameter

Definition at line 555 of file SGObject.cpp.

◆ get_modsel_param_index()

index_t get_modsel_param_index ( const char *  param_name)
inherited

Returns index of model selection parameter with provided index

Parameters
param_namename of model selection parameter
Returns
index of model selection parameter with provided name, -1 if there is no such

Definition at line 568 of file SGObject.cpp.

◆ get_name()

virtual const char* get_name ( ) const
virtual

return the kernel's name

Returns
name PolyMatchString

Reimplemented from CStringKernel< char >.

Definition at line 89 of file PolyMatchStringKernel.h.

◆ get_normalizer()

CKernelNormalizer * get_normalizer ( )
virtualinherited

obtain the current kernel normalizer

Returns
the kernel normalizer

Definition at line 145 of file Kernel.cpp.

◆ get_num_subkernels()

int32_t get_num_subkernels ( )
virtualinherited

get number of subkernels

Returns
number of subkernels

Reimplemented in CWeightedDegreeStringKernel, CWeightedDegreePositionStringKernel, CCombinedKernel, and CProductKernel.

Definition at line 375 of file Kernel.cpp.

◆ get_num_vec_lhs()

virtual int32_t get_num_vec_lhs ( )
virtualinherited

get number of vectors of lhs features

Returns
number of vectors of left-hand side

Reimplemented in CCustomKernel.

Definition at line 514 of file kernel/Kernel.h.

◆ get_num_vec_rhs()

virtual int32_t get_num_vec_rhs ( )
virtualinherited

get number of vectors of rhs features

Returns
number of vectors of right-hand side

Reimplemented in CCustomKernel.

Definition at line 523 of file kernel/Kernel.h.

◆ get_optimization_type()

EOptimizationType get_optimization_type ( )
inherited

get optimization type

Returns
optimization type

Definition at line 624 of file kernel/Kernel.h.

◆ get_parameter_gradient()

virtual SGMatrix<float64_t> get_parameter_gradient ( const TParameter param,
index_t  index = -1 
)
virtualinherited

return derivative with respect to specified parameter

Parameters
paramthe parameter
indexthe index of the element if parameter is a vector
Returns
gradient with respect to parameter

Reimplemented in CCombinedKernel, CExponentialARDKernel, CProductKernel, CGaussianARDKernel, CGaussianKernel, CPeriodicKernel, and CGaussianARDSparseKernel.

Definition at line 733 of file kernel/Kernel.h.

◆ get_parameter_gradient_diagonal()

virtual SGVector<float64_t> get_parameter_gradient_diagonal ( const TParameter param,
index_t  index = -1 
)
virtualinherited

return diagonal part of derivative with respect to specified parameter

Parameters
paramthe parameter
indexthe index of the element if parameter is a vector
Returns
diagonal part of gradient with respect to parameter

Reimplemented in CGaussianARDKernel, and CGaussianARDSparseKernel.

Definition at line 747 of file kernel/Kernel.h.

◆ get_rescaling_enabled()

bool get_rescaling_enabled ( )

return rescaling parameter

Returns
true if rescaling is enabled

Definition at line 104 of file PolyMatchStringKernel.h.

◆ get_rhs()

CFeatures* get_rhs ( )
inherited

get right-hand side of features used in kernel

Returns
features of right-hand side

Definition at line 508 of file kernel/Kernel.h.

◆ get_subkernel_weights() [1/2]

const float64_t * get_subkernel_weights ( int32_t &  num_weights)
virtualinherited

get subkernel weights

Parameters
num_weightsnumber of weights will be stored here
Returns
subkernel weights

Reimplemented in CCombinedKernel, CWeightedDegreeStringKernel, and CWeightedDegreePositionStringKernel.

Definition at line 386 of file Kernel.cpp.

◆ get_subkernel_weights() [2/2]

SGVector< float64_t > get_subkernel_weights ( )
virtualinherited

get subkernel weights (swig compatible)

Returns
subkernel weights

Reimplemented in CCombinedKernel.

Definition at line 392 of file Kernel.cpp.

◆ has() [1/3]

bool has ( const std::string &  name) const
inherited

Checks if object has a class parameter identified by a name.

Parameters
namename of the parameter
Returns
true if the parameter exists with the input name

Definition at line 299 of file SGObject.h.

◆ has() [2/3]

bool has ( const Tag< T > &  tag) const
inherited

Checks if object has a class parameter identified by a Tag.

Parameters
tagtag of the parameter containing name and type information
Returns
true if the parameter exists with the input tag

Definition at line 310 of file SGObject.h.

◆ has() [3/3]

bool has ( const std::string &  name) const
inherited

Checks if a type exists for a class parameter identified by a name.

Parameters
namename of the parameter
Returns
true if the parameter exists with the input name and type

Definition at line 321 of file SGObject.h.

◆ has_features()

virtual bool has_features ( )
virtualinherited

test whether features have been assigned to lhs and rhs

Returns
true if features are assigned

Reimplemented in CCustomKernel, CCombinedKernel, and CProductKernel.

Definition at line 532 of file kernel/Kernel.h.

◆ has_property()

bool has_property ( EKernelProperty  p)
inherited

check if kernel has given property

Parameters
pkernel property
Returns
if kernel has given property

Definition at line 606 of file kernel/Kernel.h.

◆ init()

bool init ( CFeatures l,
CFeatures r 
)
virtual

initialize kernel

Parameters
lfeatures of left-hand side
rfeatures of right-hand side
Returns
if initializing was successful

Reimplemented from CStringKernel< char >.

Definition at line 52 of file PolyMatchStringKernel.cpp.

◆ init_normalizer()

bool init_normalizer ( )
virtualinherited

initialize the current kernel normalizer

Returns
if init was successful

Definition at line 151 of file Kernel.cpp.

◆ init_optimization()

bool init_optimization ( int32_t  count,
int32_t *  IDX,
float64_t weights 
)
virtualinherited

initialize optimization

Parameters
countcount
IDXindex
weightsweights
Returns
if initializing was successful

Reimplemented in CCombinedKernel, CWeightedDegreeStringKernel, CWeightedDegreePositionStringKernel, CCommWordStringKernel, CCommUlongStringKernel, CLinearKernel, and CLinearStringKernel.

Definition at line 339 of file Kernel.cpp.

◆ init_optimization_svm()

bool init_optimization_svm ( CSVM svm)
inherited

initialize optimization

Parameters
svmsvm model
Returns
if initializing was successful

Definition at line 422 of file Kernel.cpp.

◆ is_generic()

bool is_generic ( EPrimitiveType *  generic) const
virtualinherited

If the SGSerializable is a class template then TRUE will be returned and GENERIC is set to the type of the generic.

Parameters
genericset to the type of the generic if returning TRUE
Returns
TRUE if a class template.

Definition at line 329 of file SGObject.cpp.

◆ kernel()

float64_t kernel ( int32_t  idx_a,
int32_t  idx_b 
)
inherited

get kernel function for lhs feature vector a and rhs feature vector b

Parameters
idx_aindex of feature vector a
idx_bindex of feature vector b
Returns
computed kernel function

Definition at line 204 of file kernel/Kernel.h.

◆ list_kernel()

void list_kernel ( )
inherited

list kernel

Definition at line 219 of file Kernel.cpp.

◆ load()

void load ( CFile loader)
inherited

load the kernel matrix

Parameters
loaderFile object via which to load data

Definition at line 163 of file Kernel.cpp.

◆ load_serializable()

bool load_serializable ( CSerializableFile file,
const char *  prefix = "" 
)
virtualinherited

Load this object from file. If it will fail (returning FALSE) then this object will contain inconsistent data and should not be used!

Parameters
filewhere to load from
prefixprefix for members
Returns
TRUE if done, otherwise FALSE

Definition at line 402 of file SGObject.cpp.

◆ load_serializable_post()

void load_serializable_post ( )
throw (ShogunException
)
protectedvirtualinherited

Can (optionally) be overridden to post-initialize some member variables which are not PARAMETER::ADD'ed. Make sure that at first the overridden method BASE_CLASS::LOAD_SERIALIZABLE_POST is called.

Exceptions
ShogunExceptionWill be thrown if an error occurres.

Reimplemented from CSGObject.

Reimplemented in CWeightedDegreePositionStringKernel, CGaussianKernel, CInverseMultiQuadricKernel, CCircularKernel, and CExponentialKernel.

Definition at line 440 of file Kernel.cpp.

◆ load_serializable_pre()

void load_serializable_pre ( )
throw (ShogunException
)
protectedvirtualinherited

Can (optionally) be overridden to pre-initialize some member variables which are not PARAMETER::ADD'ed. Make sure that at first the overridden method BASE_CLASS::LOAD_SERIALIZABLE_PRE is called.

Exceptions
ShogunExceptionwill be thrown if an error occurs.

Reimplemented in CDynamicArray< T >, CDynamicArray< float64_t >, CDynamicArray< float32_t >, CDynamicArray< int32_t >, CDynamicArray< char >, CDynamicArray< bool >, and CDynamicObjectArray.

Definition at line 454 of file SGObject.cpp.

◆ obtain_from_generic()

CKernel * obtain_from_generic ( CSGObject kernel)
staticinherited

Obtains a kernel from a generic SGObject with error checking. Note that if passing NULL, result will be NULL

Parameters
kernelObject to cast to CKernel, is *not* SG_REFed
Returns
object casted to CKernel, NULL if not possible

Definition at line 408 of file Kernel.cpp.

◆ parameter_hash_changed()

bool parameter_hash_changed ( )
virtualinherited
Returns
whether parameter combination has changed since last update

Definition at line 295 of file SGObject.cpp.

◆ print_modsel_params()

void print_modsel_params ( )
inherited

prints all parameter registered for model selection and their type

Definition at line 507 of file SGObject.cpp.

◆ print_serializable()

void print_serializable ( const char *  prefix = "")
virtualinherited

prints registered parameters out

Parameters
prefixprefix for members

Definition at line 341 of file SGObject.cpp.

◆ register_param() [1/2]

void register_param ( Tag< T > &  _tag,
const T &  value 
)
protectedinherited

Registers a class parameter which is identified by a tag. This enables the parameter to be modified by set() and retrieved by get(). Parameters can be registered in the constructor of the class.

Parameters
_tagname and type information of parameter
valuevalue of the parameter

Definition at line 450 of file SGObject.h.

◆ register_param() [2/2]

void register_param ( const std::string &  name,
const T &  value 
)
protectedinherited

Registers a class parameter which is identified by a name. This enables the parameter to be modified by set() and retrieved by get(). Parameters can be registered in the constructor of the class.

Parameters
namename of the parameter
valuevalue of the parameter along with type information

Definition at line 463 of file SGObject.h.

◆ register_params()

void register_params ( )
protectedvirtualinherited

Separate the function of parameter registration This can be the first stage of a *general* framework for cross-validation or other parameter-based operations

Reimplemented in CSpectrumMismatchRBFKernel, CSNPStringKernel, CANOVAKernel, CSubsequenceStringKernel, CGaussianMatchStringKernel, CGaussianShortRealKernel, CTensorProductPairKernel, CDistanceKernel, and CHistogramIntersectionKernel.

Definition at line 463 of file Kernel.cpp.

◆ remove_lhs()

void remove_lhs ( )
virtualinherited

remove lhs from kernel

Reimplemented in CWeightedDegreeStringKernel, CWeightedDegreePositionStringKernel, CCombinedKernel, CCommUlongStringKernel, and CProductKernel.

Definition at line 194 of file Kernel.cpp.

◆ remove_lhs_and_rhs()

void remove_lhs_and_rhs ( )
virtualinherited

remove lhs and rhs from kernel

Reimplemented in CCombinedKernel, and CProductKernel.

Definition at line 177 of file Kernel.cpp.

◆ remove_rhs()

void remove_rhs ( )
virtualinherited

takes all necessary steps if the rhs is removed from kernel

remove rhs from kernel

Reimplemented in CCombinedKernel, CCommUlongStringKernel, and CProductKernel.

Definition at line 206 of file Kernel.cpp.

◆ row_col_wise_sum_block()

SGVector< float64_t > row_col_wise_sum_block ( index_t  block_begin_row,
index_t  block_begin_col,
index_t  block_size_row,
index_t  block_size_col,
bool  no_diag = false 
)
virtualinherited

Computes row-wise/col-wise sum of kernel values. This method is useful while computing statistical estimation of mean/variance over kernel values but the kernel matrix is too huge to be fit inside memory.

Parameters
block_begin_rowthe row index at which the block starts
block_begin_colthe col index at which the block starts
block_size_rowthe number of rows in the block
block_size_colthe number of cols in the block

For Example, block_begin_row 0, block_begin_col 4 and block_size_row 5, block_size_col 6 represents the block that starts at index (0,4) in the kernel matrix and goes upto (0+5-1,4+6-1) i.e. (4,9) both inclusive

Parameters
no_diagif true (default is false), the diagonal elements are excluded from the row/col-wise sum, provided that block_size_row and block_size_col are same (i.e. the block is square). Otherwise, these are always added
Returns
a vector whose first block_size_row entries contain row-wise sum of kernel values computed as

\[ v[i]=\sum_{j}k(i+\text{block-begin-row}, j+\text{block-begin-col}) \]

and rest block_size_col entries col-wise sum of kernel values computed as

\[ v[\text{block-size-row}+j]=\sum_{i}k(i+\text{block-begin-row}, j+\text{block-begin-col}) \]

where \(i\in[0,\text{block-size-row}-1]\) and \(j\in[0,\text{block-size-col}-1]\)

Reimplemented in CCustomKernel.

Definition at line 745 of file Kernel.cpp.

◆ row_wise_sum_squared_sum_symmetric_block()

SGMatrix< float64_t > row_wise_sum_squared_sum_symmetric_block ( index_t  block_begin,
index_t  block_size,
bool  no_diag = true 
)
virtualinherited

Computes row-wise/col-wise sum and squared sum of kernel values from a symmetric part of the kernel matrix that always is supposed to contain the main upper diagonal. This method is useful while computing statistical estimation of mean/variance over kernel values but the kernel matrix is too huge to be fit inside memory.

Parameters
block_beginthe row and col index at which the block starts
block_sizethe number of rows and cols in the block

For Example, block_begin 4 and block_size 5 represents the block that starts at index (4,4) in the kernel matrix and goes upto (4+5-1,4+5-1) i.e. (8,8) both inclusive

Parameters
no_diagif true (default), the diagonal elements are excluded from the row/col-wise sum
Returns
a matrix whose first column contains the row-wise sum of kernel values computed as

\[ v_0[i]=\sum_{j}k(i+\text{block-begin}, j+\text{block-begin}) \]

and second column contains the row-wise sum of squared kernel values

\[ v_1[i]=\sum_{j}^k^2(i+\text{block-begin}, j+\text{block-begin}) \]

where \(i,j\in[0,\text{block-size}-1]\)

Reimplemented in CCustomKernel.

Definition at line 686 of file Kernel.cpp.

◆ row_wise_sum_symmetric_block()

SGVector< float64_t > row_wise_sum_symmetric_block ( index_t  block_begin,
index_t  block_size,
bool  no_diag = true 
)
virtualinherited

Computes row-wise/col-wise sum from a symmetric part of the kernel matrix that always is supposed to contain the main upper diagonal. This method is useful while computing statistical estimation of mean/variance over kernel values but the kernel matrix is too huge to be fit inside memory.

Parameters
block_beginthe row and col index at which the block starts
block_sizethe number of rows and cols in the block

For Example, block_begin 4 and block_size 5 represents the block that starts at index (4,4) in the kernel matrix and goes upto (4+5-1,4+5-1) i.e. (8,8) both inclusive

Parameters
no_diagif true (default), the diagonal elements are excluded from the row/col-wise sum
Returns
vector containing row-wise sum computed as

\[ v[i]=\sum_{j}k(i+\text{block-begin}, j+\text{block-begin}) \]

where \(i,j\in[0,\text{block-size}-1]\)

Reimplemented in CCustomKernel.

Definition at line 632 of file Kernel.cpp.

◆ save()

void save ( CFile writer)
inherited

save kernel matrix

Parameters
writerFile object via which to save data

Definition at line 169 of file Kernel.cpp.

◆ save_serializable()

bool save_serializable ( CSerializableFile file,
const char *  prefix = "" 
)
virtualinherited

Save this object to file.

Parameters
filewhere to save the object; will be closed during returning if PREFIX is an empty string.
prefixprefix for members
Returns
TRUE if done, otherwise FALSE

Definition at line 347 of file SGObject.cpp.

◆ save_serializable_post()

void save_serializable_post ( )
throw (ShogunException
)
protectedvirtualinherited

Can (optionally) be overridden to post-initialize some member variables which are not PARAMETER::ADD'ed. Make sure that at first the overridden method BASE_CLASS::SAVE_SERIALIZABLE_POST is called.

Exceptions
ShogunExceptionWill be thrown if an error occurres.

Reimplemented from CSGObject.

Definition at line 455 of file Kernel.cpp.

◆ save_serializable_pre()

void save_serializable_pre ( )
throw (ShogunException
)
protectedvirtualinherited

Can (optionally) be overridden to pre-initialize some member variables which are not PARAMETER::ADD'ed. Make sure that at first the overridden method BASE_CLASS::SAVE_SERIALIZABLE_PRE is called.

Exceptions
ShogunExceptionWill be thrown if an error occurres.

Reimplemented from CSGObject.

Definition at line 447 of file Kernel.cpp.

◆ set() [1/2]

void set ( const Tag< T > &  _tag,
const T &  value 
)
inherited

Setter for a class parameter, identified by a Tag. Throws an exception if the class does not have such a parameter.

Parameters
_tagname and type information of parameter
valuevalue of the parameter

Definition at line 337 of file SGObject.h.

◆ set() [2/2]

void set ( const std::string &  name,
const T &  value 
)
inherited

Setter for a class parameter, identified by a name. Throws an exception if the class does not have such a parameter.

Parameters
namename of the parameter
valuevalue of the parameter along with type information

Definition at line 363 of file SGObject.h.

◆ set_cache_size()

void set_cache_size ( int32_t  size)
inherited

set the size of the kernel cache

Parameters
sizeof kernel cache

Definition at line 584 of file kernel/Kernel.h.

◆ set_combined_kernel_weight()

void set_combined_kernel_weight ( float64_t  nw)
inherited

set combined kernel weight

Parameters
nwnew combined kernel weight

Definition at line 691 of file kernel/Kernel.h.

◆ set_generic() [1/16]

void set_generic ( )
inherited

Definition at line 74 of file SGObject.cpp.

◆ set_generic() [2/16]

void set_generic ( )
inherited

Definition at line 79 of file SGObject.cpp.

◆ set_generic() [3/16]

void set_generic ( )
inherited

Definition at line 84 of file SGObject.cpp.

◆ set_generic() [4/16]

void set_generic ( )
inherited

Definition at line 89 of file SGObject.cpp.

◆ set_generic() [5/16]

void set_generic ( )
inherited

Definition at line 94 of file SGObject.cpp.

◆ set_generic() [6/16]

void set_generic ( )
inherited

Definition at line 99 of file SGObject.cpp.

◆ set_generic() [7/16]

void set_generic ( )
inherited

Definition at line 104 of file SGObject.cpp.

◆ set_generic() [8/16]

void set_generic ( )
inherited

Definition at line 109 of file SGObject.cpp.

◆ set_generic() [9/16]

void set_generic ( )
inherited

Definition at line 114 of file SGObject.cpp.

◆ set_generic() [10/16]

void set_generic ( )
inherited

Definition at line 119 of file SGObject.cpp.

◆ set_generic() [11/16]

void set_generic ( )
inherited

Definition at line 124 of file SGObject.cpp.

◆ set_generic() [12/16]

void set_generic ( )
inherited

Definition at line 129 of file SGObject.cpp.

◆ set_generic() [13/16]

void set_generic ( )
inherited

Definition at line 134 of file SGObject.cpp.

◆ set_generic() [14/16]

void set_generic ( )
inherited

Definition at line 139 of file SGObject.cpp.

◆ set_generic() [15/16]

void set_generic ( )
inherited

Definition at line 144 of file SGObject.cpp.

◆ set_generic() [16/16]

void set_generic ( )
inherited

set generic type to T

◆ set_global_io()

void set_global_io ( SGIO io)
inherited

set the io object

Parameters
ioio object to use

Definition at line 261 of file SGObject.cpp.

◆ set_global_parallel()

void set_global_parallel ( Parallel parallel)
inherited

set the parallel object

Parameters
parallelparallel object to use

Definition at line 274 of file SGObject.cpp.

◆ set_global_version()

void set_global_version ( Version version)
inherited

set the version object

Parameters
versionversion object to use

Definition at line 316 of file SGObject.cpp.

◆ set_is_initialized()

void set_is_initialized ( bool  p_init)
protectedinherited

set is initialized

Parameters
p_initif optimization shall be set to initialized

Definition at line 782 of file kernel/Kernel.h.

◆ set_normalizer()

bool set_normalizer ( CKernelNormalizer normalizer)
virtualinherited

set the current kernel normalizer

Returns
if successful

Reimplemented in CWeightedDegreeStringKernel.

Definition at line 133 of file Kernel.cpp.

◆ set_optimization_type()

virtual void set_optimization_type ( EOptimizationType  t)
virtualinherited

set optimization type

Parameters
toptimization type to set

Reimplemented in CCombinedKernel.

Definition at line 630 of file kernel/Kernel.h.

◆ set_property()

void set_property ( EKernelProperty  p)
protectedinherited

set property

Parameters
pkernel property to set

Definition at line 764 of file kernel/Kernel.h.

◆ set_rescaling_enabled()

void set_rescaling_enabled ( bool  n)

enable rescaling by length of feature vector

Parameters
ntrue to enable

Definition at line 95 of file PolyMatchStringKernel.h.

◆ set_subkernel_weights()

void set_subkernel_weights ( SGVector< float64_t weights)
virtualinherited

set subkernel weights

Parameters
weightsnew subkernel weights

Reimplemented in CCombinedKernel, CWeightedDegreeStringKernel, and CWeightedDegreePositionStringKernel.

Definition at line 399 of file Kernel.cpp.

◆ shallow_copy()

CSGObject * shallow_copy ( ) const
virtualinherited

A shallow copy. All the SGObject instance variables will be simply assigned and SG_REF-ed.

Reimplemented in CGaussianKernel.

Definition at line 225 of file SGObject.cpp.

◆ sum_block()

float64_t sum_block ( index_t  block_begin_row,
index_t  block_begin_col,
index_t  block_size_row,
index_t  block_size_col,
bool  no_diag = false 
)
virtualinherited

Computes sum of kernel values from a specified block. This method is useful while computing statistical estimation of mean/variance over kernel values but the kernel matrix is too huge to be fit inside memory.

Parameters
block_begin_rowthe row index at which the block starts
block_begin_colthe col index at which the block starts
block_size_rowthe number of rows in the block
block_size_colthe number of cols in the block

For example, block_begin_row 0, block_begin_col 4 and block_size_row 5, block_size_col 6 represents the block that starts at index (0,4) in the kernel matrix and goes upto (0+5-1,4+6-1) i.e. (4,9) both inclusive

Parameters
no_diagif true (default is false), the diagonal elements are excluded from the sum, provided that block_size_row and block_size_col are same (i.e. the block is square). Otherwise, these are always added
Returns
sum of kernel values within the block computed as

\[ \sum_{i}\sum_{j}k(i+\text{block-begin-row}, j+\text{block-begin-col}) \]

where \(i\in[0,\text{block-size-row}-1]\) and \(j\in[0,\text{block-size-col}-1]\)

Reimplemented in CCustomKernel.

Definition at line 587 of file Kernel.cpp.

◆ sum_symmetric_block()

float64_t sum_symmetric_block ( index_t  block_begin,
index_t  block_size,
bool  no_diag = true 
)
virtualinherited

Computes sum from a symmetric part of the kernel matrix that always is supposed to contain the main upper diagonal. This method is useful while computing statistical estimation of mean/variance over kernel values but the kernel matrix is too huge to be fit inside memory.

Parameters
block_beginthe row and col index at which the block starts
block_sizethe number of rows and cols in the block

For example, block_begin 4 and block_size 5 represents the block that starts at index (4,4) in the kernel matrix and goes upto (4+5-1,4+5-1) i.e. (8,8) both inclusive

Parameters
no_diagif true (default), the diagonal elements are excluded from the sum
Returns
sum of kernel values within the block computed as

\[ \sum_{i}\sum_{j}k(i+\text{block-begin}, j+\text{block-begin}) \]

where \(i,j\in[0,\text{block-size}-1]\)

Reimplemented in CCustomKernel.

Definition at line 536 of file Kernel.cpp.

◆ unset_generic()

void unset_generic ( )
inherited

unset generic type

this has to be called in classes specializing a template class

Definition at line 336 of file SGObject.cpp.

◆ unset_property()

void unset_property ( EKernelProperty  p)
protectedinherited

unset property

Parameters
pkernel property to unset

Definition at line 773 of file kernel/Kernel.h.

◆ update_parameter_hash()

void update_parameter_hash ( )
virtualinherited

Updates the hash of current parameter combination

Definition at line 281 of file SGObject.cpp.

Member Data Documentation

◆ cache_size

int32_t cache_size
protectedinherited

cache_size in MB

Definition at line 867 of file kernel/Kernel.h.

◆ combined_kernel_weight

float64_t combined_kernel_weight
protectedinherited

combined kernel weight

Definition at line 889 of file kernel/Kernel.h.

◆ degree

int32_t degree
protected

degree

Definition at line 125 of file PolyMatchStringKernel.h.

◆ inhomogene

bool inhomogene
protected

if kernel is inhomogeneous

Definition at line 127 of file PolyMatchStringKernel.h.

◆ io

SGIO* io
inherited

io

Definition at line 558 of file SGObject.h.

◆ kernel_matrix

KERNELCACHE_ELEM* kernel_matrix
protectedinherited

this *COULD* store the whole kernel matrix usually not applicable / necessary to compute the whole matrix

Definition at line 873 of file kernel/Kernel.h.

◆ lhs

CFeatures* lhs
protectedinherited

feature vectors to occur on left hand side

Definition at line 876 of file kernel/Kernel.h.

◆ lhs_equals_rhs

bool lhs_equals_rhs
protectedinherited

lhs

Definition at line 881 of file kernel/Kernel.h.

◆ m_gradient_parameters

Parameter* m_gradient_parameters
inherited

parameters wrt which we can compute gradients

Definition at line 573 of file SGObject.h.

◆ m_hash

uint32_t m_hash
inherited

Hash of parameter values

Definition at line 576 of file SGObject.h.

◆ m_model_selection_parameters

Parameter* m_model_selection_parameters
inherited

model selection parameters

Definition at line 570 of file SGObject.h.

◆ m_parameters

Parameter* m_parameters
inherited

parameters

Definition at line 567 of file SGObject.h.

◆ normalizer

CKernelNormalizer* normalizer
protectedinherited

normalize the kernel(i,j) function based on this normalization function

Definition at line 903 of file kernel/Kernel.h.

◆ num_lhs

int32_t num_lhs
protectedinherited

number of feature vectors on left hand side

Definition at line 884 of file kernel/Kernel.h.

◆ num_rhs

int32_t num_rhs
protectedinherited

number of feature vectors on right hand side

Definition at line 886 of file kernel/Kernel.h.

◆ opt_type

EOptimizationType opt_type
protectedinherited

optimization type (currently FASTBUTMEMHUNGRY and SLOWBUTMEMEFFICIENT)

Definition at line 896 of file kernel/Kernel.h.

◆ optimization_initialized

bool optimization_initialized
protectedinherited

if optimization is initialized

Definition at line 892 of file kernel/Kernel.h.

◆ parallel

Parallel* parallel
inherited

parallel

Definition at line 561 of file SGObject.h.

◆ properties

uint64_t properties
protectedinherited

kernel properties

Definition at line 899 of file kernel/Kernel.h.

◆ rescaling

bool rescaling
protected

true to rescale kernel with string length

Definition at line 129 of file PolyMatchStringKernel.h.

◆ rhs

CFeatures* rhs
protectedinherited

feature vectors to occur on right hand side

Definition at line 878 of file kernel/Kernel.h.

◆ version

Version* version
inherited

version

Definition at line 564 of file SGObject.h.


The documentation for this class was generated from the following files:

SHOGUN Machine Learning Toolbox - Documentation