Completed
Pull Request — master (#85)
by Marcin
04:46
created
src/Phpml/Classification/Linear/Adaline.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 
5 5
 namespace Phpml\Classification\Linear;
6 6
 
7
-use Phpml\Classification\Classifier;
8
-
9 7
 class Adaline extends Perceptron
10 8
 {
11 9
 
Please login to merge, or discard this patch.
src/Phpml/Classification/Linear/LogisticRegression.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 namespace Phpml\Classification\Linear;
6 6
 
7
-use Phpml\Classification\Classifier;
8 7
 use Phpml\Helper\Optimizer\ConjugateGradient;
9 8
 
10 9
 class LogisticRegression extends Adaline
Please login to merge, or discard this patch.
src/Phpml/DimensionReduction/LDA.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 namespace Phpml\DimensionReduction;
6 6
 
7 7
 
8
-use Phpml\Math\Statistic\Mean;
9 8
 use Phpml\Math\Matrix;
10 9
 
11 10
 class LDA extends EigenTransformerBase
Please login to merge, or discard this patch.