Add Dataset, Models and DotEnv

This commit is contained in:
2023-07-29 16:21:38 +02:00
parent b03e84044a
commit 85cb447283
8 changed files with 160 additions and 35 deletions

8
src/Platform/Models.cc Normal file
View File

@@ -0,0 +1,8 @@
#include "Models.h"
namespace platform {
using namespace std;
map<string, bayesnet::BaseClassifier*> Models::classifiers = map<string, bayesnet::BaseClassifier*>({
{ "AODE", new bayesnet::AODE() }, { "KDB", new bayesnet::KDB(2) },
{ "SPODE", new bayesnet::SPODE(2) }, { "TAN", new bayesnet::TAN() }
});
}