mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-14 14:07:18 +01:00
32 lines
546 B
C
32 lines
546 B
C
|
|
||
|
#ifndef MLPP_PCA_OLD_H
|
||
|
#define MLPP_PCA_OLD_H
|
||
|
|
||
|
//
|
||
|
// PCA.hpp
|
||
|
//
|
||
|
// Created by Marc Melikyan on 10/2/20.
|
||
|
//
|
||
|
|
||
|
#include "core/math/math_defs.h"
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
|
||
|
class MLPPPCAOld {
|
||
|
public:
|
||
|
MLPPPCAOld(std::vector<std::vector<real_t>> inputSet, int k);
|
||
|
std::vector<std::vector<real_t>> principalComponents();
|
||
|
real_t score();
|
||
|
|
||
|
private:
|
||
|
std::vector<std::vector<real_t>> inputSet;
|
||
|
std::vector<std::vector<real_t>> X_normalized;
|
||
|
std::vector<std::vector<real_t>> U_reduce;
|
||
|
std::vector<std::vector<real_t>> Z;
|
||
|
int k;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif /* PCA_hpp */
|