Create BoostA2DE base class

This commit is contained in:
2024-05-15 11:53:17 +02:00
parent ef3c74633c
commit 1f236a70db
7 changed files with 356 additions and 12 deletions

View File

@@ -9,18 +9,9 @@
#include <map>
#include "bayesnet/classifiers/SPODE.h"
#include "bayesnet/feature_selection/FeatureSelect.h"
#include "boost.h"
#include "Ensemble.h"
namespace bayesnet {
const struct {
std::string CFS = "CFS";
std::string FCBF = "FCBF";
std::string IWSS = "IWSS";
}SelectFeatures;
const struct {
std::string ASC = "asc";
std::string DESC = "desc";
std::string RAND = "rand";
}Orders;
class BoostAODE : public Ensemble {
public:
explicit BoostAODE(bool predict_voting = false);