pmlpp/mlpp/tanh_reg/tanh_reg.cpp

323 lines
8.7 KiB
C++
Raw Normal View History

//
// TanhReg.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
2023-01-24 18:12:23 +01:00
#include "tanh_reg.h"
2023-02-10 20:53:26 +01:00
2023-01-24 18:12:23 +01:00
#include "../activation/activation.h"
2023-01-24 19:00:54 +01:00
#include "../cost/cost.h"
2023-01-24 18:12:23 +01:00
#include "../lin_alg/lin_alg.h"
#include "../regularization/reg.h"
#include "../utilities/utilities.h"
#include <iostream>
#include <random>
2023-02-11 01:18:25 +01:00
/*
Ref<MLPPMatrix> MLPPTanhReg::get_input_set() {
return _input_set;
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
void MLPPTanhReg::set_input_set(const Ref<MLPPMatrix> &val) {
_input_set = val;
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
_initialized = false;
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
Ref<MLPPMatrix> MLPPTanhReg::get_output_set() {
return _output_set;
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
void MLPPTanhReg::set_output_set(const Ref<MLPPMatrix> &val) {
_output_set = val;
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
_initialized = false;
}
MLPPReg::RegularizationType MLPPTanhReg::get_reg() {
return _reg;
}
void MLPPTanhReg::set_reg(const MLPPReg::RegularizationType val) {
_reg = val;
_initialized = false;
}
real_t MLPPTanhReg::get_lambda() {
return _lambda;
}
void MLPPTanhReg::set_lambda(const real_t val) {
_lambda = val;
_initialized = false;
}
real_t MLPPTanhReg::get_alpha() {
return _alpha;
}
void MLPPTanhReg::set_alpha(const real_t val) {
_alpha = val;
_initialized = false;
}
*/
std::vector<real_t> MLPPTanhReg::model_set_test(std::vector<std::vector<real_t>> X) {
return evaluatem(X);
}
real_t MLPPTanhReg::model_test(std::vector<real_t> x) {
return evaluatev(x);
}
void MLPPTanhReg::gradient_descent(real_t learning_rate, int max_epoch, bool ui) {
2023-01-24 19:23:30 +01:00
MLPPActivation avn;
2023-01-25 00:29:02 +01:00
MLPPLinAlg alg;
2023-01-25 00:54:50 +01:00
MLPPReg regularization;
2023-02-11 01:18:25 +01:00
2023-01-27 13:01:16 +01:00
real_t cost_prev = 0;
2023-01-24 19:00:54 +01:00
int epoch = 1;
2023-02-11 01:18:25 +01:00
forward_pass();
2023-01-24 19:00:54 +01:00
while (true) {
2023-02-11 01:18:25 +01:00
cost_prev = cost(_y_hat, _output_set);
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
std::vector<real_t> error = alg.subtraction(_y_hat, _output_set);
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
_weights = alg.subtraction(_weights, alg.scalarMultiply(learning_rate / _n, alg.mat_vec_mult(alg.transpose(_input_set), alg.hadamard_product(error, avn.tanh(_z, 1)))));
//_reg
_weights = regularization.regWeights(_weights, _lambda, _alpha, "None");
2023-01-24 19:00:54 +01:00
// Calculating the bias gradients
2023-02-11 01:18:25 +01:00
_bias -= learning_rate * alg.sum_elements(alg.hadamard_product(error, avn.tanh(_z, 1))) / _n;
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
forward_pass();
2023-01-24 19:00:54 +01:00
// UI PORTION
2023-02-11 01:18:25 +01:00
if (ui) {
MLPPUtilities::CostInfo(epoch, cost_prev, cost(_y_hat, _output_set));
MLPPUtilities::UI(_weights, _bias);
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
2023-01-24 19:00:54 +01:00
epoch++;
if (epoch > max_epoch) {
break;
}
}
}
2023-02-11 01:18:25 +01:00
void MLPPTanhReg::sgd(real_t learning_rate, int max_epoch, bool ui) {
2023-01-25 00:29:02 +01:00
MLPPLinAlg alg;
2023-01-25 00:54:50 +01:00
MLPPReg regularization;
2023-02-11 01:18:25 +01:00
2023-01-27 13:01:16 +01:00
real_t cost_prev = 0;
2023-01-24 19:00:54 +01:00
int epoch = 1;
2023-02-11 01:18:25 +01:00
std::random_device rd;
std::default_random_engine generator(rd());
std::uniform_int_distribution<int> distribution(0, int(_n - 1));
2023-01-24 19:00:54 +01:00
while (true) {
int outputIndex = distribution(generator);
2023-02-11 01:18:25 +01:00
real_t y_hat = evaluatev(_input_set[outputIndex]);
cost_prev = cost({ _y_hat }, { _output_set[outputIndex] });
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
real_t error = y_hat - _output_set[outputIndex];
2023-01-24 19:00:54 +01:00
// Weight Updation
2023-02-11 01:18:25 +01:00
_weights = alg.subtraction(_weights, alg.scalarMultiply(learning_rate * error * (1 - y_hat * y_hat), _input_set[outputIndex]));
//_reg
_weights = regularization.regWeights(_weights, _lambda, _alpha, "None");
2023-01-24 19:00:54 +01:00
// Bias updation
2023-02-11 01:18:25 +01:00
_bias -= learning_rate * error * (1 - y_hat * y_hat);
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
y_hat = evaluatev(_input_set[outputIndex]);
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
if (ui) {
MLPPUtilities::CostInfo(epoch, cost_prev, cost({ _y_hat }, { _output_set[outputIndex] }));
MLPPUtilities::UI(_weights, _bias);
2023-01-24 19:00:54 +01:00
}
epoch++;
if (epoch > max_epoch) {
break;
}
}
2023-02-11 01:18:25 +01:00
forward_pass();
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
void MLPPTanhReg::mbgd(real_t learning_rate, int max_epoch, int mini_batch_size, bool ui) {
2023-01-24 19:23:30 +01:00
MLPPActivation avn;
2023-01-25 00:29:02 +01:00
MLPPLinAlg alg;
2023-01-25 00:54:50 +01:00
MLPPReg regularization;
2023-02-10 20:53:26 +01:00
2023-01-27 13:01:16 +01:00
real_t cost_prev = 0;
2023-01-24 19:00:54 +01:00
int epoch = 1;
// Creating the mini-batches
2023-02-11 01:18:25 +01:00
int n_mini_batch = _n / mini_batch_size;
auto batches = MLPPUtilities::createMiniBatches(_input_set, _output_set, n_mini_batch);
2023-02-10 20:53:26 +01:00
auto inputMiniBatches = std::get<0>(batches);
auto outputMiniBatches = std::get<1>(batches);
2023-01-24 19:00:54 +01:00
while (true) {
for (int i = 0; i < n_mini_batch; i++) {
2023-02-11 01:18:25 +01:00
std::vector<real_t> y_hat = evaluatem(inputMiniBatches[i]);
std::vector<real_t> z = propagatem(inputMiniBatches[i]);
cost_prev = cost(y_hat, outputMiniBatches[i]);
2023-01-24 19:00:54 +01:00
2023-01-27 13:01:16 +01:00
std::vector<real_t> error = alg.subtraction(y_hat, outputMiniBatches[i]);
2023-01-24 19:00:54 +01:00
// Calculating the weight gradients
2023-02-11 01:18:25 +01:00
_weights = alg.subtraction(_weights, alg.scalarMultiply(learning_rate / _n, alg.mat_vec_mult(alg.transpose(inputMiniBatches[i]), alg.hadamard_product(error, avn.tanh(z, 1)))));
//_reg
_weights = regularization.regWeights(_weights, _lambda, _alpha, "None");
2023-01-24 19:00:54 +01:00
// Calculating the bias gradients
2023-02-11 01:18:25 +01:00
_bias -= learning_rate * alg.sum_elements(alg.hadamard_product(error, avn.tanh(_z, true))) / _n;
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
forward_pass();
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
y_hat = evaluatem(inputMiniBatches[i]);
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
if (ui) {
MLPPUtilities::CostInfo(epoch, cost_prev, cost(y_hat, outputMiniBatches[i]));
MLPPUtilities::UI(_weights, _bias);
2023-01-24 19:00:54 +01:00
}
}
2023-02-11 01:18:25 +01:00
2023-01-24 19:00:54 +01:00
epoch++;
2023-02-11 01:18:25 +01:00
2023-01-24 19:00:54 +01:00
if (epoch > max_epoch) {
break;
}
}
2023-02-11 01:18:25 +01:00
forward_pass();
2023-01-24 19:00:54 +01:00
}
2023-01-27 13:01:16 +01:00
real_t MLPPTanhReg::score() {
2023-02-10 20:53:26 +01:00
MLPPUtilities util;
2023-02-11 01:18:25 +01:00
return util.performance(_y_hat, _output_set);
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
void MLPPTanhReg::save(std::string file_name) {
2023-02-10 20:53:26 +01:00
MLPPUtilities util;
2023-02-11 01:18:25 +01:00
util.saveParameters(file_name, _weights, _bias);
}
bool MLPPTanhReg::is_initialized() {
return _initialized;
}
void MLPPTanhReg::initialize() {
if (_initialized) {
return;
}
//ERR_FAIL_COND(!_input_set.is_valid() || !_output_set.is_valid());
_initialized = true;
}
MLPPTanhReg::MLPPTanhReg(std::vector<std::vector<real_t>> p_input_set, std::vector<real_t> p_output_set, MLPPReg::RegularizationType p_reg, real_t p_lambda, real_t p_alpha) {
_input_set = p_input_set;
_output_set = p_output_set;
_n = _input_set.size();
_k = _input_set[0].size();
_reg = p_reg;
_lambda = p_lambda;
_alpha = p_alpha;
_y_hat.resize(_n);
_weights = MLPPUtilities::weightInitialization(_k);
_bias = MLPPUtilities::biasInitialization();
}
MLPPTanhReg::MLPPTanhReg() {
}
MLPPTanhReg::~MLPPTanhReg() {
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
real_t MLPPTanhReg::cost(std::vector<real_t> y_hat, std::vector<real_t> y) {
2023-01-25 00:54:50 +01:00
MLPPReg regularization;
2023-01-24 19:37:08 +01:00
class MLPPCost cost;
2023-02-11 01:18:25 +01:00
//_reg
return cost.MSE(y_hat, y) + regularization.regTerm(_weights, _lambda, _alpha, "None");
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
real_t MLPPTanhReg::evaluatev(std::vector<real_t> x) {
2023-01-25 00:29:02 +01:00
MLPPLinAlg alg;
2023-01-24 19:23:30 +01:00
MLPPActivation avn;
2023-02-11 01:18:25 +01:00
return avn.tanh(alg.dot(_weights, x) + _bias);
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
real_t MLPPTanhReg::propagatev(std::vector<real_t> x) {
2023-01-25 00:29:02 +01:00
MLPPLinAlg alg;
2023-02-11 01:18:25 +01:00
return alg.dot(_weights, x) + _bias;
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
std::vector<real_t> MLPPTanhReg::evaluatem(std::vector<std::vector<real_t>> X) {
2023-01-25 00:29:02 +01:00
MLPPLinAlg alg;
2023-01-24 19:23:30 +01:00
MLPPActivation avn;
2023-02-11 01:18:25 +01:00
return avn.tanh(alg.scalarAdd(_bias, alg.mat_vec_mult(X, _weights)));
2023-01-24 19:00:54 +01:00
}
2023-02-11 01:18:25 +01:00
std::vector<real_t> MLPPTanhReg::propagatem(std::vector<std::vector<real_t>> X) {
2023-01-25 00:29:02 +01:00
MLPPLinAlg alg;
2023-02-11 01:18:25 +01:00
return alg.scalarAdd(_bias, alg.mat_vec_mult(X, _weights));
2023-01-24 19:00:54 +01:00
}
// Tanh ( wTx + b )
2023-02-11 01:18:25 +01:00
void MLPPTanhReg::forward_pass() {
2023-01-24 19:23:30 +01:00
MLPPActivation avn;
2023-01-24 19:00:54 +01:00
2023-02-11 01:18:25 +01:00
_z = propagatem(_input_set);
_y_hat = avn.tanh(_z);
}
void MLPPTanhReg::_bind_methods() {
/*
ClassDB::bind_method(D_METHOD("get_input_set"), &MLPPTanhReg::get_input_set);
ClassDB::bind_method(D_METHOD("set_input_set", "val"), &MLPPTanhReg::set_input_set);
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "input_set", PROPERTY_HINT_RESOURCE_TYPE, "MLPPMatrix"), "set_input_set", "get_input_set");
ClassDB::bind_method(D_METHOD("get_output_set"), &MLPPTanhReg::get_output_set);
ClassDB::bind_method(D_METHOD("set_output_set", "val"), &MLPPTanhReg::set_output_set);
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "output_set", PROPERTY_HINT_RESOURCE_TYPE, "MLPPMatrix"), "set_output_set", "get_output_set");
ClassDB::bind_method(D_METHOD("get_reg"), &MLPPTanhReg::get_reg);
ClassDB::bind_method(D_METHOD("set_reg", "val"), &MLPPTanhReg::set_reg);
ADD_PROPERTY(PropertyInfo(Variant::INT, "reg"), "set_reg", "get_reg");
ClassDB::bind_method(D_METHOD("get_lambda"), &MLPPTanhReg::get_lambda);
ClassDB::bind_method(D_METHOD("set_lambda", "val"), &MLPPTanhReg::set_lambda);
ADD_PROPERTY(PropertyInfo(Variant::REAL, "lambda"), "set_lambda", "get_lambda");
ClassDB::bind_method(D_METHOD("get_alpha"), &MLPPTanhReg::get_alpha);
ClassDB::bind_method(D_METHOD("set_alpha", "val"), &MLPPTanhReg::set_alpha);
ADD_PROPERTY(PropertyInfo(Variant::REAL, "alpha"), "set_alpha", "get_alpha");
ClassDB::bind_method(D_METHOD("model_test", "x"), &MLPPTanhReg::model_test);
ClassDB::bind_method(D_METHOD("model_set_test", "X"), &MLPPTanhReg::model_set_test);
ClassDB::bind_method(D_METHOD("gradient_descent", "learning_rate", "max_epoch", "ui"), &MLPPTanhReg::gradient_descent, false);
ClassDB::bind_method(D_METHOD("sgd", "learning_rate", "max_epoch", "ui"), &MLPPTanhReg::sgd, false);
ClassDB::bind_method(D_METHOD("mbgd", "learning_rate", "max_epoch", "mini_batch_size", "ui"), &MLPPTanhReg::mbgd, false);
ClassDB::bind_method(D_METHOD("score"), &MLPPTanhReg::score);
ClassDB::bind_method(D_METHOD("save", "file_name"), &MLPPTanhReg::save);
ClassDB::bind_method(D_METHOD("is_initialized"), &MLPPTanhReg::is_initialized);
ClassDB::bind_method(D_METHOD("initialize"), &MLPPTanhReg::initialize);
*/
2023-01-24 19:00:54 +01:00
}