Skip to content

Commit

Permalink
Fixes after new php-cs-fixer v2.0
Browse files Browse the repository at this point in the history
akondas committed Dec 12, 2016
1 parent da56ce4 commit df28656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Phpml/Regression/SVR.php
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ class SVR extends SupportVectorMachine implements Regression
*/
public function __construct(
int $kernel = Kernel::RBF, int $degree = 3, float $epsilon = 0.1, float $cost = 1.0,
float $gamma = null, float $coef0 = 0.0, float $tolerance = 0.001,
float $gamma = null, float $coef0 = 0.0, float $tolerance = 0.001,
int $cacheSize = 100, bool $shrinking = true
) {
parent::__construct(Type::EPSILON_SVR, $kernel, $cost, 0.5, $degree, $gamma, $coef0, $epsilon, $tolerance, $cacheSize, $shrinking, false);

0 comments on commit df28656

Please sign in to comment.