Classifier.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include "classifier/Classifier.h"
00012
00013
00014 #ifdef HAVE_BOOST_SERIALIZATION
00015 #include <boost/serialization/export.hpp>
00016 BOOST_CLASS_EXPORT_GUID(shogun::CClassifier, "CClassifier");
00017
00018 #endif //HAVE_BOOST_SERIALIZATION
00019
00020 using namespace shogun;
00021
00022 CClassifier::CClassifier() : CSGObject(), max_train_time(0), labels(NULL),
00023 solver_type(ST_AUTO)
00024 {
00025 }
00026
00027 CClassifier::~CClassifier()
00028 {
00029 SG_UNREF(labels);
00030 }