Add SPODE

This commit is contained in:
2023-07-14 12:59:47 +02:00
parent 002aa30672
commit e8b8fa29c8
7 changed files with 59 additions and 10 deletions

14
src/SPODE.h Normal file
View File

@@ -0,0 +1,14 @@
#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);
};
}
#endif