pmlpp/mlpp/gan/gan.h

59 lines
2.1 KiB
C
Raw Normal View History

2023-01-24 18:57:18 +01:00
#ifndef MLPP_GAN_hpp
#define MLPP_GAN_hpp
//
// GAN.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
2023-01-27 13:01:16 +01:00
#include "core/math/math_defs.h"
2023-01-24 18:12:23 +01:00
#include "../hidden_layer/hidden_layer.h"
#include "../output_layer/output_layer.h"
#include "../hidden_layer/hidden_layer_old.h"
#include "../output_layer/output_layer_old.h"
#include <string>
2023-01-24 19:00:54 +01:00
#include <tuple>
#include <vector>
2023-01-25 00:21:31 +01:00
class MLPPGAN {
2023-01-24 19:00:54 +01:00
public:
2023-01-27 13:01:16 +01:00
MLPPGAN(real_t k, std::vector<std::vector<real_t>> outputSet);
2023-01-25 00:21:31 +01:00
~MLPPGAN();
2023-01-27 13:01:16 +01:00
std::vector<std::vector<real_t>> generateExample(int n);
2023-02-04 13:59:26 +01:00
void gradientDescent(real_t learning_rate, int max_epoch, 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);
2023-01-27 13:01:16 +01:00
void addLayer(int n_hidden, std::string activation, std::string weightInit = "Default", std::string reg = "None", real_t lambda = 0.5, real_t alpha = 0.5);
void addOutputLayer(std::string weightInit = "Default", std::string reg = "None", real_t lambda = 0.5, real_t alpha = 0.5);
2023-01-24 19:00:54 +01:00
private:
2023-01-27 13:01:16 +01:00
std::vector<std::vector<real_t>> modelSetTestGenerator(std::vector<std::vector<real_t>> X); // Evaluator for the generator of the gan.
std::vector<real_t> modelSetTestDiscriminator(std::vector<std::vector<real_t>> X); // Evaluator for the discriminator of the gan.
2023-01-27 13:01:16 +01:00
real_t Cost(std::vector<real_t> y_hat, std::vector<real_t> y);
2023-01-24 19:00:54 +01:00
void forwardPass();
2023-01-27 13:01:16 +01:00
void updateDiscriminatorParameters(std::vector<std::vector<std::vector<real_t>>> hiddenLayerUpdations, std::vector<real_t> outputLayerUpdation, real_t learning_rate);
void updateGeneratorParameters(std::vector<std::vector<std::vector<real_t>>> hiddenLayerUpdations, real_t learning_rate);
std::tuple<std::vector<std::vector<std::vector<real_t>>>, std::vector<real_t>> computeDiscriminatorGradients(std::vector<real_t> y_hat, std::vector<real_t> outputSet);
std::vector<std::vector<std::vector<real_t>>> computeGeneratorGradients(std::vector<real_t> y_hat, std::vector<real_t> outputSet);
2023-01-27 13:01:16 +01:00
void UI(int epoch, real_t cost_prev, std::vector<real_t> y_hat, std::vector<real_t> outputSet);
2023-01-27 13:01:16 +01:00
std::vector<std::vector<real_t>> outputSet;
std::vector<real_t> y_hat;
std::vector<MLPPOldHiddenLayer> network;
MLPPOldOutputLayer *outputLayer;
2023-01-24 19:00:54 +01:00
int n;
int k;
};
2023-01-24 19:20:18 +01:00
#endif /* GAN_hpp */