data structure describing one training example More...
#include <shark/Algorithms/QP/QpMcSimplexDecomp.h>
Public Attributes | |
std::size_t | index |
example index in the dataset, not the example vector! More... | |
unsigned int | y |
label of this example More... | |
std::size_t | active |
number of active variables More... | |
std::size_t * | var |
list of all m_cardP variables, in order of the p-index More... | |
std::size_t * | avar |
list of active variables More... | |
double | varsum |
total sum of all variables of this example More... | |
double | diagonal |
diagonal entry of the kernel matrix k(x,x); More... | |
data structure describing one training example
Definition at line 506 of file QpMcSimplexDecomp.h.
std::size_t shark::QpMcSimplexDecomp< Matrix >::Example::active |
number of active variables
Definition at line 513 of file QpMcSimplexDecomp.h.
Referenced by shark::QpMcSimplexDecomp< Matrix >::deactivateVariable(), shark::QpMcSimplexDecomp< Matrix >::getSimplexMVP(), shark::QpMcSimplexDecomp< Matrix >::maxGainSimplex(), and shark::QpMcSimplexDecomp< Matrix >::shrink().
std::size_t* shark::QpMcSimplexDecomp< Matrix >::Example::avar |
list of active variables
Definition at line 517 of file QpMcSimplexDecomp.h.
Referenced by shark::QpMcSimplexDecomp< Matrix >::deactivateVariable(), shark::QpMcSimplexDecomp< Matrix >::getSimplexMVP(), shark::QpMcSimplexDecomp< Matrix >::maxGainSimplex(), and shark::QpMcSimplexDecomp< Matrix >::shrink().
double shark::QpMcSimplexDecomp< Matrix >::Example::diagonal |
diagonal entry of the kernel matrix k(x,x);
Definition at line 521 of file QpMcSimplexDecomp.h.
std::size_t shark::QpMcSimplexDecomp< Matrix >::Example::index |
example index in the dataset, not the example vector!
Definition at line 509 of file QpMcSimplexDecomp.h.
std::size_t* shark::QpMcSimplexDecomp< Matrix >::Example::var |
list of all m_cardP variables, in order of the p-index
Definition at line 515 of file QpMcSimplexDecomp.h.
Referenced by shark::QpMcSimplexDecomp< Matrix >::deactivateVariable().
double shark::QpMcSimplexDecomp< Matrix >::Example::varsum |
total sum of all variables of this example
Definition at line 519 of file QpMcSimplexDecomp.h.
Referenced by shark::QpMcSimplexDecomp< Matrix >::maxGainBox(), shark::QpMcSimplexDecomp< Matrix >::maxGainSimplex(), shark::QpMcSimplexDecomp< Matrix >::selectWorkingSet(), and shark::QpMcSimplexDecomp< Matrix >::shrink().
unsigned int shark::QpMcSimplexDecomp< Matrix >::Example::y |
label of this example
Definition at line 511 of file QpMcSimplexDecomp.h.
Referenced by shark::QpMcSimplexDecomp< Matrix >::maxGainBox(), and shark::QpMcSimplexDecomp< Matrix >::maxGainSimplex().