Make predict_voting default value false in AODE

This commit is contained in:
2024-03-12 00:27:50 +01:00
parent 5db168d87b
commit eb72f13bf0

View File

@@ -5,7 +5,7 @@
namespace bayesnet {
class AODE : public Ensemble {
public:
AODE(bool predict_voting = true);
AODE(bool predict_voting = false);
virtual ~AODE() {};
void setHyperparameters(const nlohmann::json& hyperparameters) override;
std::vector<std::string> graph(const std::string& title = "AODE") const override;