From c060318c6bbb9ae663c7aa35c1dee88f0abde5c3 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 12 Feb 2023 16:20:44 +0100 Subject: [PATCH] Register MLPPGaussianNB into the ClassDB. --- register_types.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/register_types.cpp b/register_types.cpp index a4320c0..2720b8a 100644 --- a/register_types.cpp +++ b/register_types.cpp @@ -34,6 +34,7 @@ SOFTWARE. #include "mlpp/utilities/utilities.h" #include "mlpp/stat/stat.h" #include "mlpp/numerical_analysis/numerical_analysis.h" +#include "mlpp/hypothesis_testing/hypothesis_testing.h" #include "mlpp/hidden_layer/hidden_layer.h" #include "mlpp/multi_output_layer/multi_output_layer.h" @@ -56,7 +57,7 @@ SOFTWARE. #include "mlpp/mann/mann.h" #include "mlpp/log_reg/log_reg.h" #include "mlpp/lin_reg/lin_reg.h" -#include "mlpp/hypothesis_testing/hypothesis_testing.h" +#include "mlpp/gaussian_nb/gaussian_nb.h" #include "test/mlpp_tests.h" @@ -96,6 +97,7 @@ void register_pmlpp_types(ModuleRegistrationLevel p_level) { ClassDB::register_class(); ClassDB::register_class(); ClassDB::register_class(); + ClassDB::register_class(); ClassDB::register_class(); ClassDB::register_class();