pmlpp/mlpp/auto_encoder/auto_encoder.h

55 lines
1.6 KiB
C
Raw Normal View History

2023-01-24 18:57:18 +01:00
#ifndef MLPP_AUTO_ENCODER_H
#define MLPP_AUTO_ENCODER_H
//
// AutoEncoder.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
2023-01-27 13:01:16 +01:00
#include "core/math/math_defs.h"
#include <string>
2023-01-24 19:00:54 +01:00
#include <tuple>
#include <vector>
2023-01-24 19:29:29 +01:00
class MLPPAutoEncoder {
2023-01-24 19:00:54 +01:00
public:
2023-01-27 13:01:16 +01:00
MLPPAutoEncoder(std::vector<std::vector<real_t>> inputSet, int n_hidden);
std::vector<std::vector<real_t>> modelSetTest(std::vector<std::vector<real_t>> X);
std::vector<real_t> modelTest(std::vector<real_t> x);
2023-02-04 13:59:26 +01:00
void gradientDescent(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-01-27 13:01:16 +01:00
real_t score();
2023-01-24 19:00:54 +01:00
void save(std::string fileName);
private:
2023-01-27 13:01:16 +01:00
real_t Cost(std::vector<std::vector<real_t>> y_hat, std::vector<std::vector<real_t>> y);
2023-01-24 19:00:54 +01:00
2023-01-27 13:01:16 +01:00
std::vector<std::vector<real_t>> Evaluate(std::vector<std::vector<real_t>> X);
std::tuple<std::vector<std::vector<real_t>>, std::vector<std::vector<real_t>>> propagate(std::vector<std::vector<real_t>> X);
std::vector<real_t> Evaluate(std::vector<real_t> x);
std::tuple<std::vector<real_t>, std::vector<real_t>> propagate(std::vector<real_t> x);
2023-01-24 19:00:54 +01:00
void forwardPass();
2023-01-27 13:01:16 +01:00
std::vector<std::vector<real_t>> inputSet;
std::vector<std::vector<real_t>> y_hat;
2023-01-24 19:00:54 +01:00
2023-01-27 13:01:16 +01:00
std::vector<std::vector<real_t>> weights1;
std::vector<std::vector<real_t>> weights2;
2023-01-24 19:00:54 +01:00
2023-01-27 13:01:16 +01:00
std::vector<real_t> bias1;
std::vector<real_t> bias2;
2023-01-24 19:00:54 +01:00
2023-01-27 13:01:16 +01:00
std::vector<std::vector<real_t>> z2;
std::vector<std::vector<real_t>> a2;
2023-01-24 19:00:54 +01:00
int n;
int k;
int n_hidden;
};
#endif /* AutoEncoder_hpp */