123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef _NICE_OBJREC_OPTIMKERNELPARAMETERGRADINTERFACEINCLUDE
- #define _NICE_OBJREC_OPTIMKERNELPARAMETERGRADINTERFACEINCLUDE
- #include "ParameterizedKernel.h"
- namespace OBJREC {
-
- class OptimKernelParameterGradInterface : public ParameterizedKernel
- {
- protected:
- public:
-
-
- virtual ~OptimKernelParameterGradInterface();
-
-
- virtual void calculateGPRegGradientOptimized ( const NICE::Vector & parameters, const KernelData *kernelData,
- const NICE::VVector & y, NICE::Vector & newGradient ) const = 0;
- };
- }
- #endif
|