Add dump_cpt classifier test
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||

|

|
||||||
[](https://app.codacy.com/gh/Doctorado-ML/BayesNet/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
[](https://app.codacy.com/gh/Doctorado-ML/BayesNet/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
Bayesian Network Classifiers using libtorch from scratch
|
Bayesian Network Classifiers using libtorch from scratch
|
||||||
|
|
||||||
|
@@ -79,6 +79,14 @@ TEST_CASE("Topological order", "[Classifier]")
|
|||||||
REQUIRE(order[2] == "sepalwidth");
|
REQUIRE(order[2] == "sepalwidth");
|
||||||
REQUIRE(order[3] == "petalwidth");
|
REQUIRE(order[3] == "petalwidth");
|
||||||
}
|
}
|
||||||
|
TEST_CASE("Dump_cpt", "[Classifier]")
|
||||||
|
{
|
||||||
|
auto model = bayesnet::TAN();
|
||||||
|
auto raw = RawDatasets("iris", true);
|
||||||
|
model.fit(raw.Xt, raw.yt, raw.featurest, raw.classNamet, raw.statest);
|
||||||
|
auto cpt = model.dump_cpt();
|
||||||
|
REQUIRE(cpt.size() == 1713);
|
||||||
|
}
|
||||||
TEST_CASE("Not fitted model", "[Classifier]")
|
TEST_CASE("Not fitted model", "[Classifier]")
|
||||||
{
|
{
|
||||||
auto model = bayesnet::TAN();
|
auto model = bayesnet::TAN();
|
||||||
|
Reference in New Issue
Block a user