SHOGUN  v2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LPBoost.cpp
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 2007-2009 Soeren Sonnenburg
8  * Copyright (C) 2007-2009 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 
11 #include <shogun/lib/config.h>
12 
13 #ifdef USE_CPLEX
14 
16 #include <shogun/labels/Labels.h>
20 #include <shogun/lib/Signal.h>
21 #include <shogun/lib/Time.h>
22 
23 using namespace shogun;
24 
26 : CLinearMachine(), C1(1), C2(1), use_bias(true), epsilon(1e-3)
27 {
28  u=NULL;
29  dim=NULL;
30  num_sfeat=0;
31  num_svec=0;
32  sfeat=NULL;
33 }
34 
35 
37 {
38  cleanup();
39 }
40 
41 bool CLPBoost::init(int32_t num_vec)
42 {
43  u=SG_MALLOC(float64_t, num_vec);
44  for (int32_t i=0; i<num_vec; i++)
45  u[i]=1.0/num_vec;
46 
47  dim=new CDynamicArray<int32_t>(100000);
48 
50 
51  if (sfeat)
52  return true;
53  else
54  return false;
55 }
56 
58 {
59  SG_FREE(u);
60  u=NULL;
61 
62  ((CSparseFeatures<float64_t>*) features)->clean_tsparse(sfeat, num_svec);
63  sfeat=NULL;
64 
65  delete dim;
66  dim=NULL;
67 }
68 
70 {
71  float64_t max_val=0;
72  max_dim=-1;
73 
74  for (int32_t i=0; i<num_svec; i++)
75  {
76  float64_t valplus=0;
77  float64_t valminus=0;
78 
79  for (int32_t j=0; j<sfeat[i].num_feat_entries; j++)
80  {
81  int32_t idx=sfeat[i].features[j].feat_index;
82  float64_t v=u[idx]*((CBinaryLabels*)m_labels)->get_confidence(idx)*sfeat[i].features[j].entry;
83  valplus+=v;
84  valminus-=v;
85  }
86 
87  if (valplus>max_val || max_dim==-1)
88  {
89  max_dim=i;
90  max_val=valplus;
91  }
92 
93  if (valminus>max_val)
94  {
95  max_dim=num_svec+i;
96  max_val=valminus;
97  }
98  }
99 
100  dim->append_element(max_dim);
101  return max_val;
102 }
103 
105 {
106  ASSERT(m_labels);
107  ASSERT(features);
108  int32_t num_train_labels=m_labels->get_num_labels();
109  int32_t num_feat=features->get_dim_feature_space();
110  int32_t num_vec=features->get_num_vectors();
111 
112  ASSERT(num_vec==num_train_labels);
113  w = SGVector<float64_t>(num_feat);
114  memset(w.vector,0,sizeof(float64_t)*num_feat);
115 
116  CCplex solver;
117  solver.init(E_LINEAR);
118  SG_PRINT("setting up lpboost\n");
119  solver.setup_lpboost(C1, num_vec);
120  SG_PRINT("finished setting up lpboost\n");
121 
122  float64_t result=init(num_vec);
123  ASSERT(result);
124 
125  int32_t num_hypothesis=0;
126  CTime time;
128 
129  while (!(CSignal::cancel_computations()))
130  {
131  int32_t max_dim=0;
132  float64_t violator=find_max_violator(max_dim);
133  SG_PRINT("iteration:%06d violator: %10.17f (>1.0) chosen: %d\n", num_hypothesis, violator, max_dim);
134  if (violator <= 1.0+epsilon && num_hypothesis>1) //no constraint violated
135  {
136  SG_PRINT("converged after %d iterations!\n", num_hypothesis);
137  break;
138  }
139 
140  float64_t factor=+1.0;
141  if (max_dim>=num_svec)
142  {
143  factor=-1.0;
144  max_dim-=num_svec;
145  }
146 
148  int32_t len=sfeat[max_dim].num_feat_entries;
149  solver.add_lpboost_constraint(factor, h, len, num_vec, m_labels);
150  solver.optimize(u);
151  //CMath::display_vector(u, num_vec, "u");
152  num_hypothesis++;
153 
155  break;
156  }
157  float64_t* lambda=SG_MALLOC(float64_t, num_hypothesis);
158  solver.optimize(u, lambda);
159 
160  //CMath::display_vector(lambda, num_hypothesis, "lambda");
161  for (int32_t i=0; i<num_hypothesis; i++)
162  {
163  int32_t d=dim->get_element(i);
164  if (d>=num_svec)
165  w[d-num_svec]+=lambda[i];
166  else
167  w[d]-=lambda[i];
168 
169  }
170  //solver.write_problem("problem.lp");
171  solver.cleanup();
172 
173  cleanup();
174 
175  return true;
176 }
177 #endif

SHOGUN Machine Learning Toolbox - Documentation