Skip to content
Snippets Groups Projects
Commit f8f61aa2 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

MRG

parents 0c456d5d 7a4ffb75
No related branches found
No related tags found
No related merge requests found
......@@ -48,16 +48,13 @@ public:
double operator() ( const svm_node * x, const svm_node * y,
const svm_parameter & param ) const;
ChangeProfileKernelFunctor ();
virtual ~ChangeProfileKernelFunctor () { }
/** Specific implementation of \code Update \endcode to split m_MapParameters
* into specific variables to speed up kernel evaluations */
void Update ();
protected:
ChangeProfileKernelFunctor ();
virtual ~ChangeProfileKernelFunctor () { };
private:
double m_Coef;
double m_Degree;
......
......@@ -45,17 +45,14 @@ public:
double operator() ( const svm_node * x, const svm_node * y,
const svm_parameter & param ) const;
NonGaussianRBFKernelFunctor ();
virtual ~NonGaussianRBFKernelFunctor () { }
/** Specific implementation of \code Update \endcode to split m_MapParameters
* into specific variables to speed up kernel evaluations */
void Update ();
protected:
NonGaussianRBFKernelFunctor ();
virtual ~NonGaussianRBFKernelFunctor () { };
double m_Alpha;
double m_Beta;
double m_Gamma;
......
......@@ -52,17 +52,14 @@ public:
double operator() ( const svm_node * x, const svm_node * y,
const svm_parameter & param ) const;
SpectralAngleKernelFunctor ();
virtual ~SpectralAngleKernelFunctor () { }
/** Specific implementation of \code Update \endcode to split m_MapParameters
* into specific variables to speed up kernel evaluations */
void Update ();
protected:
SpectralAngleKernelFunctor ();
virtual ~SpectralAngleKernelFunctor () { };
inline double SAM ( const svm_node * x, const svm_node * y ) const;
double m_Coef;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment