SVRLight.h

Go to the documentation of this file.
00001 /*
00002  * This program is free software; you can redistribute it and/or modify
00003  * it under the terms of the GNU General Public License as published by
00004  * the Free Software Foundation; either version 3 of the License, or
00005  * (at your option) any later version.
00006  *
00007  * Written (W) 1999-2009 Soeren Sonnenburg
00008  * Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society
00009  */
00010 
00011 #ifndef _SVRLight_H___
00012 #define _SVRLight_H___
00013 
00014 #include <shogun/lib/config.h>
00015 #include <shogun/regression/Regression.h>
00016 
00017 #ifdef USE_SVMLIGHT
00018 #include <shogun/classifier/svm/SVMLight.h>
00019 #endif //USE_SVMLIGHT
00020 
00021 #ifdef USE_SVMLIGHT
00022 namespace shogun
00023 {
00062 class CSVRLight: public CSVMLight
00063 {
00064     public:
00066         CSVRLight();
00067 
00075         CSVRLight(float64_t C, float64_t epsilon, CKernel* k, CLabels* lab);
00076 
00078         virtual ~CSVRLight() { }
00079 
00084         virtual inline EClassifierType get_classifier_type() { return CT_SVRLIGHT; }
00085 
00087         void   svr_learn();
00088 
00098         virtual float64_t compute_objective_function(
00099             float64_t *a, float64_t *lin, float64_t *c, float64_t* eps,
00100             int32_t *label, int32_t totdoc);
00101 
00115         virtual void update_linear_component(
00116             int32_t* docs, int32_t *label,
00117             int32_t *active2dnum, float64_t *a, float64_t* a_old,
00118             int32_t *working2dnum, int32_t totdoc,
00119             float64_t *lin, float64_t *aicache, float64_t* c);
00120 
00134         virtual void update_linear_component_mkl(
00135             int32_t* docs, int32_t *label,
00136             int32_t *active2dnum, float64_t *a, float64_t* a_old,
00137             int32_t *working2dnum, int32_t totdoc,
00138             float64_t *lin, float64_t *aicache, float64_t* c);
00139 
00153         virtual void update_linear_component_mkl_linadd(
00154             int32_t* docs, int32_t *label,
00155             int32_t *active2dnum, float64_t *a, float64_t* a_old,
00156             int32_t *working2dnum, int32_t totdoc,
00157             float64_t *lin, float64_t *aicache, float64_t* c);
00158 
00166         void call_mkl_callback(float64_t* a, int32_t* label, float64_t* lin, float64_t* c, int32_t totdoc);
00167 
00182         virtual void reactivate_inactive_examples(
00183             int32_t *label,float64_t *a,SHRINK_STATE *shrink_state,
00184             float64_t *lin, float64_t *c, int32_t totdoc,int32_t iteration,
00185             int32_t *inconsistent,
00186             int32_t *docs,float64_t *aicache,
00187             float64_t* maxdiff);
00188 
00190         inline virtual const char* get_name() const { return "SVRLight"; }
00191 
00192     protected:
00197         static void* update_linear_component_linadd_helper(void *params);
00198 
00204         inline int32_t regression_fix_index(int32_t i)
00205         {
00206             if (i>=num_vectors)
00207                 i=2*num_vectors-1-i;
00208 
00209             return i;
00210         }
00211 
00218         static inline int32_t regression_fix_index2(
00219             int32_t i, int32_t num_vectors)
00220         {
00221             if (i>=num_vectors)
00222                 i=2*num_vectors-1-i;
00223 
00224             return i;
00225         }
00226 
00233         inline virtual float64_t compute_kernel(int32_t i, int32_t j)
00234         {
00235             i=regression_fix_index(i);
00236             j=regression_fix_index(j);
00237             return kernel->kernel(i, j);
00238         }
00239 
00248         virtual bool train_machine(CFeatures* data=NULL);
00249 
00251         int32_t num_vectors;
00252 };
00253 }
00254 #endif //USE_SVMLIGHT
00255 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

SHOGUN Machine Learning Toolbox - Documentation