Removed the "Created by" comments.

This commit is contained in:
Relintai 2023-12-30 00:32:08 +01:00
parent 26579a51b2
commit 4558221df6
77 changed files with 30 additions and 387 deletions

View File

@ -1,8 +1,4 @@
//
// Activation.cpp
//
// Created by Marc Melikyan on 1/16/21.
//
#include "activation.h"
#include "../lin_alg/lin_alg.h"

View File

@ -2,11 +2,7 @@
#ifndef MLPP_ACTIVATION_H
#define MLPP_ACTIVATION_H
//
// Activation.hpp
//
// Created by Marc Melikyan on 1/16/21.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// ANN.cpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "ann.h"

View File

@ -1,11 +1,7 @@
#ifndef MLPP_ANN_H
#define MLPP_ANN_H
//
// ANN.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// AutoEncoder.cpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "auto_encoder.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_AUTO_ENCODER_H
#define MLPP_AUTO_ENCODER_H
//
// AutoEncoder.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,4 @@
//
// BernoulliNB.cpp
//
// Created by Marc Melikyan on 1/17/21.
//
#include "bernoulli_nb.h"
#include "../data/data.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_BERNOULLI_NB_H
#define MLPP_BERNOULLI_NB_H
//
// BernoulliNB.hpp
//
// Created by Marc Melikyan on 1/17/21.
//
#include "core/containers/hash_map.h"
#include "core/containers/vector.h"

View File

@ -1,8 +1,3 @@
//
// CLogLogReg.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "c_log_log_reg.h"
#include "../activation/activation.h"

View File

@ -2,11 +2,7 @@
#ifndef MLPP_C_LOG_LOG_REG_H
#define MLPP_C_LOG_LOG_REG_H
//
// CLogLogReg.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,4 @@
//
// Convolutions.cpp
//
// Created by Marc Melikyan on 4/6/21.
//
#include "convolutions.h"
#include "../lin_alg/lin_alg.h"

View File

@ -1,8 +1,3 @@
//
// Reg.cpp
//
// Created by Marc Melikyan on 1/16/21.
//
#include "cost.h"
#include "../lin_alg/lin_alg.h"

View File

@ -2,11 +2,7 @@
#ifndef MLPP_COST_H
#define MLPP_COST_H
//
// Cost.hpp
//
// Created by Marc Melikyan on 1/16/21.
//
#include "core/math/math_defs.h"

View File

@ -1,9 +1,4 @@
//
// Data.cpp
// MLP
//
// Created by Marc Melikyan on 11/4/20.
//
#include "data.h"

View File

@ -2,12 +2,6 @@
#ifndef MLPP_DATA_H
#define MLPP_DATA_H
//
// Data.hpp
// MLP
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,4 @@
//
// DualSVC.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "dual_svc.h"
#include "../activation/activation.h"

View File

@ -2,11 +2,7 @@
#ifndef MLPP_DUAL_SVC_H
#define MLPP_DUAL_SVC_H
//
// DualSVC.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
// http://disp.ee.ntu.edu.tw/~pujols/Support%20Vector%20Machine.pdf
// http://ciml.info/dl/v0_99/ciml-v0_99-ch11.pdf
// Were excellent for the practical intution behind the dual formulation.

View File

@ -1,8 +1,4 @@
//
// ExpReg.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "exp_reg.h"
#include "../cost/cost.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_EXP_REG_H
#define MLPP_EXP_REG_H
//
// ExpReg.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// GAN.cpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "gan.h"
#include "../activation/activation.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_GAN_H
#define MLPP_GAN_H
//
// GAN.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,4 @@
//
// GaussMarkovChecker.cpp
//
// Created by Marc Melikyan on 11/13/20.
//
#include "gauss_markov_checker.h"
#include "../stat/stat.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_GAUSS_MARKOV_CHECKER_H
#define MLPP_GAUSS_MARKOV_CHECKER_H
//
// GaussMarkovChecker.hpp
//
// Created by Marc Melikyan on 11/13/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// GaussianNB.cpp
//
// Created by Marc Melikyan on 1/17/21.
//
#include "gaussian_nb.h"

View File

