diff --git a/diagrams/BayesNet.pdf b/diagrams/BayesNet.pdf new file mode 100755 index 0000000..dd478da Binary files /dev/null and b/diagrams/BayesNet.pdf differ diff --git a/src/BayesNet/BaseClassifier.h b/src/BayesNet/BaseClassifier.h index 5744f62..8cdb038 100644 --- a/src/BayesNet/BaseClassifier.h +++ b/src/BayesNet/BaseClassifier.h @@ -25,7 +25,7 @@ namespace bayesnet { int virtual getNumberOfStates() const = 0; vector virtual show() const = 0; vector virtual graph(const string& title = "") const = 0; - const string inline getVersion() const { return "0.1.0"; }; + const string inline getVersion() const { return "0.2.0"; }; vector virtual topological_order() = 0; void virtual dump_cpt()const = 0; virtual void setHyperparameters(nlohmann::json& hyperparameters) = 0; diff --git a/src/BayesNet/Network.h b/src/BayesNet/Network.h index 7e2e397..0bf1b08 100644 --- a/src/BayesNet/Network.h +++ b/src/BayesNet/Network.h @@ -53,7 +53,7 @@ namespace bayesnet { vector graph(const string& title) const; // Returns a vector of strings representing the graph in graphviz format void initialize(); void dump_cpt() const; - inline string version() { return "0.1.0"; } + inline string version() { return "0.2.0"; } }; } #endif \ No newline at end of file