Update include guard style.

This commit is contained in:
Relintai 2023-01-24 18:52:45 +01:00
parent 3457ec73a1
commit db79c6215b
39 changed files with 79 additions and 78 deletions

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 1/16/21. // Created by Marc Melikyan on 1/16/21.
// //
#ifndef Activation_hpp #ifndef MLPP_ACTIVATION_H
#define Activation_hpp #define MLPP_ACTIVATION_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef ANN_hpp #ifndef MLPP_ANN_H
#define ANN_hpp #define MLPP_ANN_H
#include "hidden_layer/hidden_layer.h" #include "hidden_layer/hidden_layer.h"
#include "output_layer/output_layer.h" #include "output_layer/output_layer.h"

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef AutoEncoder_hpp #ifndef MLPP_AUTO_ENCODER_H
#define AutoEncoder_hpp #define MLPP_AUTO_ENCODER_H
#include <vector> #include <vector>
#include <tuple> #include <tuple>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 1/17/21. // Created by Marc Melikyan on 1/17/21.
// //
#ifndef BernoulliNB_hpp #ifndef MLPP_BERNOULLI_NB_H
#define BernoulliNB_hpp #define MLPP_BERNOULLI_NB_H
#include <vector> #include <vector>
#include <map> #include <map>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef CLogLogReg_hpp #ifndef MLPP_C_LOG_LOG_REG_H
#define CLogLogReg_hpp #define MLPP_C_LOG_LOG_REG_H
#include <vector> #include <vector>

View File

@ -1,5 +1,6 @@
#ifndef Convolutions_hpp
#define Convolutions_hpp #ifndef MLPP_CONVOLUTIONS_H
#define MLPP_CONVOLUTIONS_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 1/16/21. // Created by Marc Melikyan on 1/16/21.
// //
#ifndef Cost_hpp #ifndef MLPP_COST_H
#define Cost_hpp #define MLPP_COST_H
#include <vector> #include <vector>

View File

@ -5,8 +5,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef Data_hpp #ifndef MLPP_DATA_H
#define Data_hpp #define MLPP_DATA_H
#include <vector> #include <vector>
#include <tuple> #include <tuple>

View File

@ -7,8 +7,8 @@
// http://ciml.info/dl/v0_99/ciml-v0_99-ch11.pdf // http://ciml.info/dl/v0_99/ciml-v0_99-ch11.pdf
// Were excellent for the practical intution behind the dual formulation. // Were excellent for the practical intution behind the dual formulation.
#ifndef DualSVC_hpp #ifndef MLPP_DUAL_SVC_H
#define DualSVC_hpp #define MLPP_DUAL_SVC_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef ExpReg_hpp #ifndef MLPP_EXP_REG_H
#define ExpReg_hpp #define MLPP_EXP_REG_H
#include <vector> #include <vector>
#include <string> #include <string>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef GAN_hpp #ifndef MLPP_GAN_hpp
#define GAN_hpp #define MLPP_GAN_hpp
#include "../hidden_layer/hidden_layer.h" #include "../hidden_layer/hidden_layer.h"
#include "../output_layer/output_layer.h" #include "../output_layer/output_layer.h"

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/13/20. // Created by Marc Melikyan on 11/13/20.
// //
#ifndef GaussMarkovChecker_hpp #ifndef MLPP_GAUSS_MARKOV_CHECKER_H
#define GaussMarkovChecker_hpp #define MLPP_GAUSS_MARKOV_CHECKER_H
#include <string> #include <string>
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 1/17/21. // Created by Marc Melikyan on 1/17/21.
// //
#ifndef GaussianNB_hpp #ifndef MLPP_GAUSSIAN_NB_H
#define GaussianNB_hpp #define MLPP_GAUSSIAN_NB_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef HiddenLayer_hpp #ifndef MLPP_HIDDEN_LAYER_H
#define HiddenLayer_hpp #define MLPP_HIDDEN_LAYER_H
#include "../activation/activation.h" #include "../activation/activation.h"

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 3/10/21. // Created by Marc Melikyan on 3/10/21.
// //
#ifndef HypothesisTesting_hpp #ifndef MLPP_HYPOTHESIS_TESTING_H
#define HypothesisTesting_hpp #define MLPP_HYPOTHESIS_TESTING_H
#include <vector> #include <vector>
#include <tuple> #include <tuple>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef KMeans_hpp #ifndef MLPP_K_MEANS_H
#define KMeans_hpp #define MLPP_K_MEANS_H
#include <vector> #include <vector>
#include <string> #include <string>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef kNN_hpp #ifndef MLPP_KNN_H
#define kNN_hpp #define MLPP_KNN_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 1/8/21. // Created by Marc Melikyan on 1/8/21.
// //
#ifndef LinAlg_hpp #ifndef MLPP_LIN_ALG_H
#define LinAlg_hpp #define MLPP_LIN_ALG_H
#include <vector> #include <vector>
#include <tuple> #include <tuple>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef LinReg_hpp #ifndef MLPP_LIN_REG_H
#define LinReg_hpp #define MLPP_LIN_REG_H
#include <vector> #include <vector>
#include <string> #include <string>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef LogReg_hpp #ifndef MLPP_LOG_REG_H
#define LogReg_hpp #define MLPP_LOG_REG_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef MANN_hpp #ifndef MLPP_MANN_H
#define MANN_hpp #define MLPP_MANN_H
#include "../hidden_layer/hidden_layer.h" #include "../hidden_layer/hidden_layer.h"
#include "../multi_output_layer/multi_output_layer.h" #include "../multi_output_layer/multi_output_layer.h"

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef MLP_hpp #ifndef MLPP_MLP_H
#define MLP_hpp #define MLPP_MLP_H
#include <vector> #include <vector>
#include <map> #include <map>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef MultiOutputLayer_hpp #ifndef MLPP_MULTI_OUTPUT_LAYER_H
#define MultiOutputLayer_hpp #define MLPP_MULTI_OUTPUT_LAYER_H
#include "../activation/activation.h" #include "../activation/activation.h"
#include "../cost/cost.h" #include "../cost/cost.h"

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 1/17/21. // Created by Marc Melikyan on 1/17/21.
// //
#ifndef MultinomialNB_hpp #ifndef MLPP_MULTINOMIAL_NB_H
#define MultinomialNB_hpp #define MLPP_MULTINOMIAL_NB_H
#include <vector> #include <vector>
#include <map> #include <map>

