00001 #ifndef KERNELMACHINES_H_ 00002 #define KERNELMACHINES_H_ 00003 00013 namespace damina 00014 { 00015 00024 class KernelType 00025 { 00026 public: 00027 00033 static const int linear = 0; 00034 00040 static const int polynomial = 1; 00041 00049 static const int gaussian = 2; 00050 00056 static const int sigmoid = 3; 00057 00063 static const int stump = 4; 00064 00070 static const int perc = 5; 00071 00077 static const int laplacian = 6; 00078 00084 static const int expo = 7; 00085 00092 static const int precomputed = 8; 00093 }; 00094 00095 } 00096 00097 #endif /*KERNELMACHINES_H_*/ 00098 00099
1.5.2