From 2427533e27fe722bfad4e0f2b86298c682b5e6d3 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 30 Dec 2023 00:43:39 +0100 Subject: [PATCH] Format all files. --- gdlibrary.cpp | 2 +- mlpp/activation/activation.cpp | 2 +- mlpp/activation/activation.h | 2 +- mlpp/ann/ann.cpp | 2 +- mlpp/ann/ann.h | 2 +- mlpp/auto_encoder/auto_encoder.cpp | 2 +- mlpp/auto_encoder/auto_encoder.h | 2 +- mlpp/bernoulli_nb/bernoulli_nb.cpp | 2 +- mlpp/bernoulli_nb/bernoulli_nb.h | 2 +- mlpp/c_log_log_reg/c_log_log_reg.cpp | 2 +- mlpp/c_log_log_reg/c_log_log_reg.h | 2 +- mlpp/convolutions/convolutions.cpp | 2 +- mlpp/convolutions/convolutions.h | 2 +- mlpp/cost/cost.cpp | 2 +- mlpp/cost/cost.h | 2 +- mlpp/data/data.cpp | 2 +- mlpp/data/data.h | 2 +- mlpp/dual_svc/dual_svc.cpp | 2 +- mlpp/dual_svc/dual_svc.h | 2 +- mlpp/exp_reg/exp_reg.cpp | 2 +- mlpp/exp_reg/exp_reg.h | 2 +- mlpp/gan/gan.cpp | 2 +- mlpp/gan/gan.h | 2 +- mlpp/gauss_markov_checker/gauss_markov_checker.cpp | 2 +- mlpp/gauss_markov_checker/gauss_markov_checker.h | 2 +- mlpp/gaussian_nb/gaussian_nb.cpp | 2 +- mlpp/gaussian_nb/gaussian_nb.h | 2 +- mlpp/hidden_layer/hidden_layer.cpp | 2 +- mlpp/hidden_layer/hidden_layer.h | 2 +- mlpp/hypothesis_testing/hypothesis_testing.cpp | 2 +- mlpp/hypothesis_testing/hypothesis_testing.h | 2 +- mlpp/kmeans/kmeans.cpp | 2 +- mlpp/kmeans/kmeans.h | 2 +- mlpp/knn/knn.cpp | 2 +- mlpp/knn/knn.h | 2 +- mlpp/lin_alg/lin_alg.cpp | 2 +- mlpp/lin_alg/lin_alg.h | 2 +- mlpp/lin_alg/mlpp_matrix.cpp | 2 +- mlpp/lin_alg/mlpp_matrix.h | 2 +- mlpp/lin_alg/mlpp_tensor3.cpp | 2 +- mlpp/lin_alg/mlpp_tensor3.h | 2 +- mlpp/lin_alg/mlpp_vector.cpp | 2 +- mlpp/lin_alg/mlpp_vector.h | 2 +- mlpp/lin_reg/lin_reg.cpp | 2 +- mlpp/lin_reg/lin_reg.h | 2 +- mlpp/log_reg/log_reg.cpp | 2 +- mlpp/log_reg/log_reg.h | 2 +- mlpp/mann/mann.cpp | 2 +- mlpp/mann/mann.h | 2 +- mlpp/mlp/mlp.cpp | 2 +- mlpp/mlp/mlp.h | 2 +- mlpp/multi_output_layer/multi_output_layer.cpp | 2 +- mlpp/multi_output_layer/multi_output_layer.h | 2 +- mlpp/multinomial_nb/multinomial_nb.cpp | 2 +- mlpp/multinomial_nb/multinomial_nb.h | 2 +- mlpp/numerical_analysis/numerical_analysis.cpp | 2 +- mlpp/numerical_analysis/numerical_analysis.h | 2 +- mlpp/outlier_finder/outlier_finder.cpp | 2 +- mlpp/outlier_finder/outlier_finder.h | 2 +- mlpp/output_layer/output_layer.cpp | 2 +- mlpp/output_layer/output_layer.h | 2 +- mlpp/pca/pca.cpp | 2 +- mlpp/pca/pca.h | 2 +- mlpp/probit_reg/probit_reg.cpp | 2 +- mlpp/probit_reg/probit_reg.h | 2 +- mlpp/regularization/reg.cpp | 2 +- mlpp/regularization/reg.h | 2 +- mlpp/softmax_net/softmax_net.cpp | 2 +- mlpp/softmax_net/softmax_net.h | 2 +- mlpp/softmax_reg/softmax_reg.cpp | 2 +- mlpp/softmax_reg/softmax_reg.h | 2 +- mlpp/stat/stat.cpp | 2 +- mlpp/stat/stat.h | 2 +- mlpp/svc/svc.cpp | 2 +- mlpp/svc/svc.h | 2 +- mlpp/tanh_reg/tanh_reg.cpp | 2 +- mlpp/tanh_reg/tanh_reg.h | 2 +- mlpp/transforms/transforms.cpp | 2 +- mlpp/transforms/transforms.h | 2 +- mlpp/uni_lin_reg/uni_lin_reg.cpp | 2 +- mlpp/uni_lin_reg/uni_lin_reg.h | 2 +- mlpp/utilities/utilities.cpp | 2 +- mlpp/utilities/utilities.h | 2 +- mlpp/wgan/wgan.cpp | 2 +- mlpp/wgan/wgan.h | 2 +- register_types.cpp | 2 +- register_types.h | 2 +- src/gdexample.cpp | 2 +- src/gdexample.h | 2 +- test/mlpp_matrix_tests.cpp | 2 +- test/mlpp_matrix_tests.h | 2 +- test/mlpp_tests.cpp | 2 +- test/mlpp_tests.h | 2 +- 93 files changed, 93 insertions(+), 93 deletions(-) diff --git a/gdlibrary.cpp b/gdlibrary.cpp index 6dc1756..cb846ad 100644 --- a/gdlibrary.cpp +++ b/gdlibrary.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/activation/activation.cpp b/mlpp/activation/activation.cpp index 0fa7277..cdadcd9 100644 --- a/mlpp/activation/activation.cpp +++ b/mlpp/activation/activation.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/activation/activation.h b/mlpp/activation/activation.h index 0a256f3..2f1914e 100644 --- a/mlpp/activation/activation.h +++ b/mlpp/activation/activation.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/ann/ann.cpp b/mlpp/ann/ann.cpp index c5a1d03..f3fa84b 100644 --- a/mlpp/ann/ann.cpp +++ b/mlpp/ann/ann.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/ann/ann.h b/mlpp/ann/ann.h index 109917e..e9d133b 100644 --- a/mlpp/ann/ann.h +++ b/mlpp/ann/ann.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/auto_encoder/auto_encoder.cpp b/mlpp/auto_encoder/auto_encoder.cpp index 090aebf..d979ebe 100644 --- a/mlpp/auto_encoder/auto_encoder.cpp +++ b/mlpp/auto_encoder/auto_encoder.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/auto_encoder/auto_encoder.h b/mlpp/auto_encoder/auto_encoder.h index 96d882a..85092cc 100644 --- a/mlpp/auto_encoder/auto_encoder.h +++ b/mlpp/auto_encoder/auto_encoder.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/bernoulli_nb/bernoulli_nb.cpp b/mlpp/bernoulli_nb/bernoulli_nb.cpp index 28c8d2d..bc447d5 100644 --- a/mlpp/bernoulli_nb/bernoulli_nb.cpp +++ b/mlpp/bernoulli_nb/bernoulli_nb.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/bernoulli_nb/bernoulli_nb.h b/mlpp/bernoulli_nb/bernoulli_nb.h index 3800a70..e22fd2e 100644 --- a/mlpp/bernoulli_nb/bernoulli_nb.h +++ b/mlpp/bernoulli_nb/bernoulli_nb.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/c_log_log_reg/c_log_log_reg.cpp b/mlpp/c_log_log_reg/c_log_log_reg.cpp index 851bc76..209bf14 100644 --- a/mlpp/c_log_log_reg/c_log_log_reg.cpp +++ b/mlpp/c_log_log_reg/c_log_log_reg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/c_log_log_reg/c_log_log_reg.h b/mlpp/c_log_log_reg/c_log_log_reg.h index 39236ab..cad606c 100644 --- a/mlpp/c_log_log_reg/c_log_log_reg.h +++ b/mlpp/c_log_log_reg/c_log_log_reg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/convolutions/convolutions.cpp b/mlpp/convolutions/convolutions.cpp index dbbc200..1592b05 100644 --- a/mlpp/convolutions/convolutions.cpp +++ b/mlpp/convolutions/convolutions.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/convolutions/convolutions.h b/mlpp/convolutions/convolutions.h index 4d836a6..4fffd10 100644 --- a/mlpp/convolutions/convolutions.h +++ b/mlpp/convolutions/convolutions.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/cost/cost.cpp b/mlpp/cost/cost.cpp index e380990..2fb5bf2 100644 --- a/mlpp/cost/cost.cpp +++ b/mlpp/cost/cost.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/cost/cost.h b/mlpp/cost/cost.h index da71e9e..4db52b2 100644 --- a/mlpp/cost/cost.h +++ b/mlpp/cost/cost.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/data/data.cpp b/mlpp/data/data.cpp index e1e0cf6..ac82be7 100644 --- a/mlpp/data/data.cpp +++ b/mlpp/data/data.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/data/data.h b/mlpp/data/data.h index 07ec475..33eafb8 100644 --- a/mlpp/data/data.h +++ b/mlpp/data/data.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/dual_svc/dual_svc.cpp b/mlpp/dual_svc/dual_svc.cpp index 584b0f3..f5e1523 100644 --- a/mlpp/dual_svc/dual_svc.cpp +++ b/mlpp/dual_svc/dual_svc.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/dual_svc/dual_svc.h b/mlpp/dual_svc/dual_svc.h index 0bd7ba6..12e31b7 100644 --- a/mlpp/dual_svc/dual_svc.h +++ b/mlpp/dual_svc/dual_svc.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/exp_reg/exp_reg.cpp b/mlpp/exp_reg/exp_reg.cpp index ec36fe4..2432f09 100644 --- a/mlpp/exp_reg/exp_reg.cpp +++ b/mlpp/exp_reg/exp_reg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/exp_reg/exp_reg.h b/mlpp/exp_reg/exp_reg.h index 2872846..7de8717 100644 --- a/mlpp/exp_reg/exp_reg.h +++ b/mlpp/exp_reg/exp_reg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/gan/gan.cpp b/mlpp/gan/gan.cpp index 1bc78f6..7073e8c 100644 --- a/mlpp/gan/gan.cpp +++ b/mlpp/gan/gan.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/gan/gan.h b/mlpp/gan/gan.h index e85a60a..53f556f 100644 --- a/mlpp/gan/gan.h +++ b/mlpp/gan/gan.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/gauss_markov_checker/gauss_markov_checker.cpp b/mlpp/gauss_markov_checker/gauss_markov_checker.cpp index 1992d5b..fc67321 100644 --- a/mlpp/gauss_markov_checker/gauss_markov_checker.cpp +++ b/mlpp/gauss_markov_checker/gauss_markov_checker.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/gauss_markov_checker/gauss_markov_checker.h b/mlpp/gauss_markov_checker/gauss_markov_checker.h index 79193a4..59fa946 100644 --- a/mlpp/gauss_markov_checker/gauss_markov_checker.h +++ b/mlpp/gauss_markov_checker/gauss_markov_checker.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/gaussian_nb/gaussian_nb.cpp b/mlpp/gaussian_nb/gaussian_nb.cpp index a933304..53207e7 100644 --- a/mlpp/gaussian_nb/gaussian_nb.cpp +++ b/mlpp/gaussian_nb/gaussian_nb.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/gaussian_nb/gaussian_nb.h b/mlpp/gaussian_nb/gaussian_nb.h index 1052e4e..9c0b438 100644 --- a/mlpp/gaussian_nb/gaussian_nb.h +++ b/mlpp/gaussian_nb/gaussian_nb.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/hidden_layer/hidden_layer.cpp b/mlpp/hidden_layer/hidden_layer.cpp index 5d75dd9..4eea882 100644 --- a/mlpp/hidden_layer/hidden_layer.cpp +++ b/mlpp/hidden_layer/hidden_layer.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/hidden_layer/hidden_layer.h b/mlpp/hidden_layer/hidden_layer.h index dbaa424..6d03b2f 100644 --- a/mlpp/hidden_layer/hidden_layer.h +++ b/mlpp/hidden_layer/hidden_layer.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/hypothesis_testing/hypothesis_testing.cpp b/mlpp/hypothesis_testing/hypothesis_testing.cpp index 5cef41b..8477608 100644 --- a/mlpp/hypothesis_testing/hypothesis_testing.cpp +++ b/mlpp/hypothesis_testing/hypothesis_testing.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/hypothesis_testing/hypothesis_testing.h b/mlpp/hypothesis_testing/hypothesis_testing.h index 4eef0b7..67fa02e 100644 --- a/mlpp/hypothesis_testing/hypothesis_testing.h +++ b/mlpp/hypothesis_testing/hypothesis_testing.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/kmeans/kmeans.cpp b/mlpp/kmeans/kmeans.cpp index 8219a5a..f14658a 100644 --- a/mlpp/kmeans/kmeans.cpp +++ b/mlpp/kmeans/kmeans.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/kmeans/kmeans.h b/mlpp/kmeans/kmeans.h index 8090dc3..a35384d 100644 --- a/mlpp/kmeans/kmeans.h +++ b/mlpp/kmeans/kmeans.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/knn/knn.cpp b/mlpp/knn/knn.cpp index dd5da4d..976afdd 100644 --- a/mlpp/knn/knn.cpp +++ b/mlpp/knn/knn.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/knn/knn.h b/mlpp/knn/knn.h index 17f79bf..cf14953 100644 --- a/mlpp/knn/knn.h +++ b/mlpp/knn/knn.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_alg/lin_alg.cpp b/mlpp/lin_alg/lin_alg.cpp index ccd44b0..fc029b9 100644 --- a/mlpp/lin_alg/lin_alg.cpp +++ b/mlpp/lin_alg/lin_alg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_alg/lin_alg.h b/mlpp/lin_alg/lin_alg.h index 8d2d898..43de03e 100644 --- a/mlpp/lin_alg/lin_alg.h +++ b/mlpp/lin_alg/lin_alg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_alg/mlpp_matrix.cpp b/mlpp/lin_alg/mlpp_matrix.cpp index c861e43..08ea4fa 100644 --- a/mlpp/lin_alg/mlpp_matrix.cpp +++ b/mlpp/lin_alg/mlpp_matrix.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_alg/mlpp_matrix.h b/mlpp/lin_alg/mlpp_matrix.h index 40869e6..6f4d762 100644 --- a/mlpp/lin_alg/mlpp_matrix.h +++ b/mlpp/lin_alg/mlpp_matrix.h @@ -9,7 +9,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_alg/mlpp_tensor3.cpp b/mlpp/lin_alg/mlpp_tensor3.cpp index 6e9eaca..47cfb45 100644 --- a/mlpp/lin_alg/mlpp_tensor3.cpp +++ b/mlpp/lin_alg/mlpp_tensor3.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_alg/mlpp_tensor3.h b/mlpp/lin_alg/mlpp_tensor3.h index 58f84c4..45910d8 100644 --- a/mlpp/lin_alg/mlpp_tensor3.h +++ b/mlpp/lin_alg/mlpp_tensor3.h @@ -9,7 +9,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_alg/mlpp_vector.cpp b/mlpp/lin_alg/mlpp_vector.cpp index 164b302..195479d 100644 --- a/mlpp/lin_alg/mlpp_vector.cpp +++ b/mlpp/lin_alg/mlpp_vector.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_alg/mlpp_vector.h b/mlpp/lin_alg/mlpp_vector.h index 09a6108..f654d28 100644 --- a/mlpp/lin_alg/mlpp_vector.h +++ b/mlpp/lin_alg/mlpp_vector.h @@ -9,7 +9,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_reg/lin_reg.cpp b/mlpp/lin_reg/lin_reg.cpp index 60e22b0..b5f3648 100644 --- a/mlpp/lin_reg/lin_reg.cpp +++ b/mlpp/lin_reg/lin_reg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/lin_reg/lin_reg.h b/mlpp/lin_reg/lin_reg.h index dd6fdf7..c68fac0 100644 --- a/mlpp/lin_reg/lin_reg.h +++ b/mlpp/lin_reg/lin_reg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/log_reg/log_reg.cpp b/mlpp/log_reg/log_reg.cpp index 48dff89..7767ff1 100644 --- a/mlpp/log_reg/log_reg.cpp +++ b/mlpp/log_reg/log_reg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/log_reg/log_reg.h b/mlpp/log_reg/log_reg.h index 7fc7366..e32342a 100644 --- a/mlpp/log_reg/log_reg.h +++ b/mlpp/log_reg/log_reg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/mann/mann.cpp b/mlpp/mann/mann.cpp index 9ec339a..04d6d6d 100644 --- a/mlpp/mann/mann.cpp +++ b/mlpp/mann/mann.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/mann/mann.h b/mlpp/mann/mann.h index 01cea70..1ea895b 100644 --- a/mlpp/mann/mann.h +++ b/mlpp/mann/mann.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/mlp/mlp.cpp b/mlpp/mlp/mlp.cpp index 22d20f8..6b07579 100644 --- a/mlpp/mlp/mlp.cpp +++ b/mlpp/mlp/mlp.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/mlp/mlp.h b/mlpp/mlp/mlp.h index 7ffd110..5048161 100644 --- a/mlpp/mlp/mlp.h +++ b/mlpp/mlp/mlp.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/multi_output_layer/multi_output_layer.cpp b/mlpp/multi_output_layer/multi_output_layer.cpp index 3634ffc..6cb941d 100644 --- a/mlpp/multi_output_layer/multi_output_layer.cpp +++ b/mlpp/multi_output_layer/multi_output_layer.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/multi_output_layer/multi_output_layer.h b/mlpp/multi_output_layer/multi_output_layer.h index e4d4df2..0c63fc3 100644 --- a/mlpp/multi_output_layer/multi_output_layer.h +++ b/mlpp/multi_output_layer/multi_output_layer.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/multinomial_nb/multinomial_nb.cpp b/mlpp/multinomial_nb/multinomial_nb.cpp index 95afd0c..ae83edb 100644 --- a/mlpp/multinomial_nb/multinomial_nb.cpp +++ b/mlpp/multinomial_nb/multinomial_nb.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/multinomial_nb/multinomial_nb.h b/mlpp/multinomial_nb/multinomial_nb.h index 50fda74..3c3c0c0 100644 --- a/mlpp/multinomial_nb/multinomial_nb.h +++ b/mlpp/multinomial_nb/multinomial_nb.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/numerical_analysis/numerical_analysis.cpp b/mlpp/numerical_analysis/numerical_analysis.cpp index f45e330..55f1629 100644 --- a/mlpp/numerical_analysis/numerical_analysis.cpp +++ b/mlpp/numerical_analysis/numerical_analysis.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/numerical_analysis/numerical_analysis.h b/mlpp/numerical_analysis/numerical_analysis.h index f73e567..682f663 100644 --- a/mlpp/numerical_analysis/numerical_analysis.h +++ b/mlpp/numerical_analysis/numerical_analysis.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/outlier_finder/outlier_finder.cpp b/mlpp/outlier_finder/outlier_finder.cpp index f2a6e2c..7b1ade9 100644 --- a/mlpp/outlier_finder/outlier_finder.cpp +++ b/mlpp/outlier_finder/outlier_finder.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/outlier_finder/outlier_finder.h b/mlpp/outlier_finder/outlier_finder.h index 1154780..66654ac 100644 --- a/mlpp/outlier_finder/outlier_finder.h +++ b/mlpp/outlier_finder/outlier_finder.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/output_layer/output_layer.cpp b/mlpp/output_layer/output_layer.cpp index a440951..2e6fee0 100644 --- a/mlpp/output_layer/output_layer.cpp +++ b/mlpp/output_layer/output_layer.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/output_layer/output_layer.h b/mlpp/output_layer/output_layer.h index a738c27..a8227ae 100644 --- a/mlpp/output_layer/output_layer.h +++ b/mlpp/output_layer/output_layer.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/pca/pca.cpp b/mlpp/pca/pca.cpp index 8554b3c..3dbe851 100644 --- a/mlpp/pca/pca.cpp +++ b/mlpp/pca/pca.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/pca/pca.h b/mlpp/pca/pca.h index 1724c52..f081a8e 100644 --- a/mlpp/pca/pca.h +++ b/mlpp/pca/pca.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/probit_reg/probit_reg.cpp b/mlpp/probit_reg/probit_reg.cpp index 4a01ff1..015356a 100644 --- a/mlpp/probit_reg/probit_reg.cpp +++ b/mlpp/probit_reg/probit_reg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/probit_reg/probit_reg.h b/mlpp/probit_reg/probit_reg.h index 14cd930..f064a85 100644 --- a/mlpp/probit_reg/probit_reg.h +++ b/mlpp/probit_reg/probit_reg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/regularization/reg.cpp b/mlpp/regularization/reg.cpp index f2e4d75..c55e0bf 100644 --- a/mlpp/regularization/reg.cpp +++ b/mlpp/regularization/reg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/regularization/reg.h b/mlpp/regularization/reg.h index c41d8d4..3d4f6e7 100644 --- a/mlpp/regularization/reg.h +++ b/mlpp/regularization/reg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/softmax_net/softmax_net.cpp b/mlpp/softmax_net/softmax_net.cpp index f3218a0..87b241f 100644 --- a/mlpp/softmax_net/softmax_net.cpp +++ b/mlpp/softmax_net/softmax_net.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/softmax_net/softmax_net.h b/mlpp/softmax_net/softmax_net.h index b5c0300..b39da29 100644 --- a/mlpp/softmax_net/softmax_net.h +++ b/mlpp/softmax_net/softmax_net.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/softmax_reg/softmax_reg.cpp b/mlpp/softmax_reg/softmax_reg.cpp index 966e663..208ac13 100644 --- a/mlpp/softmax_reg/softmax_reg.cpp +++ b/mlpp/softmax_reg/softmax_reg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/softmax_reg/softmax_reg.h b/mlpp/softmax_reg/softmax_reg.h index 2759cf3..8678d53 100644 --- a/mlpp/softmax_reg/softmax_reg.h +++ b/mlpp/softmax_reg/softmax_reg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/stat/stat.cpp b/mlpp/stat/stat.cpp index 8847e67..0535835 100644 --- a/mlpp/stat/stat.cpp +++ b/mlpp/stat/stat.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/stat/stat.h b/mlpp/stat/stat.h index 43b36ad..f22e445 100644 --- a/mlpp/stat/stat.h +++ b/mlpp/stat/stat.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/svc/svc.cpp b/mlpp/svc/svc.cpp index df29a22..63550c7 100644 --- a/mlpp/svc/svc.cpp +++ b/mlpp/svc/svc.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/svc/svc.h b/mlpp/svc/svc.h index e41cf39..9777db7 100644 --- a/mlpp/svc/svc.h +++ b/mlpp/svc/svc.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/tanh_reg/tanh_reg.cpp b/mlpp/tanh_reg/tanh_reg.cpp index ee6e94d..ea4c5dc 100644 --- a/mlpp/tanh_reg/tanh_reg.cpp +++ b/mlpp/tanh_reg/tanh_reg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/tanh_reg/tanh_reg.h b/mlpp/tanh_reg/tanh_reg.h index f626b5d..8112975 100644 --- a/mlpp/tanh_reg/tanh_reg.h +++ b/mlpp/tanh_reg/tanh_reg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/transforms/transforms.cpp b/mlpp/transforms/transforms.cpp index 33322d2..81b6999 100644 --- a/mlpp/transforms/transforms.cpp +++ b/mlpp/transforms/transforms.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/transforms/transforms.h b/mlpp/transforms/transforms.h index 73f48e7..f06e7f3 100644 --- a/mlpp/transforms/transforms.h +++ b/mlpp/transforms/transforms.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/uni_lin_reg/uni_lin_reg.cpp b/mlpp/uni_lin_reg/uni_lin_reg.cpp index 2b02021..73788f3 100644 --- a/mlpp/uni_lin_reg/uni_lin_reg.cpp +++ b/mlpp/uni_lin_reg/uni_lin_reg.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/uni_lin_reg/uni_lin_reg.h b/mlpp/uni_lin_reg/uni_lin_reg.h index b3f0aee..d0a7a80 100644 --- a/mlpp/uni_lin_reg/uni_lin_reg.h +++ b/mlpp/uni_lin_reg/uni_lin_reg.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/utilities/utilities.cpp b/mlpp/utilities/utilities.cpp index e441ee0..9dff10f 100644 --- a/mlpp/utilities/utilities.cpp +++ b/mlpp/utilities/utilities.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/utilities/utilities.h b/mlpp/utilities/utilities.h index 9d0ccc3..8aff3f5 100644 --- a/mlpp/utilities/utilities.h +++ b/mlpp/utilities/utilities.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/wgan/wgan.cpp b/mlpp/wgan/wgan.cpp index 88ea8a2..66a29bd 100644 --- a/mlpp/wgan/wgan.cpp +++ b/mlpp/wgan/wgan.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/mlpp/wgan/wgan.h b/mlpp/wgan/wgan.h index f59b630..de76aaa 100644 --- a/mlpp/wgan/wgan.h +++ b/mlpp/wgan/wgan.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/register_types.cpp b/register_types.cpp index 7bb44c7..7623d6d 100644 --- a/register_types.cpp +++ b/register_types.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/register_types.h b/register_types.h index 6eada88..0df3019 100644 --- a/register_types.h +++ b/register_types.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/src/gdexample.cpp b/src/gdexample.cpp index b580467..5dfef45 100644 --- a/src/gdexample.cpp +++ b/src/gdexample.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/src/gdexample.h b/src/gdexample.h index 52dd503..2c1109a 100644 --- a/src/gdexample.h +++ b/src/gdexample.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/test/mlpp_matrix_tests.cpp b/test/mlpp_matrix_tests.cpp index 9aa4399..899a216 100644 --- a/test/mlpp_matrix_tests.cpp +++ b/test/mlpp_matrix_tests.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/test/mlpp_matrix_tests.h b/test/mlpp_matrix_tests.h index 76b8a4a..4781415 100644 --- a/test/mlpp_matrix_tests.h +++ b/test/mlpp_matrix_tests.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/test/mlpp_tests.cpp b/test/mlpp_tests.cpp index 28782a4..37c99a4 100644 --- a/test/mlpp_tests.cpp +++ b/test/mlpp_tests.cpp @@ -5,7 +5,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ diff --git a/test/mlpp_tests.h b/test/mlpp_tests.h index abd0790..2f822c3 100644 --- a/test/mlpp_tests.h +++ b/test/mlpp_tests.h @@ -8,7 +8,7 @@ /* PMLPP Machine Learning Library */ /* https://github.com/Relintai/pmlpp */ /*************************************************************************/ -/* Copyright (c) 2022-present Péter Magyar. */ +/* Copyright (c) 2023-present Péter Magyar. */ /* Copyright (c) 2022-2023 Marc Melikyan */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */