/usr/include/shogun/kernel/CommUlongStringKernel.h is in libshogun-dev 1.1.0-4ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | /*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Written (W) 1999-2009 Soeren Sonnenburg
* Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society
*/
#ifndef _COMMULONGSTRINGKERNEL_H___
#define _COMMULONGSTRINGKERNEL_H___
#include <shogun/lib/common.h>
#include <shogun/mathematics/Math.h>
#include <shogun/lib/DynamicArray.h>
#include <shogun/kernel/StringKernel.h>
namespace shogun
{
template <class T> class CDynamicArray;
template <class ST> class CStringFeatures;
/** @brief The CommUlongString kernel may be used to compute the spectrum kernel
* from strings that have been mapped into unsigned 64bit integers.
*
* These 64bit integers correspond to k-mers. To be applicable in this kernel
* they need to be sorted (e.g. via the SortUlongString pre-processor).
*
* It basically uses the algorithm in the unix "comm" command (hence the name)
* to compute:
*
* \f[
* k({\bf x},({\bf x'})= \Phi_k({\bf x})\cdot \Phi_k({\bf x'})
* \f]
*
* where \f$\Phi_k\f$ maps a sequence \f${\bf x}\f$ that consists of letters in
* \f$\Sigma\f$ to a feature vector of size \f$|\Sigma|^k\f$. In this feature
* vector each entry denotes how often the k-mer appears in that \f${\bf x}\f$.
*
* Note that this representation enables spectrum kernels of order 8 for 8bit
* alphabets (like binaries) and order 32 for 2-bit alphabets like DNA.
*
* For this kernel the linadd speedups are implemented (though there is room for
* improvement here when a whole set of sequences is ADDed) using sorted lists.
*
*/
class CCommUlongStringKernel: public CStringKernel<uint64_t>
{
public:
/** constructor
*
* @param size cache size
* @param use_sign if sign shall be used
*/
CCommUlongStringKernel(int32_t size=10, bool use_sign=false);
/** constructor
*
* @param l features of left-hand side
* @param r features of right-hand side
* @param use_sign if sign shall be used
* @param size cache size
*/
CCommUlongStringKernel(
CStringFeatures<uint64_t>* l, CStringFeatures<uint64_t>* r,
bool use_sign=false,
int32_t size=10);
virtual ~CCommUlongStringKernel();
/** initialize kernel
*
* @param l features of left-hand side
* @param r features of right-hand side
* @return if initializing was successful
*/
virtual bool init(CFeatures* l, CFeatures* r);
/** clean up kernel */
virtual void cleanup();
/** return what type of kernel we are
*
* @return kernel type COMMULONGSTRING
*/
virtual EKernelType get_kernel_type() { return K_COMMULONGSTRING; }
/** return the kernel's name
*
* @return name CommUlongString
*/
virtual const char* get_name() const { return "CommUlongStringKernel"; }
/** initialize optimization
*
* @param count count
* @param IDX index
* @param weights weights
* @return if initializing was successful
*/
virtual bool init_optimization(
int32_t count, int32_t* IDX, float64_t* weights);
/** delete optimization
*
* @return if deleting was successful
*/
virtual bool delete_optimization();
/** compute optimized
*
* @param idx index to compute
* @return optimized value at given index
*/
virtual float64_t compute_optimized(int32_t idx);
/** merge dictionaries
*
* @param t t
* @param j j
* @param k k
* @param vec vector
* @param dic dictionary
* @param dic_weights dictionary weights
* @param weight weight
* @param vec_idx vector index
*/
inline void merge_dictionaries(
int32_t& t, int32_t j, int32_t& k, uint64_t* vec, uint64_t* dic,
float64_t* dic_weights, float64_t weight, int32_t vec_idx)
{
while (k<dictionary.get_num_elements() && dictionary[k] < vec[j-1])
{
dic[t]=dictionary[k];
dic_weights[t]=dictionary_weights[k];
t++;
k++;
}
if (k<dictionary.get_num_elements() && dictionary[k]==vec[j-1])
{
dic[t]=vec[j-1];
dic_weights[t]=dictionary_weights[k]+normalizer->normalize_lhs(weight, vec_idx);
k++;
}
else
{
dic[t]=vec[j-1];
dic_weights[t]=normalizer->normalize_lhs(weight, vec_idx);
}
t++;
}
/** add to normal
*
* @param idx where to add
* @param weight what to add
*/
virtual void add_to_normal(int32_t idx, float64_t weight);
/** clear normal */
virtual void clear_normal();
/** remove lhs from kernel */
virtual void remove_lhs();
/** remove rhs from kernel */
virtual void remove_rhs();
/** return feature type the kernel can deal with
*
* @return feature type ULONG
*/
inline virtual EFeatureType get_feature_type() { return F_ULONG; }
/** get dictionary
*
* @param dsize dictionary size will be stored in here
* @param dict dictionary will be stored in here
* @param dweights dictionary weights will be stored in here
*/
void get_dictionary(
int32_t &dsize, uint64_t*& dict, float64_t*& dweights)
{
dsize=dictionary.get_num_elements();
dict=dictionary.get_array();
dweights = dictionary_weights.get_array();
}
protected:
/** compute kernel function for features a and b
* idx_{a,b} denote the index of the feature vectors
* in the corresponding feature object
*
* @param idx_a index a
* @param idx_b index b
* @return computed kernel function at indices a,b
*/
float64_t compute(int32_t idx_a, int32_t idx_b);
protected:
/** dictionary */
CDynamicArray<uint64_t> dictionary;
/** dictionary weights */
CDynamicArray<float64_t> dictionary_weights;
/** if sign shall be used */
bool use_sign;
};
}
#endif /* _COMMULONGFSTRINGKERNEL_H__ */
|