pmlpp/mlpp/auto_encoder/auto_encoder.h

89 lines
1.8 KiB
C
Raw Normal View History

2023-01-24 18:57:18 +01:00
#ifndef MLPP_AUTO_ENCODER_H
#define MLPP_AUTO_ENCODER_H
2023-01-27 13:01:16 +01:00
#include "core/math/math_defs.h"
2023-02-10 20:48:55 +01:00
#include "core/object/reference.h"
#include "../lin_alg/mlpp_matrix.h"
#include "../lin_alg/mlpp_vector.h"
#include "../regularization/reg.h"
#include "../lin_alg/mlpp_matrix.h"
#include "../lin_alg/mlpp_vector.h"
2023-02-10 20:48:55 +01:00
class MLPPAutoEncoder : public Reference {
GDCLASS(MLPPAutoEncoder, Reference);
2023-01-24 19:00:54 +01:00
public:
2023-02-10 20:48:55 +01:00
Ref<MLPPMatrix> get_input_set();
void set_input_set(const Ref<MLPPMatrix> &val);
int get_n_hidden();
void set_n_hidden(const int val);
Ref<MLPPMatrix> model_set_test(const Ref<MLPPMatrix> &X);
Ref<MLPPVector> model_test(const Ref<MLPPVector> &x);
2023-02-10 20:05:47 +01:00
2023-02-10 20:48:55 +01:00
void gradient_descent(real_t learning_rate, int max_epoch, bool ui = false);
void sgd(real_t learning_rate, int max_epoch, bool ui = false);
void mbgd(real_t learning_rate, int max_epoch, int mini_batch_size, bool ui = false);
2023-02-10 20:05:47 +01:00
2023-01-27 13:01:16 +01:00
real_t score();
2023-02-10 20:05:47 +01:00
void save(const String &file_name);
2023-01-24 19:00:54 +01:00
MLPPAutoEncoder(const Ref<MLPPMatrix> &p_input_set, int p_n_hidden);
2023-02-10 20:05:47 +01:00
2023-02-10 20:48:55 +01:00
MLPPAutoEncoder();
~MLPPAutoEncoder();
protected:
real_t cost(const Ref<MLPPMatrix> &y_hat, const Ref<MLPPMatrix> &y);
Ref<MLPPVector> evaluatev(const Ref<MLPPVector> &x);
struct PropagateVResult {
Ref<MLPPVector> z2;
Ref<MLPPVector> a2;
};
PropagateVResult propagatev(const Ref<MLPPVector> &x);
Ref<MLPPMatrix> evaluatem(const Ref<MLPPMatrix> &X);
2023-02-10 20:48:55 +01:00
struct PropagateMResult {
Ref<MLPPMatrix> z2;
Ref<MLPPMatrix> a2;
};
2023-02-10 20:48:55 +01:00
PropagateMResult propagatem(const Ref<MLPPMatrix> &X);
2023-02-10 20:48:55 +01:00
void forward_pass();
static void _bind_methods();
2023-01-24 19:00:54 +01:00
Ref<MLPPMatrix> _input_set;
Ref<MLPPMatrix> _y_hat;
2023-01-24 19:00:54 +01:00
Ref<MLPPMatrix> _weights1;
Ref<MLPPMatrix> _weights2;
2023-01-24 19:00:54 +01:00
Ref<MLPPVector> _bias1;
Ref<MLPPVector> _bias2;
2023-01-24 19:00:54 +01:00
Ref<MLPPMatrix> _z2;
Ref<MLPPMatrix> _a2;
2023-01-24 19:00:54 +01:00
2023-02-10 20:48:55 +01:00
int _n;
int _k;
int _n_hidden;
2023-01-24 19:00:54 +01:00
2023-02-10 20:48:55 +01:00
bool _initialized;
2023-01-24 19:00:54 +01:00
};
#endif /* AutoEncoder_hpp */