#ifndef MLPP_PROBIT_REG_H #define MLPP_PROBIT_REG_H // // ProbitReg.hpp // // Created by Marc Melikyan on 10/2/20. // #include #include class MLPPProbitReg { public: MLPPProbitReg(std::vector> inputSet, std::vector outputSet, std::string reg = "None", double lambda = 0.5, double alpha = 0.5); std::vector modelSetTest(std::vector> X); double modelTest(std::vector x); void gradientDescent(double learning_rate, int max_epoch = 0, bool UI = 1); void MLE(double learning_rate, int max_epoch = 0, bool UI = 1); void SGD(double learning_rate, int max_epoch = 0, 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 y_hat, std::vector y); std::vector Evaluate(std::vector> X); std::vector propagate(std::vector> X); double Evaluate(std::vector x); double propagate(std::vector x); void forwardPass(); std::vector> inputSet; std::vector outputSet; std::vector z; std::vector y_hat; std::vector weights; double bias; int n; int k; // Regularization Params std::string reg; double lambda; double alpha; /* This is the controlling param for Elastic Net*/ }; #endif /* ProbitReg_hpp */