Completed
Push — develop ( 95bfc8...365a9b )
by Arkadiusz
02:42
created
src/Phpml/Regression/SVR.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function __construct(
25 25
         int $kernel = Kernel::RBF, int $degree = 3, float $epsilon = 0.1, float $cost = 1.0,
26
-        float $gamma = null, float $coef0 = 0.0,  float $tolerance = 0.001,
26
+        float $gamma = null, float $coef0 = 0.0, float $tolerance = 0.001,
27 27
         int $cacheSize = 100, bool $shrinking = true
28 28
     ) {
29 29
         parent::__construct(Type::EPSILON_SVR, $kernel, $cost, 0.5, $degree, $gamma, $coef0, $epsilon, $tolerance, $cacheSize, $shrinking, false);
Please login to merge, or discard this patch.