Refactor Library 2 include a Platform/ Experiments

This commit is contained in:
2023-07-20 10:40:08 +02:00
parent 2f5bd0ea7e
commit 5f70449091
42 changed files with 269 additions and 42 deletions

View File

@@ -1,15 +0,0 @@
#ifndef SPODE_H
#define SPODE_H
#include "BaseClassifier.h"
namespace bayesnet {
class SPODE : public BaseClassifier {
private:
int root;
protected:
void train() override;
public:
SPODE(int root);
vector<string> graph(string name = "SPODE") override;
};
}
#endif