123456789101112131415161718192021222324252627282930313233 |
- #ifndef _NICE_OBJREC_GPMODELSELECTIONCRITERIONINCLUDE
- #define _NICE_OBJREC_GPMODELSELECTIONCRITERIONINCLUDE
- #include "core/vector/VectorT.h"
- #include "vislearning/math/kernels/KernelData.h"
- namespace OBJREC {
-
- class GPModelSelectionCriterion
- {
- public:
-
-
- virtual ~GPModelSelectionCriterion();
-
- virtual double computeObjective ( KernelData *kernelData, const NICE::Vector & labels ) const = 0;
- };
- }
- #endif
|