automatic commit
[folded-ctf.git] / boosted_classifier.cc
index 8080ad2..03e1fe3 100644 (file)
@@ -12,7 +12,9 @@
 // You should have received a copy of the GNU General Public License     //
 // along with this program. If not, see <http://www.gnu.org/licenses/>.  //
 //                                                                       //
-// Written by Francois Fleuret, (C) IDIAP                                //
+// Written by Francois Fleuret                                           //
+// (C) Idiap Research Institute                                          //
+//                                                                       //
 // Contact <francois.fleuret@idiap.ch> for comments & bug reports        //
 ///////////////////////////////////////////////////////////////////////////
 
 #include "tools.h"
 
 BoostedClassifier::BoostedClassifier(int nb_weak_learners) {
-  _loss_type = global.loss_type;
   _nb_weak_learners = nb_weak_learners;
   _weak_learners = 0;
 }
 
 BoostedClassifier::BoostedClassifier() {
-  _loss_type = global.loss_type;
   _nb_weak_learners = 0;
   _weak_learners = 0;
 }