View File

@ -3,8 +3,8 @@
// //
// //
#ifndef NumericalAnalysis_hpp #ifndef MLPP_NUMERICAL_ANALYSIS_H
#define NumericalAnalysis_hpp #define MLPP_NUMERICAL_ANALYSIS_H
#include <vector> #include <vector>
#include <string> #include <string>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/13/20. // Created by Marc Melikyan on 11/13/20.
// //
#ifndef OutlierFinder_hpp #ifndef MLPP_OUTLIER_FINDER_H
#define OutlierFinder_hpp #define MLPP_OUTLIER_FINDER_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef OutputLayer_hpp #ifndef MLPP_OUTPUT_LAYER_H
#define OutputLayer_hpp #define MLPP_OUTPUT_LAYER_H
#include "../activation/activation.h" #include "../activation/activation.h"
#include "../cost/cost.h" #include "../cost/cost.h"

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef PCA_hpp #ifndef MLPP_PCA_H
#define PCA_hpp #define MLPP_PCA_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef ProbitReg_hpp #ifndef MLPP_PROBIT_REG_H
#define ProbitReg_hpp #define MLPP_PROBIT_REG_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 1/16/21. // Created by Marc Melikyan on 1/16/21.
// //
#ifndef Reg_hpp #ifndef MLPP_REG_H
#define Reg_hpp #define MLPP_REG_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef SoftmaxNet_hpp #ifndef MLPP_SOFTMAX_NET_H
#define SoftmaxNet_hpp #define MLPP_SOFTMAX_NET_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef SoftmaxReg_hpp #ifndef MLPP_SOFTMAX_REG_H
#define SoftmaxReg_hpp #define MLPP_SOFTMAX_REG_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 9/29/20. // Created by Marc Melikyan on 9/29/20.
// //
#ifndef Stat_hpp #ifndef MLPP_STAT_H
#define Stat_hpp #define MLPP_STAT_H
#include <vector> #include <vector>

View File

@ -7,8 +7,8 @@
// https://towardsdatascience.com/svm-implementation-from-scratch-python-2db2fc52e5c2 // 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. // Illustratd a practical definition of the Hinge Loss function and its gradient when optimizing with SGD.
#ifndef SVC_hpp #ifndef MLPP_SVC_H
#define SVC_hpp #define MLPP_SVC_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 10/2/20. // Created by Marc Melikyan on 10/2/20.
// //
#ifndef TanhReg_hpp #ifndef MLPP_TANH_REG_H
#define TanhReg_hpp #define MLPP_TANH_REG_H
#include <vector> #include <vector>

View File

@ -3,8 +3,8 @@
// //
// //
#ifndef Transforms_hpp #ifndef MLPP_TRANSFORMS_H
#define Transforms_hpp #define MLPP_TRANSFORMS_H
#include <vector> #include <vector>
#include <string> #include <string>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 9/29/20. // Created by Marc Melikyan on 9/29/20.
// //
#ifndef UniLinReg_hpp #ifndef MLPP_UNI_LIN_REG_H
#define UniLinReg_hpp #define MLPP_UNI_LIN_REG_H
#include <vector> #include <vector>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 1/16/21. // Created by Marc Melikyan on 1/16/21.
// //
#ifndef Utilities_hpp #ifndef MLPP_UTILITIES_H
#define Utilities_hpp #define MLPP_UTILITIES_H
#include <vector> #include <vector>
#include <tuple> #include <tuple>

View File

@ -4,8 +4,8 @@
// Created by Marc Melikyan on 11/4/20. // Created by Marc Melikyan on 11/4/20.
// //
#ifndef WGAN_hpp #ifndef MLPP_WGAN_H
#define WGAN_hpp #define MLPP_WGAN_H
#include "../hidden_layer/hidden_layer.h" #include "../hidden_layer/hidden_layer.h"
#include "../output_layer/output_layer.h" #include "../output_layer/output_layer.h"