Skip to content

Commit ef4a715

Browse files
committed
Update dependencies
1 parent 6c716b5 commit ef4a715

File tree

534 files changed

+1649
-1649
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

534 files changed

+1649
-1649
lines changed

.php-cs-fixer.dist.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
'class_attributes_separation' => true,
2828
'combine_consecutive_issets' => true,
2929
'combine_consecutive_unsets' => true,
30-
'compact_nullable_typehint' => true,
30+
'compact_nullable_type_declaration' => true,
3131
'concat_space' => ['spacing' => 'one'],
3232
'fully_qualified_strict_types' => true,
3333
'increment_style' => ['style' => 'pre'],
@@ -42,8 +42,8 @@
4242
'strategy' => 'no_multi_line',
4343
],
4444
'native_function_casing' => true,
45-
'native_function_type_declaration_casing' => true,
46-
'new_with_braces' => true,
45+
'native_type_declaration_casing' => true,
46+
'new_with_parentheses' => true,
4747
'no_alternative_syntax' => true,
4848
'no_blank_lines_after_class_opening' => true,
4949
'no_blank_lines_after_phpdoc' => true,
@@ -60,7 +60,7 @@
6060
'no_superfluous_elseif' => true,
6161
'no_trailing_comma_in_singleline' => true,
6262
'no_unneeded_control_parentheses' => true,
63-
'no_unneeded_curly_braces' => true,
63+
'no_unneeded_braces' => true,
6464
'no_unset_cast' => true,
6565
'no_unused_imports' => true,
6666
'no_useless_else' => true,

benchmarks/AnomalyDetectors/GaussianMLEBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class GaussianMLEBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\AnomalyDetectors\GaussianMLE
30+
* @var GaussianMLE
3131
*/
3232
protected $estimator;
3333

benchmarks/AnomalyDetectors/IsolationForestBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class IsolationForestBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\AnomalyDetectors\IsolationForest
30+
* @var IsolationForest
3131
*/
3232
protected $estimator;
3333

benchmarks/AnomalyDetectors/LocalOutlierFactorBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class LocalOutlierFactorBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\AnomalyDetectors\LocalOutlierFactor
30+
* @var LocalOutlierFactor
3131
*/
3232
protected $estimator;
3333

benchmarks/AnomalyDetectors/LodaBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class LodaBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\AnomalyDetectors\Loda
30+
* @var Loda
3131
*/
3232
protected $estimator;
3333

benchmarks/AnomalyDetectors/OneClassSVMBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class OneClassSVMBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\AnomalyDetectors\OneClassSVM
30+
* @var OneClassSVM
3131
*/
3232
protected $estimator;
3333

benchmarks/AnomalyDetectors/RobustZScoreBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class RobustZScoreBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\AnomalyDetectors\RobustZScore
30+
* @var RobustZScore
3131
*/
3232
protected $estimator;
3333

benchmarks/Classifiers/AdaBoostBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class AdaBoostBench
2828
protected $testing;
2929

3030
/**
31-
* @var \Rubix\ML\Classifiers\AdaBoost
31+
* @var AdaBoost
3232
*/
3333
protected $estimator;
3434

benchmarks/Classifiers/ClassificationTreeBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ClassificationTreeBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Classifiers\ClassificationTree
30+
* @var ClassificationTree
3131
*/
3232
protected $estimator;
3333

benchmarks/Classifiers/ExtraTreeClassifierBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ExtraTreeClassifierBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Classifiers\ExtraTreeClassifier
30+
* @var ExtraTreeClassifier
3131
*/
3232
protected $estimator;
3333

benchmarks/Classifiers/GaussianNBBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class GaussianNBBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Classifiers\GaussianNB
30+
* @var GaussianNB
3131
*/
3232
protected $estimator;
3333

benchmarks/Classifiers/KDNeighborsBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class KDNeighborsBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Classifiers\KDNeighbors
30+
* @var KDNeighbors
3131
*/
3232
protected $estimator;
3333

benchmarks/Classifiers/KNearestNeighborsBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class KNearestNeighborsBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Classifiers\KNearestNeighbors
30+
* @var KNearestNeighbors
3131
*/
3232
protected $estimator;
3333

benchmarks/Classifiers/LogisticRegressionBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class LogisticRegressionBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Classifiers\LogisticRegression
30+
* @var LogisticRegression
3131
*/
3232
protected $estimator;
3333

benchmarks/Classifiers/LogitBoostBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class LogitBoostBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Classifiers\LogitBoost
30+
* @var LogitBoost
3131
*/
3232
protected $estimator;
3333

benchmarks/Classifiers/MultilayerPerceptronBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MultilayerPerceptronBench
3030
protected $testing;
3131

3232
/**
33-
* @var \Rubix\ML\Classifiers\MultilayerPerceptron
33+
* @var MultilayerPerceptron
3434
*/
3535
protected $estimator;
3636

benchmarks/Classifiers/NaiveBayesBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class NaiveBayesBench
2828
protected $testing;
2929

3030
/**
31-
* @var \Rubix\ML\Classifiers\NaiveBayes
31+
* @var NaiveBayes
3232
*/
3333
protected $estimator;
3434

benchmarks/Classifiers/OneVsRestBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class OneVsRestBench
2929
protected $testing;
3030

3131
/**
32-
* @var \Rubix\ML\Classifiers\OneVsRest
32+
* @var OneVsRest
3333
*/
3434
protected $estimator;
3535

benchmarks/Classifiers/RadiusNeighborsBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class RadiusNeighborsBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Classifiers\RadiusNeighbors
30+
* @var RadiusNeighbors
3131
*/
3232
protected $estimator;
3333

benchmarks/Classifiers/RandomForestBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class RandomForestBench
2828
protected $testing;
2929

