5 #ifndef THUNDERSVM_KERNELMATRIX_H 6 #define THUNDERSVM_KERNELMATRIX_H 8 #include "thundersvm.h" 49 size_t nnz()
const {
return nnz_;};
71 #endif //THUNDERSVM_KERNELMATRIX_H void get_rows(const SyncArray< int > &idx, SyncArray< float_type > &kernel_rows) const
Definition: kernelmatrix.cpp:71
The management class of kernel values.
Definition: kernelmatrix.h:16
size_t n_features() const
the maximum number of features of instances
Definition: kernelmatrix.h:46
const SyncArray< float_type > & diag() const
return the diagonal elements of kernel matrix
Definition: kernelmatrix.cpp:123
size_t nnz() const
the number of non-zero features of all instances
Definition: kernelmatrix.h:49
size_t n_instances() const
the number of instances in KernelMatrix
Definition: kernelmatrix.h:43
params for ThunderSVM
Definition: svmparam.h:13
KernelMatrix(const DataSet::node2d &instances, SvmParam param)
Definition: kernelmatrix.cpp:9