mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-13 13:57:19 +01:00
109 lines
2.7 KiB
C++
109 lines
2.7 KiB
C++
|
|
#ifndef MLPP_MULTI_OUTPUT_LAYER_H
|
|
#define MLPP_MULTI_OUTPUT_LAYER_H
|
|
|
|
|
|
#include "core/math/math_defs.h"
|
|
#include "core/string/ustring.h"
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
#include "../activation/activation.h"
|
|
#include "../cost/cost.h"
|
|
#include "../regularization/reg.h"
|
|
#include "../utilities/utilities.h"
|
|
|
|
#include "../lin_alg/mlpp_matrix.h"
|
|
#include "../lin_alg/mlpp_vector.h"
|
|
|
|
class MLPPMultiOutputLayer : public Reference {
|
|
GDCLASS(MLPPMultiOutputLayer, Reference);
|
|
|
|
public:
|
|
int get_n_output();
|
|
void set_n_output(const int val);
|
|
|
|
int get_n_hidden();
|
|
void set_n_hidden(const int val);
|
|
|
|
MLPPActivation::ActivationFunction get_activation();
|
|
void set_activation(const MLPPActivation::ActivationFunction val);
|
|
|
|
MLPPCost::CostTypes get_cost();
|
|
void set_cost(const MLPPCost::CostTypes val);
|
|
|
|
Ref<MLPPMatrix> get_input();
|
|
void set_input(const Ref<MLPPMatrix> &val);
|
|
|
|
Ref<MLPPMatrix> get_weights();
|
|
void set_weights(const Ref<MLPPMatrix> &val);
|
|
|
|
Ref<MLPPVector> get_bias();
|
|
void set_bias(const Ref<MLPPVector> &val);
|
|
|
|
Ref<MLPPMatrix> get_z();
|
|
void set_z(const Ref<MLPPMatrix> &val);
|
|
|
|
Ref<MLPPMatrix> get_a();
|
|
void set_a(const Ref<MLPPMatrix> &val);
|
|
|
|
Ref<MLPPVector> get_z_test();
|
|
void set_z_test(const Ref<MLPPVector> &val);
|
|
|
|
Ref<MLPPVector> get_a_test();
|
|
void set_a_test(const Ref<MLPPVector> &val);
|
|
|
|
Ref<MLPPMatrix> get_delta();
|
|
void set_delta(const Ref<MLPPMatrix> &val);
|
|
|
|
MLPPReg::RegularizationType get_reg();
|
|
void set_reg(const MLPPReg::RegularizationType val);
|
|
|
|
real_t get_lambda();
|
|
void set_lambda(const real_t val);
|
|
|
|
real_t get_alpha();
|
|
void set_alpha(const real_t val);
|
|
|
|
MLPPUtilities::WeightDistributionType get_weight_init();
|
|
void set_weight_init(const MLPPUtilities::WeightDistributionType val);
|
|
|
|
void forward_pass();
|
|
void test(const Ref<MLPPVector> &x);
|
|
|
|
MLPPMultiOutputLayer(int n_output, int p_n_hidden, MLPPActivation::ActivationFunction p_activation, MLPPCost::CostTypes cost, Ref<MLPPMatrix> p_input, MLPPUtilities::WeightDistributionType p_weight_init, MLPPReg::RegularizationType p_reg, real_t p_lambda, real_t p_alpha);
|
|
|
|
MLPPMultiOutputLayer();
|
|
~MLPPMultiOutputLayer();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
int _n_output;
|
|
int _n_hidden;
|
|
MLPPActivation::ActivationFunction _activation;
|
|
MLPPCost::CostTypes _cost;
|
|
|
|
Ref<MLPPMatrix> _input;
|
|
|
|
Ref<MLPPMatrix> _weights;
|
|
Ref<MLPPVector> _bias;
|
|
|
|
Ref<MLPPMatrix> _z;
|
|
Ref<MLPPMatrix> _a;
|
|
|
|
Ref<MLPPVector> _z_test;
|
|
Ref<MLPPVector> _a_test;
|
|
|
|
Ref<MLPPMatrix> _delta;
|
|
|
|
// Regularization Params
|
|
MLPPReg::RegularizationType _reg;
|
|
real_t _lambda; /* Regularization Parameter */
|
|
real_t _alpha; /* This is the controlling param for Elastic Net*/
|
|
|
|
MLPPUtilities::WeightDistributionType _weight_init;
|
|
};
|
|
|
|
#endif /* MultiOutputLayer_hpp */
|