@ -2,11 +2,7 @@
#ifndef MLPP_GAUSSIAN_NB_H
#define MLPP_GAUSSIAN_NB_H
//
// GaussianNB.hpp
//
// Created by Marc Melikyan on 1/17/21.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// HiddenLayer.cpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "hidden_layer.h"
#include "../activation/activation.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_HIDDEN_LAYER_H
#define MLPP_HIDDEN_LAYER_H
//
// HiddenLayer.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/math/math_defs.h"
#include "core/string/ustring.h"

View File

@ -1,8 +1,3 @@
//
// HypothesisTesting.cpp
//
// Created by Marc Melikyan on 3/10/21.
//
#include "hypothesis_testing.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_HYPOTHESIS_TESTING_H
#define MLPP_HYPOTHESIS_TESTING_H
//
// HypothesisTesting.hpp
//
// Created by Marc Melikyan on 3/10/21.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,4 @@
//
// KMeans.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "kmeans.h"
#include "../utilities/utilities.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_K_MEANS_H
#define MLPP_K_MEANS_H
//
// KMeans.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// kNN.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "knn.h"
#include "../utilities/utilities.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_KNN_H
#define MLPP_KNN_H
//
// kNN.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// LinAlg.cpp
//
// Created by Marc Melikyan on 1/8/21.
//
#include "lin_alg.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_LIN_ALG_H
#define MLPP_LIN_ALG_H
//
// LinAlg.hpp
//
// Created by Marc Melikyan on 1/8/21.
//
//TODO Methods here should probably use error macros in a way where they get disabled in non-tools(?) (maybe release?) builds

View File

@ -1,8 +1,3 @@
//
// LinReg.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "lin_reg.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_LIN_REG_H
#define MLPP_LIN_REG_H
//
// LinReg.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,4 @@
//
// LogReg.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "log_reg.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_LOG_REG_H
#define MLPP_LOG_REG_H
//
// LogReg.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// MANN.cpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "mann.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_MANN_H
#define MLPP_MANN_H
//
// MANN.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,4 @@
//
// MLP.cpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "mlp.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_MLP_H
#define MLPP_MLP_H
//
// MLP.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/containers/vector.h"
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// MultiOutputLayer.cpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "multi_output_layer.h"
#include "../utilities/utilities.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_MULTI_OUTPUT_LAYER_H
#define MLPP_MULTI_OUTPUT_LAYER_H
//
// MultiOutputLayer.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/math/math_defs.h"
#include "core/string/ustring.h"

View File

@ -1,8 +1,3 @@
//
// MultinomialNB.cpp
//
// Created by Marc Melikyan on 1/17/21.
//
#include "multinomial_nb.h"

View File

@ -2,12 +2,6 @@
#ifndef MLPP_MULTINOMIAL_NB_H
#define MLPP_MULTINOMIAL_NB_H
//
// MultinomialNB.hpp
//
// Created by Marc Melikyan on 1/17/21.
//
#include "core/containers/hash_map.h"
#include "core/containers/vector.h"
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// NumericalAnalysis.cpp
//
// Created by Marc Melikyan on 11/13/20.
//
#include "numerical_analysis.h"
#include "../lin_alg/lin_alg.h"

View File

@ -1,8 +1,4 @@
//
// OutlierFinder.cpp
//
// Created by Marc Melikyan on 11/13/20.
//
#include "outlier_finder.h"

View File

@ -2,12 +2,6 @@
#ifndef MLPP_OUTLIER_FINDER_H
#define MLPP_OUTLIER_FINDER_H
//
// OutlierFinder.hpp
//
// Created by Marc Melikyan on 11/13/20.
//
#include "core/math/math_defs.h"
#include "core/object/reference.h"

View File

@ -1,8 +1,3 @@
//
// OutputLayer.cpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "output_layer.h"
#include "../utilities/utilities.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_OUTPUT_LAYER_H
#define MLPP_OUTPUT_LAYER_H
//
// OutputLayer.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/math/math_defs.h"
#include "core/string/ustring.h"

View File

@ -1,8 +1,4 @@
//
// PCA.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "pca.h"
#include "../data/data.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_PCA_H
#define MLPP_PCA_H
//
// PCA.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// ProbitReg.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "probit_reg.h"

View File

