Add notes to Classifier & Changelog

This commit is contained in:
2024-02-12 10:58:20 +01:00
parent 03f8b8653b
commit f3b8150e2c
6 changed files with 95 additions and 99 deletions

View File

@@ -201,6 +201,7 @@ namespace bayesnet {
notes.push_back("Used features in train: " + std::to_string(featuresUsed.size()) + " of " + std::to_string(features.size()));
status = WARNING;
}
notes.push_back("Number of models: " + std::to_string(n_models));
}
std::vector<std::string> BoostAODE::graph(const std::string& title) const
{

View File

@@ -37,7 +37,7 @@ namespace bayesnet {
int getNumberOfStates() const override;
torch::Tensor predict(torch::Tensor& X) override;
status_t getStatus() const override { return status; }
std::string getVersion() override { return "0.2.0"; };
std::string getVersion() override { return { project_version.begin(), project_version.end() }; };
std::vector<int> predict(std::vector<std::vector<int>>& X) override;
float score(torch::Tensor& X, torch::Tensor& y) override;
float score(std::vector<std::vector<int>>& X, std::vector<int>& y) override;