3030
/**
31-
* @var \Rubix\ML\Classifiers\RandomForest
31+
* @var RandomForest
3232
*/
3333
protected $estimator;
3434

benchmarks/Classifiers/SVCBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class SVCBench
2828
protected $testing;
2929

3030
/**
31-
* @var \Rubix\ML\Classifiers\SVC
31+
* @var SVC
3232
*/
3333
protected $estimator;
3434

benchmarks/Classifiers/SoftmaxClassifierBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class SoftmaxClassifierBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Classifiers\SoftmaxClassifier
30+
* @var SoftmaxClassifier
3131
*/
3232
protected $estimator;
3333

benchmarks/Clusterers/DBSCANBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class DBSCANBench
2020
protected $testing;
2121

2222
/**
23-
* @var \Rubix\ML\Clusterers\DBSCAN
23+
* @var DBSCAN
2424
*/
2525
protected $estimator;
2626

benchmarks/Clusterers/FuzzyCMeansBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class FuzzyCMeansBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Clusterers\FuzzyCMeans
30+
* @var FuzzyCMeans
3131
*/
3232
protected $estimator;
3333

benchmarks/Clusterers/GaussianMixtureBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class GaussianMixtureBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Clusterers\GaussianMixture
30+
* @var GaussianMixture
3131
*/
3232
protected $estimator;
3333

benchmarks/Clusterers/KMeansBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class KMeansBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Clusterers\KMeans
30+
* @var KMeans
3131
*/
3232
protected $estimator;
3333

benchmarks/Clusterers/MeanShiftBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class MeanShiftBench
2727
protected $testing;
2828

2929
/**
30-
* @var \Rubix\ML\Clusterers\MeanShift
30+
* @var MeanShift
3131
*/
3232
protected $estimator;
3333

benchmarks/Graph/Trees/BallTreeBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class BallTreeBench
2020
protected $dataset;
2121

2222
/**
23-
* @var \Rubix\ML\Graph\Trees\BallTree
23+
* @var BallTree
2424
*/
2525
protected $tree;
2626

benchmarks/Graph/Trees/KDTreeBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class KDTreeBench
2020
protected $dataset;
2121

2222
/**
23-
* @var \Rubix\ML\Graph\Trees\KDTree
23+
* @var KDTree
2424
*/
2525
protected $tree;
2626

benchmarks/Kernels/Distance/CanberraBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class CanberraBench
2424
protected $bSamples;
2525

2626
/**
27-
* @var \Rubix\ML\Kernels\Distance\Canberra
27+
* @var Canberra
2828
*/
2929
protected $kernel;
3030

benchmarks/Kernels/Distance/CosineBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CosineBench
2323
protected $bSamples;
2424

2525
/**
26-
* @var \Rubix\ML\Kernels\Distance\Cosine
26+
* @var Cosine
2727
*/
2828
protected $kernel;
2929

benchmarks/Kernels/Distance/DiagonalBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DiagonalBench
2424
protected $bSamples;
2525

2626
/**
27-
* @var \Rubix\ML\Kernels\Distance\Diagonal
27+
* @var Diagonal
2828
*/
2929
protected $kernel;
3030

benchmarks/Kernels/Distance/EuclideanBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class EuclideanBench
2424
protected $bSamples;
2525

2626
/**
27-
* @var \Rubix\ML\Kernels\Distance\Euclidean
27+
* @var Euclidean
2828
*/
2929
protected $kernel;
3030

benchmarks/Kernels/Distance/GowerBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class GowerBench
2525
protected $bSamples;
2626

2727
/**
28-
* @var \Rubix\ML\Kernels\Distance\Gower
28+
* @var Gower
2929
*/
3030
protected $kernel;
3131

benchmarks/Kernels/Distance/JaccardBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class JaccardBench
2424
protected $bSamples;
2525

2626
/**
27-
* @var \Rubix\ML\Kernels\Distance\Jaccard
27+
* @var Jaccard
2828
*/
2929
protected $kernel;
3030

benchmarks/Kernels/Distance/ManhattanBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class ManhattanBench
2424
protected $bSamples;
2525

2626
/**
27-
* @var \Rubix\ML\Kernels\Distance\Manhattan
27+
* @var Manhattan
2828
*/
2929
protected $kernel;
3030

benchmarks/Kernels/Distance/MinkowskiBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class MinkowskiBench
2424
protected $bSamples;
2525

2626
/**
27-
* @var \Rubix\ML\Kernels\Distance\Minkowski
27+
* @var Minkowski
2828
*/
2929
protected $kernel;
3030

benchmarks/Kernels/Distance/SafeEuclideanBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class SafeEuclideanBench
2525
protected $bSamples;
2626

2727
/**
28-
* @var \Rubix\ML\Kernels\Distance\SafeEuclidean
28+
* @var SafeEuclidean
2929
*/
3030
protected $kernel;
3131

benchmarks/Kernels/Distance/SparseCosineBench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class SparseCosineBench
2323
protected $bSamples;
2424

2525
/**
26-
* @var \Rubix\ML\Kernels\Distance\SparseCosine
26+
* @var SparseCosine
2727
*/
2828
protected $kernel;
2929

benchmarks/NeuralNet/ActivationFunctions/ELUBench.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
class ELUBench
1313
{
1414
/**
15-
* @var \Tensor\Matrix
15+
* @var Matrix
1616
*/
1717
protected $z;
1818

1919
/**
20-
* @var \Tensor\Matrix
20+
* @var Matrix
2121
*/
2222
protected $computed;
2323

2424
/**
25-
* @var \Rubix\ML\NeuralNet\ActivationFunctions\ELU
25+
* @var ELU
2626
*/
2727
protected $activationFn;
2828

0 commit comments

Comments
 (0)