Make predict_voting default value false in BoostAODE

This commit is contained in:
2024-03-12 00:26:28 +01:00
parent 8f3bb47cfd
commit 5db168d87b
2 changed files with 2 additions and 2 deletions

View File

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