21 #ifdef HAVE_LINALG_LIB
24 using namespace linalg;
25 #endif // HAVE_LINALG_LIB
27 void CCustomKernel::init()
39 "Subset stack of columns", MS_NOT_AVAILABLE);
40 SG_ADD(&m_free_km, "free_km", "Whether kernel matrix should be freed in "
41 "destructor", MS_NOT_AVAILABLE);
42 SG_ADD(&m_is_symmetric, "is_symmetric", "Whether kernel matrix is symmetric",
44 SG_ADD(&kmatrix, "kmatrix", "Kernel matrix.", MS_NOT_AVAILABLE);
45 SG_ADD(&upper_diagonal, "upper_diagonal", "Upper diagonal", MS_NOT_AVAILABLE);
49 :
CKernel(10), kmatrix(), upper_diagonal(false)
77 :
CKernel(10), upper_diagonal(false)
86 :
CKernel(10), upper_diagonal(false)
119 REQUIRE(l,
"CFeatures l should not be NULL\n")
120 REQUIRE(r,
"CFeatures r should not be NULL\n")
124 "Different FeatureClass: l is %d, r is %d\n",
127 "Different FeatureType: l is %d, r is %d\n",
163 #ifdef HAVE_LINALG_LIB
165 index_t block_size,
bool no_diag)
171 SG_INFO(
"Row/col subsets initialized! Falling back to "
172 "CKernel::sum_symmetric_block (slower)!\n");
179 "Invalid
block begin index (%d, %d)!\n", block_begin, block_begin)
181 "Invalid
block size (%d) at starting index (%d, %d)! "
182 "Please use smaller blocks!", block_size, block_begin, block_begin)
183 REQUIRE(block_size>=1, "Invalid
block size (%d)!\n", block_size)
187 return sum_symmetric<Backend::EIGEN3>(
block(
kmatrix, block_begin,
188 block_begin, block_size, block_size), no_diag);
193 index_t block_size_col,
bool no_diag)
199 SG_INFO(
"Row/col subsets initialized! Falling back to "
200 "CKernel::sum_block (slower)!\n");
202 block_size_row, block_size_col, no_diag);
205 REQUIRE(kmatrix.matrix,
"The kernel matrix is not initialized!\n")
206 REQUIRE(block_begin_row>=0 && block_begin_row<kmatrix.num_rows &&
207 block_begin_col>=0 && block_begin_col<kmatrix.num_cols,
208 "Invalid
block begin index (%d, %d)!\n",
209 block_begin_row, block_begin_col)
210 REQUIRE(block_begin_row+block_size_row<=kmatrix.num_rows &&
211 block_begin_col+block_size_col<=kmatrix.num_cols,
212 "Invalid
block size (%d, %d) at starting index (%d, %d)! "
213 "Please use smaller blocks!", block_size_row, block_size_col,
214 block_begin_row, block_begin_col)
215 REQUIRE(block_size_row>=1 && block_size_col>=1,
216 "Invalid
block size (%d, %d)!\n", block_size_row, block_size_col)
219 if (no_diag && block_size_row!=block_size_col)
221 SG_WARNING(
"Not removing the main diagonal since block is not square!\n");
227 return sum<Backend::EIGEN3>(
block(kmatrix, block_begin_row, block_begin_col,
228 block_size_row, block_size_col), no_diag);
232 block_begin,
index_t block_size,
bool no_diag)
238 SG_INFO(
"Row/col subsets initialized! Falling back to "
239 "CKernel::row_wise_sum_symmetric_block (slower)!\n");
244 REQUIRE(kmatrix.matrix,
"The kernel matrix is not initialized!\n")
245 REQUIRE(m_is_symmetric, "The
kernel matrix is not symmetric!\n")
246 REQUIRE(block_begin>=0 && block_begin<kmatrix.num_cols,
247 "Invalid
block begin index (%d, %d)!\n", block_begin, block_begin)
248 REQUIRE(block_begin+block_size<=kmatrix.num_cols,
249 "Invalid
block size (%d) at starting index (%d, %d)! "
250 "Please use smaller blocks!", block_size, block_begin, block_begin)
251 REQUIRE(block_size>=1, "Invalid
block size (%d)!\n", block_size)
254 block_begin, block_size, block_size), no_diag);
258 for (
index_t i=0; i<s.vlen; ++i)
273 SG_INFO(
"Row/col subsets initialized! Falling back to "
274 "CKernel::row_wise_sum_squared_sum_symmetric_block (slower)!\n");
276 block_size, no_diag);
279 REQUIRE(kmatrix.matrix,
"The kernel matrix is not initialized!\n")
280 REQUIRE(m_is_symmetric, "The
kernel matrix is not symmetric!\n")
281 REQUIRE(block_begin>=0 && block_begin<kmatrix.num_cols,
282 "Invalid
block begin index (%d, %d)!\n", block_begin, block_begin)
283 REQUIRE(block_begin+block_size<=kmatrix.num_cols,
284 "Invalid
block size (%d) at starting index (%d, %d)! "
285 "Please use smaller blocks!", block_size, block_begin, block_begin)
286 REQUIRE(block_size>=1, "Invalid
block size (%d)!\n", block_size)
294 block_begin, block_begin, block_size, block_size), no_diag);
297 elementwise_square<Backend::EIGEN3>(
block(kmatrix,
298 block_begin, block_begin, block_size, block_size)), no_diag);
300 for (
index_t i=0; i<sum.vlen; ++i)
301 row_sum(i, 0)=sum[i];
303 for (
index_t i=0; i<sq_sum.vlen; ++i)
304 row_sum(i, 1)=sq_sum[i];
313 index_t block_size_col,
bool no_diag)
319 SG_INFO(
"Row/col subsets initialized! Falling back to "
320 "CKernel::row_col_wise_sum_block (slower)!\n");
322 block_size_row, block_size_col, no_diag);
325 REQUIRE(kmatrix.matrix,
"The kernel matrix is not initialized!\n")
326 REQUIRE(block_begin_row>=0 && block_begin_row<kmatrix.num_rows &&
327 block_begin_col>=0 && block_begin_col<kmatrix.num_cols,
328 "Invalid
block begin index (%d, %d)!\n",
329 block_begin_row, block_begin_col)
330 REQUIRE(block_begin_row+block_size_row<=kmatrix.num_rows &&
331 block_begin_col+block_size_col<=kmatrix.num_cols,
332 "Invalid
block size (%d, %d) at starting index (%d, %d)! "
333 "Please use smaller blocks!", block_size_row, block_size_col,
334 block_begin_row, block_begin_col)
335 REQUIRE(block_size_row>=1 && block_size_col>=1,
336 "Invalid
block size (%d, %d)!\n", block_size_row, block_size_col)
339 if (no_diag && block_size_row!=block_size_col)
341 SG_WARNING(
"Not removing the main diagonal since block is not square!\n");
351 block_begin_row, block_begin_col, block_size_row,
352 block_size_col), no_diag);
355 block_begin_row, block_begin_col, block_size_row,
356 block_size_col), no_diag);
361 for (
index_t i=0; i<colwise.vlen; ++i)
362 sum[i+rowwise.
vlen]=colwise[i];
368 #endif // HAVE_LINALG_LIB
virtual void add_row_subset(SGVector< index_t > subset)
SGMatrix< float32_t > kmatrix
int32_t num_rhs
number of feature vectors on right hand side
The Custom Kernel allows for custom user provided kernel matrices.
The class IndexFeatures implements features that contain the index of the features. This features used in the CCustomKernel::init to make the subset of the kernel matrix. Initial CIndexFeature of row_idx and col_idx, pass them to the CCustomKernel::init(row_idx, col_idx), then use CCustomKernel::get_kernel_matrix() will get the sub kernel matrix specified by the row_idx and col_idx.
SGMatrix< float32_t > get_float32_kernel_matrix()
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)
bool get_lhs_equals_rhs()
CSubsetStack * m_col_subset_stack
virtual int32_t get_num_vectors() const =0
float64_t kernel(int32_t idx_a, int32_t idx_b)
virtual void remove_all_row_subsets()
SGMatrix< float64_t > get_kernel_matrix()
class to add subset support to another class. A CSubsetStackStack instance should be added and wrappe...
virtual SGMatrix< float64_t > row_wise_sum_squared_sum_symmetric_block(index_t block_begin, index_t block_size, bool no_diag=true)
virtual void remove_col_subset()
SGVector< index_t > get_feature_index()
virtual void remove_row_subset()
virtual void add_col_subset(SGVector< index_t > subset)
virtual void add_subset(SGVector< index_t > subset)
Class SGObject is the base class of all shogun objects.
virtual void row_subset_changed_post()
virtual void remove_all_subsets()
virtual 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)
virtual void add_subset_in_place(SGVector< index_t > subset)
virtual float64_t sum_symmetric_block(index_t block_begin, index_t block_size, bool no_diag=true)
bool set_full_kernel_matrix_from_full(SGMatrix< float32_t > full_kernel_matrix, bool check_symmetry=false)
virtual SGVector< float64_t > row_wise_sum_symmetric_block(index_t block_begin, index_t block_size, bool no_diag=true)
virtual EFeatureClass get_feature_class() const =0
int32_t num_lhs
number of feature vectors on left hand side
virtual bool dummy_init(int32_t rows, int32_t cols)
virtual void remove_all_col_subsets()
virtual bool init_normalizer()
CFeatures * rhs
feature vectors to occur on right hand side
The class DummyFeatures implements features that only know the number of feature objects (but don't a...
all of classes and functions are contained in the shogun namespace
virtual EKernelType get_kernel_type()=0
CFeatures * lhs
feature vectors to occur on left hand side
The class Features is the base class of all feature objects.
virtual void col_subset_changed_post()
virtual bool has_subsets() const
virtual void remove_subset()
virtual void add_col_subset_in_place(SGVector< index_t > subset)
CSubsetStack * m_row_subset_stack
virtual void add_row_subset_in_place(SGVector< index_t > subset)
virtual EFeatureType get_feature_type() const =0
Block< Matrix > block(Matrix matrix, index_t row_begin, index_t col_begin, index_t row_size, index_t col_size)