From a9cc4fa0e0825de8433bc076600c13a041e76305 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 12 Feb 2023 16:03:39 +0100 Subject: [PATCH] Register MLPPSoftmaxNet into the ClassDB. --- register_types.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/register_types.cpp b/register_types.cpp index 546781d..e1f4603 100644 --- a/register_types.cpp +++ b/register_types.cpp @@ -49,7 +49,7 @@ SOFTWARE. #include "mlpp/uni_lin_reg/uni_lin_reg.h" #include "mlpp/wgan/wgan.h" #include "mlpp/tanh_reg/tanh_reg.h" - +#include "mlpp/softmax_net/softmax_net.h" #include "mlpp/mlp/mlp.h" #include "test/mlpp_tests.h" @@ -83,6 +83,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();