diff --git a/tests/Phpml/Association/AprioriTest.php b/tests/Phpml/Association/AprioriTest.php index 65d5ea5..c715d6f 100644 --- a/tests/Phpml/Association/AprioriTest.php +++ b/tests/Phpml/Association/AprioriTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification; +namespace tests\Phpml\Classification; use Phpml\Association\Apriori; use Phpml\ModelManager; diff --git a/tests/Phpml/Classification/DecisionTree/DecisionTreeLeafTest.php b/tests/Phpml/Classification/DecisionTree/DecisionTreeLeafTest.php index 72f1b95..854e4e5 100644 --- a/tests/Phpml/Classification/DecisionTree/DecisionTreeLeafTest.php +++ b/tests/Phpml/Classification/DecisionTree/DecisionTreeLeafTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification\DecisionTree; +namespace tests\Phpml\Classification\DecisionTree; use Phpml\Classification\DecisionTree\DecisionTreeLeaf; use PHPUnit\Framework\TestCase; diff --git a/tests/Phpml/Classification/DecisionTreeTest.php b/tests/Phpml/Classification/DecisionTreeTest.php index 3b61166..f0ebc04 100644 --- a/tests/Phpml/Classification/DecisionTreeTest.php +++ b/tests/Phpml/Classification/DecisionTreeTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification; +namespace tests\Phpml\Classification; use Phpml\Classification\DecisionTree; use Phpml\ModelManager; diff --git a/tests/Phpml/Classification/Ensemble/AdaBoostTest.php b/tests/Phpml/Classification/Ensemble/AdaBoostTest.php index 8c17752..8b8d0db 100644 --- a/tests/Phpml/Classification/Ensemble/AdaBoostTest.php +++ b/tests/Phpml/Classification/Ensemble/AdaBoostTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification\Ensemble; +namespace tests\Phpml\Classification\Ensemble; use Phpml\Classification\Ensemble\AdaBoost; use Phpml\ModelManager; diff --git a/tests/Phpml/Classification/Ensemble/BaggingTest.php b/tests/Phpml/Classification/Ensemble/BaggingTest.php index a00b176..a158e3e 100644 --- a/tests/Phpml/Classification/Ensemble/BaggingTest.php +++ b/tests/Phpml/Classification/Ensemble/BaggingTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification\Ensemble; +namespace tests\Phpml\Classification\Ensemble; use Phpml\Classification\Ensemble\Bagging; use Phpml\Classification\DecisionTree; diff --git a/tests/Phpml/Classification/Ensemble/RandomForestTest.php b/tests/Phpml/Classification/Ensemble/RandomForestTest.php index 8468893..cc1cd0f 100644 --- a/tests/Phpml/Classification/Ensemble/RandomForestTest.php +++ b/tests/Phpml/Classification/Ensemble/RandomForestTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification\Ensemble; +namespace tests\Phpml\Classification\Ensemble; use Phpml\Classification\Ensemble\RandomForest; use Phpml\Classification\DecisionTree; diff --git a/tests/Phpml/Classification/KNearestNeighborsTest.php b/tests/Phpml/Classification/KNearestNeighborsTest.php index ea9db77..aeee5ef 100644 --- a/tests/Phpml/Classification/KNearestNeighborsTest.php +++ b/tests/Phpml/Classification/KNearestNeighborsTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification; +namespace tests\Phpml\Classification; use Phpml\Classification\KNearestNeighbors; use Phpml\Math\Distance\Chebyshev; diff --git a/tests/Phpml/Classification/Linear/AdalineTest.php b/tests/Phpml/Classification/Linear/AdalineTest.php index da69598..5989462 100644 --- a/tests/Phpml/Classification/Linear/AdalineTest.php +++ b/tests/Phpml/Classification/Linear/AdalineTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification\Linear; +namespace tests\Phpml\Classification\Linear; use Phpml\Classification\Linear\Adaline; use Phpml\ModelManager; diff --git a/tests/Phpml/Classification/Linear/DecisionStumpTest.php b/tests/Phpml/Classification/Linear/DecisionStumpTest.php index 4060ce3..678544e 100644 --- a/tests/Phpml/Classification/Linear/DecisionStumpTest.php +++ b/tests/Phpml/Classification/Linear/DecisionStumpTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification\Linear; +namespace tests\Phpml\Classification\Linear; use Phpml\Classification\Linear\DecisionStump; use Phpml\ModelManager; diff --git a/tests/Phpml/Classification/Linear/PerceptronTest.php b/tests/Phpml/Classification/Linear/PerceptronTest.php index 132a6d7..c01da33 100644 --- a/tests/Phpml/Classification/Linear/PerceptronTest.php +++ b/tests/Phpml/Classification/Linear/PerceptronTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification\Linear; +namespace tests\Phpml\Classification\Linear; use Phpml\Classification\Linear\Perceptron; use Phpml\ModelManager; diff --git a/tests/Phpml/Classification/NaiveBayesTest.php b/tests/Phpml/Classification/NaiveBayesTest.php index 9b2171a..82c69eb 100644 --- a/tests/Phpml/Classification/NaiveBayesTest.php +++ b/tests/Phpml/Classification/NaiveBayesTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification; +namespace tests\Phpml\Classification; use Phpml\Classification\NaiveBayes; use Phpml\ModelManager; diff --git a/tests/Phpml/Classification/SVCTest.php b/tests/Phpml/Classification/SVCTest.php index 89c27e3..f143eef 100644 --- a/tests/Phpml/Classification/SVCTest.php +++ b/tests/Phpml/Classification/SVCTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Classification; +namespace tests\Phpml\Classification; use Phpml\Classification\SVC; use Phpml\SupportVectorMachine\Kernel; diff --git a/tests/Phpml/Clustering/DBSCANTest.php b/tests/Phpml/Clustering/DBSCANTest.php index 2d959ac..31fc1e6 100644 --- a/tests/Phpml/Clustering/DBSCANTest.php +++ b/tests/Phpml/Clustering/DBSCANTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Clustering; +namespace tests\Phpml\Clustering; use Phpml\Clustering\DBSCAN; use PHPUnit\Framework\TestCase; diff --git a/tests/Phpml/Clustering/FuzzyCMeansTest.php b/tests/Phpml/Clustering/FuzzyCMeansTest.php index 68cc0db..39f2643 100644 --- a/tests/Phpml/Clustering/FuzzyCMeansTest.php +++ b/tests/Phpml/Clustering/FuzzyCMeansTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Clustering; +namespace tests\Phpml\Clustering; use Phpml\Clustering\FuzzyCMeans; use PHPUnit\Framework\TestCase; diff --git a/tests/Phpml/Clustering/KMeansTest.php b/tests/Phpml/Clustering/KMeansTest.php index c25306b..43d41ee 100644 --- a/tests/Phpml/Clustering/KMeansTest.php +++ b/tests/Phpml/Clustering/KMeansTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Clustering; +namespace tests\Phpml\Clustering; use Phpml\Clustering\KMeans; use PHPUnit\Framework\TestCase; diff --git a/tests/Phpml/DimensionReduction/KernelPCATest.php b/tests/Phpml/DimensionReduction/KernelPCATest.php index 14b2d7d..e586fc8 100644 --- a/tests/Phpml/DimensionReduction/KernelPCATest.php +++ b/tests/Phpml/DimensionReduction/KernelPCATest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\DimensionReduction; +namespace tests\Phpml\DimensionReduction; use Phpml\DimensionReduction\KernelPCA; use PHPUnit\Framework\TestCase; diff --git a/tests/Phpml/DimensionReduction/LDATest.php b/tests/Phpml/DimensionReduction/LDATest.php index 713e205..637fb1e 100644 --- a/tests/Phpml/DimensionReduction/LDATest.php +++ b/tests/Phpml/DimensionReduction/LDATest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\DimensionReduction; +namespace tests\Phpml\DimensionReduction; use Phpml\DimensionReduction\LDA; use Phpml\Dataset\Demo\IrisDataset; diff --git a/tests/Phpml/DimensionReduction/PCATest.php b/tests/Phpml/DimensionReduction/PCATest.php index a4784f9..c26782a 100644 --- a/tests/Phpml/DimensionReduction/PCATest.php +++ b/tests/Phpml/DimensionReduction/PCATest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\DimensionReduction; +namespace tests\Phpml\DimensionReduction; use Phpml\DimensionReduction\PCA; use PHPUnit\Framework\TestCase; diff --git a/tests/Phpml/Math/LinearAlgebra/EigenDecompositionTest.php b/tests/Phpml/Math/LinearAlgebra/EigenDecompositionTest.php index e2c615e..8293d5e 100644 --- a/tests/Phpml/Math/LinearAlgebra/EigenDecompositionTest.php +++ b/tests/Phpml/Math/LinearAlgebra/EigenDecompositionTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Math\LinearAlgebra; +namespace tests\Phpml\Math\LinearAlgebra; use Phpml\Math\LinearAlgebra\EigenvalueDecomposition; use Phpml\Math\Matrix; diff --git a/tests/Phpml/Math/Statistic/CovarianceTest.php b/tests/Phpml/Math/Statistic/CovarianceTest.php index 4b025a3..d2abe7b 100644 --- a/tests/Phpml/Math/Statistic/CovarianceTest.php +++ b/tests/Phpml/Math/Statistic/CovarianceTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Math\Statistic; +namespace tests\Phpml\Math\Statistic; use Phpml\Math\Statistic\Covariance; use Phpml\Math\Statistic\Mean; diff --git a/tests/Phpml/Preprocessing/ImputerTest.php b/tests/Phpml/Preprocessing/ImputerTest.php index e3e0852..2f5c31b 100644 --- a/tests/Phpml/Preprocessing/ImputerTest.php +++ b/tests/Phpml/Preprocessing/ImputerTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Preprocessing; +namespace tests\Phpml\Preprocessing; use Phpml\Preprocessing\Imputer; use Phpml\Preprocessing\Imputer\Strategy\MeanStrategy; diff --git a/tests/Phpml/Preprocessing/NormalizerTest.php b/tests/Phpml/Preprocessing/NormalizerTest.php index 5c8efb1..542eef5 100644 --- a/tests/Phpml/Preprocessing/NormalizerTest.php +++ b/tests/Phpml/Preprocessing/NormalizerTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Preprocessing; +namespace tests\Phpml\Preprocessing; use Phpml\Preprocessing\Normalizer; use PHPUnit\Framework\TestCase; diff --git a/tests/Phpml/Regression/LeastSquaresTest.php b/tests/Phpml/Regression/LeastSquaresTest.php index 96c97dc..f4405f4 100644 --- a/tests/Phpml/Regression/LeastSquaresTest.php +++ b/tests/Phpml/Regression/LeastSquaresTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Regression; +namespace tests\Phpml\Regression; use Phpml\Regression\LeastSquares; use Phpml\ModelManager; diff --git a/tests/Phpml/Regression/SVRTest.php b/tests/Phpml/Regression/SVRTest.php index d334973..e8f77de 100644 --- a/tests/Phpml/Regression/SVRTest.php +++ b/tests/Phpml/Regression/SVRTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Regression; +namespace tests\Phpml\Regression; use Phpml\Regression\SVR; use Phpml\SupportVectorMachine\Kernel; diff --git a/tests/Phpml/SupportVectorMachine/DataTransformerTest.php b/tests/Phpml/SupportVectorMachine/DataTransformerTest.php index 33d52c0..9aa1558 100644 --- a/tests/Phpml/SupportVectorMachine/DataTransformerTest.php +++ b/tests/Phpml/SupportVectorMachine/DataTransformerTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\SupportVectorMachine; +namespace tests\Phpml\SupportVectorMachine; use Phpml\SupportVectorMachine\DataTransformer; use PHPUnit\Framework\TestCase; diff --git a/tests/Phpml/SupportVectorMachine/SupportVectorMachineTest.php b/tests/Phpml/SupportVectorMachine/SupportVectorMachineTest.php index ca9f299..1953829 100644 --- a/tests/Phpml/SupportVectorMachine/SupportVectorMachineTest.php +++ b/tests/Phpml/SupportVectorMachine/SupportVectorMachineTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\SupportVectorMachine; +namespace tests\Phpml\SupportVectorMachine; use Phpml\SupportVectorMachine\Kernel; use Phpml\SupportVectorMachine\SupportVectorMachine; diff --git a/tests/Phpml/Tokenization/WhitespaceTokenizerTest.php b/tests/Phpml/Tokenization/WhitespaceTokenizerTest.php index 1133835..97fa833 100644 --- a/tests/Phpml/Tokenization/WhitespaceTokenizerTest.php +++ b/tests/Phpml/Tokenization/WhitespaceTokenizerTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Tokenization; +namespace tests\Phpml\Tokenization; use Phpml\Tokenization\WhitespaceTokenizer; use PHPUnit\Framework\TestCase; diff --git a/tests/Phpml/Tokenization/WordTokenizerTest.php b/tests/Phpml/Tokenization/WordTokenizerTest.php index 3a6abba..09db222 100644 --- a/tests/Phpml/Tokenization/WordTokenizerTest.php +++ b/tests/Phpml/Tokenization/WordTokenizerTest.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace tests\Tokenization; +namespace tests\Phpml\Tokenization; use Phpml\Tokenization\WordTokenizer; use PHPUnit\Framework\TestCase;