mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-08 13:12:09 +01:00
Update include guard style.
This commit is contained in:
parent
3457ec73a1
commit
db79c6215b
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 1/16/21.
|
||||
//
|
||||
|
||||
#ifndef Activation_hpp
|
||||
#define Activation_hpp
|
||||
#ifndef MLPP_ACTIVATION_H
|
||||
#define MLPP_ACTIVATION_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef ANN_hpp
|
||||
#define ANN_hpp
|
||||
#ifndef MLPP_ANN_H
|
||||
#define MLPP_ANN_H
|
||||
|
||||
#include "hidden_layer/hidden_layer.h"
|
||||
#include "output_layer/output_layer.h"
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef AutoEncoder_hpp
|
||||
#define AutoEncoder_hpp
|
||||
#ifndef MLPP_AUTO_ENCODER_H
|
||||
#define MLPP_AUTO_ENCODER_H
|
||||
|
||||
#include <vector>
|
||||
#include <tuple>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 1/17/21.
|
||||
//
|
||||
|
||||
#ifndef BernoulliNB_hpp
|
||||
#define BernoulliNB_hpp
|
||||
#ifndef MLPP_BERNOULLI_NB_H
|
||||
#define MLPP_BERNOULLI_NB_H
|
||||
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef CLogLogReg_hpp
|
||||
#define CLogLogReg_hpp
|
||||
#ifndef MLPP_C_LOG_LOG_REG_H
|
||||
#define MLPP_C_LOG_LOG_REG_H
|
||||
|
||||
|
||||
#include <vector>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef Convolutions_hpp
|
||||
#define Convolutions_hpp
|
||||
|
||||
#ifndef MLPP_CONVOLUTIONS_H
|
||||
#define MLPP_CONVOLUTIONS_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 1/16/21.
|
||||
//
|
||||
|
||||
#ifndef Cost_hpp
|
||||
#define Cost_hpp
|
||||
#ifndef MLPP_COST_H
|
||||
#define MLPP_COST_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -5,8 +5,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef Data_hpp
|
||||
#define Data_hpp
|
||||
#ifndef MLPP_DATA_H
|
||||
#define MLPP_DATA_H
|
||||
|
||||
#include <vector>
|
||||
#include <tuple>
|
||||
|
@ -7,8 +7,8 @@
|
||||
// http://ciml.info/dl/v0_99/ciml-v0_99-ch11.pdf
|
||||
// Were excellent for the practical intution behind the dual formulation.
|
||||
|
||||
#ifndef DualSVC_hpp
|
||||
#define DualSVC_hpp
|
||||
#ifndef MLPP_DUAL_SVC_H
|
||||
#define MLPP_DUAL_SVC_H
|
||||
|
||||
|
||||
#include <vector>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef ExpReg_hpp
|
||||
#define ExpReg_hpp
|
||||
#ifndef MLPP_EXP_REG_H
|
||||
#define MLPP_EXP_REG_H
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef GAN_hpp
|
||||
#define GAN_hpp
|
||||
#ifndef MLPP_GAN_hpp
|
||||
#define MLPP_GAN_hpp
|
||||
|
||||
#include "../hidden_layer/hidden_layer.h"
|
||||
#include "../output_layer/output_layer.h"
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/13/20.
|
||||
//
|
||||
|
||||
#ifndef GaussMarkovChecker_hpp
|
||||
#define GaussMarkovChecker_hpp
|
||||
#ifndef MLPP_GAUSS_MARKOV_CHECKER_H
|
||||
#define MLPP_GAUSS_MARKOV_CHECKER_H
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 1/17/21.
|
||||
//
|
||||
|
||||
#ifndef GaussianNB_hpp
|
||||
#define GaussianNB_hpp
|
||||
#ifndef MLPP_GAUSSIAN_NB_H
|
||||
#define MLPP_GAUSSIAN_NB_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef HiddenLayer_hpp
|
||||
#define HiddenLayer_hpp
|
||||
#ifndef MLPP_HIDDEN_LAYER_H
|
||||
#define MLPP_HIDDEN_LAYER_H
|
||||
|
||||
#include "../activation/activation.h"
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 3/10/21.
|
||||
//
|
||||
|
||||
#ifndef HypothesisTesting_hpp
|
||||
#define HypothesisTesting_hpp
|
||||
#ifndef MLPP_HYPOTHESIS_TESTING_H
|
||||
#define MLPP_HYPOTHESIS_TESTING_H
|
||||
|
||||
#include <vector>
|
||||
#include <tuple>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef KMeans_hpp
|
||||
#define KMeans_hpp
|
||||
#ifndef MLPP_K_MEANS_H
|
||||
#define MLPP_K_MEANS_H
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef kNN_hpp
|
||||
#define kNN_hpp
|
||||
#ifndef MLPP_KNN_H
|
||||
#define MLPP_KNN_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 1/8/21.
|
||||
//
|
||||
|
||||
#ifndef LinAlg_hpp
|
||||
#define LinAlg_hpp
|
||||
#ifndef MLPP_LIN_ALG_H
|
||||
#define MLPP_LIN_ALG_H
|
||||
|
||||
#include <vector>
|
||||
#include <tuple>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef LinReg_hpp
|
||||
#define LinReg_hpp
|
||||
#ifndef MLPP_LIN_REG_H
|
||||
#define MLPP_LIN_REG_H
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef LogReg_hpp
|
||||
#define LogReg_hpp
|
||||
#ifndef MLPP_LOG_REG_H
|
||||
#define MLPP_LOG_REG_H
|
||||
|
||||
|
||||
#include <vector>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef MANN_hpp
|
||||
#define MANN_hpp
|
||||
#ifndef MLPP_MANN_H
|
||||
#define MLPP_MANN_H
|
||||
|
||||
#include "../hidden_layer/hidden_layer.h"
|
||||
#include "../multi_output_layer/multi_output_layer.h"
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef MLP_hpp
|
||||
#define MLP_hpp
|
||||
#ifndef MLPP_MLP_H
|
||||
#define MLPP_MLP_H
|
||||
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef MultiOutputLayer_hpp
|
||||
#define MultiOutputLayer_hpp
|
||||
#ifndef MLPP_MULTI_OUTPUT_LAYER_H
|
||||
#define MLPP_MULTI_OUTPUT_LAYER_H
|
||||
|
||||
#include "../activation/activation.h"
|
||||
#include "../cost/cost.h"
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 1/17/21.
|
||||
//
|
||||
|
||||
#ifndef MultinomialNB_hpp
|
||||
#define MultinomialNB_hpp
|
||||
#ifndef MLPP_MULTINOMIAL_NB_H
|
||||
#define MLPP_MULTINOMIAL_NB_H
|
||||
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -3,8 +3,8 @@
|
||||
//
|
||||
//
|
||||
|
||||
#ifndef NumericalAnalysis_hpp
|
||||
#define NumericalAnalysis_hpp
|
||||
#ifndef MLPP_NUMERICAL_ANALYSIS_H
|
||||
#define MLPP_NUMERICAL_ANALYSIS_H
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/13/20.
|
||||
//
|
||||
|
||||
#ifndef OutlierFinder_hpp
|
||||
#define OutlierFinder_hpp
|
||||
#ifndef MLPP_OUTLIER_FINDER_H
|
||||
#define MLPP_OUTLIER_FINDER_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef OutputLayer_hpp
|
||||
#define OutputLayer_hpp
|
||||
#ifndef MLPP_OUTPUT_LAYER_H
|
||||
#define MLPP_OUTPUT_LAYER_H
|
||||
|
||||
#include "../activation/activation.h"
|
||||
#include "../cost/cost.h"
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef PCA_hpp
|
||||
#define PCA_hpp
|
||||
#ifndef MLPP_PCA_H
|
||||
#define MLPP_PCA_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef ProbitReg_hpp
|
||||
#define ProbitReg_hpp
|
||||
#ifndef MLPP_PROBIT_REG_H
|
||||
#define MLPP_PROBIT_REG_H
|
||||
|
||||
|
||||
#include <vector>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 1/16/21.
|
||||
//
|
||||
|
||||
#ifndef Reg_hpp
|
||||
#define Reg_hpp
|
||||
#ifndef MLPP_REG_H
|
||||
#define MLPP_REG_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef SoftmaxNet_hpp
|
||||
#define SoftmaxNet_hpp
|
||||
#ifndef MLPP_SOFTMAX_NET_H
|
||||
#define MLPP_SOFTMAX_NET_H
|
||||
|
||||
|
||||
#include <vector>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef SoftmaxReg_hpp
|
||||
#define SoftmaxReg_hpp
|
||||
#ifndef MLPP_SOFTMAX_REG_H
|
||||
#define MLPP_SOFTMAX_REG_H
|
||||
|
||||
|
||||
#include <vector>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 9/29/20.
|
||||
//
|
||||
|
||||
#ifndef Stat_hpp
|
||||
#define Stat_hpp
|
||||
#ifndef MLPP_STAT_H
|
||||
#define MLPP_STAT_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -7,8 +7,8 @@
|
||||
|
||||
// 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.
|
||||
#ifndef SVC_hpp
|
||||
#define SVC_hpp
|
||||
#ifndef MLPP_SVC_H
|
||||
#define MLPP_SVC_H
|
||||
|
||||
|
||||
#include <vector>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 10/2/20.
|
||||
//
|
||||
|
||||
#ifndef TanhReg_hpp
|
||||
#define TanhReg_hpp
|
||||
#ifndef MLPP_TANH_REG_H
|
||||
#define MLPP_TANH_REG_H
|
||||
|
||||
|
||||
#include <vector>
|
||||
|
@ -3,8 +3,8 @@
|
||||
//
|
||||
//
|
||||
|
||||
#ifndef Transforms_hpp
|
||||
#define Transforms_hpp
|
||||
#ifndef MLPP_TRANSFORMS_H
|
||||
#define MLPP_TRANSFORMS_H
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 9/29/20.
|
||||
//
|
||||
|
||||
#ifndef UniLinReg_hpp
|
||||
#define UniLinReg_hpp
|
||||
#ifndef MLPP_UNI_LIN_REG_H
|
||||
#define MLPP_UNI_LIN_REG_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 1/16/21.
|
||||
//
|
||||
|
||||
#ifndef Utilities_hpp
|
||||
#define Utilities_hpp
|
||||
#ifndef MLPP_UTILITIES_H
|
||||
#define MLPP_UTILITIES_H
|
||||
|
||||
#include <vector>
|
||||
#include <tuple>
|
||||
|
@ -4,8 +4,8 @@
|
||||
// Created by Marc Melikyan on 11/4/20.
|
||||
//
|
||||
|
||||
#ifndef WGAN_hpp
|
||||
#define WGAN_hpp
|
||||
#ifndef MLPP_WGAN_H
|
||||
#define MLPP_WGAN_H
|
||||
|
||||
#include "../hidden_layer/hidden_layer.h"
|
||||
#include "../output_layer/output_layer.h"
|
||||
|
Loading…
Reference in New Issue
Block a user