Completed
Push — master ( cf222b...4daa0a )
by Arkadiusz
03:24
created
src/Phpml/Classification/Ensemble/Bagging.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,10 +6,8 @@
 block discarded – undo
6 6
 
7 7
 use Phpml\Helper\Predictable;
8 8
 use Phpml\Helper\Trainable;
9
-use Phpml\Math\Statistic\Mean;
10 9
 use Phpml\Classification\Classifier;
11 10
 use Phpml\Classification\DecisionTree;
12
-use Phpml\Classification\NaiveBayes;
13 11
 
14 12
 class Bagging implements Classifier
15 13
 {
Please login to merge, or discard this patch.
src/Phpml/Classification/Linear/Adaline.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,9 +4,6 @@
 block discarded – undo
4 4
 
5 5
 namespace Phpml\Classification\Linear;
6 6
 
7
-use Phpml\Helper\Predictable;
8
-use Phpml\Helper\Trainable;
9
-use Phpml\Classification\Classifier;
10 7
 use Phpml\Classification\Linear\Perceptron;
11 8
 
12 9
 class Adaline extends Perceptron
Please login to merge, or discard this patch.
src/Phpml/Classification/Linear/DecisionStump.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,9 +6,7 @@
 block discarded – undo
6 6
 
7 7
 use Phpml\Helper\Predictable;
8 8
 use Phpml\Helper\Trainable;
9
-use Phpml\Classification\Classifier;
10 9
 use Phpml\Classification\DecisionTree;
11
-use Phpml\Classification\DecisionTree\DecisionTreeLeaf;
12 10
 
13 11
 class DecisionStump extends DecisionTree
14 12
 {
Please login to merge, or discard this patch.