2023-01-24 18:57:18 +01:00
|
|
|
|
|
|
|
#ifndef MLPP_PCA_H
|
|
|
|
#define MLPP_PCA_H
|
|
|
|
|
2023-01-23 21:13:26 +01:00
|
|
|
//
|
|
|
|
// PCA.hpp
|
|
|
|
//
|
|
|
|
// Created by Marc Melikyan on 10/2/20.
|
|
|
|
//
|
|
|
|
|
2023-01-27 13:01:16 +01:00
|
|
|
#include "core/math/math_defs.h"
|
|
|
|
|
2023-02-08 01:26:37 +01:00
|
|
|
#include "core/object/reference.h"
|
|
|
|
|
|
|
|
#include "../lin_alg/mlpp_matrix.h"
|
|
|
|
#include "../lin_alg/mlpp_vector.h"
|
|
|
|
|
|
|
|
class MLPPPCA : public Reference {
|
|
|
|
GDCLASS(MLPPPCA, Reference);
|
2023-01-23 21:13:26 +01:00
|
|
|
|
2023-01-24 19:00:54 +01:00
|
|
|
public:
|
2023-02-08 01:26:37 +01:00
|
|
|
Ref<MLPPMatrix> get_input_set();
|
|
|
|
void set_input_set(const Ref<MLPPMatrix> &val);
|
|
|
|
|
|
|
|
int get_k();
|
|
|
|
void set_k(const int val);
|
|
|
|
|
|
|
|
Ref<MLPPMatrix> principal_components();
|
2023-01-27 13:01:16 +01:00
|
|
|
real_t score();
|
2023-01-24 19:00:54 +01:00
|
|
|
|
2023-02-08 01:26:37 +01:00
|
|
|
MLPPPCA(const Ref<MLPPMatrix> &p_input_set, int p_k);
|
|
|
|
|
|
|
|
MLPPPCA();
|
|
|
|
~MLPPPCA();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
Ref<MLPPMatrix> _input_set;
|
|
|
|
int _k;
|
2023-02-07 23:23:48 +01:00
|
|
|
|
2023-02-08 01:26:37 +01:00
|
|
|
Ref<MLPPMatrix> _x_normalized;
|
|
|
|
Ref<MLPPMatrix> _u_reduce;
|
|
|
|
Ref<MLPPMatrix> _z;
|
2023-01-24 19:00:54 +01:00
|
|
|
};
|
2023-01-24 19:20:18 +01:00
|
|
|
|
2023-01-23 21:13:26 +01:00
|
|
|
#endif /* PCA_hpp */
|