#ifndef MLPP_SOFTMAX_REG_H #define MLPP_SOFTMAX_REG_H // // SoftmaxReg.hpp // // Created by Marc Melikyan on 10/2/20. // #include "core/math/math_defs.h" #include #include class MLPPSoftmaxReg { public: MLPPSoftmaxReg(std::vector> inputSet, std::vector> outputSet, std::string reg = "None", real_t lambda = 0.5, real_t alpha = 0.5); std::vector modelTest(std::vector x); std::vector> modelSetTest(std::vector> X); void gradientDescent(real_t learning_rate, int max_epoch, bool UI = 1); void SGD(real_t learning_rate, int max_epoch, bool UI = 1); void MBGD(real_t learning_rate, int max_epoch, int mini_batch_size, bool UI = 1); real_t score(); void save(std::string fileName); private: real_t Cost(std::vector> y_hat, std::vector> y); std::vector> Evaluate(std::vector> X); std::vector Evaluate(std::vector x); void forwardPass(); std::vector> inputSet; std::vector> outputSet; std::vector> y_hat; std::vector> weights; std::vector bias; int n; int k; int n_class; // Regularization Params std::string reg; real_t lambda; real_t alpha; /* This is the controlling param for Elastic Net*/ }; #endif /* SoftmaxReg_hpp */