mirror of
https://github.com/Relintai/pmlpp.git
synced 2025-02-22 20:04:19 +01:00
Register MLPPGAN to the ClassDB.
This commit is contained in:
parent
0e75773261
commit
7659f8c4ea
@ -10,6 +10,8 @@
|
||||
|
||||
#include "core/math/math_defs.h"
|
||||
|
||||
#include "core/object/reference.h"
|
||||
|
||||
#include "../hidden_layer/hidden_layer.h"
|
||||
#include "../output_layer/output_layer.h"
|
||||
|
||||
@ -20,7 +22,9 @@
|
||||
#include <tuple>
|
||||
#include <vector>
|
||||
|
||||
class MLPPGAN {
|
||||
class MLPPGAN : public Reference {
|
||||
GDCLASS(MLPPGAN, Reference);
|
||||
|
||||
public:
|
||||
/*
|
||||
Ref<MLPPMatrix> get_input_set();
|
||||
|
@ -59,6 +59,7 @@ SOFTWARE.
|
||||
#include "mlpp/log_reg/log_reg.h"
|
||||
#include "mlpp/lin_reg/lin_reg.h"
|
||||
#include "mlpp/gaussian_nb/gaussian_nb.h"
|
||||
#include "mlpp/gan/gan.h"
|
||||
|
||||
#include "test/mlpp_tests.h"
|
||||
|
||||
@ -100,6 +101,7 @@ void register_pmlpp_types(ModuleRegistrationLevel p_level) {
|
||||
ClassDB::register_class<MLPPLogReg>();
|
||||
ClassDB::register_class<MLPPLinReg>();
|
||||
ClassDB::register_class<MLPPGaussianNB>();
|
||||
ClassDB::register_class<MLPPGAN>();
|
||||
|
||||
ClassDB::register_class<MLPPDataESimple>();
|
||||
ClassDB::register_class<MLPPDataSimple>();
|
||||
|
Loading…
Reference in New Issue
Block a user