Register MLPPMultinomialNB to the ClassDB.

This commit is contained in:
Relintai 2023-02-12 16:11:20 +01:00
parent b965bd6a6b
commit 4f06fe2eed

View File

@ -52,6 +52,7 @@ SOFTWARE.
#include "mlpp/tanh_reg/tanh_reg.h"
#include "mlpp/softmax_net/softmax_net.h"
#include "mlpp/mlp/mlp.h"
#include "mlpp/multinomial_nb/multinomial_nb.h"
#include "test/mlpp_tests.h"
@ -86,6 +87,7 @@ void register_pmlpp_types(ModuleRegistrationLevel p_level) {
ClassDB::register_class<MLPPAutoEncoder>();
ClassDB::register_class<MLPPTanhReg>();
ClassDB::register_class<MLPPSoftmaxNet>();
ClassDB::register_class<MLPPMultinomialNB>();
ClassDB::register_class<MLPPDataESimple>();
ClassDB::register_class<MLPPDataSimple>();