@ -2,11 +2,7 @@
#ifndef MLPP_PROBIT_REG_H
#define MLPP_PROBIT_REG_H
//
// ProbitReg.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// Reg.cpp
//
// Created by Marc Melikyan on 1/16/21.
//
#include "reg.h"

View File

@ -3,11 +3,7 @@
#ifndef MLPP_REG_H
#define MLPP_REG_H
//
// Reg.hpp
//
// Created by Marc Melikyan on 1/16/21.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,4 @@
//
// SoftmaxNet.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "softmax_net.h"

View File

@ -1,12 +1,6 @@
#ifndef MLPP_SOFTMAX_NET_H
#define MLPP_SOFTMAX_NET_H
//
// SoftmaxNet.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"
#include "core/object/resource.h"

View File

@ -1,8 +1,3 @@
//
// SoftmaxReg.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "softmax_reg.h"

View File

@ -2,11 +2,6 @@
#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"

View File

@ -1,8 +1,3 @@
//
// Stat.cpp
//
// Created by Marc Melikyan on 9/29/20.
//
#include "stat.h"
#include "../activation/activation.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_STAT_H
#define MLPP_STAT_H
//
// Stat.hpp
//
// Created by Marc Melikyan on 9/29/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// SVC.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "svc.h"

View File

@ -2,11 +2,7 @@
#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.

View File

@ -1,8 +1,3 @@
//
// TanhReg.cpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "tanh_reg.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_TANH_REG_H
#define MLPP_TANH_REG_H
//
// TanhReg.hpp
//
// Created by Marc Melikyan on 10/2/20.
//
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// Transforms.cpp
//
// Created by Marc Melikyan on 11/13/20.
//
#include "transforms.h"
#include "../lin_alg/lin_alg.h"

View File

@ -1,8 +1,3 @@
//
// UniLinReg.cpp
//
// Created by Marc Melikyan on 9/29/20.
//
#include "uni_lin_reg.h"
#include "../stat/stat.h"

View File

@ -2,12 +2,6 @@
#ifndef MLPP_UNI_LIN_REG_H
#define MLPP_UNI_LIN_REG_H
//
// UniLinReg.hpp
//
// Created by Marc Melikyan on 9/29/20.
//
#include "core/math/math_defs.h"
#include "core/object/resource.h"

View File

@ -1,8 +1,3 @@
//
// Reg.cpp
//
// Created by Marc Melikyan on 1/16/21.
//
#include "utilities.h"

View File

@ -2,11 +2,6 @@
#ifndef MLPP_UTILITIES_H
#define MLPP_UTILITIES_H
//
// Utilities.hpp
//
// Created by Marc Melikyan on 1/16/21.
//
#include "core/containers/vector.h"
#include "core/math/math_defs.h"

View File

@ -1,8 +1,3 @@
//
// WGAN.cpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "wgan.h"

View File

@ -2,11 +2,7 @@
#ifndef MLPP_WGAN_H
#define MLPP_WGAN_H
//
// WGAN.hpp
//
// Created by Marc Melikyan on 11/4/20.
//
#include "core/containers/vector.h"
#include "core/math/math_defs.h"

View File

@ -1,9 +1,6 @@
#ifndef MLPP_MATRIX_TESTS_H
#define MLPP_MATRIX_TESTS_H
// TODO port this class to use the test module once it's working
// Also don't forget to remove it's bindings
#include "core/math/math_defs.h"
#include "core/containers/vector.h"
@ -14,6 +11,9 @@
#include "mlpp_tests.h"
// TODO port this class to use the test module once it's working
// Also don't forget to remove it's bindings
class MLPPMatrix;
class MLPPVector;
@ -33,7 +33,6 @@ public:
void test_row_remove();
void test_row_remove_unordered();
void test_mlpp_matrix_mul();
MLPPMatrixTests();

View File

@ -1,8 +1,7 @@
#ifndef MLPP_TESTS_H
#define MLPP_TESTS_H
// TODO port this class to use the test module once it's working
// Also don't forget to remove it's bindings
#include "core/math/math_defs.h"
@ -12,6 +11,9 @@
#include "core/string/ustring.h"
// TODO port this class to use the test module once it's working
// Also don't forget to remove it's bindings
class MLPPMatrix;
class MLPPVector;