#ifndef MLPP_SVC_H #define MLPP_SVC_H // // SVC.hpp // // Created by Marc Melikyan on 10/2/20. // // https://towardsdatascience.com/svm-implementation-from-scratch-python-2db2fc52e5c2 // Illustratd a practical definition of the Hinge Loss function and its gradient when optimizing with SGD. #include "core/math/math_defs.h" #include #include class MLPPSVC { public: MLPPSVC(std::vector> inputSet, std::vector outputSet, real_t C); std::vector modelSetTest(std::vector> X); real_t modelTest(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 weights, real_t C); std::vector Evaluate(std::vector> X); std::vector propagate(std::vector> X); real_t Evaluate(std::vector x); real_t propagate(std::vector x); void forwardPass(); std::vector> inputSet; std::vector outputSet; std::vector z; std::vector y_hat; std::vector weights; real_t bias; real_t C; int n; int k; // UI Portion void UI(int epoch, real_t cost_prev); }; #endif /* SVC_hpp */