2023-01-24 18:57:18 +01:00
|
|
|
|
|
|
|
#ifndef MLPP_EXP_REG_H
|
|
|
|
#define MLPP_EXP_REG_H
|
|
|
|
|
2023-01-23 21:13:26 +01:00
|
|
|
//
|
|
|
|
// ExpReg.hpp
|
|
|
|
//
|
|
|
|
// Created by Marc Melikyan on 10/2/20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace MLPP{
|
|
|
|
class ExpReg{
|
|
|
|
|
|
|
|
public:
|
|
|
|
ExpReg(std::vector<std::vector<double>> inputSet, std::vector<double> outputSet, std::string reg = "None", double lambda = 0.5, double alpha = 0.5);
|
|
|
|
std::vector<double> modelSetTest(std::vector<std::vector<double>> X);
|
|
|
|
double modelTest(std::vector<double> x);
|
|
|
|
void gradientDescent(double learning_rate, int max_epoch, bool UI = 1);
|
|
|
|
void SGD(double learning_rate, int max_epoch, bool UI = 1);
|
|
|
|
void MBGD(double learning_rate, int max_epoch, int mini_batch_size, bool UI = 1);
|
|
|
|
double score();
|
|
|
|
void save(std::string fileName);
|
|
|
|
private:
|
|
|
|
|
|
|
|
double Cost(std::vector <double> y_hat, std::vector<double> y);
|
|
|
|
|
|
|
|
std::vector<double> Evaluate(std::vector<std::vector<double>> X);
|
|
|
|
double Evaluate(std::vector<double> x);
|
|
|
|
void forwardPass();
|
|
|
|
|
|
|
|
std::vector<std::vector<double>> inputSet;
|
|
|
|
std::vector<double> outputSet;
|
|
|
|
std::vector<double> y_hat;
|
|
|
|
std::vector<double> weights;
|
|
|
|
std::vector<double> initial;
|
|
|
|
double bias;
|
|
|
|
|
|
|
|
int n;
|
|
|
|
int k;
|
|
|
|
|
|
|
|
// Regularization Params
|
|
|
|
std::string reg;
|
|
|
|
double lambda;
|
|
|
|
double alpha; /* This is the controlling param for Elastic Net*/
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ExpReg_hpp */
|